/* =============================================================
   VIP RENT A CAR — MAIN STYLESHEET
   Mirrors: reference.html (www.vipcarrental.ae)
   File: css/main.css
   ============================================================= */

/* --- Google Fonts ------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
/* Custom cursor (Nova template) — see body.elite-magic-cursor-active overrides below */
@import url("../html - light/css/mousecursor.css");

/* --- Reset / Base ------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    color: #e0e0e0;
    background-color: #121212;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* =============================================================
   MONTHLY OFFERS VERTICAL SIDE BUTTON
   ============================================================= */
.monthlybtn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    writing-mode: vertical-rl;
    transform: translateY(-50%) rotate(180deg);
}

.monthlybtn a.btnoffer {
    display: block;
    background: #0099ff;
    color: #fff;
    padding: 14px 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 6px 6px 0 0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    white-space: nowrap;
}

.monthlybtn a.btnoffer:hover {
    background: #007acc;
    color: #fff;
}

/* =============================================================
   TOP ANNOUNCEMENT BAR
   ============================================================= */
.discount-bar {
    background: #0099ff;
    color: #fff;
    text-align: center;
    padding: 9px 20px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.discount-bar img {
    vertical-align: middle;
    margin-bottom: 2px;
}

.discount-bar b {
    font-weight: 700;
}

.discount-bar a {
    color: #fff;
    text-decoration: underline;
}

.discount-bar a:hover {
    color: #ffe28a;
}

/* =============================================================
   MAIN HEADER (sticky)
   ============================================================= */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #1a1a1a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* =============================================================
   WHITE TOP NAVBAR  (logo | search | phone + lang)
   ============================================================= */
nav.white-navbar {
    background: #1a1a1a;
    display: flex;
    align-items: center;
    padding: 0 24px;
    min-height: 72px;
    gap: 12px;
    flex-wrap: nowrap;
}

/* ---- Logo ---- */
.navbar-brand {
    flex: 0 0 auto;
    width: 18%;
    min-width: 110px;
    display: flex;
    align-items: center;
}

.navbar-brand a {
    display: block;
    line-height: 0;
}

.img-logo {
    width: 140px;
    height: auto;
    max-height: 65px;
    padding: 4px 0;
    object-fit: contain;
}

/* ---- Search ---- */
.search-header-site-new {
    flex: 1 1 auto;
    max-width: 500px;
    min-width: 150px;
}

.search-form-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 11px;
    width: 16px;
    height: 16px;
    fill: #aaa;
    pointer-events: none;
    flex-shrink: 0;
}

.search-input {
    width: 100%;
    padding: 9px 16px 9px 36px;
    border: 1px solid #333;
    border-radius: 20px;
    background: #2a2a2a;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    color: #eee;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.search-input:focus {
    border-color: #0099ff;
    background: #111;
}

.search-input::placeholder {
    color: #888;
}

/* ---- Search Suggestions (PC + Mobile) ---- */
.search-suggest-panel{
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
    display: none;
    z-index: 2500;
}

.search-suggest-panel.is-open{
    display: block;
}

.search-suggest-item{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: transparent;
    border: 0;
    text-align: left;
    cursor: pointer;
}

.search-suggest-item + .search-suggest-item{
    border-top: 1px solid rgba(0,0,0,0.06);
}

.search-suggest-item:hover,
.search-suggest-item:focus{
    background: #f3f4f6;
    outline: none;
}

.ssi-thumb{
    width: 46px;
    height: 46px;
    border-radius: 8px;
    overflow: hidden;
    flex: 0 0 auto;
    background: #e9e9ee;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ssi-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ssi-thumb-fallback{
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e6e7ee, #d9dbe6);
    display: block;
}

.ssi-text{
    color: #111;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

/* Dark theme (default) */
html.theme-dark .search-suggest-panel,
:root:not(.theme-light) .search-suggest-panel{
    background: #111317;
    border-color: rgba(255,255,255,0.08);
    box-shadow: 0 18px 50px rgba(0,0,0,0.55);
}
html.theme-dark .search-suggest-item + .search-suggest-item,
:root:not(.theme-light) .search-suggest-item + .search-suggest-item{
    border-top-color: rgba(255,255,255,0.06);
}
html.theme-dark .search-suggest-item:hover,
html.theme-dark .search-suggest-item:focus,
:root:not(.theme-light) .search-suggest-item:hover,
:root:not(.theme-light) .search-suggest-item:focus{
    background: rgba(255,255,255,0.06);
}
html.theme-dark .ssi-thumb,
:root:not(.theme-light) .ssi-thumb{
    background: rgba(255,255,255,0.07);
}
html.theme-dark .ssi-text,
:root:not(.theme-light) .ssi-text{
    color: #f2f3f7;
}

html.theme-light .search-suggest-panel{
    background: #ffffff;
}

@media (max-width: 991px){
    .search-header-site-new{
        max-width: 100%;
    }
}

/* ---- Contact / Action Area ---- */
.header-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Phone / Whatsapp buttons */
.CallTag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #1a1a1a;
    color: #fff !important;
    padding: 7px 13px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background 0.2s;
    line-height: 1;
}

.CallTag:hover {
    background: #0099ff;
    color: #fff !important;
}

.CallTag i {
    font-size: 14px;
}

.CallTag i.fa-whatsapp {
    color: #25d366;
}

.CallTag:hover i.fa-whatsapp {
    color: #fff;
}

.number-header {
    font-size: 12px;
}

/* ---- Language Switcher ---- */
.lang-switch {
    position: relative;
    flex-shrink: 0;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border: 1px solid #444;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    color: #eee;
    background: #2a2a2a;
    user-select: none;
    white-space: nowrap;
}

.lang-toggle:hover {
    background: #333;
}

.lang-toggle img {
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
}

.lang-toggle .fa-location-dot {
    color: #c8a84b;
    font-size: 13px;
}

.lang-toggle-arrow {
    font-size: 10px;
    color: #aaa;
    transition: transform 0.2s;
}

.lang-switch.open .lang-toggle-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 4px);
    background: #1a1a1a;
    border: 1px solid #444;
    border-radius: 6px;
    list-style: none;
    padding: 4px 0;
    min-width: 140px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    z-index: 2000;
}

.lang-switch.open .lang-dropdown {
    display: block;
}

.lang-dropdown li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 13px;
    color: #eee;
    transition: background 0.15s, color 0.15s;
}

.lang-dropdown li a:hover {
    background: #333;
    color: #0099ff;
}

.lang-dropdown li a img {
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
}

.location-coming-soon {
    margin-left: 8px;
    font-size: 10px;
    font-weight: 600;
    color: #c8a84b;
    white-space: nowrap;
}

/* ---- Mobile Toggle ---- */
.mob-nav {
    display: none;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.navbar-toggler {
    border: none;
    background: transparent;
    padding: 6px;
    cursor: pointer;
    line-height: 1;
}

.navbar-toggler i {
    font-size: 22px;
    color: #eee;
}

/* =============================================================
   BLACK BOTTOM NAV MENU
   ============================================================= */
.black-nav {
    background: #111;
    border-top: 1px solid #1e1e1e;
}

.black-nav .nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    flex-wrap: nowrap;
}

/* Menu list */
.main-nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.main-nav-list>li {
    position: relative;
}

.main-nav-list>li>a {
    display: block;
    color: #fff !important;
    font-size: 13.5px;
    font-weight: 500;
    padding: 15px 12px;
    white-space: nowrap;
    transition: color 0.2s;
    letter-spacing: 0.2px;
}

.main-nav-list>li>a:hover,
.main-nav-list>li.current>a {
    color: #0099ff !important;
}

/* Dropdown arrow */
.main-nav-list .has-dropdown>a::after {
    content: '\f0d7';
    font-family: 'Font Awesome 6 Free', 'FontAwesome';
    font-weight: 900;
    font-size: 10px;
    margin-left: 5px;
    vertical-align: 1px;
}

/* Dropdown menu */
.main-nav-list .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a1a;
    min-width: 180px;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    list-style: none;
    padding: 6px 0;
    z-index: 1050;
}

.main-nav-list .has-dropdown:hover .sub-menu,
.main-nav-list .has-dropdown.open .sub-menu {
    display: block;
}

.sub-menu li a {
    display: block;
    padding: 9px 18px;
    font-size: 13px;
    color: #eee;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.sub-menu li a:hover {
    background: #333;
    color: #0099ff;
}

/* No Deposit Cars Button */
.btn-no-deposit {
    flex-shrink: 0;
    display: inline-block;
    background: #0099ff;
    color: #fff !important;
    padding: 9px 18px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    white-space: nowrap;
    margin-left: 16px;
    transition: background 0.2s;
    letter-spacing: 0.3px;
}

.btn-no-deposit:hover {
    background: #007acc;
    color: #fff !important;
}

/* =============================================================
   MOBILE MENU (drawer)
   ============================================================= */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #1a1a1a;
    padding: 10px 0 16px;
    border-top: 1px solid #333;
}

.mobile-menu.open {
    display: flex;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.mobile-nav-list>li>a {
    display: block;
    padding: 11px 20px;
    color: #eee;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #2a2a2a;
    transition: color 0.2s, background 0.15s;
}

.mobile-nav-list>li>a:hover {
    color: #0099ff;
    background: #222;
}

.mobile-sub-menu {
    display: none;
    list-style: none;
    padding: 0;
    background: #111;
}

.mobile-sub-menu.open {
    display: block;
}

.mobile-sub-menu li a {
    display: block;
    padding: 9px 32px;
    font-size: 13px;
    color: #ccc;
    border-bottom: 1px solid #1a1a1a;
}

.mobile-sub-menu li a:hover {
    color: #0099ff;
}

.mobile-menu-footer {
    padding: 12px 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-call-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #1a1a1a;
    color: #fff !important;
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.mobile-call-btn:hover {
    background: #0099ff;
    color: #fff !important;
}

.mobile-call-btn i {
    font-size: 16px;
}

.mobile-call-btn i.fa-whatsapp {
    color: #25d366;
}

.mobile-call-btn:hover i {
    color: #fff !important;
}

/* =============================================================
   HERO / CAROUSEL SECTION
   ============================================================= */
.hero-section {
    position: relative;
    overflow: hidden;
    background: #1a1a1a;       /* dark grey — no more black bleeding gap */
    line-height: 0;            /* kills any inline-block gap under the image */
}

.hero-carousel {
    position: relative;
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
}

.hero-carousel.is-dragging {
    cursor: grabbing;
}

.hero-carousel .carousel-item {
    position: relative;
    line-height: 0;
}

/* Desktop: natural aspect ratio, capped at 620px */
.hero-carousel .carousel-item img {
    width: 100%;
    display: block;
    max-height: 620px;
    height: auto;
    object-fit: cover;
    object-position: center top;
}

/* Desktop hero sizing (keep GIF/banner responsive without distortion) */
@media (min-width: 992px) {
    .hero-carousel .carousel-item {
        height: auto;
    }
    .hero-carousel .carousel-item img {
        width: 100%;
        height: auto;
        max-height: clamp(520px, 36vw, 760px);
        object-fit: contain;
        object-position: center;
    }
}

/* Book Now overlay button — always perfectly centred */
.hero-book-btn {
    position: absolute;
    bottom: 28px;
    left: 50% !important;
    right: auto !important;
    margin-left: 0 !important;
    transform: translateX(-50%) !important;
    background: #0099ff;
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    z-index: 30 !important;
    white-space: nowrap;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 18px rgba(0,153,255,0.45);
    animation: er-fadeUp .8s .5s cubic-bezier(.4,0,.2,1) both; /* from animations.js block */
}

.hero-book-btn:hover {
    background: #007acc;
    color: #fff !important;
    box-shadow: 0 6px 24px rgba(0,153,255,0.6);
}

.hero-book-btn i {
    font-size: 18px;
    line-height: 1;
}

/* Carousel indicators */
.hero-carousel .carousel-indicators {
    bottom: 10px;
    z-index: 5;
}

.hero-carousel .carousel-indicators li {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 9px;
    height: 9px;
    margin: 0 4px;
    border-top: none;
    border-bottom: none;
}

.hero-carousel .carousel-indicators li.active {
    background: #0099ff;
}

/* Carousel controls */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 44px;
    height: 44px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.35);
    border-radius: 50%;
    opacity: 0.75;
}

.hero-carousel .carousel-control-prev {
    left: 12px;
}

.hero-carousel .carousel-control-next {
    right: 12px;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    opacity: 1;
    background: rgba(0, 153, 255, 0.7);
}

/* =============================================================
   BEST CAR RENTAL IN DUBAI — Heading
   ============================================================= */
.home{
    background:#fff;
}
.first-title {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
}

.best-rental-head {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
}

.head-black {
    color: #000000;
}

.head-gold {
    color: #c8a84b;
}

/* =============================================================
   CAR CATEGORY GRID
   ============================================================= */

/* Desktop: 5-column flexible column */
.col-desktop {
    flex: 0 0 20%;
    max-width: 20%;
}

/* Card wrapper */
.cat-card-link {
    display: block;
    text-decoration: none !important;
    color: inherit;
}

.cat-card-link:hover {
    text-decoration: none !important;
}

.cat-card {
    text-align: center;
}

/* Card image (background-image, cropped/centred) */
.cat-img {
    height: 110px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 4px;
    transition: transform 0.25s ease;
}

.cat-card-link:hover .cat-img {
    transform: scale(1.04);
}

/* Row 2 cards are slightly taller */
.cat-img-lg {
    height: 135px;
}

/* Mobile image height */
.cat-img-mob {
    height: 75px;
    background-size: contain;
}

/* Label */
.cat-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
    margin-top: 6px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    transition: color 0.2s;
}

/* Row 1 labels keep black, Row 2 labels use accent color like reference */
.section-3 .row.justify-content-center:first-child .cat-label {
    color: #2052db;
}

.section-3 .row.px-5 .cat-label {
    color: #0099ff;
}

.cat-card-link:hover .cat-label {
    color: #0099ff;
}

/* Small label for mobile */
.cat-label-sm {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: #1f66ff;
    margin-top: 4px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.cat-card-link:hover .cat-label-sm {
    color: #0099ff;
}

/* =============================================================
   RESPONSIVE — CATEGORY GRID
   ============================================================= */
@media (max-width: 1200px) {
    .col-desktop {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .cat-img {
        height: 95px;
    }

    .cat-img-lg {
        height: 115px;
    }

    .cat-label {
        font-size: 13px;
    }
}

@media (max-width: 991px) {

    /* Mobile 3-col grid */
    .cat-img-mob {
        height: 65px;
    }

    .cat-label-sm {
        font-size: 10px;
    }
}

@media (max-width: 575px) {
    .best-rental-head {
        font-size: 20px;
    }

    .cat-img-mob {
        height: 55px;
    }

    .cat-label-sm {
        font-size: 9px;
        letter-spacing: 0;
    }
}

@media (max-width: 400px) {
    .best-rental-head {
        font-size: 17px;
    }
}

/* =============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================= */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
    background: #25d366;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
    text-decoration: none !important;
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.65);
}

.whatsapp-float i {
    color: #fff;
    font-size: 30px;
}

/* =============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================= */

/* --- Large desktops (≥1500px) -------------------------------- */
@media (min-width: 1500px) {
    .search-header-site-new {
        max-width: 600px;
    }

    .img-logo {
        width: 160px;
    }
}

/* --- Medium desktops (1250–1499px) --------------------------- */
@media (max-width: 1499px) {
    .search-header-site-new {
        max-width: 420px;
    }
}

@media (max-width: 1249px) {
    .search-header-site-new {
        max-width: 320px;
    }

    .main-nav-list>li>a {
        padding: 15px 8px;
        font-size: 12.5px;
    }

    .CallTag {
        font-size: 11px;
        padding: 6px 10px;
    }
}

/* --- Tablet/Small desktop (992–1199px) ----------------------- */
@media (max-width: 1199px) {
    .img-logo {
        width: 120px;
    }

    .main-nav-list>li>a {
        padding: 14px 7px;
        font-size: 12px;
    }
}

/* ─────────────────────────────────────────────────────────────
   ANIMATED HAMBURGER BUTTON  (CSS-drawn 3 bars → X)
   ───────────────────────────────────────────────────────────── */
.hamburger {
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 4px;
    border-radius: 6px;
    flex-shrink: 0;
    transition: background .2s;
}
.hamburger:hover { background: rgba(255,255,255,.08); }

.hamburger .hb-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transform-origin: center;
    transition:
        transform  .35s cubic-bezier(.4,0,.2,1),
        opacity    .25s ease,
        width      .3s  ease,
        top        .3s  ease;
}

/* Open state — bars become X */
.hamburger.is-open .hb-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open .hb-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.is-open .hb-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─────────────────────────────────────────────────────────────
   COLLAPSE NAVBAR at ≤991px  —  SINGLE ROW LAYOUT
   ───────────────────────────────────────────────────────────── */
@media (max-width: 991px) {

    /* Show mobile toggle area */
    .mob-nav {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-shrink: 0;
    }

    /* Hide desktop phone buttons */
    .header-actions { display: none; }

    /* Hide black nav bar */
    .black-nav { display: none; }

    /* ── Single-row navbar ── */
    nav.white-navbar {
        flex-wrap: nowrap;          /* NEVER wrap to second row */
        padding: 0 12px;
        gap: 10px;
        min-height: 56px;
        align-items: center;
    }

    .navbar-brand {
        width: auto;
        min-width: unset;
        flex-shrink: 0;
    }

    .img-logo {
        width: 100px;
    }

    /* Search bar grows to fill middle */
    .search-header-site-new {
        flex: 1 1 0;
        min-width: 0;
        max-width: none;
    }

    .search-input {
        font-size: 12px;
        padding: 8px 12px 8px 32px;
    }

    /* Language toggle — flag + chevron only, NO text on mobile */
    #langSwitchMobile .lang-toggle span {
        display: none;
    }
    #langSwitchMobile .lang-toggle {
        padding: 5px 4px;
        border: none;
        background: transparent;
        gap: 2px;
    }
    #langSwitchMobile .lang-toggle-arrow {
        font-size: 8px;
    }
}

/* --- Mobile (≤767px) ---------------------------------------- */
@media (max-width: 767px) {
    nav.white-navbar {
        min-height: 52px;
        padding: 0 10px;
        gap: 8px;
    }

    .img-logo {
        width: 88px;
    }

    /* Mobile hero: stable, responsive height like reference (no huge zoom) */
    .hero-carousel .carousel-item img {
        height: clamp(240px, 56vw, 420px) !important;
        max-height: none;
        min-height: 0 !important;
        object-fit: cover;
        object-position: center;
    }

    .hero-book-btn {
        font-size: 13px;
        padding: 10px 18px;
        bottom: 64px;
    }
    
    .hero-carousel .carousel-indicators {
        bottom: 12px;
        z-index: 1 !important; /* ensure below the button on mobile */
    }

    .section-title-main h1 {
        font-size: 22px;
    }

    .discount-bar {
        font-size: 12px;
        padding: 8px 12px;
    }
}

/* --- Small mobile (≤575px) ---------------------------------- */
@media (max-width: 575px) {
    nav.white-navbar {
        min-height: 50px;
        padding: 0 8px;
        gap: 6px;
    }

    .img-logo {
        width: 76px;
    }

    .search-input {
        font-size: 11px;
        padding: 7px 10px 7px 30px;
    }

    .search-icon {
        left: 9px;
        width: 13px;
        height: 13px;
    }

    .hamburger {
        width: 32px;
        height: 32px;
    }
    .hamburger .hb-bar {
        width: 18px;
    }

    .hero-carousel .carousel-item img {
        height: clamp(220px, 62vw, 360px) !important;
        max-height: none;
        min-height: 0 !important;
        object-fit: cover;
        object-position: center;
    }

    .hero-book-btn {
        font-size: 13px;
        padding: 6px 10px;
        gap: 8px;
        bottom: 48px;
    }
    
    .hero-carousel .carousel-indicators {
        bottom: 12px;
        z-index: 1 !important; /* ensure below the button on mobile */
    }

    .section-title-main h1 {
        font-size: 18px;
        letter-spacing: 0.5px;
    }

    .monthlybtn {
        display: none !important;
    }

    .whatsapp-float {
        width: 46px;
        height: 46px;
        bottom: 16px;
        right: 14px;
    }

    .whatsapp-float i {
        font-size: 24px;
    }
}

/* --- Extra small (≤400px) ----------------------------------- */
@media (max-width: 400px) {
    nav.white-navbar {
        padding: 0 8px;
        gap: 6px;
    }

    .img-logo {
        width: 72px;
    }

    .navbar-toggler {
        padding: 4px;
    }

    .discount-bar {
        font-size: 11px;
        padding: 7px 8px;
    }
}

/* =============================================================
   ABOUT ELITE RIDES — Nova / index-2 template (Jaipur SEO block)
   ============================================================= */
.about-us--elite {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 20%, rgba(0, 153, 255, 0.08) 0%, transparent 45%),
        linear-gradient(135deg, #0a0a0a 0%, #0d1520 55%, #0a0a0a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.about-us--elite .about-image--elite {
    position: relative;
    background: url("../html - light/images/about-image-bg.svg") no-repeat;
    background-position: bottom 25px right 50px;
    background-size: auto;
    padding-bottom: 100px;
    margin-right: 40px;
    padding-left: 10px;
}

.about-us--elite .about-img-1 {
    width: 100%;
    max-width: 414px;
    position: relative;
}

.about-us--elite .about-img-1::before {
    content: '';
    position: absolute;
    top: -10px;
    bottom: 0;
    left: -10px;
    right: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 200px;
    z-index: 1;
    pointer-events: none;
}

.about-us--elite .about-img-1 img {
    width: 100%;
    aspect-ratio: 1 / 1.37;
    object-fit: cover;
    border-radius: 200px;
    display: block;
}

.about-us--elite .about-img-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    max-width: 55%;
}

.about-us--elite .about-img-2::before {
    content: '';
    position: absolute;
    top: -8px;
    bottom: 0;
    left: -8px;
    right: 0;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 160px;
    z-index: 1;
    pointer-events: none;
}

.about-us--elite .about-img-2 img {
    width: 100%;
    aspect-ratio: 1 / 1.37;
    object-fit: cover;
    border-radius: 160px;
    display: block;
}

.about-us--elite .about-elite-heading {
    margin-bottom: 8px;
}

.about-us--elite .about-elite-heading h3 {
    display: inline-block;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2em;
    text-transform: capitalize;
    color: #c8a84b;
    padding-left: 25px;
    margin-bottom: 15px;
}

.about-us--elite .about-elite-heading h3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url("../html - light/images/icon-sub-heading.svg") no-repeat left center;
    background-size: cover;
    width: 18px;
    height: 18px;
}

.about-us--elite .about-elite-heading h2 {
    font-size: clamp(26px, 3.6vw, 40px);
    font-weight: 700;
    line-height: 1.18;
    margin: 0 0 18px;
    color: #fff;
}

.about-us--elite .about-elite-lead {
    font-size: 14px;
    line-height: 1.75;
    color: #aab3c2;
    margin: 0 0 28px;
}

.about-us--elite .about-elite-lead strong {
    color: #e8ecf4;
    font-weight: 600;
}

.about-us--elite .about-content-body {
    margin-bottom: 36px;
}

.about-us--elite .about-trusted-booking {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    padding-bottom: 28px;
    margin-bottom: 28px;
}

.about-us--elite .about-trusted-booking:last-child {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.about-us--elite .about-trusted-booking .icon-box {
    position: relative;
    margin-right: 20px;
    padding: 10px 0 0 10px;
    flex-shrink: 0;
}

.about-us--elite .about-trusted-booking .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: #c8a84b;
    opacity: 0.1;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.about-us--elite .about-trusted-booking:hover .icon-box::before {
    opacity: 0.35;
}

.about-us--elite .about-trusted-booking .icon-box img {
    position: relative;
    max-width: 74px;
    z-index: 1;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.about-us--elite .trusted-booking-content {
    width: calc(100% - 94px);
}

.about-us--elite .trusted-booking-content h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
    color: #fff;
}

.about-us--elite .trusted-booking-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #aab3c2;
}

.about-us--elite .trusted-booking-content strong {
    color: #d6dbe6;
    font-weight: 600;
}

.about-us--elite .about-content-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.about-us--elite .about-elite-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    text-decoration: none !important;
    background: #c8a84b;
    color: #111 !important;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    box-shadow: 0 10px 28px rgba(200, 168, 75, 0.25);
}

.about-us--elite .about-elite-cta:hover {
    filter: brightness(1.06);
    transform: translateY(-2px);
    color: #111 !important;
}

.about-us--elite .about-elite-cta--wa {
    background: rgba(255, 255, 255, 0.06);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

.about-us--elite .about-elite-cta--wa:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.45);
    color: #fff !important;
}

/* GSAP image reveal */
.about-us--elite .reveal {
    position: relative;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
    max-width: 100%;
}

.about-us--elite .reveal img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform-origin: left center;
}

@media (max-width: 991px) {
    .about-us--elite {
        padding: 72px 0;
    }

    .about-us--elite .about-image--elite {
        width: 100%;
        max-width: 550px;
        margin: 0 auto 36px;
        margin-right: auto;
        padding-right: 10px;
    }

    .about-us--elite .about-trusted-booking {
        padding-bottom: 22px;
        margin-bottom: 22px;
    }

    .about-us--elite .about-trusted-booking .icon-box img {
        max-width: 64px;
    }

    .about-us--elite .trusted-booking-content {
        width: calc(100% - 84px);
    }
}

@media (max-width: 576px) {
    .about-us--elite .about-content-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .about-us--elite .about-elite-cta,
    .about-us--elite .about-elite-cta--wa {
        width: 100%;
        justify-content: center;
    }
}

/* Light theme */
html.theme-light .about-us--elite {
    background:
        radial-gradient(circle at 85% 20%, rgba(0, 153, 255, 0.1) 0%, transparent 45%),
        #ffffff !important;
    border-top-color: rgba(0, 0, 0, 0.06) !important;
    border-bottom-color: rgba(0, 0, 0, 0.06) !important;
    color: #333 !important;
}

html.theme-light .about-us--elite .about-img-1::before,
html.theme-light .about-us--elite .about-img-2::before {
    border-color: rgba(0, 0, 0, 0.1) !important;
}

html.theme-light .about-us--elite .about-elite-heading h2,
html.theme-light .about-us--elite .trusted-booking-content h3 {
    color: #111 !important;
}

html.theme-light .about-us--elite .about-elite-lead,
html.theme-light .about-us--elite .trusted-booking-content p {
    color: #444 !important;
}

html.theme-light .about-us--elite .about-elite-lead strong,
html.theme-light .about-us--elite .trusted-booking-content strong {
    color: #1f2937 !important;
}

html.theme-light .about-us--elite .about-trusted-booking {
    border-bottom-color: rgba(0, 0, 0, 0.08) !important;
}

html.theme-light .about-us--elite .about-trusted-booking .icon-box img {
    filter: none !important;
    opacity: 1 !important;
}

html.theme-light .about-us--elite .about-elite-cta {
    color: #111 !important;
}

html.theme-light .about-us--elite .about-elite-cta--wa {
    background: #ffffff;
    color: #111 !important;
    border-color: rgba(0, 0, 0, 0.12);
}

html.theme-light .about-us--elite .about-elite-cta--wa:hover {
    background: rgba(37, 211, 102, 0.12);
    color: #111 !important;
}


/* =============================================================
   SHARED SECTION UTILITIES
   ============================================================= */
.section-title-block {
    margin-bottom: 52px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #0099ff;
    background: rgba(0, 153, 255, 0.1);
    border: 1px solid rgba(0, 153, 255, 0.25);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.section-main-title {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0 0 14px;
}

.section-main-title .text-accent,
.text-accent {
    color: #c8a84b;
}

.section-subtitle {
    font-size: 16px;
    color: #aaa;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
}

/* =============================================================
   BEST LUXURY CAR RENTAL — INTRO SECTION
   ============================================================= */
.elite-intro-section {
    background: #0d0d0d;
    padding: 80px 0;
    overflow: hidden;
}

.elite-intro-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Image column */
.elite-intro-img-col {
    position: relative;
}

.elite-intro-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.elite-intro-img-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.elite-intro-img-wrap:hover img {
    transform: scale(1.03);
}

.elite-intro-img-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #c8a84b, #f0ce6e);
    color: #000;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 7px;
    letter-spacing: 0.3px;
}

/* Floating cards */
.elite-float-card {
    position: absolute;
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    padding: 14px 20px;
    text-align: center;
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    min-width: 110px;
}

.elite-float-card.left-card {
    bottom: 30px;
    left: -20px;
}

.elite-float-card.right-card {
    top: 40px;
    right: -20px;
}

.elite-float-num {
    font-size: 24px;
    font-weight: 800;
    color: #c8a84b;
    line-height: 1;
}

.elite-float-label {
    font-size: 11px;
    color: #aaa;
    margin-top: 4px;
    font-weight: 500;
}

/* Text column */
.elite-intro-text-col {
    padding: 10px 0;
}

.elite-intro-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0099ff;
    margin-bottom: 16px;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    background: #0099ff;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.elite-intro-heading {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
    letter-spacing: -0.5px;
    margin: 0 0 20px;
}

.elite-intro-accent {
    display: block;
    color: #c8a84b;
}

.elite-intro-para {
    font-size: 15px;
    color: #aaa;
    line-height: 1.75;
    margin-bottom: 28px;
}

.elite-intro-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.elite-intro-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #ddd;
    font-weight: 500;
}

.elite-intro-checklist li i {
    color: #0099ff;
    font-size: 15px;
    flex-shrink: 0;
}

.elite-intro-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-elite-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25d366, #1da851);
    color: #fff !important;
    padding: 14px 26px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.3);
}

.btn-elite-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
    color: #fff !important;
}

.btn-elite-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff !important;
    padding: 13px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    border: 2px solid #333;
    transition: border-color 0.2s, background 0.2s;
}

.btn-elite-outline:hover {
    border-color: #0099ff;
    background: rgba(0, 153, 255, 0.08);
    color: #fff !important;
}

/* Responsive */
@media (max-width: 991px) {
    .elite-intro-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .elite-intro-heading {
        font-size: 30px;
    }

    .elite-intro-img-wrap img {
        height: 320px;
    }

    .elite-float-card.left-card {
        left: 10px;
    }

    .elite-float-card.right-card {
        right: 10px;
    }
}


/* =============================================================
   BRANDS MARQUEE STRIP
   ============================================================= */
.brands-strip-section {
    background: #111;
    border-top: 1px solid #1e1e1e;
    border-bottom: 1px solid #1e1e1e;
    padding: 28px 0 24px;
    overflow: hidden;
}

.brands-strip-label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 20px;
}

.brands-marquee-wrap {
    overflow: hidden;
    position: relative;
}

.brands-marquee {
    display: flex;
    align-items: center;
    gap: 36px;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}

.brands-marquee:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brand-logo-item {
    flex-shrink: 0;
    width: 90px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: brightness(0) invert(0.5);
    transition: filter 0.3s;
}

.brand-logo-item:hover {
    filter: brightness(0) invert(1);
}

.brand-logo-item img {
    max-width: 90px;
    max-height: 50px;
    object-fit: contain;
}


/* =============================================================
   WHY CHOOSE ELITE RIDES — Nova / light template layout
   (center image + side icon rows, GSAP reveal + SplitText + WOW)
   ============================================================= */

.why-choose-us--elite {
    background:
        radial-gradient(ellipse 60% 90% at 20% 30%, rgba(0, 153, 255, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 55% 85% at 80% 70%, rgba(200, 168, 75, 0.08) 0%, transparent 60%),
        url("../html - light/images/why-choose-us-bg.svg") no-repeat center center;
    background-size: auto, auto, auto;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 100px 0;
    color: #e0e0e0;
}

.why-choose-us--elite .why-choose-section-row {
    margin-bottom: 60px;
}

.why-choose-us--elite .why-choose-heading {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 0;
}

.why-choose-us--elite .why-choose-heading h3 {
    display: inline-block;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2em;
    text-transform: capitalize;
    color: #c8a84b;
    padding-left: 25px;
    margin-bottom: 15px;
}

.why-choose-us--elite .why-choose-heading h3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url("../html - light/images/icon-sub-heading.svg") no-repeat left center;
    background-size: cover;
    width: 18px;
    height: 18px;
}

.why-choose-us--elite .why-choose-heading h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
    color: #fff;
}

.why-choose-us--elite .why-choose-item {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    padding-bottom: 45px;
    margin-bottom: 45px;
}

.why-choose-us--elite .why-choose-item:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.why-choose-us--elite .why-choose-item .icon-box {
    position: relative;
    padding: 5px 0 0 5px;
    margin-right: 20px;
    flex-shrink: 0;
}

.why-choose-us--elite .why-choose-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: #c8a84b;
    opacity: 0.1;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    z-index: 0;
    transition: all 0.5s ease-in-out;
}

.why-choose-us--elite .why-choose-item .icon-box img {
    position: relative;
    max-width: 32px;
    z-index: 1;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

.why-choose-us--elite .why-choose-content {
    width: calc(100% - 52px);
}

.why-choose-us--elite .why-choose-content h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
    color: #fff;
}

.why-choose-us--elite .why-choose-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #aab3c2;
}

.why-choose-us--elite .why-choose-image {
    position: relative;
    text-align: center;
}

.why-choose-us--elite .why-choose-image::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url("../html - light/images/why-choose-car-img.png") no-repeat bottom center;
    background-size: 100% auto;
    z-index: 1;
    pointer-events: none;
}

.why-choose-us--elite .why-choose-image img {
    aspect-ratio: 1 / 1.65;
    object-fit: cover;
    border-radius: 200px;
    width: 100%;
    max-width: 100%;
    vertical-align: middle;
}

/* GSAP image reveal (matches html - light) */
.why-choose-us--elite .reveal {
    position: relative;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
    max-width: 100%;
}

.why-choose-us--elite .reveal img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform-origin: left center;
}

@media (max-width: 991px) {
    .why-choose-us--elite {
        padding: 72px 0;
    }

    .why-choose-us--elite .why-choose-image {
        margin: 24px 0 40px;
    }
}

/* Light theme */
html.theme-light .why-choose-us--elite {
    background:
        radial-gradient(ellipse 60% 90% at 20% 30%, rgba(0, 153, 255, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 55% 85% at 80% 70%, rgba(200, 168, 75, 0.14) 0%, transparent 60%),
        url("../html - light/images/why-choose-us-bg.svg") no-repeat center center !important;
    border-top-color: rgba(0, 0, 0, 0.06) !important;
    border-bottom-color: rgba(0, 0, 0, 0.06) !important;
    color: #333 !important;
}

html.theme-light .why-choose-us--elite .why-choose-heading h2 {
    color: #111 !important;
}

html.theme-light .why-choose-us--elite .why-choose-item {
    border-bottom-color: rgba(0, 0, 0, 0.08) !important;
}

html.theme-light .why-choose-us--elite .why-choose-content h3 {
    color: #111 !important;
}

html.theme-light .why-choose-us--elite .why-choose-content p {
    color: #444 !important;
}

html.theme-light .why-choose-us--elite .why-choose-item .icon-box img {
    filter: none !important;
    opacity: 1 !important;
}

@media (prefers-reduced-motion: reduce){
    .why-choose-us--elite .why-choose-item .icon-box::before,
    .about-us--elite .about-trusted-booking .icon-box::before {
        transition: none !important;
    }
}


/* =============================================================
   STATS COUNTER ROW
   ============================================================= */
.stats-section {
    background: linear-gradient(135deg, #0a1628 0%, #0d0d0d 50%, #1a0e05 100%);
    padding: 60px 0;
    border-top: 1px solid #1e1e1e;
    border-bottom: 1px solid #1e1e1e;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 24px 20px;
    position: relative;
}

.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #2a2a2a;
}

.stat-number {
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff, #c8a84b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number span {
    font-size: 32px;
    color: #c8a84b;
    -webkit-text-fill-color: #c8a84b;
}

.stat-label {
    font-size: 13px;
    color: #888;
    font-weight: 500;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item + .stat-item::before {
        display: none;
    }

    .stat-number {
        font-size: 38px;
    }
}


/* =============================================================
   OUR COMMITMENT / AWARDS SECTION
   ============================================================= */
.fleet-showcase-section {
    background: #101114;
    padding: 88px 0;
}

.awards-head {
    max-width: 1080px;
    margin: 0 auto 44px;
}

.awards-main-title {
    color: #f2f3f7;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: 0.2px;
    margin: 0 0 18px;
}

.awards-main-sub {
    color: #a3a8b3;
    font-size: 15px;
    line-height: 1.9;
    margin: 0 auto 10px;
    max-width: 1020px;
}

.awards-commitment-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: flex-start;
}

.awards-left,
.awards-right {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
}

.awards-content-title {
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 14px;
    letter-spacing: 0.2px;
}

.awards-content-title i {
    color: #d9b45a;
    font-size: 0.72em;
    margin-right: 8px;
    vertical-align: middle;
}

.awards-content-text {
    color: #b3b8c2;
    font-size: 14px;
    line-height: 1.9;
    margin: 0 0 24px;
}

.awards-badge-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(96px, 1fr));
    gap: 18px;
    align-items: center;
}

.award-img{
    width: 100%;
    height: auto;
    max-width: 160px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 12px 22px rgba(0,0,0,0.22));
}

.awards-points-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.awards-points-list li {
    color: #eceef2;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 14px;
    position: relative;
    padding-left: 30px;
}

.awards-points-list li:last-child {
    margin-bottom: 0;
}

.awards-points-list i {
    color: #e1544f;
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 7px;
}

@media (max-width: 1199px) {
    .awards-main-title {
        font-size: 29px;
    }
    .awards-content-title {
        font-size: 33px;
    }
}

@media (max-width: 991px) {
    .fleet-showcase-section {
        padding: 70px 0;
    }
    .awards-commitment-wrap {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .awards-left,
    .awards-right {
        padding: 0;
    }
    .awards-main-title {
        font-size: 24px;
    }
    .awards-content-title {
        font-size: 28px;
    }
    .awards-points-list li {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .awards-badge-grid {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }
    .award-img{ max-width: 170px; }
    .awards-main-sub {
        font-size: 14px;
        line-height: 1.8;
    }
    .awards-content-title {
        font-size: 24px;
    }
}


/* =============================================================
   FLEXIBLE RENTAL PLANS
   ============================================================= */
.plans-section {
    background: #0d0d0d;
    padding: 90px 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.plan-card {
    background: #151515;
    border: 1px solid #222;
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.plan-card--featured {
    background: linear-gradient(160deg, #181818 0%, #1a1500 100%);
    border-color: #c8a84b;
    box-shadow: 0 0 0 1px rgba(200, 168, 75, 0.15), 0 20px 60px rgba(0, 0, 0, 0.4);
}

.plan-featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #c8a84b, #f0ce6e);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.plan-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 153, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #0099ff;
    margin: 0 auto 20px;
}

.plan-card--featured .plan-icon {
    background: rgba(200, 168, 75, 0.15);
    color: #c8a84b;
}

.plan-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
}

.plan-desc {
    font-size: 14px;
    color: #888;
    line-height: 1.65;
    margin: 0 0 22px;
}

.plan-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.plan-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #bbb;
}

.plan-perks li i {
    color: #0099ff;
    font-size: 12px;
    flex-shrink: 0;
}

.plan-card--featured .plan-perks li i {
    color: #c8a84b;
}

.plan-cta {
    display: inline-block;
    background: #0099ff;
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: background 0.2s, transform 0.2s;
}

.plan-card--featured .plan-cta {
    background: linear-gradient(135deg, #c8a84b, #d4a843);
    color: #000 !important;
}

.plan-cta:hover {
    transform: translateY(-2px);
    background: #007acc;
    color: #fff !important;
}

.plan-card--featured .plan-cta:hover {
    background: #d4a843;
    color: #000 !important;
}

@media (max-width: 991px) {
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}


/* =============================================================
   DOCUMENTS REQUIRED
   ============================================================= */
.docs-section {
    background: #111;
    padding: 80px 0;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

.docs-card {
    background: #151515;
    border: 1px solid #222;
    border-radius: 18px;
    padding: 32px 28px;
    transition: border-color 0.25s;
}

.docs-card:hover {
    border-color: #333;
}

.docs-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.docs-card-header i {
    font-size: 24px;
    color: #0099ff;
    flex-shrink: 0;
}

.docs-card-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.docs-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.doc-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 153, 255, 0.08);
    border: 1px solid rgba(0, 153, 255, 0.2);
    color: #ccc;
    padding: 9px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s, border-color 0.2s;
}

.doc-pill:hover {
    background: rgba(0, 153, 255, 0.15);
    border-color: rgba(0, 153, 255, 0.4);
}

.doc-pill i {
    font-size: 12px;
    color: #0099ff;
}

@media (max-width: 768px) {
    .docs-grid {
        grid-template-columns: 1fr;
    }
}


/* =============================================================
   FAQ SECTION
   ============================================================= */
.faq-section {
    background: #0d0d0d;
    padding: 80px 0;
}

.faq-container {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #151515;
    border: 1px solid #222;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.25s;
}

.faq-item.open {
    border-color: rgba(0, 153, 255, 0.35);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    text-align: left;
    transition: color 0.2s;
}

.faq-question:hover {
    color: #0099ff;
}

.faq-icon {
    font-size: 13px;
    color: #555;
    flex-shrink: 0;
    transition: transform 0.3s, color 0.2s;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
    color: #0099ff;
}

.faq-answer {
    display: none;
    padding: 0 24px 20px;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 14px;
    color: #999;
    line-height: 1.75;
    margin: 0;
    border-top: 1px solid #1e1e1e;
    padding-top: 16px;
}


/* =============================================================
   REVIEWS SECTION
   ============================================================= */
.reviews-section {
    background: #111;
    padding: 80px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 52px;
}

.review-card {
    background: #151515;
    border: 1px solid #1e1e1e;
    border-radius: 18px;
    padding: 6px 24px;
    transition: transform 0.25s, box-shadow 0.25s;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.review-card--featured {
    border-color: #c8a84b;
    background: linear-gradient(160deg, #181818, #1a1500);
}

.review-stars {
    font-size: 18px;
    color: #c8a84b;
    margin-bottom: 14px;
    letter-spacing: 3px;
}

.review-text {
    font-size: 14px;
    color: #aaa;
    line-height: 1.7;
    margin: 0 0 22px;
    font-style: italic;
}

/* =============================================================
   GOOGLE REVIEWS SLIDER (index)
   ============================================================= */
.grw{
    margin-top: 34px;
}
.grw-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 14px;
    margin-bottom: 14px;
}
.grw-summary{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 12px;
    flex: 1 1 auto;
}
.grw-brand{
    display:flex;
    align-items:center;
    gap: 10px;
    color: #e9edf5;
    font-weight: 700;
    font-size: 14px;
}
.grw-brand i{
    color: #4285F4;
    font-size: 20px;
}
.grw-meta{
    display:flex;
    align-items:center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content:flex-end;
}
.grw-rating{
    color:#fff;
    font-weight: 800;
    font-size: 14px;
}
.grw-count{
    color:#9aa2b1;
    font-size: 13px;
    font-weight: 600;
}
.grw-controls{
    display:flex;
    gap: 8px;
    flex: 0 0 auto;
}
.grw-btn{
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.06);
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition: background .15s, transform .15s;
}
.grw-btn:hover{
    background: rgba(255,255,255,0.10);
    transform: translateY(-1px);
}
.grw-viewport{
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    border-radius: 18px;
    outline: none;
}
.grw-track{
    display:flex;
    gap: 14px;
    padding: 6px 2px 14px;
}
.grw-card{
    scroll-snap-align: start;
    min-width: 330px;
    max-width: 360px;
    background: #151515;
    border: 1px solid #1e1e1e;
    border-radius: 18px;
    padding: 16px 16px 18px;
}
.grw-card-head{
    display:flex;
    align-items:center;
    gap: 12px;
    margin-bottom: 10px;
}
.grw-avatar{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow:hidden;
    flex:0 0 auto;
    background: rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
}
.grw-avatar img{ width:100%; height:100%; object-fit:cover; display:block; }
.grw-avatar-fallback{
    color:#fff;
    font-weight:800;
}
.grw-who{ flex:1 1 auto; min-width: 0; }
.grw-name{
    color:#fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.grw-time{
    color:#9097a6;
    font-size: 12px;
    font-weight: 600;
    margin-top: 3px;
}
.grw-stars{
    color:#f5c542;
    font-size: 14px;
    letter-spacing: 0.6px;
    flex:0 0 auto;
}
.grw-text{
    color:#cfd5df;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.grw-foot{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: wrap;
}
.grw-link{
    color:#c8a84b;
    font-weight: 700;
    font-size: 13px;
}
.grw-status{
    color:#8892a5;
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 991px){
    .grw-card{ min-width: 78vw; max-width: 86vw; }
    .grw-controls{ display:none; } /* swipe on mobile */
}

html.theme-light .grw-brand{ color:#111; }
html.theme-light .grw-rating{ color:#111; }
html.theme-light .grw-count{ color:#666; }
html.theme-light .grw-btn{
    border-color: rgba(0,0,0,0.10);
    background: rgba(0,0,0,0.04);
    color:#111;
}
html.theme-light .grw-btn:hover{ background: rgba(0,0,0,0.07); }
html.theme-light .grw-card{
    background:#ffffff;
    border-color:#eee;
    box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}
html.theme-light .grw-name{ color:#111; }
html.theme-light .grw-time{ color:#666; }
html.theme-light .grw-text{ color:#333 !important; }

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #0099ff, #0066cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.review-card--featured .reviewer-avatar {
    background: linear-gradient(135deg, #c8a84b, #d4a843);
    color: #000;
}

.reviewer-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.reviewer-location {
    font-size: 12px;
    color: #666;
}

/* Rating badges */
.rating-badge-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #151515;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 20px 28px;
    min-width: 240px;
}

.rating-badge-icon {
    font-size: 36px;
    color: #4285f4;
    flex-shrink: 0;
}

.rating-badge-score {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.rating-badge-stars {
    font-size: 14px;
    color: #c8a84b;
    letter-spacing: 2px;
    margin: 3px 0 2px;
}

.rating-badge-count {
    font-size: 12px;
    color: #666;
}

@media (max-width: 991px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto 40px;
    }
}


/* =============================================================
   CTA BANNER SECTION
   ============================================================= */
.cta-banner-section {
    background: linear-gradient(135deg, #090f1a 0%, #0d0d0d 100%);
    overflow: hidden;
}

.cta-banner-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 380px;
}

.cta-banner-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 350px;
}

.cta-banner-text-side {
    padding: 60px 60px;
}

.cta-banner-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #c8a84b;
    margin-bottom: 12px;
}

.cta-banner-heading {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 14px;
}

.cta-banner-sub {
    font-size: 15px;
    color: #888;
    margin: 0 0 30px;
    line-height: 1.6;
}

.cta-banner-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-cta-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25d366, #1da851);
    color: #fff !important;
    padding: 14px 26px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.3);
    transition: transform 0.2s;
}

.btn-cta-wa:hover {
    transform: translateY(-2px);
    color: #fff !important;
}

.btn-cta-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff !important;
    padding: 13px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    border: 2px solid #333;
    transition: border-color 0.2s;
}

.btn-cta-call:hover {
    border-color: #0099ff;
    color: #fff !important;
}

@media (max-width: 991px) {
    .cta-banner-inner {
        grid-template-columns: 1fr;
    }

    .cta-banner-img-side img {
        min-height: 220px;
        max-height: 280px;
    }

    .cta-banner-text-side {
        padding: 44px 24px;
    }

    .cta-banner-heading {
        font-size: 26px;
    }
}


/* =============================================================
   PREMIUM FOOTER
   ============================================================= */
.elite-footer {
    background: #080808;
    border-top: 1px solid #1a1a1a;
}

/* Footer Top */
.footer-top {
    padding: 70px 0 50px;
    border-bottom: 1px solid #1a1a1a;
}

.footer-top-inner {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 48px;
}

/* Brand column */
.footer-logo-link {
    display: inline-block;
    margin-bottom: 18px;
}

.footer-logo {
    width: 140px;
    height: auto;
    filter: brightness(1);
    max-height: 65px;
    object-fit: contain;
}

.footer-brand-tagline {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    margin: 0 0 22px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}

a.footer-contact-item:hover {
    color: #0099ff;
}

.footer-contact-item i {
    font-size: 14px;
    color: #444;
    width: 16px;
    flex-shrink: 0;
}

a.footer-contact-item:hover i {
    color: #0099ff;
}

/* Social Row */
.footer-social-row {
    display: flex;
    gap: 10px;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666 !important;
    font-size: 15px;
    text-decoration: none !important;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.footer-social-btn:hover {
    background: #0099ff;
    border-color: #0099ff;
    color: #fff !important;
}

/* Link columns */
.footer-col-heading {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #1e1e1e;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links-list li a {
    font-size: 13px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
    display: block;
}

.footer-links-list li a:hover {
    color: #0099ff;
    padding-left: 5px;
}

/* Footer WA CTA */
.footer-wa-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25d366, #1da851);
    color: #fff !important;
    padding: 11px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
    margin-top: 4px;
}

.footer-wa-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    color: #fff !important;
}

/* Footer Bottom */
.footer-bottom {
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom-copy {
    font-size: 13px;
    color: #444;
}

.footer-bottom-copy strong {
    color: #666;
}

.footer-bottom-dev {
    font-size: 13px;
    color: #444;
}

.footer-dev-link {
    color: #0099ff !important;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-dev-link:hover {
    color: #c8a84b !important;
}

/* Footer responsive */
@media (max-width: 1100px) {
    .footer-top-inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 680px) {
    .footer-top-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-top {
        padding: 48px 0 36px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .section-main-title {
        font-size: 26px;
    }
}


/* ╔══════════════════════════════════════════════════════════════╗
   ║  ELITE RIDES — GLOBAL ANIMATION SYSTEM                      ║
   ║  Powered by animations.js + IntersectionObserver            ║
   ╚══════════════════════════════════════════════════════════════╝ */

/* ──────────────────────────────────────────────────────────────
   1. KEYFRAME DEFINITIONS
   ────────────────────────────────────────────────────────────── */

@keyframes er-fadeUp {
    from { opacity: 0; transform: translateY(36px); }
    to   { opacity: 1; transform: translateY(0);    }
}

@keyframes er-fadeDown {
    from { opacity: 0; transform: translateY(-32px); }
    to   { opacity: 1; transform: translateY(0);     }
}

@keyframes er-fadeLeft {
    from { opacity: 0; transform: translateX(44px); }
    to   { opacity: 1; transform: translateX(0);    }
}

@keyframes er-fadeRight {
    from { opacity: 0; transform: translateX(-44px); }
    to   { opacity: 1; transform: translateX(0);     }
}

@keyframes er-zoomIn {
    from { opacity: 0; transform: scale(0.88); }
    to   { opacity: 1; transform: scale(1);    }
}

@keyframes er-flipX {
    from { opacity: 0; transform: rotateX(-25deg) translateY(24px); }
    to   { opacity: 1; transform: rotateX(0)      translateY(0);    }
}

@keyframes er-ripple-burst {
    from { opacity: 0.45; transform: scale(0);    }
    to   { opacity: 0;    transform: scale(2.2);  }
}

@keyframes er-wa-ring {
    0%   { box-shadow: 0 0 0 0    rgba(37,211,102,.6); }
    70%  { box-shadow: 0 0 0 20px rgba(37,211,102,0);  }
    100% { box-shadow: 0 0 0 0    rgba(37,211,102,0);  }
}

@keyframes er-gold-glow {
    0%,100% { box-shadow: 0 0 8px  rgba(200,164,90,.25); }
    50%      { box-shadow: 0 0 22px rgba(200,164,90,.55); }
}

@keyframes er-shimmer-slide {
    0%   { background-position: -200% center; }
    100% { background-position:  200% center; }
}

@keyframes er-float {
    0%,100% { transform: translateY(0);    }
    50%      { transform: translateY(-8px); }
}

@keyframes er-pulse-scale {
    0%,100% { transform: scale(1);    }
    50%      { transform: scale(1.04); }
}

/* ──────────────────────────────────────────────────────────────
   2. PRE-ANIMATE STATE  (hidden before reveal)
      Applied by animations.js via data-animate attribute.
   ────────────────────────────────────────────────────────────── */

[data-animate] {
    opacity: 0;
    will-change: opacity, transform;
    transition:
        opacity   0.65s cubic-bezier(.4,0,.2,1),
        transform 0.65s cubic-bezier(.4,0,.2,1);
}

/* Individual initial positions */
[data-animate="fade-up"]    { transform: translateY(36px);  }
[data-animate="fade-down"]  { transform: translateY(-32px); }
[data-animate="fade-left"]  { transform: translateX(44px);  }
[data-animate="fade-right"] { transform: translateX(-44px); }
[data-animate="zoom-in"]    { transform: scale(0.88);         }
[data-animate="flip-x"]     { transform: rotateX(-25deg) translateY(24px); perspective: 800px; }

/* ── Revealed state ── */
[data-animate].anim-in {
    opacity: 1;
    transform: none !important;
}

/* ──────────────────────────────────────────────────────────────
   3. STICKY HEADER — scroll shadow
   ────────────────────────────────────────────────────────────── */
.main-header.scrolled {
    box-shadow: 0 4px 28px rgba(0,0,0,.65), 0 1px 0 rgba(200,164,90,.15) !important;
    transition: box-shadow .35s ease;
}

/* ──────────────────────────────────────────────────────────────
   4. BUTTON RIPPLE EFFECT
   ────────────────────────────────────────────────────────────── */
.btn-card-action,
.cf-submit-btn,
.btn-cta-primary,
.btn-cta-outline,
.btn-ab-primary,
.btn-ab-outline,
.hero-book-btn,
.footer-wa-cta {
    position: relative;
    overflow: hidden;
}

.er-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,.28);
    pointer-events: none;
    animation: er-ripple-burst .65s ease-out forwards;
    z-index: 0;
}

/* ──────────────────────────────────────────────────────────────
   5. WHATSAPP FLOAT — pulsing ring
   ────────────────────────────────────────────────────────────── */
.whatsapp-float.wa-pulse-ready {
    animation: er-wa-ring 2.4s ease-out infinite;
}

.whatsapp-float {
    transition: transform .3s ease, box-shadow .3s ease !important;
}

.whatsapp-float:hover {
    transform: scale(1.18) !important;
}

/* ──────────────────────────────────────────────────────────────
   6. CAR CARD  — enhanced hover animation
   ────────────────────────────────────────────────────────────── */
.car-card {
    transition:
        transform   .35s cubic-bezier(.4,0,.2,1),
        box-shadow  .35s cubic-bezier(.4,0,.2,1) !important;
}

.car-card:hover {
    transform: translateY(-7px) !important;
    box-shadow: 0 18px 48px rgba(0,0,0,.45), 0 0 0 1px rgba(200,164,90,.25) !important;
}

.car-card-img-wrap img {
    transition: transform .5s cubic-bezier(.4,0,.2,1) !important;
}

.car-card:hover .car-card-img-wrap img {
    transform: scale(1.06) !important;
}

/* ──────────────────────────────────────────────────────────────
   7. CATEGORY CARD  — hover lift + glow
   ────────────────────────────────────────────────────────────── */
.cat-card {
    transition: transform .3s ease !important;
}

.cat-card-link:hover .cat-card {
    transform: translateY(-5px) !important;
}

.cat-img {
    transition: transform .4s ease, filter .4s ease !important;
}

.cat-card-link:hover .cat-img {
    filter: brightness(1.12) !important;
}

/* ──────────────────────────────────────────────────────────────
   8. VALUE CARD / PROMISE BADGE / PROCESS STEP — hover lift
   ────────────────────────────────────────────────────────────── */
.value-card,
.promise-badge,
.process-step {
    transition: transform .3s ease, box-shadow .3s ease !important;
}

.value-card:hover,
.promise-badge:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 14px 38px rgba(0,0,0,.35) !important;
}

/* ──────────────────────────────────────────────────────────────
   9. HERO CAROUSEL SLIDE CONTENT — Ken Burns subtle zoom
   ────────────────────────────────────────────────────────────── */
.hero-carousel .carousel-item.active img {
    animation: er-pulse-scale 8s ease-in-out infinite;
}

/* ──────────────────────────────────────────────────────────────
   10. SECTION HEADINGS — shimmer on gold text
    ────────────────────────────────────────────────────────────── */
.head-gold {
    background: linear-gradient(
        90deg,
        #c8a84b 0%,
        #f0d080 45%,
        #c8a84b 55%,
        #c8a84b 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: er-shimmer-slide 4s linear infinite;
}

/* gold accent spans on contact/about pages */
.contact-hero-title .accent,
.contact-cta-title .gold,
.cf-title-accent,
.about-hero-title .accent {
    background: linear-gradient(90deg, #c8a45a 0%, #e8c878 45%, #c8a45a 55%, #c8a45a 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: er-shimmer-slide 4s linear infinite;
}

/* ──────────────────────────────────────────────────────────────
   11. FOOTER COLUMNS — stagger fade-in handled by JS delay
       Extra subtle underline hover on footer links
    ────────────────────────────────────────────────────────────── */
.footer-links-list li a {
    position: relative;
    display: inline-block;
}

.footer-links-list li a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -1px;
    width: 0; height: 1px;
    background: #c8a45a;
    transition: width .3s ease;
}

.footer-links-list li a:hover::after {
    width: 100%;
}

/* ──────────────────────────────────────────────────────────────
   12. HERO BOOK BUTTON — entrance animation on page load
    ────────────────────────────────────────────────────────────── */
.hero-book-btn {
    animation: er-fadeUp .8s .5s cubic-bezier(.4,0,.2,1) both;
}

/* ──────────────────────────────────────────────────────────────
   13. CONTACT FORM FIELDS — focus glow ring
    ────────────────────────────────────────────────────────────── */
.cf-field input:focus,
.cf-field textarea:focus,
.cf-field select:focus {
    animation: er-gold-glow 2s ease-in-out infinite;
}

/* ──────────────────────────────────────────────────────────────
   14. GALLERY ITEMS — zoom + overlay slide
    ────────────────────────────────────────────────────────────── */
.gallery-item {
    transition: transform .4s ease !important;
    overflow: hidden;
}

.gallery-item:hover {
    transform: scale(1.03) !important;
    z-index: 2;
}

/* ──────────────────────────────────────────────────────────────
   15. NAVIGATION LINKS — underline sweep
    ────────────────────────────────────────────────────────────── */
.main-nav-list > li > a {
    position: relative;
}

.main-nav-list > li > a::after {
    content: '';
    position: absolute;
    bottom: 6px; left: 12px; right: 12px;
    height: 2px;
    background: #c8a45a;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .3s ease;
}

.main-nav-list > li:hover > a::after,
.main-nav-list > li.current > a::after {
    transform: scaleX(1);
}

/* ──────────────────────────────────────────────────────────────
   16. SOCIAL BUTTONS (contact page) — hover float
    ────────────────────────────────────────────────────────────── */
.cip-social-btn {
    transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s ease !important;
}

.cip-social-btn:hover {
    transform: translateY(-6px) scale(1.14) !important;
    box-shadow: 0 10px 24px rgba(0,0,0,.4) !important;
}

/* ──────────────────────────────────────────────────────────────
   17. FAQ ITEMS — smooth height transition
    ────────────────────────────────────────────────────────────── */
.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height .45s cubic-bezier(.4,0,.2,1), opacity .35s ease, padding .35s ease;
    opacity: 0;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    opacity: 1;
}

/* Rotate FAQ chevron */
.faq-question .faq-icon {
    transition: transform .35s cubic-bezier(.4,0,.2,1);
}

.faq-item.open .faq-question .faq-icon {
    transform: rotate(180deg);
}

/* ──────────────────────────────────────────────────────────────
   18. STAT NUMBER — gold colour pulse on entrance
    ────────────────────────────────────────────────────────────── */
.stat-number {
    transition: color .3s ease;
}

.stat-item:hover .stat-number {
    animation: er-gold-glow 1.5s ease-in-out infinite;
}

/* ──────────────────────────────────────────────────────────────
   19. REDUCE MOTION — accessibility
    ────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    [data-animate],
    .car-card,
    .cat-card,
    .gallery-item,
    .hero-carousel .carousel-item.active img,
    .head-gold,
    .whatsapp-float,
    .er-ripple,
    .hero-book-btn {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* =============================================================
   THEME TOGGLE (Dark/Light) + LIGHT THEME OVERRIDES
   - Default stays DARK (current UI)
   - Light theme is opt-in via <html class="theme-light">
   ============================================================= */

.theme-toggle{
    border: 0;
    background: transparent;
    padding: 0;
    margin-left: 10px;
    line-height: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.theme-toggle-track{
    width: 46px;
    height: 26px;
    border-radius: 99px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    display: inline-flex;
    align-items: center;
    padding: 2px;
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.theme-toggle-knob{
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform: translateX(0);
    transition: transform .28s cubic-bezier(.22,.61,.36,1), background .25s ease, border-color .25s ease;
    box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}

.theme-ico{
    position: absolute;
    font-size: 12px;
    transition: opacity .2s ease, transform .28s cubic-bezier(.22,.61,.36,1);
    opacity: 0;
    transform: scale(.8);
}
.theme-ico-moon{ color: #9aa8b8; opacity: 1; transform: scale(1); }
.theme-ico-sun { color: #c8a84b; }

html.theme-light .theme-toggle-track{
    background: rgba(200,168,75,0.18);
    border-color: rgba(200,168,75,0.35);
    box-shadow: 0 0 0 3px rgba(200,168,75,0.12);
}
html.theme-light .theme-toggle-knob{
    transform: translateX(20px);
    background: #fff;
    border-color: rgba(0,0,0,0.08);
}
html.theme-light .theme-ico-moon{ opacity: 0; transform: scale(.8); }
html.theme-light .theme-ico-sun { opacity: 1; transform: scale(1); }

.theme-toggle:focus-visible .theme-toggle-track{
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,153,255,0.25);
}

.theme-toggle--mobile{ margin-left: 6px; }
@media (max-width: 575px){
    .theme-toggle-track{ width: 42px; height: 24px; }
    .theme-toggle-knob{ width: 20px; height: 20px; }
    html.theme-light .theme-toggle-knob{ transform: translateX(18px); }
}

/* -------- Light Theme (scoped overrides) -------- */
html.theme-light body{
    background-color: #ffffff !important;
    color: #111 !important;
}

html.theme-light .main-header{
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

html.theme-light nav.white-navbar{
    background: #ffffff;
}

html.theme-light .search-input{
    background: #f5f5f7;
    border-color: #e3e3e8;
    color: #111;
}
html.theme-light .search-input::placeholder{ color: #777; }
html.theme-light .search-icon{ fill: #777; }

html.theme-light .CallTag{
    background: #111;
    color: #fff !important;
}
html.theme-light .CallTag:hover{ background: #c8a84b; color:#111 !important; }
html.theme-light .CallTag i.fa-whatsapp{ color:#25d366; }
html.theme-light .CallTag:hover i{ color:#111 !important; }

html.theme-light .lang-toggle{
    background: #f5f5f7;
    border-color: #e3e3e8;
    color: #111;
}
html.theme-light .lang-dropdown{
    background: #ffffff;
    border-color: #e3e3e8;
}
html.theme-light .lang-dropdown li a{ color:#111; }
html.theme-light .lang-dropdown li a:hover{ color:#c8a84b; }

/* Desktop black nav becomes "gold on light" */
html.theme-light .black-nav{
    background: #ffffff;
    border-top: 1px solid #eee;
}
html.theme-light .main-nav-list>li>a{
    color: #111 !important;
}
html.theme-light .main-nav-list>li>a:hover,
html.theme-light .main-nav-list>li.current>a{
    color: #c8a84b !important;
}
html.theme-light .main-nav-list>li>a::after{
    background: #c8a84b;
}
html.theme-light .sub-menu{
    background: #ffffff;
}
html.theme-light .sub-menu li a{ color:#111; }
html.theme-light .sub-menu li a:hover{ color:#c8a84b; background:#f6f6f8; }

html.theme-light .btn-no-deposit{
    background: linear-gradient(135deg, #fed244, #c39230);
    color: #111 !important;
}

/* Hero */
html.theme-light .hero-section{ background:#ffffff; }
html.theme-light .hero-carousel .carousel-control-prev,
html.theme-light .hero-carousel .carousel-control-next{
    background: rgba(17,17,17,0.22);
}
html.theme-light .hero-book-btn{
    background: linear-gradient(135deg, #fed244, #c39230);
    color: #111 !important;
    box-shadow: 0 6px 22px rgba(200,168,75,0.35);
}
html.theme-light .hero-book-btn:hover{
    background: #c8a84b;
    color:#111 !important;
}
html.theme-light .hero-carousel .carousel-indicators li.active{ background:#c8a84b; }

/* Headings */
html.theme-light .best-rental-head .head-black{ color:#111; }
html.theme-light .best-rental-head .head-gold{ color:#c8a84b; }

/* Category grid on light */
html.theme-light .cat-label{ color:#111; }
html.theme-light .cat-label-sm{ color:#1f66ff; }

/* Car cards */
html.theme-light .section-title{ color:#111 !important; }
html.theme-light .section-header .section-title{ color:#111 !important; }
html.theme-light .car-card{ background:#ffffff; border:1px solid #eee; box-shadow: 0 6px 18px rgba(0,0,0,0.08); }
html.theme-light .car-card-header,
html.theme-light .car-card-price,
html.theme-light .car-card-perks{ background:#f7f7fa; }
html.theme-light .car-brand-name{ color:#111; }
html.theme-light .car-model-name{ color:#c8a84b; }
html.theme-light .perk-item{ color:#333; }
html.theme-light .btn-whatsapp{ background:#111; }
html.theme-light .btn-call{ background:#222; }
html.theme-light .btn-inquire{ background: linear-gradient(135deg, #fed244, #c39230); color:#111 !important; }

/* Footer */
html.theme-light .elite-footer{ background:#ffffff; border-top:1px solid #eee; }
html.theme-light .footer-top{ border-bottom:1px solid #eee; }
html.theme-light .footer-brand-tagline,
html.theme-light .footer-contact-item,
html.theme-light .footer-links-list li a,
html.theme-light .footer-bottom-copy,
html.theme-light .footer-bottom-dev{ color:#444 !important; }
html.theme-light .footer-col-heading{ color:#111; border-bottom:1px solid #eee; }
html.theme-light .footer-social-btn{
    background:#f5f5f7;
    border-color:#e3e3e8;
    color:#444 !important;
}
html.theme-light .footer-social-btn:hover{
    background:#c8a84b;
    border-color:#c8a84b;
    color:#111 !important;
}
html.theme-light .footer-wa-cta{
    background: linear-gradient(135deg, #fed244, #c39230);
    color:#111 !important;
}

/* Forms (Contact) */
html.theme-light .contact-form-wrap,
html.theme-light .contact-info-panel{
    background: #ffffff;
    border: 1px solid #eee;
}
html.theme-light .contact-form .cf-field input,
html.theme-light .contact-form .cf-field textarea,
html.theme-light .contact-form .cf-field select{
    background: #f7f7fa;
    border-color: #e3e3e8;
    color:#111;
}
html.theme-light .contact-form .cf-field label{ color:#111; }
html.theme-light .cf-submit-btn{
    background: linear-gradient(135deg, #fed244, #c39230);
    color:#111 !important;
}
html.theme-light .cip-title,
html.theme-light .cf-title{ color:#111; }
html.theme-light .cip-desc,
html.theme-light .cf-subtitle{ color:#444; }

/* About / Services / Contact page heroes */
html.theme-light .about-hero,
html.theme-light .services-hero,
html.theme-light .srv-hero,
html.theme-light .contact-hero{
    background:
        linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.86) 55%, rgba(200,168,75,0.16) 100%) !important;
}

html.theme-light .about-hero::before,
html.theme-light .about-hero::after,
html.theme-light .srv-hero::before,
html.theme-light .srv-hero::after,
html.theme-light .contact-hero::before,
html.theme-light .contact-hero::after{
    opacity: 0.12 !important;
}

html.theme-light .about-hero-title,
html.theme-light .contact-hero-title,
html.theme-light .srv-hero-title,
html.theme-light .services-hero-title{
    color:#111 !important;
}

html.theme-light .about-hero-sub,
html.theme-light .contact-hero-sub,
html.theme-light .srv-hero-sub{
    color:#444 !important;
}

html.theme-light .about-hero-eyebrow,
html.theme-light .contact-hero-eyebrow,
html.theme-light .srv-hero-eyebrow,
html.theme-light .ab-eyebrow,
html.theme-light .srv-eyebrow{
    color:#c8a84b !important;
    border-color: rgba(200,168,75,0.35) !important;
    background: rgba(200,168,75,0.12) !important;
}

html.theme-light .ab-title,
html.theme-light .srv-title{
    color:#111 !important;
}
html.theme-light .ab-desc,
html.theme-light .srv-desc{
    color:#444 !important;
}

/* Light mode sections that are explicitly dark in page CSS */
html.theme-light .ab-section-alt,
html.theme-light .gallery-section,
html.theme-light .why-us-section,
html.theme-light .srv-timeline-wrapper,
html.theme-light .srv-cards-section,
html.theme-light .srv-testimonial-strip,
html.theme-light .srv-process-section,
html.theme-light .srv-cta-section{
    background: #ffffff !important;
}

html.theme-light .mv-card,
html.theme-light .value-card,
html.theme-light .promise-badge,
html.theme-light .srv-zcard,
html.theme-light .srv-mini-card,
html.theme-light .srv-testi-card{
    background: #ffffff !important;
    border-color: #eee !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

html.theme-light .mv-card-title,
html.theme-light .value-card-title,
html.theme-light .promise-badge-title,
html.theme-light .srv-mini-title,
html.theme-light .srv-process-title{
    color:#111 !important;
}

html.theme-light .mv-card-text,
html.theme-light .value-card-text,
html.theme-light .promise-badge-text,
html.theme-light .srv-mini-text,
html.theme-light .srv-process-text,
html.theme-light .srv-testi-text{
    color:#444 !important;
}

/* Remaining global sections from main.css that are dark by default */
html.theme-light .elite-intro-section,
html.theme-light .brands-strip-section,
html.theme-light .stats-section,
html.theme-light .fleet-showcase-section,
html.theme-light .plans-section,
html.theme-light .docs-section,
html.theme-light .faq-section,
html.theme-light .reviews-section,
html.theme-light .cta-banner-section{
    background: #ffffff !important;
    border-color: #eee !important;
}

html.theme-light .elite-intro-heading,
html.theme-light .section-main-title,
html.theme-light .why-card-title,
html.theme-light .plan-title,
html.theme-light .docs-card-header h3,
html.theme-light .faq-question,
html.theme-light .reviewer-name,
html.theme-light .cta-banner-heading{
    color: #111 !important;
}

html.theme-light .elite-intro-para,
html.theme-light .section-subtitle,
html.theme-light .why-card-desc,
html.theme-light .plan-desc,
html.theme-light .doc-pill,
html.theme-light .faq-answer p,
html.theme-light .review-text,
html.theme-light .reviewer-location,
html.theme-light .cta-banner-sub,
html.theme-light .stat-label{
    color: #444 !important;
}

html.theme-light .why-card,
html.theme-light .plan-card,
html.theme-light .docs-card,
html.theme-light .faq-item,
html.theme-light .review-card,
html.theme-light .rating-badge{
    background: #ffffff !important;
    border-color: #eee !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

html.theme-light .awards-main-title{
    color: #2c2c2c !important;
}
html.theme-light .awards-main-sub{
    color: #5a5a5a !important;
}
html.theme-light .awards-left,
html.theme-light .awards-right{
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none;
}
html.theme-light .awards-content-title{
    color: #111 !important;
}
html.theme-light .awards-content-text{
    color: #555 !important;
}
html.theme-light .awards-points-list li{
    color: #252525 !important;
}

html.theme-light .award-img{
    filter: drop-shadow(0 10px 18px rgba(0,0,0,0.14));
}

html.theme-light .stat-number{
    -webkit-text-fill-color: #111 !important;
    background: none !important;
    color:#111 !important;
}
html.theme-light .stat-number span{
    -webkit-text-fill-color: #c8a84b !important;
    color:#c8a84b !important;
}

/* Contact page remaining sections (strip + panels) */
html.theme-light .contact-info-strip,
html.theme-light .contact-main-section,
html.theme-light .contact-cta-strip{
    background: #ffffff !important;
    border-color: #eee !important;
}
html.theme-light .cis-label,
html.theme-light .cis-value,
html.theme-light .cip-detail-label,
html.theme-light .cip-detail-value,
html.theme-light .cip-social-label{
    color:#111 !important;
}
html.theme-light .cis-item,
html.theme-light .cip-detail-item{
    background: #ffffff !important;
    border-color: #eee !important;
}

/* ── About Elite Rides section (Nova) ── */
html.theme-light .about-us--elite .about-elite-heading h3 {
    color: #c8a84b !important;
}

/* ── Best Luxury / Elite Intro section ── */
html.theme-light .elite-intro-section {
    background: #ffffff !important;
}

html.theme-light .elite-intro-eyebrow,
html.theme-light .elite-intro-eyebrow span {
    color: #0099ff !important;
}

html.theme-light .elite-intro-heading {
    color: #111 !important;
}

html.theme-light .elite-intro-accent {
    color: #c8a84b !important;
}

html.theme-light .elite-intro-para {
    color: #444 !important;
}

html.theme-light .elite-intro-checklist li {
    color: #333 !important;
}

html.theme-light .elite-intro-checklist li i {
    color: #0099ff !important;
}

html.theme-light .elite-float-card {
    background: rgba(255, 255, 255, 0.95) !important;
    border-color: #e3e3e8 !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10) !important;
}

html.theme-light .elite-float-num {
    color: #c8a84b !important;
}

html.theme-light .elite-float-label {
    color: #666 !important;
}

html.theme-light .elite-intro-img-badge {
    background: rgba(255, 255, 255, 0.92) !important;
    color: #111 !important;
    border-color: #e3e3e8 !important;
}

/* ── Section shared titles (reviews, FAQ, plans, etc.) ── */
html.theme-light .section-eyebrow {
    color: #0099ff !important;
    background: rgba(0, 153, 255, 0.08) !important;
    border-color: rgba(0, 153, 255, 0.2) !important;
}

html.theme-light .section-main-title {
    color: #111 !important;
}

html.theme-light .text-accent {
    color: #c8a84b !important;
}

html.theme-light .section-subtitle {
    color: #555 !important;
}

/* ── Brands strip ── */
html.theme-light .brands-strip-section {
    background: #f8f8fa !important;
}

html.theme-light .brands-strip-label {
    color: #555 !important;
}

html.theme-light .brand-logo-item:hover {
    filter: none !important;
}

/* ── Google Reviews (grw) — cards and surroundings ── */
html.theme-light .reviews-section {
    background: #ffffff !important;
}

html.theme-light .grw-link {
    color: #0099ff !important;
}

html.theme-light .grw-status {
    color: #888 !important;
}

html.theme-light .rating-badge {
    background: #ffffff !important;
    border-color: #eee !important;
}

html.theme-light .rating-badge-score {
    color: #111 !important;
}

html.theme-light .rating-badge-label {
    color: #666 !important;
}

/* ── FAQ section ── */
html.theme-light .faq-section {
    background: #ffffff !important;
}

html.theme-light .faq-item {
    background: #ffffff !important;
    border-color: #eee !important;
}

html.theme-light .faq-question {
    color: #111 !important;
}

html.theme-light .faq-answer p {
    color: #444 !important;
}

/* ── CTA banner section ── */
html.theme-light .cta-banner-section {
    background: #f8f8fa !important;
}

html.theme-light .cta-banner-heading {
    color: #111 !important;
}

html.theme-light .cta-banner-sub {
    color: #555 !important;
}

/* ── Stats section ── */
html.theme-light .stats-section {
    background: #f5f5f7 !important;
    border-color: #eee !important;
}

/* ── Why Choose section (Nova) ── */
html.theme-light .why-choose-us--elite .why-choose-heading h3 {
    color: #c8a84b !important;
}

/* About page: process steps (make text visible on light bg) */
html.theme-light .process-step-title{ color:#111 !important; }
html.theme-light .process-step-text{ color:#444 !important; }
html.theme-light .process-step:not(:last-child)::after{
    background: linear-gradient(to bottom, rgba(0,153,255,0.35), transparent) !important;
}

/* Mobile hamburger visibility in light mode */
html.theme-light .navbar-toggler i{ color:#111 !important; }
html.theme-light .hamburger .hb-bar{ background:#111 !important; }

/* Outline/ghost buttons in light mode */
html.theme-light .btn-elite-outline,
html.theme-light .btn-cta-outline,
html.theme-light .btn-ab-outline,
html.theme-light .btn-srv-ghost{
    background: #ffffff !important;
    color: #111 !important;
    border-color: #d7d7de !important;
}
html.theme-light .btn-elite-outline:hover,
html.theme-light .btn-cta-outline:hover,
html.theme-light .btn-ab-outline:hover,
html.theme-light .btn-srv-ghost:hover{
    border-color: #c8a84b !important;
    color: #c8a84b !important;
    background: rgba(200,168,75,0.08) !important;
}

/* Listing pages (from css/car-card.css) */
html.theme-light .listing-page-header h1{ color:#111 !important; }
html.theme-light .listing-page-header .breadcrumb-bar{ color:#666 !important; }

/* CTA banner "Call Now" button on home */
html.theme-light .btn-cta-call{
    background: #ffffff !important;
    color: #111 !important;
    border-color: #d7d7de !important;
}
html.theme-light .btn-cta-call:hover{
    border-color: #c8a84b !important;
    background: rgba(200,168,75,0.08) !important;
    color: #c8a84b !important;
}
html.theme-light .rating-badge-score{
    color: #3d3d3d;
}

/* =============================================================
   CAR DETAILS PAGE
   ============================================================= */
.car-details-section{
    background: #111;
}
.car-gallery{
    background: #1e1e1e;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.car-gallery-main{
    background: #0f0f0f;
    padding: 10px;
}
.car-gallery-main img{
    width: 100%;
    height: clamp(260px, 34vw, 520px);
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 6px;
}
.car-gallery-thumbs{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    padding: 12px;
    background: #1a1a1a;
}
.car-thumb{
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.03);
    border-radius: 6px;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    transition: transform .15s ease, border-color .15s ease, filter .15s ease;
}
.car-thumb img{
    width: 100%;
    height: 64px;
    object-fit: cover;
    display: block;
}
.car-thumb:hover{ filter: brightness(1.06); transform: translateY(-1px); }
.car-thumb.is-active{ border-color: #0099ff; }

.car-details-card{
    background: #1e1e1e;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.car-details-title{
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: .5px;
    color: #fff;
}
.car-details-actions{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 8px 0 14px;
}
.car-details-actions .btn-card-action{
    border-radius: 6px;
    justify-content: center;
}
.car-details-price{
    background: #212529;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 10px 12px;
    margin: 0 0 14px;
}
.car-details-price--quote{
    text-align: center;
    padding: 14px 12px;
}
.car-details-get-quote{
    display: inline-block;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none !important;
    color: #fff !important;
    background: #0099ff;
    transition: filter 0.15s;
}
.car-details-get-quote:hover{
    filter: brightness(0.92);
    color: #fff !important;
}
.car-details-price-hint{
    margin: 10px 0 0;
    font-size: 12px;
    line-height: 1.5;
    color: #aaa;
}
.car-details-muted{
    color: #aaa !important;
    font-style: italic;
}
.car-details-desc p{
    color: #d5d5d5;
    font-size: 13px;
    line-height: 1.75;
    margin: 0 0 10px;
}
.car-details-h{
    margin: 12px 0 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
}
.car-details-list{
    margin: 0;
    padding-left: 18px;
    color: #d5d5d5;
    font-size: 13px;
    line-height: 1.7;
}

@media (max-width: 991px){
    .car-details-actions{ grid-template-columns: 1fr; }
    .car-gallery-thumbs{ grid-template-columns: repeat(5, 1fr); }
    .car-thumb img{ height: 58px; }
}
@media (max-width: 575px){
    .car-gallery-thumbs{ grid-template-columns: repeat(4, 1fr); }
}

/* Light theme overrides for car details */
html.theme-light .car-details-section{ background:#ffffff !important; }
html.theme-light .car-gallery,
html.theme-light .car-details-card{
    background:#ffffff !important;
    border-color:#e7e7ee !important;
    box-shadow: 0 10px 30px rgba(17,17,17,0.08) !important;
}
html.theme-light .car-gallery-main{ background:#f4f4f7 !important; }
html.theme-light .car-gallery-thumbs{ background:#ffffff !important; }
html.theme-light .car-thumb{
    background:#ffffff !important;
    border-color:#e3e3e8 !important;
}
html.theme-light .car-thumb.is-active{ border-color:#c8a84b !important; }
html.theme-light .car-details-title,
html.theme-light .car-details-h{ color:#111 !important; }
html.theme-light .car-details-desc p,
html.theme-light .car-details-list{ color:#444 !important; }
html.theme-light .car-details-price{
    background:#f7f7fa !important;
    border-color:#e3e3e8 !important;
}
html.theme-light .car-details-price-hint,
html.theme-light .car-details-muted{ color:#666 !important; }

/* =============================================================
   ELITE CUSTOM CURSOR — theme tint (Nova / html - light)
   ============================================================= */
.cb-cursor:before {
    background: #0099ff;
}

@media (hover: hover) and (pointer: fine) {
    body.elite-magic-cursor-active {
        cursor: none;
    }
    body.elite-magic-cursor-active input,
    body.elite-magic-cursor-active textarea,
    body.elite-magic-cursor-active select {
        cursor: text !important;
    }
}

/* =============================================================
   CARS-ALL — Nova car-type layout + page header (cars-all.html)
   ============================================================= */
.page-cars-listing .er-page-header,
.page-nova-contact .er-page-header {
    position: relative;
    background: url("assets/images/car-types.jpg") no-repeat center center;
    background-size: cover;
    border-radius: 24px;
    max-width: 1320px;
    margin: 24px auto 0;
    padding: 96px 24px 112px;
    overflow: hidden;
}

.page-cars-listing .er-page-header::before,
.page-nova-contact .er-page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 12, 22, 0.9) 0%, rgba(0, 100, 160, 0.45) 100%);
    z-index: 0;
}

.page-cars-listing .er-page-header .container,
.page-nova-contact .er-page-header .container {
    position: relative;
    z-index: 1;
}

.page-cars-listing .er-page-header-box,
.page-nova-contact .er-page-header-box {
    text-align: center;
}

.page-cars-listing .er-page-header-box h1,
.page-nova-contact .er-page-header-box h1 {
    font-size: clamp(34px, 5.5vw, 62px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 18px;
    line-height: 1.1;
}

.page-cars-listing .er-page-header-box .breadcrumb,
.page-nova-contact .er-page-header-box .breadcrumb {
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.page-cars-listing .er-page-header-box .breadcrumb-item,
.page-nova-contact .er-page-header-box .breadcrumb-item {
    display: inline-flex;
    align-items: center;
    font-size: 17px;
    font-weight: 500;
    text-transform: capitalize;
    color: rgba(255, 255, 255, 0.92);
}

.page-cars-listing .er-page-header-box .breadcrumb-item a,
.page-nova-contact .er-page-header-box .breadcrumb-item a {
    color: inherit;
    text-decoration: none;
}

.page-cars-listing .er-page-header-box .breadcrumb-item.active,
.page-cars-listing .er-page-header-box .er-breadcrumb-current,
.page-nova-contact .er-page-header-box .breadcrumb-item.active {
    color: #c8a84b;
}

.page-cars-listing .er-page-header-box .breadcrumb-item + .breadcrumb-item::before,
.page-nova-contact .er-page-header-box .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.45);
}

.page-cars-listing .er-page-cars {
    padding: 72px 0 36px;
    background: #0b0f14;
}

.page-cars-listing .luxury-collection-item.luxury-car-type {
    position: relative;
    border-radius: 24px;
    width: 100%;
    overflow: hidden;
    min-height: 200px;
    height: calc(100% - 24px);
    margin-bottom: 24px;
}

.page-cars-listing .luxury-collection-image a {
    position: relative;
    display: block;
    cursor: none;
}

.page-cars-listing .luxury-collection-image a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(220deg, rgba(249, 192, 119, 0) 0.73%, rgba(4, 4, 1, 0.55) 90.71%);
    z-index: 1;
    pointer-events: none;
}

.page-cars-listing .luxury-collection-image img {
    width: 100%;
    aspect-ratio: 1 / 1.38;
    object-fit: cover;
    border-radius: 24px;
    transition: transform 0.5s ease-in-out;
    display: block;
}

.page-cars-listing .luxury-collection-item:hover .luxury-collection-image img {
    transform: scale(1.08);
}

.page-cars-listing .luxury-collection-title {
    position: absolute;
    top: 26px;
    left: 26px;
    right: 70px;
    z-index: 2;
    pointer-events: none;
}

.page-cars-listing .luxury-collection-title h2 {
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
    margin: 0;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.page-cars-listing .luxury-collection-btn {
    position: absolute;
    bottom: 26px;
    right: 26px;
    z-index: 2;
}

.page-cars-listing .luxury-collection-btn .section-icon-btn {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #c8a84b;
    border: none;
    transition: transform 0.35s ease, background 0.35s ease;
}

.page-cars-listing .luxury-collection-item:hover .luxury-collection-btn .section-icon-btn {
    background: #0099ff;
}

.page-cars-listing .luxury-collection-btn .section-icon-btn img {
    width: 15px;
    height: auto;
    filter: brightness(0);
    transition: transform 0.35s ease;
}

.page-cars-listing .luxury-collection-item:hover .luxury-collection-btn .section-icon-btn img {
    transform: rotate(45deg);
}

.page-cars-listing .cars-listing-fleet-section {
    background: linear-gradient(180deg, #080b10 0%, #111 45%, #0d0d0d 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 40px;
}

@media (max-width: 767px) {
    .page-cars-listing .luxury-collection-image a {
        cursor: pointer;
    }
}

html.theme-light .page-cars-listing .er-page-cars {
    background: #f4f5f7;
}

html.theme-light .page-cars-listing .er-page-header::before,
html.theme-light .page-nova-contact .er-page-header::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.82) 0%, rgba(200, 168, 75, 0.22) 100%);
}

html.theme-light .page-cars-listing .er-page-header-box h1,
html.theme-light .page-nova-contact .er-page-header-box h1 {
    color: #111;
}

html.theme-light .page-cars-listing .er-page-header-box .breadcrumb-item,
html.theme-light .page-nova-contact .er-page-header-box .breadcrumb-item {
    color: #333;
}

html.theme-light .page-cars-listing .er-page-header-box .breadcrumb-item + .breadcrumb-item::before,
html.theme-light .page-nova-contact .er-page-header-box .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(0, 0, 0, 0.35);
}

html.theme-light .page-cars-listing .cars-listing-fleet-section {
    background: #fff;
    border-top-color: rgba(0, 0, 0, 0.06);
}


/* =============================================================
   CONTACT US PAGE — Nova / light template layout (Elite themed)
   ============================================================= */

.nova-contact-us {
    padding: 60px 0 50px;
    background: #0d0d0d !important;
    color: #e0e0e0;
}

.nova-contact-card {
    background-color: #111 !important;
    background-image: url("../html - light/images/contact-form-plan.svg");
    background-repeat: no-repeat;
    background-position: bottom -10px right 50px;
    background-size: auto;
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 50px 35px;
}

.nova-contact-info {
    background: linear-gradient(135deg, #0a1628 0%, #0d1a2d 100%);
    background-image: url("../html - light/images/contact-information-bg.svg");
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: auto;
    border-radius: 30px;
    padding: 40px;
    margin-right: 30px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.nova-contact-info-title {
    margin-bottom: 60px;
}

.nova-contact-info-title h2 {
    font-size: clamp(26px, 3.4vw, 38px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.2;
}

.nova-contact-info-title p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin: 0;
}

.nova-contact-info-list {
    margin-bottom: 50px;
    flex: 1;
}

.nova-contact-info-item {
    display: flex;
    align-items: center;
    max-width: 360px;
    margin-bottom: 28px;
}

.nova-contact-info-item:last-child {
    margin-bottom: 0;
}

.nova-ci-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(200, 168, 75, 0.12);
    border: 1px solid rgba(200, 168, 75, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8a84b;
    font-size: 16px;
    flex-shrink: 0;
    margin-right: 16px;
    transition: all 0.3s ease;
}

.nova-ci-icon--wa   { background: rgba(37, 211, 102, 0.1); border-color: rgba(37, 211, 102, 0.25); color: #25d366; }
.nova-ci-icon--mail { background: rgba(66, 133, 244, 0.1); border-color: rgba(66, 133, 244, 0.25); color: #4285f4; }
.nova-ci-icon--loc  { background: rgba(230, 48, 34, 0.1);  border-color: rgba(230, 48, 34, 0.25);  color: #e63022; }

.nova-contact-info-item:hover .nova-ci-icon {
    transform: scale(1.12);
}

.nova-ci-content a,
.nova-ci-content p {
    color: #fff;
    font-size: 14px;
    margin: 0;
    text-decoration: none;
    line-height: 1.55;
    transition: color 0.2s ease;
}

.nova-ci-content a:hover {
    color: #c8a84b;
}

.nova-contact-social ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
}

.nova-contact-social ul li a {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.35);
    height: 38px;
    width: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 15px;
    text-decoration: none;
}

.nova-contact-social ul li a:hover {
    border-color: #c8a84b;
    color: #c8a84b;
}

/* Form side — uses !important to beat global html.theme-light body color override */
.nova-contact-form .form-group label {
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    color: rgba(255, 255, 255, 0.65) !important;
    margin-bottom: 6px;
    display: block;
}

.nova-contact-form .form-control {
    padding: 25px -1px;
    font-size: 14px;
    background: transparent !important;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 0;
    color: #fff !important;
    box-shadow: none;
    outline: none;
    font-family: inherit;
    transition: border-color 0.3s ease;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}

.nova-contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.25) !important;
    text-transform: capitalize;
}

.nova-contact-form .form-control:focus {
    border-bottom-color: #c8a84b !important;
}

.nova-contact-form select.form-control {
    cursor: pointer;
    background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(200,168,75,0.7)'/%3E%3C/svg%3E") no-repeat right 4px center !important;
    padding-right: 24px;
}

.nova-contact-form select.form-control option {
    background: #161616 !important;
    color: #fff !important;
}

.nova-contact-form-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.nova-btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    text-transform: capitalize;
    background: #c8a84b;
    color: #111;
    border: none;
    border-radius: 100px;
    padding: 14px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.nova-btn-submit:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(200, 168, 75, 0.3);
}

.nova-btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.nova-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    text-transform: capitalize;
    background: linear-gradient(135deg, #128c4a 0%, #25d366 100%);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 14px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.nova-btn-wa:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.3);
}

/* Validation + success (reuse existing classes) */
.nova-contact-form .cf-error {
    display: none;
    font-size: 12px;
    color: #ff6b5b;
    margin-top: 5px;
    font-weight: 500;
}

.nova-contact-form .cf-form-note {
    margin: 0 0 10px;
    padding: 10px 14px;
    font-size: 12px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.45) !important;
    background: rgba(200, 168, 75, 0.06) !important;
    border: 1px solid rgba(200, 168, 75, 0.2) !important;
    border-radius: 10px;
}

.nova-contact-form .cf-form-note i {
    color: #c8a84b !important;
    margin-right: 6px;
}

.nova-contact-form .cf-form-note strong {
    color: #e2c07a !important;
}

.nova-contact-form .cf-error-general {
    display: none;
    margin-top: 10px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #ffb4a8;
    background: rgba(230, 48, 34, 0.1);
    border: 1px solid rgba(230, 48, 34, 0.3);
    border-radius: 10px;
}

.nova-contact-form .cf-error-general.active {
    display: block;
}

.nova-contact-form .cf-success {
    display: none;
    align-items: flex-start;
    gap: 12px;
    margin-top: 14px;
    background: rgba(72, 187, 120, 0.08);
    border: 1.5px solid rgba(72, 187, 120, 0.4);
    border-radius: 10px;
    padding: 14px 18px;
    color: #68d391;
}

.nova-contact-form .cf-success.active {
    display: flex;
}

.nova-contact-form .cf-success i {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.nova-contact-form .cf-success strong {
    display: block;
    font-size: 14px;
    color: #9ae6b4;
    margin-bottom: 3px;
}

.nova-contact-form .cf-success p {
    margin: 0;
    font-size: 13px;
    color: rgba(155, 230, 175, 0.8);
}

/* Map section */
.nova-google-map {
    padding: 50px 0 100px;
    background: #0d0d0d !important;
}

.nova-map-section-row {
    margin-bottom: 40px;
}

.nova-map-heading {
    text-align: center;
}

.nova-map-heading h3 {
    display: inline-block;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    color: #c8a84b;
    padding-left: 25px;
    margin-bottom: 14px;
}

.nova-map-heading h3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url("../html - light/images/icon-sub-heading.svg") no-repeat left center;
    background-size: cover;
    width: 18px;
    height: 18px;
}

.nova-map-heading h2 {
    font-size: clamp(26px, 3.6vw, 40px);
    font-weight: 700;
    color: #fff !important;
    margin: 0;
    line-height: 1.15;
}

.nova-map-iframe {
    width: 100%;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.nova-map-iframe iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: brightness(0.85) contrast(1.05) saturate(0.85);
}

/* Responsive */
@media (max-width: 991px) {
    .nova-contact-us {
        padding: 60px 0 30px;
    }

    .nova-contact-card {
        background: none;
        padding: 30px 16px;
    }

    .nova-contact-info {
        padding: 30px;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .nova-contact-info-title {
        margin-bottom: 40px;
    }

    .nova-contact-info-list {
        margin-bottom: 40px;
    }

    .nova-google-map {
        padding: 30px 0 60px;
    }

    .nova-map-iframe {
        height: 360px;
    }
}

@media (max-width: 575px) {
    .nova-contact-card {
        padding: 20px 10px;
        border: none;
    }

    .nova-contact-info {
        padding: 24px;
    }

    .nova-contact-form-btns {
        flex-direction: column;
    }

    .nova-btn-submit,
    .nova-btn-wa {
        width: 100%;
        justify-content: center;
    }

    .nova-map-iframe {
        height: 280px;
        border-radius: 16px;
    }
}

/* Light theme — contact page (must use !important to beat the global body override) */
html.theme-light .nova-contact-us {
    background: #f5f5f7 !important;
}

html.theme-light .nova-contact-card {
    background-color: #ffffff !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

html.theme-light .nova-contact-info {
    background: #111827 !important;
}

html.theme-light .nova-contact-info-title h2,
html.theme-light .nova-ci-content a,
html.theme-light .nova-ci-content p,
html.theme-light .nova-contact-social ul li a {
    color: #fff !important;
}

html.theme-light .nova-contact-info-title p {
    color: rgba(255, 255, 255, 0.7) !important;
}

html.theme-light .nova-contact-form .form-group label {
    color: #333 !important;
}

html.theme-light .nova-contact-form .form-control {
    color: #111 !important;
    border-bottom-color: rgba(0, 0, 0, 0.12) !important;
    background: transparent !important;
}

html.theme-light .nova-contact-form .form-control::placeholder {
    color: rgba(0, 0, 0, 0.3) !important;
}

html.theme-light .nova-contact-form .form-control:focus {
    border-bottom-color: #c8a84b !important;
}

html.theme-light .nova-contact-form select.form-control {
    background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(0,0,0,0.35)'/%3E%3C/svg%3E") no-repeat right 4px center !important;
}

html.theme-light .nova-contact-form select.form-control option {
    background: #fff !important;
    color: #111 !important;
}

html.theme-light .nova-google-map {
    background: #f5f5f7 !important;
}

html.theme-light .nova-map-heading h3 {
    color: #c8a84b !important;
}

html.theme-light .nova-map-heading h2 {
    color: #111 !important;
}

html.theme-light .nova-map-iframe {
    border-color: rgba(0, 0, 0, 0.08) !important;
}

html.theme-light .nova-map-iframe iframe {
    filter: none !important;
}

html.theme-light .nova-contact-form .cf-form-note {
    color: #555 !important;
    background: rgba(200, 168, 75, 0.08) !important;
    border-color: rgba(200, 168, 75, 0.3) !important;
}

html.theme-light .nova-contact-form .cf-form-note strong {
    color: #8a6d2e !important;
}

html.theme-light .nova-contact-form .cf-error-general {
    color: #9b2c2c !important;
    background: rgba(230, 48, 34, 0.06) !important;
    border-color: rgba(230, 48, 34, 0.2) !important;
}

html.theme-light .nova-btn-submit {
    color: #111 !important;
}
