/* ═══════════════════════════════════════════════════════════════
   ON ROUTE RENTAL CR — Design System
   Theme: Dual (Dark Hybrid + Light Premium)
   Typography: Cormorant Garamond (headings) + DM Sans (body)
   ═══════════════════════════════════════════════════════════════ */

/* ─── RESET ─── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ─── DARK THEME (Default) ─── */
:root {
    /* Backgrounds — hybrid black with subtle blue tint */
    --bg-primary: #0A0F1A;
    --bg-secondary: #0E1422;
    --bg-tertiary: #131A2B;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --bg-card-solid: #111827;
    --bg-nav: rgba(10, 15, 26, 0.85);
    --bg-hero-overlay: linear-gradient(180deg, rgba(10,15,26,0.7) 0%, rgba(10,15,26,0.95) 100%);

    /* Gold system */
    --gold: #C9A84C;
    --gold-light: #E8D48B;
    --gold-dark: #9A7B2E;
    --gold-glow: rgba(201, 168, 76, 0.15);
    --gradient-gold: linear-gradient(135deg, #C9A84C 0%, #E8D48B 50%, #C9A84C 100%);

    /* Text */
    --text-primary: #F0EDE6;
    --text-secondary: #8A90A0;
    --text-muted: #4A5068;
    --text-inverse: #0A0F1A;

    /* Borders */
    --border: rgba(201, 168, 76, 0.12);
    --border-hover: rgba(201, 168, 76, 0.30);
    --border-subtle: rgba(255, 255, 255, 0.06);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 0 30px rgba(201, 168, 76, 0.08);
    --shadow-gold-hover: 0 0 40px rgba(201, 168, 76, 0.15);

    /* Semantic */
    --success: #5DCC73;
    --warning: #E8A84C;
    --star: #F5C518;

    /* Spacing */
    --nav-height: 125px;
    --section-padding: clamp(4rem, 8vw, 7rem);
    --container-width: 1200px;
    --container-narrow: 800px;

    /* Radius */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 0.2s;
    --duration: 0.4s;
    --duration-slow: 0.7s;

    /* Theme toggle icon */
    --theme-icon: "☀️";
}

/* ─── LIGHT THEME ─── */
[data-theme="light"] {
    --bg-primary: #FAFAF8;
    --bg-secondary: #F2F0EB;
    --bg-tertiary: #E8E5DE;
    --bg-card: rgba(255, 255, 255, 0.7);
    --bg-card-hover: rgba(255, 255, 255, 0.9);
    --bg-card-solid: #FFFFFF;
    --bg-nav: rgba(250, 250, 248, 0.95);
    --bg-hero-overlay: none;

    --gold: #B8952F;
    --gold-light: #C9A84C;
    --gold-dark: #8A6E1F;
    --gold-glow: rgba(184, 149, 47, 0.1);
    --gradient-gold: linear-gradient(135deg, #B8952F 0%, #D4B44A 50%, #B8952F 100%);

    --text-primary: #1A1A2E;
    --text-secondary: #5A5A6E;
    --text-muted: #9A9AAE;
    --text-inverse: #F0EDE6;

    --border: rgba(184, 149, 47, 0.15);
    --border-hover: rgba(184, 149, 47, 0.35);
    --border-subtle: rgba(0, 0, 0, 0.06);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.10);
    --shadow-gold: 0 0 30px rgba(184, 149, 47, 0.06);
    --shadow-gold-hover: 0 0 40px rgba(184, 149, 47, 0.12);

    --theme-icon: "🌙";
}

/* ─── BASE ─── */
html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-dark) var(--bg-primary);
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background var(--duration) var(--ease-out),
                color var(--duration) var(--ease-out);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--duration-fast);
}

a:hover {
    color: var(--gold-light);
}

::selection {
    background: var(--gold);
    color: var(--text-inverse);
}

/* ═══════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════ */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    line-height: 1.15;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    margin-bottom: 0.5rem;
}

h4 {
    font-size: 1.1rem;
}

.gold-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 650px;
    line-height: 1.85;
}

.divider-gold {
    width: 60px;
    height: 2px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 2px;
    margin: 2rem 0;
}

/* ═══════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════ */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.container--narrow {
    max-width: var(--container-narrow);
}

section {
    padding: var(--section-padding) 0;
    position: relative;
}

section:nth-child(even) {
    background: var(--bg-secondary);
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: var(--bg-nav);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 1000;
    transition: background var(--duration) var(--ease-out),
                box-shadow var(--duration) var(--ease-out),
                height var(--duration) var(--ease-out);
}

.nav.menu-open {
    height: 100dvh;
    height: 100vh;
    background: var(--bg-nav);
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    white-space: nowrap;
}

.nav__logo img {
    height: 38px;
    width: auto;
}

.nav__logo span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav__link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color var(--duration-fast);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--duration) var(--ease-out);
}

.nav__link:hover,
.nav__link.active {
    color: var(--gold);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

/* Nav Controls (Theme + Language) */
.nav__controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav__theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all var(--duration-fast);
}

.nav__theme-toggle:hover {
    border-color: var(--border-hover);
    color: var(--gold);
    background: var(--bg-card-hover);
}

.nav__lang {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    overflow: hidden;
    background: var(--bg-card);
}

.nav__lang-btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all var(--duration-fast);
    font-family: 'DM Sans', sans-serif;
}

.nav__lang-btn:hover {
    color: var(--text-secondary);
}

.nav__lang-btn.active {
    background: var(--gold);
    color: var(--text-inverse);
}

/* Hamburger */
.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--duration) var(--ease-out);
}

.nav__hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translateY(5px) translateX(5px);
}

.nav__hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav__hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

/* Mobile Nav — SOLID opaque overlay */
.nav__mobile-menu {
    display: flex;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    height: calc(100vh - var(--nav-height));
    height: calc(100dvh - var(--nav-height));
    z-index: 999;
    flex-direction: column;
    gap: 0;
    padding: 0 2rem 2rem;
    overflow-y: auto;
    /* Solid opaque background — NO transparency */
    background: var(--bg-primary);
    /* Hidden by default */
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: opacity var(--duration) var(--ease-out),
                transform var(--duration) var(--ease-out),
                visibility 0s linear var(--duration);
}

.nav__mobile-menu.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity var(--duration) var(--ease-out),
                transform var(--duration) var(--ease-out),
                visibility 0s linear 0s;
}

.nav__mobile-menu a {
    display: block;
    padding: 1.1rem 0;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 1px solid var(--border-subtle);
}

.nav__mobile-menu a:hover,
.nav__mobile-menu a:active {
    color: var(--gold);
}

/* Language & Theme controls INSIDE mobile menu */
.nav__mobile-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

/* Hide desktop controls on mobile (they appear in the mobile menu instead) */
@media (max-width: 768px) {
    .nav__controls {
        display: none;
    }
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--nav-height);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity var(--duration) var(--ease-out);
}

/* Dark mode: show sunset/night image, hide day image */
.hero__bg-dark {
    opacity: 1;
}
.hero__bg-light {
    position: absolute;
    inset: 0;
    opacity: 0;
}

/* Light mode: show day image, hide night image */
[data-theme="light"] .hero__bg-dark {
    opacity: 0;
}
[data-theme="light"] .hero__bg-light {
    opacity: 1;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-hero-overlay);
    transition: background var(--duration) var(--ease-out);
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    padding: 4rem 0;
}

/* Light mode: text in a frosted glass card over full-color photo */
[data-theme="light"] .hero__content {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 3rem 3rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    margin: 2rem 0;
}

.hero__trust-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.trust-badge .stars {
    color: var(--star);
    letter-spacing: 1px;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 560px;
    margin: 1.5rem 0 2.5rem;
    line-height: 1.8;
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--duration) var(--ease-out);
    white-space: nowrap;
}

.btn--primary {
    background: var(--gradient-gold);
    color: #0A0F1A;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.25);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 168, 76, 0.35);
    color: #0A0F1A;
}

.btn--secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn--secondary:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    color: var(--gold);
}

.btn--whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.btn--whatsapp:hover {
    background: #22c35e;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.35);
    color: #fff;
}

.btn--sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.8rem;
}

/* ═══════════════════════════════════════
   CARDS
   ═══════════════════════════════════════ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all var(--duration) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity var(--duration) var(--ease-out);
}

.card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-gold-hover);
    transform: translateY(-4px);
}

.card:hover::before {
    opacity: 1;
}

.card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--gold-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.card__title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card__text {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.65;
}

/* Vehicle Card */
.vehicle-card {
    background: var(--bg-card-solid);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--duration) var(--ease-out);
}

.vehicle-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-gold-hover);
    transform: translateY(-6px);
}

.vehicle-card__img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: var(--bg-tertiary);
}

.vehicle-card__body {
    padding: 1.5rem;
}

.vehicle-card__category {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.vehicle-card__name {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.vehicle-card__specs {
    color: var(--text-secondary);
    font-size: 0.82rem;
    margin-bottom: 0.4rem;
}

.vehicle-card__context {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-style: italic;
    margin-bottom: 1.25rem;
}

.vehicle-card__cta {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* ═══════════════════════════════════════
   STATS / SOCIAL PROOF
   ═══════════════════════════════════════ */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.stat {
    text-align: center;
}

.stat__number {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat__label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Review Card */
.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
}

.review-card__stars {
    color: var(--star);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.review-card__text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.25rem;
}

.review-card__author {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-primary);
}

.review-card__source {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ── Enhanced real Google review cards ── */
.review-card {
    transition: all var(--duration) var(--ease-out);
}
.review-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-gold-hover);
}
.review-card__top {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.review-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--av, var(--gold));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    font-family: 'DM Sans', sans-serif;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.review-card__meta {
    flex: 1;
    min-width: 0;
}
.review-card__badge {
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}
.review-card__date {
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}
.review-card__g {
    flex-shrink: 0;
    opacity: 0.85;
    margin-top: 2px;
}

/* ── Reviews section header (title + Google badge side by side) ── */
.reviews__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 0;
}
.google-badge-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-card);
    text-decoration: none;
    transition: all var(--duration) var(--ease-out);
    flex-shrink: 0;
}
.google-badge-link:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.google-badge-stars {
    font-size: 0.85rem;
    color: var(--star);
    font-weight: 700;
    line-height: 1.2;
}
.google-badge-num {
    color: var(--text-primary);
    margin-left: 0.2rem;
}
.google-badge-count {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}
.google-badge-arrow {
    font-size: 1rem;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════ */
.faq-list {
    max-width: var(--container-narrow);
}

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color var(--duration-fast);
}

.faq-item__question:hover {
    color: var(--gold);
}

.faq-item__icon {
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform var(--duration) var(--ease-out);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.open .faq-item__icon {
    transform: rotate(45deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration) var(--ease-out),
                padding var(--duration) var(--ease-out);
}

.faq-item.open .faq-item__answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.faq-item__answer p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.8;
}

/* ═══════════════════════════════════════
   WHATSAPP FLOATING WIDGET
   ═══════════════════════════════════════ */
.wa-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
}

.wa-widget__btn {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: #25D366;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--duration) var(--ease-out);
}

.wa-widget__btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.wa-widget__btn svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.wa-widget__popup {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 320px;
    background: var(--bg-card-solid);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transition: all var(--duration) var(--ease-out);
}

.wa-widget__popup.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.wa-widget__popup-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.wa-widget__popup-text {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.wa-widget__popup .btn {
    width: 100%;
    justify-content: center;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    padding: 4rem 0 2rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__brand {
    max-width: 300px;
}

.footer__brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.footer__brand-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer__heading {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__links a {
    font-size: 0.88rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--duration-fast);
}

.footer__links a:hover {
    color: var(--gold);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.78rem;
    color: var(--text-muted);
}

.footer__socials {
    display: flex;
    gap: 1rem;
}

.footer__socials a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all var(--duration-fast);
}

.footer__socials a:hover {
    color: var(--gold);
    border-color: var(--border-hover);
}

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--duration-slow) var(--ease-out),
                transform var(--duration-slow) var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--ease-out),
                transform 0.5s var(--ease-out);
}

.reveal-children.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(2) { transition-delay: 0.08s; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(3) { transition-delay: 0.12s; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(4) { transition-delay: 0.18s; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(5) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(6) { transition-delay: 0.30s; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(7) { transition-delay: 0.36s; opacity: 1; transform: translateY(0); }
.reveal-children.visible > *:nth-child(8) { transition-delay: 0.42s; opacity: 1; transform: translateY(0); }

/* Pulse animation for WhatsApp */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.wa-widget__btn {
    animation: pulse 2.5s infinite;
}

/* Gradient shimmer for gold elements */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.btn--primary:hover {
    background-size: 200% auto;
    animation: shimmer 2s linear infinite;
}

/* ═══════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.hidden { display: none !important; }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }

    .nav__hamburger {
        display: flex;
    }

    .hero__content {
        padding: 2rem 0;
    }

    h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero__trust-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero__ctas {
        flex-direction: column;
    }

    .hero__ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .wa-widget {
        bottom: 1.25rem;
        right: 1.25rem;
    }

    .wa-widget__popup {
        width: 280px;
        right: -0.5rem;
    }

    .wa-widget__btn {
        width: 52px;
        height: 52px;
    }

    .wa-widget__btn svg {
        width: 28px;
        height: 28px;
    }

    /* ── Transfers table: stack on mobile ── */
    .routes-table th:nth-child(4),
    .routes-table td:nth-child(4) {
        display: none;
    }
    .routes-table th, .routes-table td {
        padding: 1rem 0.75rem;
        font-size: 0.85rem;
    }

    /* ── Tours grid single column ── */
    .tours-grid {
        grid-template-columns: 1fr;
    }

    /* ── Zones grid single column ── */
    .zones-grid {
        grid-template-columns: 1fr;
    }

    /* ── Services grid single column ── */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* ── Features grid single column ── */
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* ── Steps row single column ── */
    .steps-row {
        grid-template-columns: 1fr;
    }

    /* ── Map container smaller ── */
    .map-container {
        height: 350px;
    }
}

@media (max-width: 480px) {
    section {
        padding: clamp(2.5rem, 6vw, 4rem) 0;
    }

    .stats-bar {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .nav__controls {
        gap: 0.5rem;
    }

    .nav__lang-btn {
        padding: 0.35rem 0.45rem;
        font-size: 0.65rem;
    }

    /* ── Transfers table: hide time column on tiny screens ── */
    .routes-table th:nth-child(2),
    .routes-table td:nth-child(2) {
        display: none;
    }

    .map-container {
        height: 280px;
    }
}


/* ═══════════════════════════════════════
   FAQ DRAWER & WIDGET
   ═══════════════════════════════════════ */
.faq-float-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--gold);
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 900;
    transition: all var(--duration) var(--ease-out);
    backdrop-filter: blur(10px);
}
.faq-float-btn:hover {
    background: var(--gold);
    color: #0A0F1A;
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold-hover);
    border-color: var(--gold);
}

.faq-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--duration) var(--ease-out), visibility var(--duration);
}
.faq-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.faq-drawer {
    position: fixed;
    top: 0;
    left: -400px;
    width: 400px;
    max-width: 85vw;
    height: 100dvh;
    background: var(--bg-primary);
    z-index: 10001;
    box-shadow: var(--shadow-lg);
    transition: left var(--duration) var(--ease-spring);
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border);
}
.faq-drawer.open {
    left: 0;
}

.faq-drawer__header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.faq-drawer__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}
.faq-drawer__close {
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color var(--duration-fast);
}
.faq-drawer__close:hover {
    color: var(--text-primary);
}

.faq-drawer__body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
    scrollbar-width: thin;
}

/* FAQ ITEM ACCORDION */
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all var(--duration-fast);
}
.faq-item.active {
    border-color: var(--gold);
    background: var(--bg-card-hover);
}
.faq-item__question {
    width: 100%;
    text-align: left;
    padding: 1.25rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq-item__icon {
    color: var(--gold);
    font-size: 1.25rem;
    transition: transform var(--duration-fast);
}
.faq-item.active .faq-item__icon {
    transform: rotate(45deg);
}
.faq-item__answer {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: max-height var(--duration) var(--ease-out), padding var(--duration) var(--ease-out);
}
.faq-item.active .faq-item__answer {
    padding: 0 1.25rem 1.25rem;
    max-height: 500px;
}
.faq-drawer__footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
}
