/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #080808;
    color: #ffffff;
    line-height: 1.6;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}


/* =========================
   VARIABLES
========================= */

:root {
    --gold: #d4af37;
    --gold-light: #e5c45b;
    --black: #080808;
    --dark: #0d0d0d;
    --card: #141414;
    --border: #292929;
    --text-light: #aaaaaa;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    width: 100%;
    height: 82px;

    padding: 0 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(5, 5, 5, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(12px);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 175px;
    height: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;

    list-style: none;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-phone {
    color: var(--gold);
    text-decoration: none;

    font-size: 15px;
    font-weight: 800;

    border: 1px solid var(--gold);
    padding: 10px 17px;
    border-radius: 4px;

    transition: 0.3s;
}

.nav-phone:hover {
    background: var(--gold);
    color: #080808;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;

    padding: 140px 8% 80px;

    background:
        url("car.jpg")
        center center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, 0.98) 0%,
            rgba(5, 5, 5, 0.85) 42%,
            rgba(5, 5, 5, 0.35) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 720px;
}

.eyebrow {
    color: var(--gold);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 4px;

    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(55px, 7vw, 92px);

    font-weight: 900;

    line-height: 0.98;

    letter-spacing: -3px;

    margin-bottom: 30px;
}

.hero h1 span {
    color: var(--gold);
}

.hero-description {
    max-width: 620px;

    color: #cccccc;

    font-size: 19px;

    line-height: 1.7;

    margin-bottom: 38px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 15px 28px;

    border-radius: 4px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 800;

    transition: 0.3s;
}

.button-gold {
    background: var(--gold);
    color: #080808;
}

.button-gold:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

.button-outline {
    border: 1px solid #ffffff;
    color: #ffffff;
}

.button-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}


/* =========================
   GENERAL SECTIONS
========================= */

.section {
    padding: 110px 7%;
}

.section-heading {
    max-width: 750px;

    margin: 0 auto 60px;

    text-align: center;
}

.section-heading h2 {
    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.1;

    margin-bottom: 20px;
}

.section-heading h2 span {
    color: var(--gold);
}

.section-heading > p:last-child {
    color: var(--text-light);

    font-size: 17px;

    line-height: 1.7;
}


/* =========================
   SERVICES
========================= */

.services {
    background: #0c0c0c;
}

.services-grid {
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.service-card {
    overflow: hidden;

    background: var(--card);

    border: 1px solid var(--border);

    border-radius: 8px;

    transition: 0.35s;
}

.service-card:hover {
    transform: translateY(-7px);

    border-color: var(--gold);

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
}

.service-image {
    height: 230px;

    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.5s;
}

.service-card:hover .service-image img {
    transform: scale(1.06);
}

.service-content {
    padding: 28px;
}

.service-number {
    color: var(--gold);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
}

.service-content h3 {
    font-size: 24px;

    margin: 8px 0 12px;
}

.service-content p {
    color: var(--text-light);

    font-size: 15px;

    line-height: 1.7;
}


/* =========================
   ABOUT
========================= */

.about {
    background: #080808;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 80px;

    align-items: center;

    max-width: 1400px;

    margin: auto;
}

.about-image {
    height: 600px;

    overflow: hidden;

    border-radius: 8px;
}

.about-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.about-content h2 {
    font-size: clamp(40px, 5vw, 62px);

    line-height: 1.05;

    margin-bottom: 30px;
}

.about-content h2 span {
    color: var(--gold);
}

.about-content > p:not(.eyebrow) {
    color: #aaaaaa;

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 18px;
}

.about-content strong {
    color: #ffffff;
}

.about-stats {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;

    margin-top: 40px;
}

.about-stats div {
    padding: 22px;

    background: #121212;

    border: 1px solid var(--border);

    border-radius: 6px;
}

.about-stats strong {
    display: block;

    color: var(--gold);

    font-size: 28px;

    margin-bottom: 5px;
}

.about-stats span {
    color: #dddddd;

    font-size: 14px;

    font-weight: 700;
}


/* =========================
   BOOKING
========================= */

.booking {
    background:
        linear-gradient(
            rgba(7, 7, 7, 0.98),
            rgba(7, 7, 7, 0.98)
        );
}

.booking-heading {
    max-width: 900px;

    margin: 0 auto 70px;

    text-align: center;
}

.booking-heading h2 {
    font-size: clamp(50px, 7vw, 82px);

    font-weight: 900;

    letter-spacing: 2px;

    line-height: 1;

    margin-bottom: 25px;
}

.booking-heading h2 span {
    color: var(--gold);
}

.booking-heading > p:last-child {
    max-width: 700px;

    margin: auto;

    color: #aaaaaa;

    font-size: 18px;

    line-height: 1.7;
}

.booking-container {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 0.75fr 1.25fr;

    background: #111111;

    border: 1px solid var(--border);

    border-radius: 10px;

    overflow: hidden;

    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.booking-intro {
    padding: 55px 45px;

    background:
        linear-gradient(
            145deg,
            #151515,
            #0c0c0c
        );

    border-right: 1px solid var(--border);
}

.booking-label {
    color: var(--gold);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;
}

.booking-intro h3 {
    font-size: 38px;

    line-height: 1.15;

    margin: 22px 0;
}

.booking-intro > p {
    color: #999999;

    font-size: 16px;

    line-height: 1.8;
}

.booking-contact {
    margin-top: 45px;

    padding-top: 25px;

    border-top: 1px solid var(--border);
}

.booking-contact span {
    display: block;

    color: #777777;

    font-size: 13px;

    margin-bottom: 6px;
}

.booking-contact a {
    color: var(--gold);

    text-decoration: none;

    font-size: 22px;

    font-weight: 800;
}

.booking-form {
    padding: 50px;

    display: flex;

    flex-direction: column;

    gap: 25px;
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 22px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 9px;
}

.form-group label {
    color: #d4af37;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 16px;

    background: #191919;

    border: 1px solid #303030;

    border-radius: 5px;

    color: #ffffff;

    font-size: 15px;

    outline: none;

    transition: 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #606060;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);

    box-shadow:
        0 0 0 2px
        rgba(212, 175, 55, 0.08);
}

.form-group textarea {
    resize: vertical;

    min-height: 130px;
}

.form-group select {
    cursor: pointer;
}

.booking-button {
    width: 100%;

    padding: 19px;

    margin-top: 5px;

    background: var(--gold);

    border: none;

    border-radius: 5px;

    color: #080808;

    font-size: 15px;

    font-weight: 900;

    letter-spacing: 1.5px;

    cursor: pointer;

    transition: 0.3s;
}

.booking-button span {
    margin-left: 10px;

    font-size: 20px;
}

.booking-button:hover {
    background: #ffffff;

    transform: translateY(-2px);
}

.booking-note {
    color: #666666;

    text-align: center;

    font-size: 12px;

    line-height: 1.5;
}


/* =========================
   CONTACTS
========================= */

.contacts {
    background: #0c0c0c;
}

.contact-grid {
    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.contact-card {
    padding: 30px 22px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    text-decoration: none;

    background: #141414;

    border: 1px solid var(--border);

    border-radius: 7px;

    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);

    border-color: var(--gold);
}

.contact-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    color: var(--gold);

    border: 1px solid var(--gold);

    border-radius: 50%;

    font-size: 12px;

    font-weight: 900;
}

.contact-name {
    color: #ffffff;

    font-size: 17px;

    font-weight: 800;

    margin-bottom: 8px;
}

.contact-value {
    color: #888888;

    font-size: 13px;

    line-height: 1.5;
}


/* =========================
   FOOTER
========================= */

footer {
    padding: 45px 7%;

    text-align: center;

    background: #050505;

    border-top: 1px solid var(--border);
}

.footer-logo {
    display: flex;

    justify-content: center;

    margin-bottom: 15px;
}

.footer-logo img {
    width: 160px;

    height: auto;
}

footer > p {
    color: #777777;

    font-size: 14px;
}

.footer-line {
    width: 60px;

    height: 1px;

    margin: 22px auto;

    background: var(--gold);
}

footer .copyright {
    color: #555555;

    font-size: 12px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 1050px) {

    .navbar {
        padding: 0 4%;
    }

    .nav-links {
        gap: 18px;
    }

    .nav-phone {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-image {
        height: 450px;
    }

    .booking-container {
        grid-template-columns: 1fr;
    }

    .booking-intro {
        border-right: none;

        border-bottom: 1px solid var(--border);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 700px) {

    .navbar {
        height: 70px;

        justify-content: center;
    }

    .logo img {
        width: 150px;
    }

    nav {
        display: none;
    }

    .hero {
        padding: 130px 6% 70px;

        min-height: 100vh;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(5, 5, 5, 0.96),
                rgba(5, 5, 5, 0.72)
            );
    }

    .hero h1 {
        font-size: 55px;

        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;

        max-width: 250px;
    }

    .button {
        width: 100%;
    }

    .section {
        padding: 80px 5%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 240px;
    }

    .about-image {
        height: 350px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .booking-heading h2 {
        font-size: 48px;
    }

    .booking-container {
        border-radius: 7px;
    }

    .booking-intro {
        padding: 35px 25px;
    }

    .booking-intro h3 {
        font-size: 31px;
    }

    .booking-form {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 25px;
    }
}