/* ================================================================
   ATLAS AUTO MARRAKECH — Luxury Dark Theme
   Inspired by premium car-rental editorial sites
   Palette: Deep charcoal + amber gold
   ================================================================ */

/* -------- 1. Design tokens -------- */
:root {
    --bg:            #0A0A0B;   /* deepest background */
    --surface:       #121214;   /* cards, sections */
    --surface-2:     #1A1A1D;   /* elevated cards */
    --surface-3:     #202024;   /* inputs, hover */
    --border:        #262629;   /* hairlines */
    --border-strong: #33333A;
    --text:          #F5F1E8;   /* off-white */
    --text-muted:    #A0A0A8;   /* secondary */
    --text-dim:      #6B6B72;
    --gold:          #E2B464;   /* primary accent */
    --gold-bright:   #F5C97D;   /* hover */
    --gold-deep:     #B88A3E;   /* active */
    --gold-glow:     rgba(226, 180, 100, 0.35);
    --danger:        #C94545;

    --radius-sm: 8px;
    --radius:    16px;
    --radius-lg: 24px;
    --radius-pill: 999px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow:    0 8px 32px rgba(0,0,0,0.45);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.6);
    --shadow-gold: 0 10px 40px rgba(226, 180, 100, 0.25);

    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

    --container: 1240px;
}

/* -------- 2. Reset + base -------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select { font-family: inherit; color: inherit; }
h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.15;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* -------- 3. Shared utilities -------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}
.eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.section-head {
    text-align: center;
    margin-bottom: 56px;
}
.section-head .eyebrow {
    justify-content: center;
    margin-bottom: 16px;
}
.section-head .eyebrow::before,
.section-head .eyebrow::after {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--gold);
}
.section-head h2 {
    font-size: clamp(32px, 4.5vw, 52px);
    margin-bottom: 16px;
}
.section-head h2 .accent { color: var(--gold); font-style: italic; }
.section-head p {
    max-width: 620px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 17px;
}

/* -------- 4. Buttons -------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
                background 0.25s var(--ease), color 0.25s var(--ease);
    white-space: nowrap;
}
.btn--primary {
    background: var(--gold);
    color: #1A1203;
    box-shadow: 0 8px 24px var(--gold-glow);
}
.btn--primary:hover {
    background: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px var(--gold-glow);
}
.btn--ghost-light {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-strong);
}
.btn--ghost-light:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}
.btn--lg { padding: 16px 34px; font-size: 16px; }
.btn .icon { width: 18px; height: 18px; }

/* -------- 5. Navbar -------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: background 0.3s var(--ease), padding 0.3s var(--ease),
                border-color 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
    border-bottom: 1px solid transparent;
}
.navbar.is-scrolled {
    background: rgba(10, 10, 11, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 12px 0;
    border-bottom-color: var(--border);
}
.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.06em;
}
.brand__mark {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1A1203;
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 0 0 1px rgba(226, 180, 100, 0.25), 0 6px 18px var(--gold-glow);
}
.brand__text { line-height: 1.1; }
.brand__text span {
    display: block;
    font-size: 10px;
    letter-spacing: 0.25em;
    color: var(--text-dim);
    font-weight: 500;
    margin-top: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links a {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    position: relative;
    padding: 4px 0;
    transition: color 0.2s var(--ease);
}
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 10px 22px; font-size: 14px; }

/* Mobile burger */
.burger {
    display: none;
    width: 42px;
    height: 42px;
    position: relative;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    transition: border-color 0.2s var(--ease);
}
.burger:hover { border-color: var(--gold); }
.burger span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 1.5px;
    background: var(--text);
    transform: translate(-50%, -50%);
    transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.burger span:nth-child(1) { transform: translate(-50%, -6px); }
.burger span:nth-child(3) { transform: translate(-50%, 5px); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(360px, 100%);
    height: 100vh;
    background: var(--surface);
    border-left: 1px solid var(--border);
    padding: 90px 32px 32px;
    transition: right 0.4s var(--ease);
    z-index: 99;
    overflow-y: auto;
}
.mobile-menu.is-open { right: 0; }
.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.mobile-menu a {
    display: block;
    padding: 14px 0;
    font-size: 18px;
    color: var(--text);
    font-weight: 500;
    border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn { width: 100%; }

@media (max-width: 1024px) {
    .nav-links, .nav-cta .btn { display: none; }
    .burger { display: inline-flex; }
}

/* -------- 6. Hero -------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
    isolation: isolate;
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: url('../images/atlas/hero-car.jpg?v=2');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
}
.hero__bg::after {
    /* dark gradient overlay for text readability */
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 60%, rgba(226, 180, 100, 0.12) 0%, transparent 55%),
        linear-gradient(180deg, rgba(10,10,11,0.4) 0%, rgba(10,10,11,0.7) 55%, var(--bg) 100%),
        linear-gradient(90deg, rgba(10,10,11,0.85) 0%, rgba(10,10,11,0.25) 65%);
}
.hero__content {
    position: relative;
    max-width: 680px;
}
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border: 1px solid rgba(226, 180, 100, 0.4);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(226, 180, 100, 0.06);
    backdrop-filter: blur(8px);
    margin-bottom: 28px;
}
.hero__eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 0 var(--gold-glow);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--gold-glow); }
    50%      { box-shadow: 0 0 0 6px rgba(226,180,100,0); }
}
.hero h1 {
    font-size: clamp(40px, 6.5vw, 84px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
.hero h1 .accent {
    color: var(--gold);
    font-style: italic;
    font-weight: 500;
}
.hero__sub {
    font-size: clamp(16px, 1.4vw, 19px);
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.65;
}
.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 64px;
}
.hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 640px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.hero__stat strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 4px;
}
.hero__stat span {
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
@media (max-width: 640px) {
    .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* -------- 7. Booking bar (floating over hero) -------- */
.booking-wrap {
    margin-top: -60px;
    position: relative;
    z-index: 5;
    padding: 0 24px;
}
.booking {
    max-width: var(--container);
    margin: 0 auto;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 12px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr auto;
    gap: 8px;
    align-items: stretch;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.booking__field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 18px;
    border-radius: var(--radius);
    transition: background 0.2s var(--ease);
    position: relative;
    border-right: 1px solid var(--border);
}
.booking__field:nth-last-child(2) { border-right: 0; }
.booking__field:hover { background: var(--surface-3); }
.booking__field label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dim);
    font-weight: 600;
}
.booking__field input,
.booking__field select {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 2px 0;
    font-size: 15px;
    font-weight: 500;
    outline: 0;
    color-scheme: dark;
}
.booking__field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path fill='%23A0A0A8' d='M3 4.5l3 3 3-3'/></svg>");
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 18px;
}
.booking__submit {
    align-self: stretch;
    padding: 0 30px;
    min-width: 160px;
}
@media (max-width: 900px) {
    .booking {
        grid-template-columns: 1fr 1fr;
        gap: 4px;
    }
    .booking__field { border-right: 0; border-bottom: 1px solid var(--border); }
    .booking__submit { grid-column: span 2; padding: 18px; margin-top: 8px; }
}
@media (max-width: 520px) {
    .booking { grid-template-columns: 1fr; }
    .booking__submit { grid-column: span 1; }
}

/* -------- 8. Section base -------- */
section { padding: 100px 0; }
@media (max-width: 640px) { section { padding: 72px 0; } }

/* -------- 9. Why us / feature cards -------- */
.why {
    background: var(--bg);
}
.why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.why-card {
    background: var(--surface);
    padding: 40px 32px;
    transition: background 0.3s var(--ease), transform 0.3s var(--ease);
    position: relative;
}
.why-card:hover {
    background: var(--surface-2);
    transform: translateY(-2px);
}
.why-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(226, 180, 100, 0.1);
    border: 1px solid rgba(226, 180, 100, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 24px;
}
.why-card__icon svg { width: 26px; height: 26px; }
.why-card h3 {
    font-size: 19px;
    margin-bottom: 10px;
}
.why-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 900px) {
    .why__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
    .why__grid { grid-template-columns: 1fr; }
}

/* -------- 10. Fleet -------- */
.fleet { background: var(--bg); }
.fleet__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}
.fleet__head-left .eyebrow { margin-bottom: 16px; }
.fleet__head-left h2 {
    font-size: clamp(32px, 4.5vw, 52px);
    max-width: 520px;
}
.fleet__head-left h2 .accent { color: var(--gold); font-style: italic; }

.fleet__filters {
    display: inline-flex;
    padding: 6px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    flex-wrap: wrap;
    gap: 4px;
}
.fleet__filter {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: var(--radius-pill);
    transition: all 0.25s var(--ease);
    white-space: nowrap;
}
.fleet__filter:hover { color: var(--text); }
.fleet__filter.is-active {
    background: var(--gold);
    color: #1A1203;
    box-shadow: 0 4px 14px var(--gold-glow);
}

.fleet__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 900px)  { .fleet__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .fleet__grid { grid-template-columns: 1fr; } }

/* Car card */
.car-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s var(--ease), border-color 0.35s var(--ease),
                box-shadow 0.35s var(--ease);
    position: relative;
}
.car-card:hover {
    transform: translateY(-6px);
    border-color: rgba(226, 180, 100, 0.3);
    box-shadow: 0 24px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(226,180,100,0.1);
}
.car-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #0A0A0B;
}
.car-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.car-card:hover .car-card__media img { transform: scale(1.06); }
.car-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(10, 10, 11, 0.8);
    border: 1px solid rgba(226, 180, 100, 0.3);
    border-radius: var(--radius-pill);
    backdrop-filter: blur(8px);
}
.car-card__fav {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(10, 10, 11, 0.8);
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    backdrop-filter: blur(8px);
    transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.car-card__fav:hover { color: var(--gold); border-color: var(--gold); }
.car-card__fav svg { width: 16px; height: 16px; }

.car-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}
.car-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}
.car-card h3 {
    font-size: 20px;
    margin-bottom: 4px;
}
.car-card__type {
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.car-card__rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
}
.car-card__rating svg { width: 14px; height: 14px; fill: var(--gold); }

.car-card__specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.car-card__spec {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}
.car-card__spec svg { width: 18px; height: 18px; color: var(--gold); opacity: 0.9; }

.car-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.car-card__price {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.car-card__price strong {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    color: var(--text);
    font-weight: 700;
}
.car-card__price strong .currency { color: var(--gold); font-size: 16px; margin-right: 4px; }

/* Arabic: digits stay LTR-rendered (so "1 490" doesn't bidi-flip), while
   the .currency span (which is BEFORE the digits in HTML) becomes "درهم"
   via i18n. Result: "درهم 890". The flex container on .car-card__price
   already lays the children out naturally so no order swap is needed. */
.lang-ar .car-card__price strong {
    direction: ltr;
    unicode-bidi: isolate;
    text-align: right;
}
.lang-ar .car-card__price strong .currency {
    margin-right: 6px;
}
.lang-ar .hero__stat strong {
    direction: ltr;
    unicode-bidi: isolate;
}
.lang-ar .hero__stat strong small {
    margin-left: 4px;
}
.car-card__price span {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 4px;
    letter-spacing: 0.08em;
}
.car-card__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: #1A1203;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
                background 0.25s var(--ease);
    flex-shrink: 0;
}
.car-card__btn:hover {
    background: var(--gold-bright);
    transform: scale(1.08) rotate(-8deg);
    box-shadow: 0 8px 22px var(--gold-glow);
}
.car-card__btn svg { width: 18px; height: 18px; }

.fleet__empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

/* -------- 11. How it works -------- */
.how { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.how__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}
.how-step {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.how-step:hover {
    border-color: rgba(226, 180, 100, 0.3);
    transform: translateY(-4px);
}
.how-step__num {
    position: absolute;
    top: -24px;
    right: 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(226,180,100,0.3);
    letter-spacing: -0.05em;
    line-height: 1;
    pointer-events: none;
}
.how-step__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(226,180,100,0.18), rgba(226,180,100,0.05));
    border: 1px solid rgba(226, 180, 100, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 22px;
}
.how-step__icon svg { width: 26px; height: 26px; }
.how-step h3 { font-size: 20px; margin-bottom: 10px; }
.how-step p { color: var(--text-muted); font-size: 15px; margin: 0; }
@media (max-width: 900px) { .how__grid { grid-template-columns: 1fr; } }

/* -------- 12. Destinations -------- */
.destinations { background: var(--bg); }
.dest__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    height: 560px;
}
.dest-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    background: var(--surface);
}
.dest-card:nth-child(1) { grid-row: span 2; }
.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.dest-card:hover img { transform: scale(1.08); }
.dest-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10,10,11,0.9) 100%);
    pointer-events: none;
}
.dest-card__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    z-index: 2;
    color: var(--text);
}
.dest-card__eyebrow {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
    font-weight: 600;
}
.dest-card h3 {
    font-size: clamp(22px, 2.5vw, 30px);
    margin-bottom: 6px;
}
.dest-card p { font-size: 14px; color: var(--text-muted); margin: 0; }
@media (max-width: 900px) {
    .dest__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; }
    .dest-card:nth-child(1) { grid-column: span 2; grid-row: auto; height: 320px; }
    .dest-card { height: 240px; }
}
@media (max-width: 520px) {
    .dest__grid { grid-template-columns: 1fr; }
    .dest-card:nth-child(1) { grid-column: auto; }
}

/* -------- 13. Testimonials -------- */
.testimonials {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.testimonials__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
}
.testimonials__stars {
    display: inline-flex;
    gap: 2px;
    color: var(--gold);
}
.testimonials__stars svg { width: 18px; height: 18px; fill: currentColor; }
.testimonials__score {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
}
.testimonials__count { color: var(--text-muted); font-size: 14px; }

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.testimonial {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.testimonial:hover {
    border-color: rgba(226,180,100,0.25);
    transform: translateY(-4px);
}
.testimonial__stars {
    display: inline-flex;
    gap: 2px;
    color: var(--gold);
    margin-bottom: 16px;
}
.testimonial__stars svg { width: 14px; height: 14px; fill: currentColor; }
.testimonial__quote {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 24px;
}
.testimonial__author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.testimonial__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-deep), var(--gold));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1A1203;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}
.testimonial__name { font-weight: 600; color: var(--text); font-size: 15px; display: block; }
.testimonial__city { font-size: 12px; color: var(--text-dim); letter-spacing: 0.06em; }

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

/* -------- 14. Promo band -------- */
.promo {
    background: var(--bg);
    padding: 80px 0;
}
.promo__inner {
    background:
        linear-gradient(120deg, rgba(226,180,100,0.12) 0%, rgba(10,10,11,0.4) 60%),
        url('../images/atlas/interior-dash.jpg');
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(226, 180, 100, 0.2);
    border-radius: var(--radius-lg);
    padding: 64px 56px;
    position: relative;
    overflow: hidden;
}
.promo__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,10,11,0.85) 0%, rgba(10,10,11,0.5) 70%, transparent 100%);
}
.promo__content { position: relative; z-index: 1; max-width: 540px; }
.promo__badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gold);
    color: #1A1203;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
}
.promo h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 16px;
}
.promo h2 .accent { color: var(--gold); font-style: italic; }
.promo p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 28px;
}
.promo__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.promo__code {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 20px;
    border: 1.5px dashed rgba(226,180,100,0.5);
    color: var(--gold);
    border-radius: var(--radius-pill);
    letter-spacing: 0.12em;
}
@media (max-width: 640px) { .promo__inner { padding: 48px 28px; } }

/* -------- 15. FAQ -------- */
.faq { background: var(--surface); border-top: 1px solid var(--border); }
.faq__list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq__item {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.25s var(--ease);
}
.faq__item[open] { border-color: rgba(226,180,100,0.3); }
.faq__item summary {
    cursor: pointer;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    list-style: none;
    transition: color 0.25s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--gold); }
.faq__item summary::after {
    content: "";
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'><path fill='none' stroke='%23E2B464' stroke-width='1.5' stroke-linecap='round' d='M7 3v8M3 7h8'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s var(--ease), border-color 0.25s var(--ease);
}
.faq__item[open] summary::after {
    transform: rotate(135deg);
    border-color: var(--gold);
}
.faq__item p {
    padding: 0 28px 24px;
    color: var(--text-muted);
    font-size: 15px;
    margin: 0;
    line-height: 1.7;
}

/* -------- 16. Final CTA -------- */
.final-cta {
    background: var(--bg);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center top, rgba(226,180,100,0.15) 0%, transparent 50%);
    pointer-events: none;
}
.final-cta__content { position: relative; }
.final-cta h2 {
    font-size: clamp(32px, 5.5vw, 64px);
    max-width: 760px;
    margin: 16px auto 20px;
    line-height: 1.05;
}
.final-cta h2 .accent { color: var(--gold); font-style: italic; }
.final-cta p {
    max-width: 540px;
    margin: 0 auto 36px;
    color: var(--text-muted);
    font-size: 17px;
}
.final-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

/* -------- 17. Footer -------- */
.footer {
    background: #060607;
    padding: 80px 0 30px;
    border-top: 1px solid var(--border);
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}
.footer__brand { max-width: 320px; }
.footer__brand .brand { margin-bottom: 16px; }
.footer__brand p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 20px;
}
.footer__social {
    display: flex;
    gap: 10px;
}
.footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.25s var(--ease);
}
.footer__social a:hover {
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
}
.footer__social svg { width: 16px; height: 16px; }

.footer__col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer__col a {
    color: var(--text-muted);
    font-size: 14px;
    transition: color 0.2s var(--ease);
}
.footer__col a:hover { color: var(--gold); }
.footer__col li.contact {
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.footer__col li.contact svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; width: 14px; height: 14px; }

.footer__bottom {
    border-top: 1px solid var(--border);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--text-dim);
    font-size: 13px;
}

@media (max-width: 900px) {
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer__brand { grid-column: span 2; }
}
@media (max-width: 520px) {
    .footer__grid { grid-template-columns: 1fr; }
    .footer__brand { grid-column: auto; }
}

/* -------- 18. WhatsApp floating button -------- */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 50;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 12px 28px rgba(37, 211, 102, 0.45));
    transition: transform 0.25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float .wa-float__logo,
.wa-float svg { width: 60px; height: 60px; display: block; }

/* -------- 19. Fade-in animations -------- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .fade-in { opacity: 1; transform: none; transition: none; }
    .hero__eyebrow .dot { animation: none; }
    * { scroll-behavior: auto !important; }
}
