:root {
    /* BRAND COLORS */
    --gold: #d4af37;
    --gold-dark: #b8962e;

    --white: #ffffff;
    --black: #000000;

    /* BACKGROUNDS */
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --section-alt-bg: rgba(0,0,0,0.05);
    --about-bg: #f3f4f6;

    /* TEXT COLORS */
    --primary-text-color: var(--gold);
    --primary-inverse-text-color: var(--white);
    --secondary-text-color: var(--dark-bg);
    --tertiary-text-color: #334155;
    --muted-text-color: #475569;

    /* BORDERS & SHADOWS */
    --border-light: #e5e7eb;
    --input-border: #cbd5f5;

    /* TRANSPARENCY */
    --black-65: rgb(from var(--black) r g b / 0.65);
    --black-55: rgb(from var(--black) r g b / 0.55);
    --black-90: rgba(0,0,0,0.9);
    --white-18: rgb(from var(--white) r g b / 0.18);

    /* SHADOWS */
    --shadow-soft: 0 18px 45px rgba(0,0,0,0.1);
    --shadow-gold: 0 25px 60px rgba(212,175,55,0.35);

    /* GRADIENTS */
    --gold-gradient: linear-gradient(135deg, var(--gold), var(--gold-dark));

    /* TEXT SIZES */
    --title-text-size: 15px;
    --h1-text-size: 50px;
    --h2-text-size: 36px;
    --h3-text-size: 18px;
    --h4-text-size: 16px;
    --normal-text-size: 14.5px;

    /* UI */
    --header-logo-width-height: 50px;
    --radius: 14px;
    --transition: 0.4s ease;
}

/*////////////////////////////////////////////////////////////*/
/* GLOBAL RESET (keep once globally) */
/*////////////////////////////////////////////////////////////*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: var(--light-bg);
    color: var(--dark-bg);
}

/*////////////////////////////////////////////////////////////*/
/* HEADER – DESKTOP / PC (≥1200px) */
/*////////////////////////////////////////////////////////////*/
.header {
    position: fixed;
    inset: 0 0 auto 0;
    height: 70px;
    padding: 0 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: var(--black-65);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

/* LOGO */
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-circle {
    width: var(--header-logo-width-height);
    height: var(--header-logo-width-height);
    background: var(--dark-bg);
    border-radius: 50%;

    display: grid;
    place-items: center;
    overflow: hidden;
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text span {
    display: block;
    font-weight: bold;
    font-size: var(--h3-text-size);
    color: var(--primary-inverse-text-color);
}

/* NAVIGATION */
.nav {
    display: flex;
    gap: 24px;
}

.nav a {
    position: relative;
    text-decoration: none;
    font-weight: 500;
    font-size: var(--h4-text-size);
    color: var(--primary-inverse-text-color);
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav a:hover::after {
    width: 100%;
}

/* MOBILE MENU ICON (hidden on desktop) */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: var(--h4-text-size);
    color: var(--light-bg);
}



/*////////////////////////////////////////////////////////////*/
/* HERO – DESKTOP / PC (≥1200px) */
/*////////////////////////////////////////////////////////////*/
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    transition: opacity 1.5s ease;
}

.overlay {
    position: absolute;
    inset: 0;
    background: var(--black-55); /* reused variable */
}

.hero-inner {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 40px;

    display: grid;
    grid-template-columns: minmax(320px, 520px) 1fr;
    gap: 50px;

    color: var(--primary-inverse-text-color);
}

/* TEXT */
.hero-text {
    order: 2;
    align-self: flex-start;
    animation: fadeUp 1.2s ease;
}

.hero-text h1 {
    font-size: var(--h1-text-size);
    color: var(--primary-text-color);
}

/* FORM WRAPPER */
.hero-form {
    order: 1;
    position: relative; /* needed for the absolute dropdown */
    z-index: 1499;      /* ensures form is above other sections */
}
/*////////////////////////////////////////////////////////////*/
/* BOOKING FORM */
/*////////////////////////////////////////////////////////////*/
.booking-form {
    background: var(--white-18);
    backdrop-filter: blur(14px);
    padding: 18px;
    border-radius: var(--radius);

    display: grid;
    gap: 14px;

    animation: slideFadeLeft 1s ease;
}

.booking-form input {
    padding: 14px;
    border-radius: 8px;
    border: none;
    font-family: "Segoe UI", sans-serif; /* inherited globally */
    font-size: var(--normal-text-size);  /* inherited globally */
}

/* TIME & DATE ROW */
.row {
    display: flex;
    gap: 10px;
    width: 100%;
}

.row input {
    width: calc(50% - 5px);
}

/* CUSTOM SELECT */
.custom-select {
    position: relative;
    font-family: "Segoe UI", sans-serif; /* match input fields */
    font-size: var(--normal-text-size);
}

 .select-selected {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid var(--input-border);
    box-sizing: border-box;
    cursor: pointer;
    color: var(--secondary-text-color);
    font-family: "Segoe UI", sans-serif;
    font-size: var(--normal-text-size);
    background: var(--white); /* match input bg */
    display: flex;
    align-items: center;
    justify-content: space-between; /* space for the chevron */
    height: 50px; /* same as input height */
}

 .select-items {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: var(--light-bg);
    border-radius: 8px;
    z-index: 1499; /* super high so it appears above all sections */
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    font-weight: 400;         /* normal weight like inputs */
    line-height: 1.5;         /* match input line-height */
    letter-spacing: normal;   /* match input spacing */
}

.select-items div {
    padding: 12px;
    cursor: pointer;
    color: var(--secondary-text-color);
    font-family: "Segoe UI", sans-serif; /* match input fields */
    font-size: var(--normal-text-size);
}

.select-items div:hover {
    background: var(--gold);
    color: var(--primary-inverse-text-color);
    
}

/* SUBMIT BUTTON */
.booking-form button {
    padding: 14px;
    border: none;
    border-radius: 8px;

    background: var(--gold-gradient);
    font-weight: bold;
}


/*////////////////////////////////////////////////////////////*/
/* ABOUT SECTION – DESKTOP / PC (≥1200px) */
/*////////////////////////////////////////////////////////////*/

.section {
    padding: 90px 40px;
}

.section-title {
    text-align: center;
    font-size: var(--h2-text-size);
    color: var(--primary-text-color);
    margin-bottom: 40px;
}

/* ABOUT BACKGROUND */
.about-section {
    background: none; /* remove the old about background */
}

.about-section::before {
    display: none; /* hide the pattern */
}

/* CONTENT ABOVE PATTERN */
.about-section > * {
    position: relative;
    z-index: 1;
}

/*////////////////////////////////////////////////////////////*/
/* ABOUT GRID LAYOUT */
/*////////////////////////////////////////////////////////////*/

.about-grid {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

/*////////////////////////////////////////////////////////////*/
/* LEFT CONTENT */
/*////////////////////////////////////////////////////////////*/

.about-content h3 {
    font-size: 26px;
    color: var(--secondary-text-color);
    margin-bottom: 20px;
}

.about-content p {
    font-size: var(--normal-text-size);
    line-height: 1.8;
    color: var(--tertiary-text-color);
    margin-bottom: 16px;

    text-align: justify;
    text-justify: inter-word;
}

/*////////////////////////////////////////////////////////////*/
/* RIGHT FEATURES GRID */
/*////////////////////////////////////////////////////////////*/

.about-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 30px;
}

/* FEATURE CARD (USES .card FROM HTML) */
.card {
    background: var(--white);
    padding: 55px 36px;
    min-height: 220px;

    border-radius: var(--radius);
    text-align: center;

    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.card i {
    font-size: 36px;
    color: var(--primary-text-color);
    margin-bottom: 18px;
    transition: var(--transition);
}

.card h4 {
    font-size: var(--h3-text-size);
    font-weight: 600;
    color: var(--secondary-text-color);
    transition: var(--transition);
}

/* GOLD HOVER EFFECT (card--gold-hover) */
.card--gold-hover:hover {
    background: var(--gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
}

.card--gold-hover:hover i,
.card--gold-hover:hover h4 {
    color: var(--primary-inverse-text-color);
}



/*////////////////////////////////////////////////////////////*/
/* SERVICES SECTION – DESKTOP / PC (≥1200px) */
/*////////////////////////////////////////////////////////////*/

#services.alt {
    background: linear-gradient(
        135deg,
        var(--white),
        #eef2f7
    );
}

/* GRID */
.services-grid {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/*////////////////////////////////////////////////////////////*/
/* SERVICES SECTION – SAME BACKGROUND AS ABOUT */
/*////////////////////////////////////////////////////////////*/

#services {
    position: relative;
    background: var(--about-bg);
    overflow: hidden;
}

/* PATTERN LAYER */
#services::before {
    content: "";
    position: absolute;
    inset: -50%;
    background-image: radial-gradient(
        rgb(from var(--gold) r g b / 0.35) 1.2px,
        transparent 2.2px
    );
    background-size: 22px 22px;
    opacity: 0.6;
    animation: patternMove 40s linear infinite;
    z-index: 0;
}

/* CONTENT ABOVE PATTERN */
#services > * {
    position: relative;
    z-index: 1;
}

/*////////////////////////////////////////////////////////////*/
/* SERVICE CARD */
/*////////////////////////////////////////////////////////////*/

.service-box {
    position: relative;

    background: var(--white);
    padding: 55px 36px 70px;
    min-height: 320px;

    border-radius: var(--radius);
    text-align: center;

    box-shadow: var(--shadow-soft);
    transition: var(--transition);

    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* DECORATIVE GOLD CIRCLE */
.service-box::before {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -50px;

    width: 140px;
    height: 140px;

    background: var(--gold-gradient);
    border-radius: 50%;
    opacity: 0.12;
}

/* ICON */
.service-box i {
    font-size: 56px;
    color: var(--primary-text-color);
    margin-bottom: 24px;
}

/* TITLE */
.service-box h3 {
    font-size: 20px;
    color: var(--secondary-text-color);
    margin-bottom: 12px;
}


/*////////////////////////////////////////////////////////////*/
/* SERVICE POINTS */
/*////////////////////////////////////////////////////////////*/

.service-points {
    list-style: none;
    padding: 0;
    margin: 20px 0 28px;

    text-align: left;
    flex-grow: 1;
}

.service-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    font-size: var(--normal-text-size);
    color: var(--muted-text-color);
    line-height: 1.6;

    margin-bottom: 10px;
}

.service-points li::before {
    content: "✓";
    color: var(--gold);
    font-weight: bold;
    margin-top: 2px;
}

/*////////////////////////////////////////////////////////////*/
/* SERVICE ACTION BUTTONS */
/*////////////////////////////////////////////////////////////*/

.service-box button,
.whatsapp-btn {
    display: inline-block;

    padding: 12px 22px;
    border-radius: 8px;

    background: var(--gold-gradient);
    color: var(--black);

    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;

    transition: var(--transition);
}

/*////////////////////////////////////////////////////////////*/
/* HOVER EFFECT */
/*////////////////////////////////////////////////////////////*/

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}


/*////////////////////////////////////////////////////////////*/
/* SERVICE POPUP MODAL */
/*////////////////////////////////////////////////////////////*/

.service-modal {
    position: fixed;
    inset: 0;

    background: var(--black-65);
    backdrop-filter: blur(6px);

    display: none;
    align-items: center;
    justify-content: center;

    z-index: 1499;
}

/* MODAL BOX */
.service-modal-content {
    position: relative;

    width: 90%;
    max-width: 420px;

    background: var(--white);
    padding: 36px;
    border-radius: var(--radius);

    box-shadow: var(--shadow-soft);
    animation: fadeUp 0.4s ease;
}

/* TITLE */
.service-modal-content h3 {
    font-size: var(--h3-text-size);
    color: var(--secondary-text-color);
    margin-bottom: 22px;
    text-align: center;
}

/*////////////////////////////////////////////////////////////*/
/* FORM ELEMENTS */
/*////////////////////////////////////////////////////////////*/

#serviceForm {
    display: grid;
    gap: 14px;
}

.service-modal-content input {
    width: 100%;
    padding: 14px;

    border-radius: 8px;
    border: 1px solid var(--input-border);

    font-size: var(--normal-text-size);
}

/* SUBMIT BUTTON */
.service-modal-content button {
    width: 100%;
    padding: 14px;

    border: none;
    border-radius: 8px;

    background: var(--gold-gradient);
    font-weight: bold;
    cursor: pointer;

    transition: var(--transition);
}

.service-modal-content button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/*////////////////////////////////////////////////////////////*/
/* CLOSE BUTTON */
/*////////////////////////////////////////////////////////////*/

.close-btn {
    position: absolute;
    top: 14px;
    right: 18px;

    font-size: 22px;
    line-height: 1;
    cursor: pointer;

    color: var(--muted-text-color);
    transition: var(--transition);
}

.close-btn:hover {
    color: var(--secondary-text-color);
    transform: scale(1.1);
}


/* POPUP FORM INPUTS AND DROPDOWNS */
#dynamicFields .popup-input {
    width: 100%;
    margin-bottom: 14px; /* uniform spacing */
    padding: 14px;
    border-radius: 8px;
    border: 1px solid var(--input-border);
    font-size: var(--normal-text-size);
    font-family: "Segoe UI", sans-serif;
    box-sizing: border-box;
}

/* Remove bottom margin from last element */
#dynamicFields .popup-input:last-child {
    margin-bottom: 0;
}




/*////////////////////////////////////////////////////////////*/
/* VEHICLES SECTION – BACKGROUND (SAME AS ABOUT) */
/*////////////////////////////////////////////////////////////*/

#vehicles {
    position: relative;
    background: var(--about-bg);
    overflow: hidden;
}

/* PATTERN LAYER */
#vehicles::before {
    content: "";
    position: absolute;
    inset: -50%;

    background-image: radial-gradient(
        rgb(from var(--gold) r g b / 0.35) 1.2px,
        transparent 2.2px
    );
    background-size: 22px 22px;
    opacity: 0.6;

    animation: patternMove 40s linear infinite;
    z-index: 0;
}

/* CONTENT ABOVE PATTERN */
#vehicles > * {
    position: relative;
    z-index: 1;
}

/*////////////////////////////////////////////////////////////*/
/* VEHICLES GRID */
/*////////////////////////////////////////////////////////////*/

.vehicles-grid {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

/*////////////////////////////////////////////////////////////*/
/* VEHICLE CARD */
/*////////////////////////////////////////////////////////////*/

.vehicle-card {
    position: relative;

    background: var(--white);
    padding: 30px 26px 34px;

    border-radius: var(--radius);
    text-align: center;

    box-shadow: var(--shadow-soft);
    transition: var(--transition);

    overflow: hidden;
}

/* DECORATIVE GOLD CIRCLE */
.vehicle-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;

    width: 140px;
    height: 140px;

    background: var(--gold-gradient);
    border-radius: 50%;
    opacity: 0.12;
}

/*////////////////////////////////////////////////////////////*/
/* VEHICLE IMAGE */
/*////////////////////////////////////////////////////////////*/

.vehicle-image {
    height: 160px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 10px;
}

.vehicle-image img {
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;

    transition: transform var(--transition);
}


/*////////////////////////////////////////////////////////////*/
/* VEHICLE NAME */
/*////////////////////////////////////////////////////////////*/

.vehicle-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-text-color);

    margin: 12px 0 16px;
}


/*////////////////////////////////////////////////////////////*/
/* VEHICLE SPECS */
/*////////////////////////////////////////////////////////////*/

.vehicle-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;

    margin-bottom: 22px;
}

.spec-box {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px 14px;

    background: var(--light-bg);
    border-radius: 10px;

    font-size: var(--normal-text-size);
    color: var(--muted-text-color);

    box-shadow: inset 0 0 0 1px var(--border-light);
    transition: var(--transition);
}

.spec-box i {
    font-size: 16px;
    min-width: 18px;
    color: var(--gold);
}


/*////////////////////////////////////////////////////////////*/
/* VEHICLE BUTTON */
/*////////////////////////////////////////////////////////////*/

.vehicle-btn {
    width: 100%;
    padding: 12px;

    border-radius: 8px;
    border: none;

    background: var(--gold-gradient);
    font-weight: 600;
    cursor: pointer;

    transition: var(--transition);
}

.vehicle-btn i {
    margin-right: 6px;
}


/*////////////////////////////////////////////////////////////*/
/* HOVER EFFECTS */
/*////////////////////////////////////////////////////////////*/

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.vehicle-card:hover img {
    transform: scale(1.05);
}

.vehicle-card:hover .spec-box {
    background: rgb(from var(--gold) r g b / 0.12);
    box-shadow: inset 0 0 0 1px rgb(from var(--gold) r g b / 0.45);
}


/*////////////////////////////////////////////////////////////*/
/* CONTACT SECTION – DESKTOP / PC (≥1200px) */
/*////////////////////////////////////////////////////////////*/

.contact-section {
    background: var(--section-alt-bg);
}

/* GRID */
.contact-grid {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;

    align-items: stretch;
}


/*////////////////////////////////////////////////////////////*/
/* CONTACT DETAILS */
/*////////////////////////////////////////////////////////////*/

.contact-details {
    display: grid;
    gap: 22px;
}

/* CARD */
.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 22px 26px;

    display: flex;
    align-items: center;
    gap: 18px;

    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

/* ICON */
.contact-card i {
    font-size: 26px;
    color: var(--primary-text-color);
    min-width: 28px;
}

/* TEXT */
.contact-card h4 {
    font-size: var(--h4-text-size);
    font-weight: 600;
    color: var(--secondary-text-color);
    margin-bottom: 4px;
}

.contact-card p {
    font-size: var(--normal-text-size);
    color: var(--muted-text-color);
}

/*////////////////////////////////////////////////////////////*/
/* CLICKABLE CONTACT LINKS */
/*////////////////////////////////////////////////////////////*/

.contact-card a {
    color: var(--muted-text-color);
    text-decoration: none;
    transition: var(--transition);
    word-break: break-word;
}

.contact-card a:hover {
    color: var(--primary-text-color);
    text-decoration: underline;
}

/*////////////////////////////////////////////////////////////*/
/* HOVER EFFECT */
/*////////////////////////////////////////////////////////////*/

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
}

/*////////////////////////////////////////////////////////////*/
/* CONTACT MAP */
/*////////////////////////////////////////////////////////////*/

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 340px;
    border: none;
}


/*////////////////////////////////////////////////////////////*/
/* CLICKABLE CONTACT CARDS */
/*////////////////////////////////////////////////////////////*/

.contact-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.contact-card-link:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}


/*////////////////////////////////////////////////////////////*/
/* FOOTER */
/*////////////////////////////////////////////////////////////*/

.footer {
    background: var(--black);
    color: var(--primary-inverse-text-color);
}

.footer-inner {
    max-width: 1200px;
    margin: auto;
    padding: 20px 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* TEXT */
.footer-text {
    font-size: var(--normal-text-size);
}

/* SOCIAL ICONS */
.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border-radius: 50%;
    text-decoration: none;

    color: var(--primary-inverse-text-color);
    background: rgb(from var(--white) r g b / 0.12);

    transition: var(--transition);
}

.footer-socials a i {
    font-size: 16px;
}

/* HOVER EFFECT */
.footer-socials a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}








/*////////////////////////////////////////////////////////////*/
/* LAPTOP / SMALL DESKTOP (992px – 1199px) */
/*////////////////////////////////////////////////////////////*/
@media (max-width: 1199px) {
    .header {
        padding: 0 28px;
        z-index: 2000;
    }

    .nav {
        gap: 20px;
    }

    .logo-text span {
        font-size: 17px; /* visually same as h3 scale */
    }
     .hero-inner {
        gap: 40px;
        padding: 80px 28px 0; /* added top padding to avoid touching header */
    }

    .hero-text h1 {
        font-size: 44px;
    }
    .section {
        padding: 80px 28px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 44px;
    }

    .about-features {
        gap: 26px;
    }
    .section {
        padding: 80px 28px;
    }

    .section-title {
        font-size: 32px;
    }

    .about-grid {
        gap: 50px;
    }
    .services-grid {
        gap: 26px;
    }

    .service-box {
        padding: 50px 32px 64px;
    }
    .vehicles-grid {
        gap: 30px;
    }

    .vehicle-card {
        padding: 28px 24px 32px;
    }
    
}


/* Mobile Nav */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}


/*////////////////////////////////////////////////////////////*/
/* TABLET & MOBILE (≤900px) */
/*////////////////////////////////////////////////////////////*/
@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 70px;
        right: -100%;

        width: 240px;
        height: calc(100vh - 70px);

        background: var(--black-90);
        backdrop-filter: blur(12px);

        flex-direction: column;
        padding: 30px;
        gap: 20px;

        transition: right var(--transition);
        z-index: 1500;

    }

    .nav.active {
        right: 0;
    }

    .nav a {
        font-size: 16px;
    }

    .hero {
        padding-top: 70px; /* header offset */
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-form {
        order: 2;
    }

    .hero-text {
        order: 1;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 38px;
    }
    .section {
        padding: 70px 24px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 48px 30px;
    }

    .section-title {
        font-size: 28px;
    }
     .section {
        padding: 70px 24px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        text-align: center;
    }

    .about-features {
        grid-template-columns: 1fr 1fr;
    }

    .section-title {
        font-size: 28px;
    }
    .services-grid {
        gap: 24px;
    }

    .service-box {
        padding: 48px 30px 60px;
    }

    .service-box i {
        font-size: 50px;
    }
    .service-modal-content {
        padding: 32px 28px;
    }
    .vehicles-grid {
        gap: 26px;
    }

    .vehicle-image {
        height: 150px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-map iframe {
        min-height: 300px;
    }
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

/*////////////////////////////////////////////////////////////*/
/* SMALL MOBILE (≤500px) */
/*////////////////////////////////////////////////////////////*/
@media (max-width: 500px) {
    .header {
        padding: 0 20px;
    }

    .logo-text span {
        font-size: 16px;
    }

    .hero-inner {
        padding: 0 20px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .booking-form {
        padding: 16px;
    }
    .section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 36px;
    }

    .feature-card {
        padding: 40px 24px;
    }

    .feature-card i {
        font-size: 32px;
    }
   .section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 36px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 40px 24px;
    }

    .card i {
        font-size: 32px;
    }
    .service-box {
        padding: 40px 24px 54px;
    }

    .service-box i {
        font-size: 44px;
    }

    .service-box h3 {
        font-size: 18px;
    }
    .service-modal-content {
        padding: 28px 22px;
    }

    .service-modal-content h3 {
        font-size: 16px;
    }
    .vehicle-card {
        padding: 24px 20px 28px;
    }

    .vehicle-name {
        font-size: 18px;
    }

    .vehicle-image {
        height: 140px;
    }
    .contact-card {
        padding: 20px 22px;
    }

    .contact-card i {
        font-size: 24px;
    }

}
