/* ─── GOOGLE FONTS IMPORT ───────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');


/* ─── RESET & TOKENS ─────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #ffce3c;
    --gold-h: #fcc110;
    --navy: #0B1340;
    --navy-mid: #172060;
    --white: #FFFFFF;
    --off: #F7F8FC;
    --border: #E8EAF0;
    --text: #111827;
    --muted: #6B7280;
    --light-muted: #9CA3AF;
    --sh-sm: 0 1px 4px rgba(0, 0, 0, .06);
    --sh-md: 0 4px 20px rgba(0, 0, 0, .09);
    --sh-lg: 0 16px 50px rgba(0, 0, 0, .14);
    --sh-xl: 0 32px 80px rgba(0, 0, 0, .18);
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;
    --font: 'Inter', sans-serif;
    --font-h: 'Plus Jakarta Sans', sans-serif;
    --ease: cubic-bezier(.4, 0, .2, 1);

    /* ── Unified Type Scale ── */
    --text-xs: 12px;
    /* labels, captions, badges, notes     */
    --text-sm: 13px;
    /* secondary text, muted descriptions  */
    --text-base: 15px;
    /* primary body copy                   */
    --text-md: 16px;
    /* slightly emphasized body, form text */
    --text-lg: 18px;
    /* card titles, subheadings            */
    --text-xl: 22px;
    /* stat numbers, accent callouts       */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: var(--text-base);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

img {
    display: block;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: var(--font);
    cursor: pointer;
}


/* ─── UTILITIES ─────────────────────────────── */
.eyebrow {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(240, 165, 0, .1);
    padding: 4px 12px;
    border-radius: 20px;
}

.eyebrow.light {
    background: rgba(240, 165, 0, .18);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 700;
    padding: 11px 22px;
    border-radius: var(--r-sm);
    border: none;
    transition: background .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--gold-h);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(240, 165, 0, .32);
}

.btn-primary.full {
    width: 100%;
    justify-content: center;
    padding: 13px;
    font-size: var(--text-md);
}

.btn-primary.large {
    padding: 14px 28px;
    font-size: var(--text-md);
}


/* ─── SHARED SECTION STYLES ─────────────────── */
.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.section-title {
    font-family: var(--font-h);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.section-title span {
    color: var(--gold);
}

.section-title.light {
    color: #fff;
}

.section-sub {
    font-size: var(--text-md);
    font-weight: 400;
    color: var(--muted);
    line-height: 1.75;
}

.section-desc {
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--muted);
    line-height: 1.8;
}

.section-desc.light {
    color: rgba(255, 255, 255, .68);
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── POPUP ──────────────────────────────────── */
.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(11, 19, 64, .55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: fadeIn .3s var(--ease);
}

.popup-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease);
}

.popup-box {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 860px;
    max-height: 94vh;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh-xl), 0 0 0 1px rgba(255, 255, 255, .08);
    animation: slideUp .4s cubic-bezier(.34, 1.56, .64, 1);
}

/* ── Close Button ── */
.popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 20;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .25s var(--ease);
    backdrop-filter: blur(6px);
    cursor: pointer;
}

.popup-close:hover {
    background: var(--gold);
    color: var(--navy);
    transform: rotate(90deg);
}

/* ── Form Side ── */
.popup-form-side {
    flex: 1;
    background: var(--white);
    padding: 40px 36px 36px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.popup-title {
    font-family: var(--font-h);
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--navy);
    margin: 10px 0 6px;
}

.popup-title span {
    color: var(--gold);
}

.popup-desc {
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.pf-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pf-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pf-field label {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--text);
    letter-spacing: .03em;
}

.pf-field input,
.pf-field select {
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--text);
    background: var(--off);
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
}

.pf-field input:focus,
.pf-field select:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(240, 165, 0, .1);
}

.pf-field input::placeholder {
    color: #bbb;
    font-size: var(--text-sm);
}

.pf-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

.pf-note {
    margin-top: 12px;
    font-size: var(--text-xs);
    font-weight: 400;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.pf-note i {
    color: var(--gold);
}

/* ── Photo Side ── */
.popup-photo-side {
    width: 300px;
    flex-shrink: 0;
    position: relative;
    background: var(--navy);
}

.popup-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .4;
}

.popup-photo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px 22px;
    background: linear-gradient(to top,
        rgba(11, 19, 64, .95) 0%,
        rgba(11, 19, 64, .5) 55%,
        transparent 100%);
}

.pp-brand {
    margin-bottom: 18px;
}

.pp-brand strong {
    display: block;
    color: #fff;
    font-family: var(--font-h);
    font-size: var(--text-lg);
    font-weight: 800;
}

.pp-brand span {
    color: rgba(255, 255, 255, .5);
    font-size: var(--text-sm);
    font-weight: 400;
}

.pp-feats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.ppf {
    color: rgba(255, 255, 255, .82);
    font-size: var(--text-sm);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ppf i {
    color: var(--gold);
    font-size: 12px;
}

.pp-stats {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pps {
    display: flex;
    flex-direction: column;
}

.pps strong {
    color: var(--gold);
    font-family: var(--font-h);
    font-size: var(--text-xl);
    font-weight: 800;
}

.pps span {
    color: rgba(255, 255, 255, .5);
    font-size: var(--text-xs);
    font-weight: 400;
}

.pps-div {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, .15);
}


/* ══════════════════════════════════════
   POPUP MEDIA QUERIES
══════════════════════════════════════ */
/* ══ POPUP — CENTERED ON ALL SCREENS ══ */

@media (max-width: 768px) {
    .popup-overlay {
        padding: 16px;
        align-items: center;        /* centered vertically */
        justify-content: center;
    }

    .popup-box {
        flex-direction: column;
        max-width: 480px;
        width: 100%;
        max-height: 92vh;
        border-radius: var(--r-xl);  /* rounded all sides — not bottom sheet */
        animation: slideUp .4s cubic-bezier(.34, 1.56, .64, 1);
    }

    /* Photo side becomes slim top banner */
    .popup-photo-side {
        width: 100%;
        height: 120px;
        flex-shrink: 0;
    }

    .popup-photo-overlay {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        padding: 14px 18px;
    }

    .pp-brand {
        margin-bottom: 0;
    }

    .pp-brand strong {
        font-size: var(--text-base);
    }

    /* Hide features — too cramped */
    .pp-feats {
        display: none;
    }

    .popup-form-side {
        padding: 24px 22px 28px;
        overflow-y: auto;
    }

    /* Keep 2-col row on tablet */
    .pf-row {
        grid-template-columns: 1fr 1fr;
    }

    .popup-close {
        top: 12px;
        right: 12px;
        background: rgba(0, 0, 0, 0.45);
        border: 1px solid rgba(255, 255, 255, .3);
        color: #fff;
    }

    .popup-close:hover {
        background: var(--gold);
        color: var(--navy);
        transform: rotate(90deg);
    }
}

@media (max-width: 520px) {
    .popup-overlay {
        padding: 12px;
    }

    .popup-box {
        max-width: 100%;
        max-height: 94vh;
    }

    .popup-photo-side {
        height: 90px;
    }

    /* Hide stats on small screens */
    .pp-stats {
        display: none;
    }

    .popup-form-side {
        padding: 20px 16px 26px;
    }

    .popup-title {
        font-size: 20px;
    }

    .popup-desc {
        font-size: var(--text-xs);
        margin-bottom: 16px;
    }

    /* Single column on mobile */
    .pf-row {
        grid-template-columns: 1fr;
    }

    .pf-field input,
    .pf-field select {
        padding: 12px 14px;
        font-size: var(--text-md);
    }
}

@media (max-width: 360px) {
    .popup-overlay {
        padding: 10px;
    }

    .popup-photo-side {
        height: 70px;
    }

    .popup-form-side {
        padding: 16px 14px 22px;
    }

    .popup-title {
        font-size: 18px;
    }
}


/* ─── HEADER ─────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    transition: background .3s var(--ease), backdrop-filter .3s var(--ease),
        box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-color: rgba(232, 234, 240, 0.5);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 66px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

/* ── Left ── */
.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ── Hamburger — hidden on desktop ── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
    border-radius: var(--r-sm);
    cursor: pointer;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all .25s var(--ease);
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Logo ── */
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo img {
    height: 42px;
    width: auto;
    display: block;
}

.site-logo-text {
    font-family: var(--font-h);
    font-size: 1.2rem;          /* ← Increased from var(--text-base) */
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    white-space: nowrap;
}

.site-logo-text em {
    font-style: normal;
    color: var(--gold);
}

/* ── Center Nav ── */
.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.sn-link {
    color: var(--text);
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--r-sm);
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color .18s var(--ease);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
}

.sn-link:hover {
    color: var(--navy);
    font-weight: 600;
}

.sn-link.active {
    color: var(--gold);
    font-weight: 700;
}

/* Hide Contact Us link on desktop nav — only shown in mobile menu */
.sn-contact-mobile {
    display: none;
}

/* ── Right: desktop quick contact + Contact button ── */
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: end;
}

/* ── Quick Contact Icons (desktop) ── */
.header-quick-contact {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hqc-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    font-size: 14px;
    text-decoration: none;
    transition: background .2s var(--ease), transform .2s var(--ease);
    flex-shrink: 0;
}

.hqc-link:hover {
    background: var(--gold-h);
    transform: scale(1.1);
}

/* Tooltip */
.hqc-tooltip {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    padding: 5px 10px;
    border-radius: var(--r-sm);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s var(--ease), visibility .2s var(--ease), top .2s var(--ease);
    z-index: 999;
}

/* Arrow above tooltip */
.hqc-tooltip::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-bottom-color: var(--navy);
}

.hqc-link:hover .hqc-tooltip {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 6px);
}

/* ── Mobile call icon — hidden on desktop ── */
.header-call-mobile {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    font-size: 15px;
    text-decoration: none;
    flex-shrink: 0;
    transition: background .2s var(--ease);
}

.header-call-mobile:hover {
    background: var(--gold-h);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .sn-link { padding: 8px 10px; }
    .header-inner { gap: 16px; }

    .site-logo-text {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {

    /* Header: [hamburger+logo] [auto] [call-icon] */
    .header-inner {
        grid-template-columns: 1fr auto auto;
        padding: 0 16px;
        gap: 10px;
    }

    /* Show hamburger */
    .hamburger {
        display: flex;
    }

    /* Hide desktop nav by default */
    .site-nav {
        display: none;
    }

    /* Hide desktop right section */
    .header-right {
        display: none;
    }

    /* Show mobile call icon in header */
    .header-call-mobile {
        display: flex;
    }

    /* Mobile dropdown nav */
    .site-nav.open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: fixed;
        top: 66px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border);
        padding: 10px 16px 16px;
        gap: 2px;
        z-index: 800;
        box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
        animation: slideDown .25s var(--ease);
    }

    /* All nav links in mobile menu */
    .sn-link {
        padding: 13px 14px;
        font-size: var(--text-md);
        width: 100%;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
    }

    .sn-link:last-child {
        border-bottom: none;
    }

    /* Show Contact Us inside mobile menu */
    .sn-contact-mobile {
        display: flex;
        margin-top: 8px;
        background: var(--gold);
        color: var(--navy);
        font-weight: 700;
        border-radius: var(--r-sm);
        padding: 14px 16px;
        justify-content: center;
        border-bottom: none !important;
        transition: background .2s var(--ease);
    }

    .sn-contact-mobile:hover {
        background: var(--gold-h);
        color: var(--navy);
    }

    .sn-contact-mobile i {
        font-size: 14px;
    }

    .site-logo-text {
        font-size: 1rem;
    }
}

@media (max-width: 420px) {
    .site-logo img {
        height: 34px;
    }

    .site-logo-text {
        font-size: 0.88rem;
    }
}

/* ── Slide down animation for mobile menu ── */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* ─── PAGE BANNER ────────────────────────────── */
.page-banner {
    position: relative;
    width: 100%;
    min-height: 380px;
    margin-top: 66px;         /* header height offset */
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  
  /* Background image */
  .pb-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
    transform: scale(1.04);
  }
  
  /* Dark overlay */
  .pb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(11,19,64,.88) 0%,
      rgba(11,19,64,.72) 50%,
      rgba(23,32,96,.80) 100%
    );
    z-index: 1;
  }
  
  /* Gold shimmer top line */
  .page-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 3;
  }
  
  /* ── Decorative element base ── */
  .pb-deco {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    opacity: 0.18;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
  }
  
  /* Cone — bottom left */
  .pb-cone-left {
    width: 110px;
    bottom: 48px;
    left: 6vw;
    opacity: 0.22;
    transform: rotate(-6deg);
    animation: floatDeco 4s ease-in-out infinite;
  }
  
  /* Cone — bottom right */
  .pb-cone-right {
    width: 90px;
    bottom: 52px;
    right: 8vw;
    opacity: 0.18;
    transform: rotate(8deg) scaleX(-1);
    animation: floatDeco 5s ease-in-out infinite reverse;
  }
  
  /* Traffic sign — right side */
  .pb-sign-right {
    width: 130px;
    top: 50%;
    right: 7vw;
    transform: translateY(-50%) rotate(4deg);
    opacity: 0.16;
    animation: floatDeco 6s ease-in-out infinite;
  }
  
  /* Steering wheel — right */
  .pb-steer-right {
    width: 160px;
    top: 50%;
    right: 6vw;
    transform: translateY(-50%) rotate(12deg);
    opacity: 0.14;
    animation: spinSlow 12s linear infinite;
  }
  
  /* Map pin — right */
  .pb-pin-right {
    width: 100px;
    top: 30%;
    right: 8vw;
    opacity: 0.20;
    animation: floatDeco 5s ease-in-out infinite;
  }
  
  /* Road marking — bottom */
  .pb-mark-bottom {
    width: 200px;
    bottom: 40px;
    right: 18vw;
    opacity: 0.12;
    transform: rotate(-2deg);
  }
  
  /* ── Inner content ── */
  .pb-inner {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 5vw 100px;
  }
  
  .pb-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 600px;
  }
  
  .pb-title {
    font-family: var(--font-h);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -0.03em;
  }
  .pb-title em {
    font-style: normal;
    background: linear-gradient(90deg, var(--gold), #FFD060);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .pb-sub {
    font-size: var(--text-md);
    color: rgba(255,255,255,.65);
    line-height: 1.7;
    max-width: 480px;
  }
  
  /* Breadcrumb */
  .pb-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
  }
  .pb-breadcrumb a {
    font-size: var(--text-sm);
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: color .2s;
  }
  .pb-breadcrumb a:hover { color: var(--gold); }
  .pb-breadcrumb i {
    font-size: 9px;
    color: rgba(255,255,255,.3);
  }
  .pb-breadcrumb span {
    font-size: var(--text-sm);
    color: var(--gold);
    font-weight: 600;
  }
  
  /* ── Bottom wave ── */
  .pb-wave {
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    z-index: 4;
    line-height: 0;
  }
  .pb-wave svg {
    width: 100%;
    height: 60px;
    display: block;
  }
  
  /* ── Animations ── */
  @keyframes floatDeco {
    0%, 100% { transform: translateY(0) rotate(-6deg); }
    50%       { transform: translateY(-12px) rotate(-6deg); }
  }
  @keyframes spinSlow {
    from { transform: translateY(-50%) rotate(0deg); }
    to   { transform: translateY(-50%) rotate(360deg); }
  }
  
  /* ── Responsive ── */
  @media (max-width: 860px) {
    .page-banner { min-height: 300px; }
    .pb-bg { background-attachment: scroll; }
    .pb-sign-right,
    .pb-steer-right,
    .pb-pin-right  { display: none; }
    .pb-cone-left  { width: 80px; }
    .pb-cone-right { width: 70px; }
  }
  @media (max-width: 520px) {
    .page-banner   { min-height: 260px; }
    .pb-inner      { padding: 60px 5vw 90px; }
    .pb-title      { font-size: 36px; }
    .pb-cone-left,
    .pb-cone-right { display: none; }
  }


  /* ═══════════════════════════════════════════════
   CONTACT MAIN SECTION
═══════════════════════════════════════════════ */
.contact-main-section {
    padding: 100px 5vw;
    background: var(--white);
}

.contact-main-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* ─── LEFT — Info Panel ─────────────────────── */
.contact-info-wrap {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Header */
.cf-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cf-header .eyebrow {
    align-self: flex-start;
    color: var(--navy);
    background: rgba(240, 165, 0, .1);
    border: 1.5px solid rgba(240, 165, 0, .25);
}

.cf-header .section-title {
    font-family: var(--font-h);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.025em;
    text-align: left;
}

.cf-header .section-title span {
    color: var(--gold);
}

.cf-header .section-sub {
    font-family: var(--font);
    font-size: var(--text-md);
    font-weight: 400;
    color: var(--muted);
    line-height: 1.75;
    text-align: left;
    max-width: 440px;
}

/* Details */
.ci-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ci-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.ci-item-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: var(--r-sm);
    background: rgba(240, 165, 0, .1);
    border: 1.5px solid rgba(240, 165, 0, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--gold);
    flex-shrink: 0;
}

.ci-item-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-top: 2px;
}

.ci-item-body strong {
    font-family: var(--font);
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: .06em;
    text-transform: uppercase;
}

.ci-item-body span,
.ci-item-body a {
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--muted);
    line-height: 1.6;
    transition: color .2s;
}

.ci-item-body a:hover { color: var(--gold); }

/* Divider */
.ci-divider {
    height: 1px;
    background: var(--border);
}

/* Hours */
.ci-hours-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.ci-hours-title i {
    color: var(--gold);
    font-size: 12px;
}

.ci-hours-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ci-hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--muted);
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
}

.ci-hours-row:last-child { border-bottom: none; }

.ci-time {
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--navy);
}

/* Social */
.ci-social strong {
    display: block;
    font-family: var(--font);
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.ci-social-icons {
    display: flex;
    gap: 10px;
}

.ci-social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--off);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--muted);
    transition: background .2s, color .2s, border-color .2s;
}

.ci-social-icons a:hover {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
}

/* ─── RIGHT — Form Card ─────────────────────── */
.contact-form-wrap {
    order: 2;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-xl);
    padding: 36px 32px;
    box-shadow: var(--sh-md);
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 86px;
}

/* Form top */
.cf-top {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cf-eyebrow {
    align-self: flex-start;
    color: var(--navy);
    background: rgba(240, 165, 0, .1);
    border: 1.5px solid rgba(240, 165, 0, .25);
}

.cf-title {
    font-family: var(--font-h);
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cf-title span { color: var(--gold); }

.cf-desc {
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--muted);
    line-height: 1.6;
}

/* Form */
.cf-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.cf-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cf-field.full { grid-column: 1 / -1; }

.cf-field label {
    font-family: var(--font);
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--text);
    letter-spacing: .06em;
    text-transform: uppercase;
}

.cf-field label span {
    color: #ef4444;
    margin-left: 2px;
    text-transform: none;
    letter-spacing: 0;
}

/* Input wrap */
.cf-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.cf-input-wrap > i {
    position: absolute;
    left: 13px;
    font-size: 13px;
    color: var(--light-muted);
    pointer-events: none;
    z-index: 1;
    transition: color .2s;
}

.cf-input-wrap.textarea { align-items: flex-start; }
.cf-input-wrap.textarea > i { top: 14px; }

.cf-input-wrap input,
.cf-input-wrap select,
.cf-input-wrap textarea {
    width: 100%;
    padding: 12px 14px 12px 38px;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--text);
    background: var(--off);
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
    line-height: 1.5;
}

.cf-input-wrap textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 13px;
    align-self: stretch;
}

.cf-input-wrap input:focus,
.cf-input-wrap select:focus,
.cf-input-wrap textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(240, 165, 0, .1);
}

.cf-input-wrap:focus-within > i { color: var(--gold); }

.cf-input-wrap input::placeholder,
.cf-input-wrap textarea::placeholder {
    color: var(--light-muted);
    font-size: var(--text-sm);
    font-weight: 400;
}

.cf-input-wrap select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 13px center;
    padding-right: 38px;
    cursor: pointer;
}

.cf-submit { margin-top: 4px; }

.cf-success {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(22, 163, 74, .08);
    border: 1.5px solid rgba(22, 163, 74, .25);
    border-radius: var(--r-sm);
    padding: 13px 16px;
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 600;
    color: #15803d;
}

.cf-success i      { font-size: 17px; flex-shrink: 0; }
.cf-success.hidden { display: none; }

@media (max-width: 1024px) {
    .contact-main-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 860px) {
    .contact-main-section { padding: 80px 5vw; }

    .contact-main-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-wrap  { order: 1; }
    .contact-form-wrap  { order: 2; position: static; }
}

@media (max-width: 580px) {
    .contact-main-section { padding: 64px 4vw; }
    .contact-form-wrap    { padding: 24px 20px; }
    .cf-row               { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   MAP SECTION
═══════════════════════════════════════════════ */
.map-section {
    padding: 100px 5vw;
    background: var(--off);
}

.map-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.map-wrap {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh-lg);
    border: 1.5px solid var(--border);
    height: 500px;
}



/* Google sidebar blocker — covers "No reviews" card */
.map-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 460px;
    height: 80px;
    background: var(--white);
    z-index: 15;
    pointer-events: none;
    border-radius: 0 0 var(--r-lg) 0;
}

/* Info box — sits flush top-left over Google card */
.map-info-box {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
    background: var(--white);
    border: none;
    border-radius: 0 0 var(--r-lg) 0;
    padding: 32px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 460px;
    min-height: 80px;
}

.mib-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: var(--r-sm);
    background: rgba(240, 165, 0, .1);
    border: 1.5px solid rgba(240, 165, 0, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--gold);
    flex-shrink: 0;
}

.mib-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mib-body strong {
    font-family: var(--font-h);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mib-body span {
    font-family: var(--font);
    font-size: var(--text-xs);
    font-weight: 400;
    color: var(--muted);
}

.mib-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--navy);
    color: var(--gold);
    font-family: var(--font);
    font-size: var(--text-xs);
    font-weight: 700;
    padding: 9px 14px;
    border-radius: var(--r-sm);
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
    letter-spacing: .02em;
    transition: background .2s var(--ease), transform .2s var(--ease);
}

.mib-btn:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

/* Map embed */
.map-embed {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(10%);
}

/* Remove old blocker div if still in HTML */
.map-sidebar-blocker {
    display: none;
}

@media (max-width: 860px) {
    .map-wrap        { height: 480px; }
    .map-wrap::after { width: 100%; height: 80px; }
    .map-info-box    { width: 100%; border-radius: 0; min-height: 80px; }
}

@media (max-width: 580px) {
    .map-section { padding: 72px 4vw; }
    .map-wrap    { height: 400px; }

    .map-wrap::after {
        width: 100%;
        height: 80px;
    }

    .map-info-box {
        flex-wrap: wrap;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 0;
        gap: 8px;
        padding: 12px 16px;
        min-height: unset;
    }

    .mib-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 420px) {
    .map-wrap { height: 350px; }
}

/* ========================
   FLOATING WHATSAPP BUTTON
   ======================== */
   .wa-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0,0,0,0.15);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s;
    animation: waPulse 2.4s ease-in-out infinite;
  }
  
  .wa-float:hover {
    background: #1ebe58;
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0,0,0,0.15);
  }
  
  /* Tooltip */
  .wa-tooltip {
    position: absolute;
    left: 66px;
    bottom: 50%;
    transform: translateY(50%);
    background: #fff;
    color: #0b1340;
    font-family: var(--font, 'Inter', sans-serif);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    border: 1.5px solid rgba(37,211,102,0.25);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateY(50%) translateX(-6px);
  }
  
  .wa-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateY(50%) translateX(0);
  }
  
  /* Pulse ring animation */
  @keyframes waPulse {
    0%, 100% {
      box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.35);
    }
    50% {
      box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 0 0 12px rgba(37, 211, 102, 0);
    }
  }
  
  /* Mobile adjustments */
  @media (max-width: 480px) {
    .wa-float {
      bottom: 18px;
      left: 18px;
      width: 50px;
      height: 50px;
      font-size: 24px;
    }
    .wa-tooltip {
      display: none; /* hide tooltip on mobile, tap is enough */
    }
  }
  

  
/* ─── FOOTER ─────────────────────────────────── */
.site-footer {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.site-footer::after {
    content: '';
    position: absolute;
    bottom: 40px;
    right: -40px;
    width: 420px;
    height: 160px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 60' fill='none'%3E%3Cellipse cx='100' cy='55' rx='95' ry='6' fill='rgba(255,255,255,0.03)'/%3E%3Cpath d='M15 40 Q25 20 55 18 Q75 10 100 12 Q130 10 155 18 Q175 22 185 40 Z' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.footer-top {
    position: relative;
    padding: 60px 5vw 60px;
    min-height: 340px;
    display: flex;
    align-items: flex-end;
}

.footer-car {
    position: absolute;
    bottom: 0;
    right: 70%;
    width: 40%;
    max-width: 650px;
    height: 300px;
    z-index: 2;
    pointer-events: none;
}

.footer-car-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.footer-car-slide {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    opacity: 0;
    transform: translateX(-110%);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
    will-change: transform, opacity;
}

.footer-car-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.footer-car-slide.exit {
    opacity: 0;
    transform: translateX(110%);
}

.footer-car-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    gap: 6px;
    z-index: 5;
    pointer-events: all;
}

.fcd {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    cursor: pointer;
    transition: background .3s, transform .3s;
}

.fcd.active {
    background: var(--gold);
    transform: scale(1.3);
}

.footer-content {
    margin-left: 25%;
    width: 70%;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
    gap: 36px;
    position: relative;
    z-index: 3;
    padding-left: 16px;
}

.fc-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* FIXED: footer brand name — fluid, Plus Jakarta Sans 800 */
.footer-brand-title {
    font-family: var(--font-h);
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-decoration: none;
}

.footer-brand-title span {
    color: var(--gold);
}

.fc-brand>p {
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 400;
    color: rgba(255, 255, 255, .45);
    line-height: 1.75;
    max-width: 240px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255, 255, 255, .55);
    transition: background .2s, color .2s, border-color .2s;
}

.footer-socials a:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

/* FIXED: footer column headings — Plus Jakarta Sans 700, --text-xs uppercase */
.fc-col h4 {
    font-family: var(--font-h);
    font-size: var(--text-xs);
    font-weight: 700;
    color: #fff;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.fql-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* FIXED: footer links — Inter 400, --text-base */
.fql-list li a {
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 400;
    color: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color .2s;
}

.fql-list li a i {
    font-size: 9px;
    color: var(--gold);
    flex-shrink: 0;
}

.fql-list li a:hover {
    color: var(--gold);
}

.foh-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.foh-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 10px 0;
}

/* FIXED: hours day — Inter 600, --text-base */
.foh-day {
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 600;
    color: #fff;
}

/* FIXED: hours time — Inter 400, --text-sm */
.foh-time {
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 400;
    color: rgba(255, 255, 255, .45);
}

.foh-divider {
    height: 1px;
    background: rgba(255, 255, 255, .08);
}

.fci-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.fci-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.fci-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: rgba(240, 165, 0, .1);
    border: 1px solid rgba(240, 165, 0, .2);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--gold);
    margin-top: 1px;
}

.fci-item span,
.fci-item a {
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 400;
    color: rgba(255, 255, 255, .5);
    line-height: 1.65;
    transition: color .2s;
}

.fci-item a:hover {
    color: var(--gold);
}

/* FOOTER BOTTOM BAR */
.footer-bottom {
    position: relative;
    z-index: 3;
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 16px 5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-copy {
    font-family: var(--font);
    font-size: var(--text-xs);
    font-weight: 400;
    color: rgba(255, 255, 255, .3);
    text-align: center;
    margin: 0;
}

.footer-divider-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    flex-shrink: 0;
}

.footer-powered {
    font-family: var(--font);
    font-size: var(--text-xs);
    font-weight: 400;
    color: rgba(255, 255, 255, .3);
    text-align: center;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nexo-link {
    font-family: var(--font);
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s, opacity 0.2s;
}
.nexo-link i {
    font-size: 10px;
    color: var(--gold);
}
.nexo-link:hover {
    color: #fff;
    opacity: 0.9;
}

@media (max-width: 480px) {
    .footer-bottom {
        flex-direction: column;
        gap: 6px;
        padding: 14px 5vw;
    }
    .footer-divider-dot {
        display: none;
    }
}

@media (max-width: 1200px) {
    .footer-content {
        margin-left: 28%;
        width: 72%;
        gap: 28px;
    }

    .footer-car {
        width: 40%;
    }
}

@media (max-width: 1024px) {
    .footer-car {
        width: 40%;
        right: 68%;
    }

    .footer-content {
        margin-left: 30%;
        width: 70%;
        grid-template-columns: 1fr 1fr;
        gap: 32px 36px;
    }

    .fc-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 860px) {
    .footer-top {
        flex-direction: column;
        align-items: stretch;
        padding-bottom: 0;
        min-height: unset;
    }

    .footer-car {
        position: relative;
        width: 80%;
        max-width: 400px;
        height: 150px;
        bottom: auto;
        right: auto;
        left: auto;
        margin: 0 auto;
    }

    .footer-content {
        margin-left: 0;
        width: 100%;
        padding-left: 0;
        padding: 48px 0 48px;
        grid-template-columns: 1fr 1fr;
        gap: 32px 40px;
    }

    .fc-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 520px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .fc-brand {
        grid-column: auto;
    }

    .footer-brand-title {
        font-size: 16px;
    }

    .footer-car-track {
        height: 160px;
    }
}