/* ─── 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: 800px;
    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
══════════════════════════════════════════ */

/* Overlay */
.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(11, 19, 64, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;              /* always flex — JS sets display:none when truly hidden */
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 1;
    transition: opacity 0.3s ease;
  }
  
  /* Hidden state — fade only, display toggled by JS */
  .popup-overlay.is-hidden {
    opacity: 0;
    pointer-events: none;
  }
  
  /* Box */
  .popup-box {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 860px;
    max-height: 92vh;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(11,19,64,.3), 0 0 0 1px rgba(255,255,255,.06);
    animation: popupSlideUp 0.42s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  }
  
  @keyframes popupSlideUp {
    from { opacity: 0; transform: translateY(32px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }
  
  /* ── Close Button ── */
  .popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 30;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: not-allowed;
    outline: none;
    backdrop-filter: blur(6px);
    transition: background 0.2s ease, color 0.2s ease, transform 0.25s ease;
  }
  
  .popup-close.can-close {
    cursor: pointer;
    color: #fff;
  }
  
  .popup-close.can-close:hover {
    background: var(--gold);
    color: var(--navy);
    transform: rotate(90deg);
  }
  
  /* SVG Ring */
  .popup-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    width: 50px;
    height: 50px;
    pointer-events: none;
  }
  
  .popup-ring-track {
    fill: none;
    stroke: rgba(255,255,255,0.12);
    stroke-width: 2.5;
  }
  
  .popup-ring-fill {
    fill: none;
    stroke: var(--gold);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 125.66;   /* 2 × π × 20 */
    stroke-dashoffset: 125.66;  /* starts empty */
  }
  
  /* ── LEFT — Form Side ── */
  .popup-left {
    flex: 1;
    min-width: 0;
    background: var(--white);
    padding: 40px 36px 36px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }
  
  .popup-title {
    font-family: var(--font-h);
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin: 10px 0 6px;
  }
  
  .popup-title span { color: var(--gold); }
  
  .popup-desc {
    font-size: var(--text-sm);
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 22px;
  }
  
  /* Form */
  .popup-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: 700;
    color: var(--navy);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  
  .pf-field label span {
    color: #ef4444;
    text-transform: none;
    letter-spacing: 0;
    margin-left: 2px;
  }
  
  .pf-field input,
  .pf-field select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    font-family: var(--font);
    font-size: var(--text-base);
    color: var(--navy);
    background: var(--off);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    -webkit-appearance: none;
    appearance: none;
  }
  
  .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,0.12);
  }
  
  .pf-field input::placeholder {
    color: #bbb;
    font-size: var(--text-sm);
  }
  
  .pf-field input.error,
  .pf-field select.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
  }
  
  .pf-field select {
    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;
  }
  
  /* Submit button arrow */
  .pf-arrow { transition: transform 0.2s ease; }
  .btn-primary.full:hover .pf-arrow { transform: translateX(4px); }
  
  /* Submit full width */
  .btn-primary.full {
    width: 100%;
    justify-content: center;
  }
  
  /* Success */
  .pf-success {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(22,163,74,0.08);
    border: 1.5px solid rgba(22,163,74,0.25);
    border-radius: var(--r-sm);
    padding: 12px 16px;
    font-size: var(--text-sm);
    font-weight: 600;
    color: #166534;
    animation: fadeIn 0.3s ease;
  }
  
  .pf-success i { color: #16a34a; font-size: 16px; flex-shrink: 0; }
  
  /* Note */
  .pf-note {
    margin-top: 12px;
    font-size: var(--text-xs);
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .pf-note i { color: var(--gold); }
  
  /* ── RIGHT — Photo Side ── */
  .popup-right {
    width: 290px;
    flex-shrink: 0;
    position: relative;
    background: var(--navy);
    display: flex;
  }
  
  .popup-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    display: block;
  }
  
  .popup-right-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 22px;
    background: linear-gradient(
      to top,
      rgba(11,19,64,0.97) 0%,
      rgba(11,19,64,0.55) 55%,
      transparent 100%
    );
  }
  
  .pr-brand { margin-bottom: 20px; }
  
  .pr-brand strong {
    display: block;
    color: #fff;
    font-family: var(--font-h);
    font-size: var(--text-base);
    font-weight: 800;
    line-height: 1.3;
  }
  
  .pr-brand span {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.45);
  }
  
  .pr-feats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
  }
  
  .prf {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-sm);
    font-weight: 500;
    color: rgba(255,255,255,0.8);
  }
  
  .prf i { color: var(--gold); font-size: 12px; flex-shrink: 0; }
  
  .pr-stats {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  
  .prs {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  
  .prs strong {
    font-family: var(--font-h);
    font-size: var(--text-xl);
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
  }
  
  .prs span {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.45);
  }
  
  .prs-div {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
  }
  
  /* ══════════════════════════════════════════
     RESPONSIVE
  ══════════════════════════════════════════ */
  @media (max-width: 760px) {
    .popup-box {
      flex-direction: column;
      max-width: 460px;
      max-height: 90vh;
    }
  
    .popup-right {
      width: 100%;
      height: 110px;
      flex-shrink: 0;
    }
  
    .popup-right-overlay {
      flex-direction: row;
      align-items: flex-end;
      justify-content: space-between;
      padding: 12px 18px;
    }
  
    .pr-brand { margin-bottom: 0; }
    .pr-feats  { display: none; }
    .pr-stats  { gap: 12px; }
  
    .prs strong { font-size: var(--text-lg); }
  
    .popup-left { padding: 28px 24px 30px; }
  }
  
  @media (max-width: 500px) {
    .popup-overlay { padding: 10px; }
  
    .popup-box { max-width: 100%; }
  
    .popup-right { height: 90px; }
    .pr-stats    { display: none; }
  
    .popup-left { padding: 22px 18px 26px; }
    .popup-desc { margin-bottom: 16px; font-size: var(--text-xs); }
    .pf-row     { grid-template-columns: 1fr; }
    .popup-title { font-size: 20px; }
  }
  
  @media (max-width: 380px) {
    .popup-right { height: 70px; }
    .popup-left  { padding: 18px 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);
    }
}
/* ═══════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════ */
.hero-section {
    min-height: 100vh;
    display: flex;
    overflow: hidden;
    padding-top: 66px;
    background: var(--white);
    position: relative;
}

.hero-inner {
    width: 100%;
    display: grid;
    grid-template-columns: 42fr 18fr 40fr;
    min-height: calc(100vh - 66px);
    position: relative;
    align-items: stretch;
}

/* ─── LEFT ───────────────────────────────────── */
.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding: 52px 20px 52px 5vw;
    background: var(--white);
    position: relative;
    z-index: 4;
}

.hero-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,.055) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
    opacity: .45;
}

.hero-left::after {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(240,165,0,.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Tag */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-sm);
    font-weight: 700;
    color: #5a3e00;
    background: linear-gradient(135deg, #fff8e6, #fff3d0);
    border: 1px solid rgba(240,165,0,.35);
    padding: 7px 14px;
    border-radius: 20px;
    width: fit-content;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(240,165,0,.12);
}

.tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 3px rgba(240,165,0,.22);
    flex-shrink: 0;
    animation: pulseDot 2s ease-in-out infinite;
}

/* Heading */
.hero-h1 {
    font-family: var(--font-h);
    font-size: clamp(30px, 3.4vw, 54px);
    font-weight: 900;
    line-height: 1.08;
    color: var(--navy);
    letter-spacing: -0.03em;
    position: relative;
    z-index: 2;
}

.hero-h1 em {
    font-style: normal;
    background: linear-gradient(90deg, var(--gold) 0%, #FFD060 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Sub */
.hero-sub {
    color: var(--muted);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.7;
    max-width: 460px;
    position: relative;
    z-index: 2;
}

/* Form Card */
.hero-form-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 16px 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
    position: relative;
    z-index: 2;
}

.hfc-head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.hfc-head i { color: var(--gold); }

.hfc-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hfc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.hfc-field { display: flex; flex-direction: column; }

.hfc-field input,
.hfc-field select {
    padding: 9px 12px;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--text);
    background: var(--off);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.hfc-field input:focus,
.hfc-field select:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(240,165,0,.1);
}

.hfc-field input::placeholder {
    color: #bbb;
    font-size: var(--text-sm);
}

.hfc-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;
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    z-index: 2;
}

.hs-item { display: flex; flex-direction: column; }

.hs-item strong {
    font-family: var(--font-h);
    font-size: var(--text-xl);
    font-weight: 800;
    color: var(--navy);
}

.hs-item span {
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--muted);
    margin-top: 2px;
}

.hs-sep {
    width: 1px;
    height: 32px;
    background: var(--border);
}

/* ─── CENTER — Overlapping Triangle ─────────── */
.hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 52px 0;
    position: relative;
    z-index: 10;
    margin-left: -60px;
    margin-right: -60px;
    background: transparent;
    pointer-events: none;
}

.hero-center::before,
.hero-center::after { display: none; }

/* Top Row */
.hsc-top-row {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: center;
}

/* Bottom Row */
.hsc-bottom-row {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    width: 70%;
}

/* ── Service Card Base ── */
.hero-service-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1.5px solid var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,.18);
    text-decoration: none;
    background: var(--white);
    transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
    cursor: pointer;
    pointer-events: all;
}

/* Top row cards — wider */
.hsc-top-row .hero-service-card {
    width: 190px;                   /* ← increased from 160px */
}

/* Bottom card = top two + gap */
.hsc-bottom-row .hero-service-card {
    width: 400px;                   /* ← 190 + 20gap + 190 = 400px */
}

/* Float animations */
.hsc-1 { animation: hscFloat1 3.2s ease-in-out infinite; }
.hsc-2 { animation: hscFloat2 3.8s ease-in-out infinite; }
.hsc-3 { animation: hscFloat3 3.5s ease-in-out infinite; }

@keyframes hscFloat1 {
    0%, 100% { transform: translateY(0px);   }
    50%       { transform: translateY(-10px); }
}

@keyframes hscFloat2 {
    0%, 100% { transform: translateY(-6px); }
    50%       { transform: translateY(6px);  }
}

@keyframes hscFloat3 {
    0%, 100% { transform: translateY(0px);  }
    50%       { transform: translateY(-8px); }
}

.hero-service-card:hover {
    animation-play-state: paused;
    box-shadow: 0 12px 40px rgba(0,0,0,.22);
    border-color: rgba(240,165,0,.5);
}

/* ── Image Wrap — tall enough for nice display ── */
.hsc-img-wrap {
    position: relative;
    width: 100%;
    height: 200px;                  /* ← increased from 140px */
    overflow: hidden;
    flex-shrink: 0;
}

.hsc-bottom-row .hsc-img-wrap {
    height: 190px;                  /* ← increased from 130px */
}

.hsc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .4s var(--ease);
}

.hero-service-card:hover .hsc-img {
    transform: scale(1.07);
}

/* Gradient overlay */
.hsc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 30%,
        rgba(11,19,64,.55) 100%
    );
    z-index: 1;
}

/* Label on image bottom */
.hsc-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
}

.hsc-badge {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    background: rgba(255,255,255,.2);
    border: 1px solid rgba(255,255,255,.3);
    color: var(--white);
}

.hsc-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.hsc-text strong {
    font-family: var(--font-h);
    font-size: 12px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hsc-text span {
    font-family: var(--font);
    font-size: 10px;
    font-weight: 400;
    color: rgba(255,255,255,.78);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Arrow — REMOVED */
.hsc-arrow-wrap { display: none; }

/* ─── RIGHT ──────────────────────────────────── */
.hero-right {
    position: relative;
    overflow: hidden;
    clip-path: inset(0 0 0 0);
}

.road-scene {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.road-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/home/road-image.png');
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.04);
    filter: blur(0.6px) saturate(1.1);
}

.road-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg,
        transparent 0px, transparent 120px,
        rgba(255,255,255,.018) 120px, rgba(255,255,255,.018) 160px,
        transparent 160px, transparent 280px,
        rgba(255,255,255,.012) 280px, rgba(255,255,255,.012) 300px);
    pointer-events: none;
    z-index: 2;
    filter: blur(3px);
}

.road-scene::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 30%, rgba(0,0,0,.15) 80%);
    pointer-events: none;
    z-index: 2;
}

.hero-car-wrap {
    position: absolute;
    bottom: 30%;
    right: -2%;
    width: 100%;
    max-width: 650px;
    z-index: 7;
    opacity: 0;
    transform: translateX(110px);
    animation: carSlideIn .95s cubic-bezier(.22,1,.36,1) .3s forwards;
}

.hero-car-img {
    width: 100%;
    display: block;
    object-fit: contain;
    filter:
        drop-shadow(0 28px 52px rgba(0,0,0,.78))
        drop-shadow(-6px 2px 20px rgba(160,15,0,.28))
        drop-shadow(0 0 28px rgba(160,15,0,.12))
        drop-shadow(0 8px 16px rgba(0,0,0,.45));
}

.car-shadow {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) perspective(300px) rotateX(40deg);
    width: 72%;
    height: 28px;
    background: radial-gradient(ellipse at center,
        rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 45%, transparent 72%);
    border-radius: 50%;
    filter: blur(9px);
    pointer-events: none;
    transform-origin: center bottom;
}

.car-award,
.panel-pills { display: none !important; }

/* ── Keyframes ── */
@keyframes carSlideIn {
    0%   { opacity: 0; transform: translateX(110px); }
    60%  { opacity: 1; transform: translateX(-10px); }
    80%  { transform: translateX(4px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 3px rgba(240,165,0,.22); }
    50%       { box-shadow: 0 0 0 7px rgba(240,165,0,.07); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .hero-left  { padding: 52px 28px 32px; order: 1; }

    .hero-center {
        margin-left: 0;
        margin-right: 0;
        background: var(--white);
        padding: 20px 5vw;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        order: 2;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        pointer-events: all;
    }

    .hsc-top-row,
    .hsc-bottom-row { display: contents; }

    .hsc-top-row .hero-service-card,
    .hsc-bottom-row .hero-service-card {
        width: 220px;
    }

    .hsc-img-wrap,
    .hsc-bottom-row .hsc-img-wrap { height: 170px; }

    .hero-right {
        min-height: 380px;
        order: 3;
    }

    .hero-car-wrap {
        width: 85%;
        bottom: 10%;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        animation: carSlideInMobile .95s cubic-bezier(.22,1,.36,1) .3s forwards;
    }

    .hfc-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .hero-h1 { font-size: 32px; }

    .hero-center {
        gap: 10px;
        padding: 16px 4vw;
        flex-direction: column;
        align-items: stretch;
    }

    .hsc-top-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
    }

    .hsc-bottom-row {
        display: flex;
        justify-content: center;      /* ← centers the bottom card */
        width: 100%;
        margin-top: 0;
    }

    .hsc-top-row .hero-service-card {
        width: 100%;
        flex-direction: column;
    }

    .hsc-bottom-row .hero-service-card {
        width: 70%;                   /* ← matches your adjustment */
        flex-direction: column;
    }

    .hsc-img-wrap {
        width: 100%;
        height: 150px;
    }

    .hsc-bottom-row .hsc-img-wrap {
        width: 100%;
        height: 150px;
    }

    .hsc-label {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: 8px 10px;
        gap: 6px;
    }

    .hsc-text strong { font-size: 11px; }
    .hsc-text span   { font-size: 9px;  }

    .hero-right      { min-height: 260px; }
    .hero-stats      { gap: 14px; }
    .hs-item strong  { font-size: 20px; }

    .hero-car-wrap {
        width: 90%;
        bottom: 1%;
    }
}

@media (max-width: 400px) {
    .hero-left { padding: 40px 18px 28px; }
    .hero-tag  { font-size: 11px; }

    .hsc-top-row {
        margin: 20px 0 20px 0;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .hsc-top-row .hero-service-card,
    .hsc-bottom-row .hero-service-card {
        width: 100%;
        flex-direction: column;
    }

    /* Bottom row — centered with 70% width */
    .hsc-bottom-row {
        display: flex;
        justify-content: center;      /* ← centers it */
        width: 100%;
    }

    .hsc-bottom-row .hero-service-card {
        width: 70%;                   /* ← your value kept */
    }

    .hsc-img-wrap,
    .hsc-bottom-row .hsc-img-wrap {
        width: 100%;
        height: 180px;                /* ← your value kept */
    }
}

@keyframes carSlideInMobile {
    0%   { opacity: 0; transform: translateX(-50%) translateY(60px);  }
    65%  { opacity: 1; transform: translateX(-50%) translateY(-8px);  }
    85%  { transform: translateX(-50%) translateY(3px);  }
    100% { opacity: 1; transform: translateX(-50%) translateY(0);     }
}


/* ─── DOORSTEP SERVICES SECTION ─────────────────── */
.doorstep-section {
    position: relative;
    padding: 100px 5vw;
    background: var(--off);
    overflow: hidden;
}



/* Inner wrapper */
.ds-inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

/* ── Section Header ── */
.doorstep-section .section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.doorstep-section .section-title {
    font-family: var(--font-h);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.doorstep-section .section-title span {
    color: var(--gold);
}

.doorstep-section .section-sub {
    font-family: var(--font);
    font-size: var(--text-md);
    color: var(--muted);
    max-width: 520px;
    line-height: 1.75;
}

/* ── Cards Grid ── */
.ds-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ── Single Card ── */
.ds-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-xl);
    padding: 28px 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
    position: relative;
    overflow: hidden;
}

/* Gold shimmer line on hover */
.ds-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity .28s var(--ease);
}

.ds-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-xl);
    border-color: rgba(240,165,0,.35);
}

.ds-card:hover::before {
    opacity: 1;
}

/* Featured card variant */
.ds-card--featured {
    background: var(--navy);
    border-color: var(--navy);
}

.ds-card--featured::before {
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 1;
}

.ds-card--featured .ds-card-title,
.ds-card--featured .ds-card-desc {
    color: rgba(255,255,255,.88);
}

.ds-card--featured .ds-card-title {
    color: var(--white);
}

.ds-card--featured .ds-divider {
    background: rgba(255,255,255,.12);
}

.ds-card--featured:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(11,19,64,.35);
}

/* ── Card Top Row ── */
.ds-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ── Icon ── */
.ds-icon {
    width: 52px;
    height: 52px;
    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: 22px;
    color: var(--gold);
    flex-shrink: 0;
    transition: background .2s var(--ease), transform .2s var(--ease);
}

.ds-card:hover .ds-icon {
    background: rgba(240,165,0,.18);
    transform: scale(1.06);
}

.ds-icon--navy {
    background: rgba(255,255,255,.12);
    border: 1.5px solid rgba(255,255,255,.2);
    color: var(--gold);
}

.ds-card--featured:hover .ds-icon--navy {
    background: rgba(255,255,255,.18);
}

/* ── Badge ── */
.ds-badge {
    font-family: var(--font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 999px;
    background: rgba(240,165,0,.1);
    border: 1.5px solid rgba(240,165,0,.3);
    color: #a37200;
}

.ds-badge--navy {
    background: rgba(255,255,255,.12);
    border: 1.5px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.8);
}

.ds-badge--pink {
    background: rgba(236,72,153,.08);
    border: 1.5px solid rgba(236,72,153,.2);
    color: #be185d;
}

/* ── Card Title ── */
.ds-card-title {
    font-family: var(--font-h);
    font-size: var(--text-lg);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

/* ── Divider ── */
.ds-divider {
    height: 1px;
    background: var(--border);
    border-radius: 999px;
}

/* ── Description ── */
.ds-card-desc {
    font-family: var(--font);
    font-size: var(--text-base);
    color: var(--muted);
    line-height: 1.75;
    flex: 1;
}

/* ── Enquire Button ── */
.ds-enquire-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--navy);
    background: var(--off);
    border: 1.5px solid var(--border);
    padding: 10px 18px;
    border-radius: var(--r-sm);
    text-decoration: none;
    align-self: flex-start;
    transition: background .2s var(--ease), border-color .2s var(--ease),
                color .2s var(--ease), transform .2s var(--ease);
    margin-top: auto;
}

.ds-enquire-btn i {
    font-size: 11px;
    transition: transform .2s var(--ease);
}

.ds-enquire-btn:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--gold);
    transform: translateY(-2px);
}

.ds-enquire-btn:hover i {
    transform: translateX(3px);
}

/* Gold variant (for featured cards) */
.ds-enquire-btn--gold {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.ds-enquire-btn--gold:hover {
    background: var(--gold-h);
    border-color: var(--gold-h);
    color: var(--navy);
}

/* ── Bottom CTA Strip ── */
.ds-cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: var(--navy);
    border-radius: var(--r-xl);
    padding: 28px 36px;
    position: relative;
    overflow: hidden;
}

/* Gold shimmer top */
.ds-cta-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Subtle dot pattern */
.ds-cta-strip::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 50%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,.06) 1.5px, transparent 1.5px);
    background-size: 22px 22px;
    pointer-events: none;
}

.ds-cta-left {
    display: flex;
    align-items: center;
    gap: 18px;
    z-index: 1;
}

.ds-cta-icon {
    font-size: 28px;
    color: var(--gold);
    flex-shrink: 0;
}

.ds-cta-left div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ds-cta-left strong {
    font-family: var(--font-h);
    font-size: var(--text-lg);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.ds-cta-left span {
    font-family: var(--font);
    font-size: var(--text-sm);
    color: rgba(255,255,255,.6);
}

.ds-cta-strip .btn-primary {
    z-index: 1;
    flex-shrink: 0;
}

/* ── Reveal Animation ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .55s var(--ease), transform .55s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .ds-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .doorstep-section {
        padding: 80px 5vw;
    }

    .ds-inner {
        gap: 40px;
    }

    .ds-cta-strip {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 22px;
        gap: 18px;
    }

    .ds-cta-strip .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 580px) {
    .doorstep-section {
        padding: 64px 4vw;
    }

    .ds-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ds-cta-left {
        gap: 14px;
    }

    .ds-cta-icon {
        font-size: 22px;
    }
}


/* ─── OUR FEATURES SECTION ───────────────────────── */
.features-section {
    position: relative;
    padding: 100px 5vw;
    background: var(--white);
    overflow: hidden;
}

/* Background decorative blobs */
.feat-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.feat-shape-1 {
    width: 700px;
    height: 700px;
    top: -280px;
    left: -200px;
    background: radial-gradient(circle, rgba(240,165,0,.06) 0%, transparent 65%);
}
.feat-shape-2 {
    width: 500px;
    height: 500px;
    bottom: -200px;
    right: -150px;
    background: radial-gradient(circle, rgba(11,19,64,.05) 0%, transparent 65%);
}

/* Inner wrapper */
.feat-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

/* ── Section Header ── */
.features-section .section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.features-section .section-title {
    font-family: var(--font-h);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.features-section .section-title span {
    color: var(--gold);
}

.features-section .section-sub {
    font-family: var(--font);
    font-size: var(--text-md);
    color: var(--muted);
    max-width: 540px;
    line-height: 1.75;
}

/* ── Main Layout: 3-col ── */
.feat-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
    align-items: center;
}

/* ── Feature Columns ── */
.feat-col {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

/* ── Feature Item ── */
.feat-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

/* Left col: text right-aligned, icon on right */
.feat-col--left .feat-item {
    flex-direction: row;
    justify-content: flex-end;
    text-align: right;
}

/* Right col: icon on left, text left-aligned */
.feat-col--right .feat-item {
    flex-direction: row;
    text-align: left;
}

/* ── Icon Box ── */
.feat-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--r-sm);
    background: rgba(240,165,0,.1);
    border: 1.5px solid rgba(240,165,0,.28);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: var(--gold);
    flex-shrink: 0;
    transition: background .22s var(--ease), transform .22s var(--ease), border-color .22s var(--ease);
}

.feat-item:hover .feat-icon {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--gold);
    transform: scale(1.08);
}

/* ── Item Body ── */
.feat-item-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 3px;
}

/* Right-aligned text for left column */
.feat-item-body--right {
    text-align: right;
}

.feat-item-title {
    font-family: var(--font-h);
    font-size: var(--text-lg);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.feat-item-desc {
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--muted);
    line-height: 1.75;
}

/* ── Center Image ── */
.feat-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feat-img-wrap {
    position: relative;
    width: 300px;
    flex-shrink: 0;
}

/* Octagon clip using clip-path */
.feat-img-wrap img {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    object-fit: cover;
    display: block;
    border-radius: var(--r-xl);
    clip-path: polygon(
        20% 0%, 80% 0%,
        100% 20%, 100% 80%,
        80% 100%, 20% 100%,
        0% 80%, 0% 20%
    );
    transition: transform .5s var(--ease);
    box-shadow: var(--sh-xl);
}

.feat-img-wrap:hover img {
    transform: scale(1.03);
}

/* Gold ring around octagon */
.feat-img-wrap::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: calc(var(--r-xl) + 4px);
    clip-path: polygon(
        20% 0%, 80% 0%,
        100% 20%, 100% 80%,
        80% 100%, 20% 100%,
        0% 80%, 0% 20%
    );
    background: linear-gradient(135deg, var(--gold), transparent 60%, var(--navy));
    z-index: -1;
}

/* ── Floating badge (top right) ── */
.feat-badge {
    position: absolute;
    top: -16px;
    right: -20px;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: var(--navy);
    border: 4px solid var(--white);
    box-shadow: var(--sh-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1px;
    z-index: 5;
}

.feat-badge-num {
    font-family: var(--font-h);
    font-size: 18px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.feat-badge-text {
    font-family: var(--font);
    font-size: 8px;
    font-weight: 600;
    color: rgba(255,255,255,.72);
    line-height: 1.3;
    letter-spacing: .02em;
}

/* ── Floating trust card (bottom left) ── */
.feat-trust-card {
    position: absolute;
    bottom: -18px;
    left: -22px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--sh-lg);
    z-index: 5;
    min-width: 180px;
}

.ftc-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    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: 14px;
    color: var(--gold);
}

.ftc-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ftc-body strong {
    font-family: var(--font-h);
    font-size: var(--text-sm);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
}

.ftc-body span {
    font-family: var(--font);
    font-size: var(--text-xs);
    color: var(--muted);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .feat-img-wrap {
        width: 260px;
    }

    .feat-layout {
        gap: 32px;
    }
}

@media (max-width: 860px) {
    .features-section {
        padding: 80px 5vw;
    }

    /* Stack layout: left col, image, right col vertically */
    .feat-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .feat-col--left {
        order: 2;
    }

    .feat-center {
        order: 1;
    }

    .feat-col--right {
        order: 3;
    }

    /* Left col in mobile: align left like right col */
    .feat-col--left .feat-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }

    .feat-item-body--right {
        text-align: left;
    }

    .feat-img-wrap {
        width: 280px;
    }
}

@media (max-width: 580px) {
    .features-section {
        padding: 64px 4vw;
    }

    .feat-inner {
        gap: 44px;
    }

    .feat-img-wrap {
        width: 230px;
    }

    .feat-badge {
        width: 70px;
        height: 70px;
        top: -12px;
        right: -12px;
    }

    .feat-trust-card {
        left: -12px;
        bottom: -14px;
        min-width: 160px;
        padding: 10px 12px;
    }
}


/* ═══════════════════════════════════════════════
   DOORSTEP DRIVING SECTION
═══════════════════════════════════════════════ */
.doorstep-section {
    padding: 80px 5vw;
    background: var(--off);
    position: relative;
    overflow: hidden;
}

/* Subtle background decoration */
.doorstep-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(240, 165, 0, .04);
    pointer-events: none;
}

.doorstep-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    width: 100%;
}

/* ─── LEFT — Image ───────────────────────────── */
.doorstep-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.doorstep-img-wrap {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

/* Main image — portrait ratio */
.doorstep-img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--r-xl);
    display: block;
    box-shadow: var(--sh-lg);
    position: relative;
    z-index: 1;
}

/* Decorative ring behind image */
.doorstep-ring {
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    border-radius: calc(var(--r-xl) + 10px);
    border: 2px dashed rgba(240, 165, 0, .2);
    pointer-events: none;
    z-index: 0;
}

/* ── Floating Badge — top left ── */
.doorstep-badge {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
}

.badge-top {
    top: 1px;
    left: -16px;
    gap: 8px;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 700;
    padding: 9px 16px;
    border-radius: var(--r-sm);
    box-shadow: 0 6px 20px rgba(240, 165, 0, .35);
    animation: floatY 3s ease-in-out infinite;
}

.badge-top i { font-size: 14px; }

/* ── Floating Stat Card — bottom right ── */
.badge-bottom {
    bottom: 1px;
    right: -16px;
    gap: 12px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    padding: 14px 18px;
    box-shadow: var(--sh-md);
    animation: floatY 3.5s ease-in-out infinite reverse;
}

.db-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: var(--r-sm);
    background: rgba(11, 19, 64, .07);
    border: 1.5px solid rgba(11, 19, 64, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--navy);
    flex-shrink: 0;
}

.db-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.db-body strong {
    font-family: var(--font-h);
    font-size: var(--text-sm);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    white-space: nowrap;
}

.db-body span {
    font-family: var(--font);
    font-size: 11px;
    color: var(--muted);
    white-space: nowrap;
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* ─── RIGHT — Content ────────────────────────── */
.doorstep-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 0;
}

/* ── Feature List ── */
.doorstep-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.doorstep-feat {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 16px;
    border-radius: var(--r-md);
    border: 1.5px solid transparent;
    background: var(--white);
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease),
                transform .25s var(--ease);
}

.doorstep-feat:hover {
    border-color: rgba(240, 165, 0, .3);
    box-shadow: var(--sh-sm);
    transform: translateX(4px);
}

.df-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    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: 17px;
    color: var(--gold);
    flex-shrink: 0;
    transition: background .25s, color .25s, border-color .25s;
}

.doorstep-feat:hover .df-icon {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--gold);
}

.df-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.df-body strong {
    font-family: var(--font-h);
    font-size: var(--text-base);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
}

.df-body span {
    font-family: var(--font);
    font-size: var(--text-sm);
    color: var(--muted);
    line-height: 1.65;
}

/* ── CTA Row ── */
.doorstep-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.doorstep-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    border: 1.5px solid var(--border);
    padding: 13px 22px;
    border-radius: var(--r-sm);
    background: var(--white);
    transition: border-color .2s, background .2s, color .2s, transform .2s;
}

.doorstep-call-btn:hover {
    border-color: var(--gold);
    background: rgba(240, 165, 0, .06);
    color: var(--navy);
    transform: translateY(-2px);
}

.doorstep-call-btn i {
    font-size: 14px;
    color: var(--gold);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .doorstep-section { padding: 72px 5vw; }

    .doorstep-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: center;
    }

    .doorstep-left  { order: -1; }

    .doorstep-img-wrap {
        max-width: 420px;
        margin: 0 auto;
    }

    .doorstep-img {
        height: 480px;
        object-position: center top;
    }
}

@media (max-width: 640px) {
    .doorstep-section { padding: 60px 4vw; }

    .doorstep-img {
        height: 380px;
        object-position: center top;
    }

    .badge-top    { left: 10px;  top: 1px;    }
    .badge-bottom { right: 10px; bottom: 1px; }

    .doorstep-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .doorstep-call-btn { justify-content: center; }
}

@media (max-width: 400px) {
    .doorstep-img {
        height: 300px;
        object-position: center top;
    }

    .badge-top,.badge-bottom { display: none; }
}



/* ─── ABOUT SECTION ──────────────────────────── */
.about-section {
    padding: 100px 5vw;
    background: var(--white);
    overflow: hidden;
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-image-stack {
    position: relative;
    height: 480px;
}

.ais-main {
    width: 88%;
    height: 100%;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--sh-xl);
}

.ais-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ais-badge {
    position: absolute;
    bottom: 32px;
    left: -20px;
    background: var(--navy);
    color: #fff;
    padding: 14px 18px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--sh-lg);
}

.ais-badge i {
    font-size: 22px;
    color: var(--gold);
}

.ais-badge strong {
    display: block;
    font-size: var(--text-base);
    font-weight: 700;
}

.ais-badge span {
    font-size: var(--text-xs);
    font-weight: 400;
    color: rgba(255, 255, 255, .5);
}

/* FIXED: fluid clamp for float badge number */
.ais-float {
    position: absolute;
    top: 28px;
    right: -12px;
    background: var(--gold);
    color: var(--navy);
    padding: 16px 20px;
    border-radius: var(--r-md);
    text-align: center;
    box-shadow: 0 8px 28px rgba(240, 165, 0, .35);
}

.ais-float strong {
    display: block;
    font-family: var(--font-h);
    font-size: clamp(26px, 2.5vw, 32px);
    font-weight: 900;
    line-height: 1;
}

.ais-float span {
    font-size: var(--text-xs);
    font-weight: 600;
    color: rgba(11, 19, 64, .7);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-description {
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--muted);
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 4px 0;
}

.af-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.af-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(240, 165, 0, .1);
    border: 1.5px solid rgba(240, 165, 0, .25);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 17px;
    margin-top: 2px;
}

/* FIXED: feature item titles — Inter 700, --text-md */
.af-item strong {
    display: block;
    font-family: var(--font);
    font-size: var(--text-md);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 3px;
}

.af-item p {
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--muted);
    line-height: 1.65;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 22px;
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    width: fit-content;
}

.astat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

/* FIXED: fluid stat number */
.astat strong {
    font-family: var(--font-h);
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}

.astat span {
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--muted);
    white-space: nowrap;
}

.astat-div {
    width: 1px;
    height: 32px;
    background: var(--border);
    flex-shrink: 0;
}

@media (max-width: 860px) {
    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-stack {
        height: 360px;
    }
}

@media (max-width: 500px) {
    .about-section {
        padding: 72px 5vw;
    }

    .about-image-stack {
        height: 280px;
    }

    .ais-float {
        right: 0;
    }
}


/* ─── TRAVELS SECTION ────────────────────────── */
.travels-section {
    padding: 100px 5vw;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.travels-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(240, 165, 0, .07) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.travels-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 206, 60, .04) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.travels-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.travels-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.travels-content .section-title.light {
    color: #fff;
}

.travels-content .section-title.light span {
    color: var(--gold);
}

.travels-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.th-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--text-base);
    font-weight: 500;
    color: rgba(255, 255, 255, .8);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r-sm);
    padding: 11px 14px;
    transition: background .2s, border-color .2s;
}

.th-item:hover {
    background: rgba(255, 206, 60, .08);
    border-color: rgba(255, 206, 60, .25);
}

.th-item i {
    color: var(--gold);
    font-size: 15px;
    flex-shrink: 0;
}

.travels-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r-md);
    width: fit-content;
}

.tstat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

/* FIXED: fluid stat number */
.tstat strong {
    font-family: var(--font-h);
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.tstat span {
    font-size: var(--text-xs);
    font-weight: 500;
    color: rgba(255, 255, 255, .45);
    white-space: nowrap;
}

.tstat-div {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, .12);
    flex-shrink: 0;
}

.travels-btns {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .28);
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 700;
    padding: 11px 22px;
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: border-color .2s, color .2s, background .2s;
}

.btn-outline-light:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(240, 165, 0, .06);
}

.travels-cards-wrap {
    position: relative;
}

.tc-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tc-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r-md);
    padding: 16px 18px;
    cursor: pointer;
    transition: background .22s, border-color .22s, transform .22s var(--ease);
}

.tc-card:hover {
    background: rgba(255, 206, 60, .09);
    border-color: rgba(255, 206, 60, .3);
    transform: translateX(6px);
}

.tc-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(255, 206, 60, .1);
    border: 1.5px solid rgba(255, 206, 60, .2);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gold);
}

.tc-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

/* FIXED: card title — Inter 700, --text-md */
.tc-info strong {
    font-family: var(--font);
    font-size: var(--text-md);
    font-weight: 700;
    color: #fff;
}

.tc-info span {
    font-size: var(--text-sm);
    font-weight: 400;
    color: rgba(255, 255, 255, .45);
}

.tc-arrow {
    color: rgba(255, 255, 255, .2);
    font-size: 12px;
    flex-shrink: 0;
    transition: color .2s, transform .2s;
}

.tc-card:hover .tc-arrow {
    color: var(--gold);
    transform: translateX(3px);
}

a.tv-srv-card {
    text-decoration: none;
    display: block;
  }
  

@media (max-width: 1024px) {
    .travels-inner {
        gap: 48px;
    }
}

@media (max-width: 860px) {
    .travels-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 500px) {
    .travels-section {
        padding: 72px 5vw;
    }

    .travels-highlights {
        grid-template-columns: 1fr;
    }

    .travels-stats {
        gap: 14px;
        padding: 16px;
    }
}
/* ─── HOW IT WORKS ───────────────────────────── */
.hiw-section {
    padding: 100px 5vw;
    background: var(--off);
    overflow: hidden;
}

/* ── Travels Section Title (NEW) ── */
.hiw-travels-header {
    max-width: 1160px;
    margin: 64px auto 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
}

.hiw-travels-header .section-title {
    font-family: var(--font-h);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hiw-travels-header .section-title span {
    color: var(--gold);
}

.hiw-travels-header .section-sub {
    font-family: var(--font);
    font-size: var(--text-md);
    color: var(--muted);
    max-width: 520px;
    line-height: 1.75;
}

/* ── Main Grid — 5 cols ── */
.hiw-inner {
    max-width: 1160px;
    margin: 0 auto 56px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
    height: 420px;
}

/* ── Wave SVG ── */
.hiw-wave-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hiw-wave-line svg {
    width: 100%;
    height: 100%;
}

/* ── Each Step ── */
.hiw-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    z-index: 2;
    width: calc(100% / 5);
}

/* Step 1 — col 1 — BOTTOM */
.hiw-step:nth-child(2) {
    left: 0%;
    bottom: 0;
    top: auto;
    justify-content: flex-end;
    padding-bottom: 20px;
}

/* Step 2 — col 2 — TOP */
.hiw-step:nth-child(3) {
    left: 20%;
    top: 0;
    bottom: auto;
    justify-content: flex-start;
    padding-top: 20px;
}

/* Step 3 — col 3 — BOTTOM */
.hiw-step:nth-child(4) {
    left: 40%;
    bottom: 0;
    top: auto;
    justify-content: flex-end;
    padding-bottom: 20px;
}

/* Step 4 — col 4 — TOP */
.hiw-step:nth-child(5) {
    left: 60%;
    top: 0;
    bottom: auto;
    justify-content: flex-start;
    padding-top: 20px;
}

/* Step 5 — col 5 — BOTTOM */
.hiw-step:nth-child(6) {
    left: 80%;
    bottom: 0;
    top: auto;
    justify-content: flex-end;
    padding-bottom: 20px;
}

/* ── Number Badge ── */
.hiw-num {
    background: var(--navy);
    color: var(--gold);
    font-family: var(--font-h);
    font-size: var(--text-sm);
    font-weight: 800;
    letter-spacing: .06em;
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(11, 19, 64, .2);
    flex-shrink: 0;
}

/* ── Circle Base ── */
.hiw-circle {
    width: 185px;
    height: 185px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 22px 16px;
    gap: 9px;
    transition: box-shadow .3s var(--ease), border-color .3s var(--ease),
                transform .3s var(--ease);
    flex-shrink: 0;
    position: relative;
}

/* ── LIGHT variant (white bg) ── */
.hiw-circle.light {
    background: var(--white);
    border: 2px solid var(--border);
    box-shadow: var(--sh-sm);
}

.hiw-circle.light:hover {
    box-shadow: var(--sh-lg);
    border-color: rgba(240, 165, 0, .4);
    transform: translateY(-6px);
}

.hiw-circle.light h3 { color: var(--navy); }
.hiw-circle.light p  { color: var(--muted); }

.hiw-circle.light .hiw-icon {
    background: rgba(240, 165, 0, .1);
    border: 2px solid rgba(240, 165, 0, .25);
    color: var(--gold);
}

/* ── DARK variant (navy bg) ── */
.hiw-circle.dark {
    background: var(--navy);
    border: 2px solid var(--navy);
    box-shadow: 0 16px 48px rgba(11, 19, 64, .28);
}

.hiw-circle.dark:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 24px 60px rgba(11, 19, 64, .4);
}

.hiw-circle.dark h3 { color: #fff; }
.hiw-circle.dark p  { color: rgba(255, 255, 255, .58); }

.hiw-circle.dark .hiw-icon {
    background: rgba(255, 206, 60, .12);
    border: 2px solid rgba(255, 206, 60, .28);
    color: var(--gold);
}

/* ── Featured (larger circle) ── */
.hiw-circle.featured {
    width: 210px;
    height: 210px;
    padding: 26px 20px;
}

/* ── Icon ── */
.hiw-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

/* ── Circle Text ── */
.hiw-circle h3 {
    font-family: var(--font-h);
    font-size: var(--text-base);
    font-weight: 800;
    line-height: 1.3;
}

.hiw-circle p {
    font-size: var(--text-xs);
    line-height: 1.6;
}

/* ── Travels horizontal cards ── */
.hiw-travels-wrap {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 0;
}

.hiw-tc {
    flex: 1;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    transition: box-shadow .3s var(--ease), border-color .3s var(--ease),
                transform .3s var(--ease);
}

.hiw-tc:hover {
    box-shadow: var(--sh-md);
    border-color: rgba(240, 165, 0, .35);
    transform: translateY(-4px);
}

.hiw-tc-num {
    position: absolute;
    top: -13px;
    left: 22px;
    background: var(--navy);
    color: var(--gold);
    font-family: var(--font-h);
    font-size: var(--text-xs);
    font-weight: 800;
    letter-spacing: .06em;
    padding: 3px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(11, 19, 64, .18);
}

.hiw-tc-icon {
    width: 48px;
    height: 48px;
    background: rgba(240, 165, 0, .1);
    border: 1.5px solid rgba(240, 165, 0, .25);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

.hiw-tc-body strong {
    display: block;
    font-family: var(--font-h);
    font-size: var(--text-base);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}

.hiw-tc-body p {
    font-size: var(--text-sm);
    color: var(--muted);
    line-height: 1.7;
}

.hiw-tc-arrow {
    display: flex;
    align-items: center;
    padding: 0 10px;
    color: rgba(240, 165, 0, .5);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: -4px;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .hiw-inner           { height: 380px; }
    .hiw-circle          { width: 160px; height: 160px; }
    .hiw-circle.featured { width: 185px; height: 185px; }
}

@media (max-width: 860px) {
    .hiw-inner {
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px 20px;
        max-width: 440px;
        position: relative;
    }

    .hiw-wave-line { display: none; }

    .hiw-step,
    .hiw-step:nth-child(2),
    .hiw-step:nth-child(3),
    .hiw-step:nth-child(4),
    .hiw-step:nth-child(5),
    .hiw-step:nth-child(6) {
        position: relative;
        left: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        justify-content: flex-start;
        padding: 0;
        align-items: center;
    }

    .hiw-step:nth-child(2) .hiw-num,
    .hiw-step:nth-child(4) .hiw-num,
    .hiw-step:nth-child(6) .hiw-num {
        order: -1;
        margin-bottom: 14px;
        margin-top: 0;
    }

    .hiw-circle          { width: 175px; height: 175px; }
    .hiw-circle.featured { width: 195px; height: 195px; }

    .hiw-travels-wrap {
        flex-direction: column;
        gap: 24px;
    }

    .hiw-tc-arrow {
        transform: rotate(90deg);
        margin: 0 auto;
        padding: 0;
    }

    .hiw-travels-header {
        margin: 48px auto 28px;
    }
}

@media (max-width: 480px) {
    .hiw-section { padding: 72px 5vw; }

    .hiw-inner {
        grid-template-columns: 1fr;
        max-width: 210px;
        gap: 0;
    }

    .hiw-step:not(:last-child)::after {
        content: '';
        display: block;
        height: 24px;
        border-left: 2.5px dashed rgba(240, 165, 0, .35);
        margin: 8px auto 0;
    }

    .hiw-circle          { width: 195px; height: 195px; }
    .hiw-circle.featured { width: 210px; height: 210px; }

    .hiw-travels-header .section-title {
        font-size: clamp(24px, 7vw, 32px);
    }
}

/* ─── CTA BANNER ─────────────────────────────── */
.cta-banner {
    position: relative;
    padding: 110px 5vw;
    overflow: hidden;
    isolation: isolate;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/cta-banner-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -2;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(11, 19, 64, .92) 0%,
            rgba(11, 19, 64, .80) 50%,
            rgba(23, 32, 96, .88) 100%);
    z-index: -1;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 2;
}

.cta-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* FIXED: CTA heading — fluid, 900 weight */
.cta-title {
    font-family: var(--font-h);
    font-size: clamp(30px, 3.8vw, 52px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.cta-title em {
    font-style: normal;
    background: linear-gradient(90deg, var(--gold), #FFD060);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-sub {
    font-size: var(--text-lg);
    font-weight: 400;
    color: rgba(255, 255, 255, .65);
    line-height: 1.75;
    max-width: 480px;
}

.cta-feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}

.cta-feat {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: var(--text-base);
    font-weight: 500;
    color: rgba(255, 255, 255, .82);
}

.cta-feat i {
    color: var(--gold);
    font-size: 14px;
    flex-shrink: 0;
}

.cta-card {
    background: var(--white);
    border-radius: var(--r-xl);
    padding: 32px 28px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .35);
}

.cta-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1.5px solid var(--border);
}

.cta-card-head i {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    background: rgba(240, 165, 0, .1);
    border: 1.5px solid rgba(240, 165, 0, .25);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold);
}

/* FIXED: card head title — Plus Jakarta Sans 800, --text-lg */
.cta-card-head strong {
    display: block;
    font-family: var(--font-h);
    font-size: var(--text-lg);
    font-weight: 800;
    color: var(--navy);
}

.cta-card-head span {
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--muted);
    margin-top: 2px;
    display: block;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cta-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cta-field label {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--text);
    letter-spacing: .03em;
}

.cta-field input,
.cta-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;
}

.cta-field input:focus,
.cta-field select:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(240, 165, 0, .1);
}

.cta-field input::placeholder {
    color: #bbb;
    font-size: var(--text-sm);
}

.cta-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;
}

.cta-note {
    margin-top: 12px;
    font-size: var(--text-xs);
    font-weight: 400;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-note i {
    color: var(--gold);
}

@media (max-width: 1024px) {
    .cta-inner {
        grid-template-columns: 1fr 380px;
        gap: 48px;
    }
}

@media (max-width: 860px) {
    .cta-banner {
        padding: 80px 5vw;
    }

    .cta-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-feats {
        grid-template-columns: 1fr 1fr;
    }

    .cta-bg {
        background-attachment: scroll;
    }
}

@media (max-width: 520px) {
    .cta-feats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cta-title {
        font-size: 30px;
    }

    .cta-card {
        padding: 24px 20px;
    }
}

/* ─── TESTIMONIALS SECTION ───────────────────── */
.testimonials-section {
    padding: 100px 5vw;
    background: var(--off);
    overflow: hidden;
}

/* ── Stats Bar ── */
.testi-stats-bar {
    max-width: 780px;
    margin: 0 auto 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 20px 32px;
    box-shadow: var(--sh-sm);
    flex-wrap: wrap;
}

.tsb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.tsb-item strong {
    font-family: var(--font-h);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}

.tsb-item span {
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--muted);
    white-space: nowrap;
}

.tsb-div {
    width: 1px;
    height: 36px;
    background: var(--border);
    flex-shrink: 0;
}

/* ── Tab Filter ── */
.testi-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tt-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    border-radius: 30px;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--muted);
    font-family: var(--font);
    font-size: var(--text-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all .22s var(--ease);
}

.tt-btn i { font-size: 12px; }

.tt-btn:hover {
    border-color: var(--gold);
    color: var(--navy);
}

.tt-btn.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--gold);
    box-shadow: 0 4px 14px rgba(11, 19, 64, .2);
}

/* ── Swiper Outer — blur edges ── */
.testi-swiper-outer {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
}

/* Left fade */
.testi-swiper-outer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: calc(100% - 60px);
    background: linear-gradient(to right, var(--off) 0%, rgba(247,248,252,0.7) 50%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

/* Right fade */
.testi-swiper-outer::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: calc(100% - 60px);
    background: linear-gradient(to left, var(--off) 0%, rgba(247,248,252,0.7) 50%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

/* ── Swiper ── */
.testiSwiper {
    padding: 16px 4px 60px !important;
    overflow: hidden !important;
}

/* ── Card ── */
.testi-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r-lg);
    padding: 26px 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: box-shadow .3s var(--ease), border-color .3s var(--ease),
                transform .3s var(--ease);
}

/* Decorative quote */
.testi-card::before {
    content: '\201C';
    position: absolute;
    top: -8px;
    right: 18px;
    font-family: var(--font-h);
    font-size: 110px;
    font-weight: 900;
    color: rgba(240, 165, 0, .07);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.testi-card:hover {
    box-shadow: var(--sh-md);
    border-color: rgba(240, 165, 0, .4);
    transform: translateY(-4px);
}

.testi-card.featured {
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(240, 165, 0, .15);
}

/* ── Category Badge ── */
.testi-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-xs);
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    width: fit-content;
    position: relative;
    z-index: 1;
}

.testi-card-badge.driving {
    background: rgba(11, 19, 64, .07);
    color: var(--navy);
    border: 1px solid rgba(11, 19, 64, .12);
}

.testi-card-badge.travels {
    background: rgba(22, 101, 52, .07);
    color: #166534;
    border: 1px solid rgba(22, 101, 52, .15);
}

/* ── NEW: Acting Driver badge ── */
.testi-card-badge.acting {
    background: rgba(124, 58, 237, .08);
    color: #6d28d9;
    border: 1px solid rgba(124, 58, 237, .18);
}

.testi-card-badge i { font-size: 10px; }

/* ── Stars ── */
.tc-stars {
    display: flex;
    gap: 3px;
    position: relative;
    z-index: 1;
}

.tc-stars i {
    color: var(--gold);
    font-size: 13px;
}

/* ── Review Text ── */
.tc-text {
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--muted);
    line-height: 1.75;
    flex: 1;
    position: relative;
    z-index: 1;
}

/* ── Bottom Block ── */
.tc-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.tc-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tc-avatar {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--av-color, var(--navy));
    color: var(--gold);
    font-family: var(--font-h);
    font-size: var(--text-lg);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tc-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tc-meta strong {
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--navy);
}

.tc-meta span {
    font-size: var(--text-xs);
    font-weight: 400;
    color: var(--muted);
}

.tc-google {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(234, 67, 53, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EA4335;
    font-size: 13px;
    flex-shrink: 0;
}

/* ── Footer ── */
.tc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.tc-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: var(--text-xs);
    font-weight: 600;
    color: #16a34a;
}

.tc-tag.travels-tag { color: #166534; }

/* ── NEW: Acting Driver tag color ── */
.tc-tag.acting-tag  { color: #6d28d9; }

.tc-tag i { font-size: 11px; }

.tc-date {
    font-size: var(--text-xs);
    font-weight: 400;
    color: var(--light-muted);
}

/* ── Swiper Arrows ── */
.testi-swiper-prev,
.testi-swiper-next {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: var(--white) !important;
    border: 1.5px solid var(--border) !important;
    box-shadow: var(--sh-md) !important;
    top: 42% !important;
    z-index: 20 !important;
    transition: background .2s var(--ease), border-color .2s var(--ease),
                transform .2s var(--ease) !important;
}

.testi-swiper-prev:hover,
.testi-swiper-next:hover {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    transform: translateY(-50%) scale(1.08) !important;
}

.testi-swiper-prev::after,
.testi-swiper-next::after {
    font-size: 13px !important;
    font-weight: 900 !important;
    color: var(--navy) !important;
}

.testi-swiper-prev { left: 8px !important; }
.testi-swiper-next { right: 8px !important; }

/* ── Pagination Dots ── */
.testi-pagination {
    bottom: 12px !important;
}

.testi-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--border);
    opacity: 1;
    transition: all .3s var(--ease);
}

.testi-pagination .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .testi-swiper-outer::before,
    .testi-swiper-outer::after { width: 60px; }
}

@media (max-width: 768px) {
    .testi-swiper-outer::before,
    .testi-swiper-outer::after { width: 40px; }
    .tsb-div { display: none; }
    .testi-stats-bar { gap: 16px 24px; padding: 16px 20px; }
}

@media (max-width: 520px) {
    .testimonials-section { padding: 72px 5vw; }
    .testi-swiper-outer::before,
    .testi-swiper-outer::after { display: none; }
    .testi-swiper-prev,
    .testi-swiper-next { display: none !important; }
}



/* ─── FAQ SECTION ────────────────────────────── */
.faq-section {
    padding: 100px 5vw;
    background: var(--white);
}

.faq-inner {
    max-width: 1200px;
    margin: 0 auto 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 32px;
    align-items: start;
}

.faq-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--white);
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.faq-item:hover {
    border-color: rgba(240, 165, 0, .35);
    box-shadow: var(--sh-sm);
}

.faq-item.open {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(240, 165, 0, .1);
}

/* FIXED: question text — Inter 600, --text-md (was --text-base, felt too light) */
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: var(--font);
    font-size: var(--text-md);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.45;
    transition: background .2s;
}

.faq-q:hover {
    background: rgba(240, 165, 0, .03);
}

.faq-item.open .faq-q {
    background: rgba(240, 165, 0, .05);
}

.faq-icon-wrap {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(240, 165, 0, .1);
    border: 1.5px solid rgba(240, 165, 0, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 11px;
    transition: background .25s, transform .35s var(--ease), border-color .25s;
}

.faq-item.open .faq-icon-wrap {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s var(--ease), padding .3s;
}

/* FIXED: answer text — Inter 400, --text-base */
.faq-a p {
    padding: 0 20px 18px 20px;
    font-family: var(--font);
    font-size: var(--text-base);
    font-weight: 400;
    color: var(--muted);
    line-height: 1.75;
    border-top: 1px solid var(--border);
    padding-top: 14px;
}

.faq-item.open .faq-a p {
    border-color: rgba(240, 165, 0, .15);
}

@media (max-width: 860px) {
    .faq-inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .faq-section {
        padding: 72px 5vw;
    }

    .btn-primary {
        flex: 1;
        justify-content: center;
    }
}

/* ========================
   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;
    }
}