/* =============================================================================
   W7 TRANSFER — Design System
   Identidade: Azul Escuro #243341 · Dourado #B58748 · Off/Cream #F1E8DB
   "Use o azul escuro e dourado como cores principais e o off para detalhes."
   ============================================================================= */

/* ---------- Fonts ---------- */
/* Playfair Display (headings) + Montserrat (UI/body) via Google Fonts.
   Loaded with <link> in each page's <head> for FOUT control. */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; max-width: 100%; }
body { min-height: 100%; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --navy:        #243341;
  --navy-900:    #1a2530;
  --navy-800:    #243341;
  --navy-700:    #33475a;
  --gold:        #b58748;
  --gold-600:    #a5763a;
  --gold-300:    #d0aa72;
  --cream:       #f1e8db;
  --cream-soft:  #f7f1e8;
  --white:       #ffffff;

  /* Neutrals */
  --ink:         #243341;
  --ink-soft:    #4d5b68;
  --ink-mute:    #7b8894;
  --line:        #e4dccf;
  --line-soft:   #efe8dc;
  --bg:          #ffffff;
  --bg-alt:      #faf6f0;

  /* Effects */
  --shadow-sm:   0 1px 2px rgba(36,51,65,.06);
  --shadow:      0 8px 30px rgba(36,51,65,.08), 0 2px 6px rgba(36,51,65,.05);
  --shadow-lg:   0 24px 60px rgba(36,51,65,.16), 0 6px 16px rgba(36,51,65,.08);
  --shadow-gold: 0 10px 30px rgba(181,135,72,.30);

  /* Type */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans:    "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  /* Layout */
  --container:   1200px;
  --radius:      14px;
  --radius-sm:   10px;
  --radius-lg:   24px;
  --header-h:    82px;

  --ease:        cubic-bezier(.22,.61,.36,1);
}

/* ---------- Base ---------- */
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--navy);
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--navy); color: var(--cream-soft); }
.section--navy h2, .section--navy h3 { color: var(--white); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-sans);
  font-size: .72rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-600);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); }
.section--navy .eyebrow { color: var(--gold-300); }

.section-head { max-width: 640px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); margin: 18px 0 16px; }
.section-head p { font-size: 1.075rem; color: var(--ink-soft); }

.lead { font-size: 1.125rem; color: var(--ink-soft); }
.text-gold { color: var(--gold); }
.serif-accent { font-family: var(--font-display); font-style: italic; }

/* ---------- Buttons ---------- */
.btn {
  --_bg: var(--gold);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-sans);
  font-weight: 600; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 1rem 1.9rem; border: 1px solid transparent; border-radius: 999px;
  cursor: pointer; white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn--gold { background: var(--gold); color: var(--white); box-shadow: var(--shadow-gold); }
.btn--gold:hover { background: var(--gold-600); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(181,135,72,.38); }
.btn--navy { background: var(--navy); color: var(--cream-soft); }
.btn--navy:hover { background: var(--navy-900); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold-600); }
.btn--ghost-light { background: transparent; color: var(--cream-soft); border-color: rgba(241,232,219,.35); }
.btn--ghost-light:hover { background: rgba(241,232,219,.1); border-color: var(--gold-300); }
.btn--block { width: 100%; }
.btn--lg { padding: 1.15rem 2.3rem; font-size: .86rem; }

.whatsapp-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.45);
  transition: transform .2s var(--ease);
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 30px; height: 30px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50; height: var(--header-h);
  display: flex; align-items: center;
  transition: background .3s, box-shadow .3s, height .3s;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header.scrolled { background: rgba(255,255,255,.92); backdrop-filter: blur(14px); box-shadow: var(--shadow-sm); height: 70px; }

.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand__icon { width: 42px; height: 42px; flex: none; }
.site-footer .brand__icon .lg-pin { fill: #ffffff; }
.site-footer .brand__icon { width: 38px; height: 38px; }
.brand__word { display: flex; flex-direction: column; line-height: 1; }
.brand__word .w7 { font-family: var(--font-display); font-size: 1.32rem; font-weight: 700; letter-spacing: .02em; color: var(--navy); }
.brand__word .w7 b { color: var(--gold); font-weight: 700; }
.brand__word .transfer { font-family: var(--font-sans); font-size: .62rem; font-weight: 600; letter-spacing: .42em; text-transform: uppercase; color: var(--ink-soft); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a { font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: var(--navy); position: relative; padding: 4px 0; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--gold); transition: width .25s var(--ease); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.nav-dropdown { position: relative; }
.nav-dropdown > button { display: inline-flex; align-items: center; gap: .35rem; background: none; border: 0; cursor: pointer; font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: var(--navy); }
.nav-dropdown > button svg { width: .8em; transition: transform .2s; }
.nav-dropdown:hover > button svg { transform: rotate(180deg); }
.nav-menu {
  position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 230px; background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 10px; opacity: 0; visibility: hidden; transition: .22s var(--ease);
}
.nav-dropdown:hover .nav-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-menu a { display: flex; align-items: center; gap: .7rem; padding: 11px 12px; border-radius: 8px; font-size: .85rem; }
.nav-menu a::after { display: none; }
.nav-menu a:hover { background: var(--cream-soft); color: var(--gold-600); }
.nav-menu a svg { width: 1.15rem; color: var(--gold); flex: none; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.nav-cta { display: none; }

/* Transparent header over a dark hero (desktop): light brand + nav.
   Wrapped in min-width so the always-white mobile header keeps dark text. */
@media (min-width: 861px) {
  .site-header:not(.scrolled) .brand__word .w7 { color: #fff; }
  .site-header:not(.scrolled) .brand__word .w7 b { color: var(--gold-300); }
  .site-header:not(.scrolled) .brand__word .transfer { color: rgba(241,232,219,.7); }
  .site-header:not(.scrolled) .brand__icon .lg-pin { fill: #ffffff; }
  .site-header:not(.scrolled) .nav > a,
  .site-header:not(.scrolled) .nav-dropdown > button { color: var(--cream-soft); }
  .site-header:not(.scrolled) .lang-switch > button { color: var(--cream-soft); border-color: rgba(241,232,219,.32); }
}

/* Language switcher */
.lang-switch { position: relative; }
.lang-switch > button { display: inline-flex; align-items: center; gap: .4rem; background: none; border: 1px solid var(--line); border-radius: 999px; padding: .45rem .8rem; cursor: pointer; font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); }
.lang-switch__menu { position: absolute; right: 0; top: calc(100% + 10px); background: var(--white); border: 1px solid var(--line-soft); border-radius: 10px; box-shadow: var(--shadow-lg); padding: 6px; min-width: 140px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: .18s var(--ease); }
.lang-switch.open .lang-switch__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-switch__menu button { display: flex; width: 100%; align-items: center; gap: .5rem; background: none; border: 0; padding: 9px 10px; border-radius: 7px; cursor: pointer; font-size: .8rem; font-weight: 500; text-align: left; }
.lang-switch__menu button:hover, .lang-switch__menu button[aria-current="true"] { background: var(--cream-soft); color: var(--gold-600); }

/* Mobile nav toggle */
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: none; cursor: pointer; flex-direction: column; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; height: 2px; width: 26px; background: var(--navy); border-radius: 2px; transition: .25s var(--ease); }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: var(--header-h); color: var(--cream-soft); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; background: linear-gradient(120deg, #1c2833 0%, #243341 55%, #33475a 100%); }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(90% 120% at 80% 10%, rgba(181,135,72,.28), transparent 55%); }
.hero__grid { position: absolute; inset: 0; z-index: -1; opacity: .5; background-image: linear-gradient(rgba(241,232,219,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(241,232,219,.04) 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(70% 70% at 70% 30%, #000, transparent); }
.hero .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.hero__content { max-width: 620px; }
.hero__eyebrow { color: var(--gold-300); }
.hero h1 { color: var(--white); font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.04; margin: 22px 0 24px; }
.hero h1 em { font-style: italic; color: var(--gold-300); }
.hero__sub { font-size: 1.15rem; color: rgba(241,232,219,.85); max-width: 520px; margin-bottom: 36px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__stats { display: flex; gap: 40px; margin-top: 52px; padding-top: 34px; border-top: 1px solid rgba(241,232,219,.14); }
.hero__stat .num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold-300); }
.hero__stat .lbl { font-size: .78rem; letter-spacing: .04em; color: rgba(241,232,219,.7); }

.hero__panel { position: relative; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--navy-900); color: var(--cream-soft); }
.trustbar .container { display: flex; flex-wrap: wrap; gap: 28px 48px; justify-content: center; padding-block: 26px; }
.trustbar__item { display: flex; align-items: center; gap: .7rem; font-size: .86rem; font-weight: 500; letter-spacing: .02em; }
.trustbar__item svg { width: 1.35rem; color: var(--gold-300); flex: none; }

/* ---------- Feature cards / services ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.service-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-300); }
.service-card__media { aspect-ratio: 16/11; position: relative; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(26,37,48,.55)); }
.service-card__icon { position: absolute; left: 18px; bottom: 18px; z-index: 2; width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.92); display: grid; place-items: center; }
.service-card__icon svg { width: 24px; color: var(--gold-600); }
.service-card__body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.service-card__body h3 { font-size: 1.45rem; margin-bottom: 10px; }
.service-card__body p { color: var(--ink-soft); font-size: .95rem; flex: 1; }
.service-card__link { margin-top: 20px; display: inline-flex; align-items: center; gap: .5rem; font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-600); }
.service-card__link svg { width: 1rem; transition: transform .2s var(--ease); }
.service-card:hover .service-card__link svg { transform: translateX(4px); }

/* ---------- Feature list (differentials) ---------- */
.feature { display: flex; gap: 18px; align-items: flex-start; }
.feature__ic { flex: none; width: 52px; height: 52px; border-radius: 14px; background: var(--cream-soft); display: grid; place-items: center; }
.feature__ic svg { width: 26px; color: var(--gold-600); }
.section--navy .feature__ic { background: rgba(181,135,72,.16); }
.section--navy .feature__ic svg { color: var(--gold-300); }
.feature h4 { font-family: var(--font-sans); font-size: 1.02rem; font-weight: 700; margin-bottom: 6px; }
.feature p { font-size: .92rem; color: var(--ink-soft); }
.section--navy .feature p { color: rgba(241,232,219,.72); }

/* ---------- About / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.split__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__badge { position: absolute; right: -18px; bottom: 28px; background: var(--gold); color: var(--white); padding: 20px 26px; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.split__badge .n { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; line-height: 1; }
.split__badge .t { font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; opacity: .9; }
.checklist { display: grid; gap: 14px; margin: 26px 0 34px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; color: var(--ink-soft); }
.checklist svg { flex: none; width: 22px; color: var(--gold-600); margin-top: 2px; }

/* ---------- Fleet ---------- */
.fleet-card { background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow .3s var(--ease); }
.fleet-card:hover { box-shadow: var(--shadow-lg); }
.fleet-card__media { aspect-ratio: 16/10; background: var(--cream-soft); }
.fleet-card__media img { width: 100%; height: 100%; object-fit: cover; }
.fleet-card__body { padding: 22px 24px 26px; }
.fleet-card__body h4 { font-family: var(--font-display); font-size: 1.3rem; }
.fleet-card__meta { display: flex; gap: 18px; margin-top: 12px; color: var(--ink-mute); font-size: .82rem; }
.fleet-card__meta span { display: inline-flex; align-items: center; gap: .4rem; }
.fleet-card__meta svg { width: 1rem; color: var(--gold-600); }

/* ---------- Testimonials ---------- */
.testi { background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 34px 32px; box-shadow: var(--shadow-sm); height: 100%; display: flex; flex-direction: column; }
.testi__stars { color: var(--gold); letter-spacing: .15em; margin-bottom: 16px; }
.testi__text { font-size: 1.02rem; color: var(--ink-soft); font-style: italic; flex: 1; }
.testi__who { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.testi__avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: var(--gold-300); display: grid; place-items: center; font-weight: 700; font-family: var(--font-display); }
.testi__who .n { font-weight: 700; font-size: .92rem; color: var(--navy); }
.testi__who .r { font-size: .78rem; color: var(--ink-mute); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--navy-900), var(--navy-700)); color: var(--cream-soft); border-radius: var(--radius-lg); padding: clamp(44px, 6vw, 72px); }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 140% at 90% 20%, rgba(181,135,72,.35), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.8rem); }
.cta-band p { color: rgba(241,232,219,.8); margin: 14px 0 28px; max-width: 560px; }

/* ---------- Page hero (interior) ---------- */
.page-hero { position: relative; padding: calc(var(--header-h) + 70px) 0 80px; color: var(--cream-soft); overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, #1c2833, #243341 60%, #33475a); }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 100% at 85% 15%, rgba(181,135,72,.3), transparent 55%); }
.breadcrumb { display: flex; gap: .5rem; font-size: .78rem; color: rgba(241,232,219,.65); margin-bottom: 18px; letter-spacing: .04em; }
.breadcrumb a:hover { color: var(--gold-300); }
.page-hero h1 { color: var(--white); font-size: clamp(2.4rem, 5.4vw, 3.8rem); max-width: 760px; }
.page-hero p { color: rgba(241,232,219,.82); font-size: 1.12rem; max-width: 620px; margin-top: 16px; }

/* =============================================================================
   Quote form — multi-step (faseado)
   ============================================================================= */
.quote { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.quote__head { background: var(--navy); color: var(--cream-soft); padding: 28px 32px; }
.quote__head h3 { color: var(--white); font-size: 1.5rem; }
.quote__head p { font-size: .9rem; color: rgba(241,232,219,.75); margin-top: 4px; }

.quote__progress { padding: 22px 32px 0; }
.quote__steps { display: flex; justify-content: space-between; margin-bottom: 14px; }
.quote__step { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; position: relative; }
.quote__step .dot { width: 34px; height: 34px; border-radius: 50%; background: var(--cream-soft); color: var(--ink-mute); display: grid; place-items: center; font-weight: 700; font-size: .82rem; border: 2px solid var(--line); transition: .25s var(--ease); z-index: 2; }
.quote__step .lbl { font-size: .68rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-mute); text-align: center; }
.quote__step::before { content: ""; position: absolute; top: 17px; left: -50%; width: 100%; height: 2px; background: var(--line); z-index: 1; }
.quote__step:first-child::before { display: none; }
.quote__step.active .dot { background: var(--gold); color: #fff; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(181,135,72,.18); }
.quote__step.done .dot { background: var(--navy); color: var(--gold-300); border-color: var(--navy); }
.quote__step.active .lbl, .quote__step.done .lbl { color: var(--navy); }
.quote__step.done::before, .quote__step.active::before { background: var(--gold); }

.quote__bar { height: 5px; background: var(--line-soft); border-radius: 999px; overflow: hidden; margin-bottom: 6px; }
.quote__bar span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold-600), var(--gold-300)); border-radius: 999px; transition: width .4s var(--ease); }

.quote__body { padding: 26px 32px 32px; }
.quote__panel { display: none; animation: fadeUp .4s var(--ease); }
.quote__panel.active { display: block; }
.quote__panel h4 { font-family: var(--font-sans); font-weight: 700; font-size: 1.05rem; margin-bottom: 4px; }
.quote__panel .hint { font-size: .84rem; color: var(--ink-mute); margin-bottom: 20px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.col-2 { grid-column: span 2; }
.field label { font-size: .78rem; font-weight: 600; letter-spacing: .03em; color: var(--navy); }
.field label .req { color: var(--gold-600); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg-alt); font-size: .95rem; transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px rgba(181,135,72,.14);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); }
.field.invalid input, .field.invalid select { border-color: #d0492f; box-shadow: 0 0 0 4px rgba(208,73,47,.1); }
.field__err { font-size: .74rem; color: #d0492f; display: none; }
.field.invalid .field__err { display: block; }

.pax-select { display: grid; grid-template-columns: repeat(auto-fit, minmax(52px, 1fr)); gap: 8px; }
.pax-select input { position: absolute; opacity: 0; pointer-events: none; }
.pax-select label { display: grid; place-items: center; padding: .7rem 0; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg-alt); cursor: pointer; font-weight: 600; font-size: .95rem; transition: .18s var(--ease); }
.pax-select input:checked + label { background: var(--gold); color: #fff; border-color: var(--gold); }

.quote__nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 26px; }
.quote__nav .btn { flex: 1; }
.quote__nav .btn--back { flex: 0 0 auto; }

.quote__success { display: none; text-align: center; padding: 40px 20px; }
.quote__success.on { display: block; animation: fadeUp .5s var(--ease); }
.quote__success .ic { width: 74px; height: 74px; margin: 0 auto 20px; border-radius: 50%; background: rgba(37,211,102,.14); color: #1eae57; display: grid; place-items: center; }
.quote__success .ic svg { width: 40px; }
.quote__success h3 { font-size: 1.7rem; margin-bottom: 10px; }
.quote__success p { color: var(--ink-soft); max-width: 420px; margin: 0 auto 24px; }

.consent { display: flex; gap: 10px; align-items: flex-start; margin-top: 16px; font-size: .78rem; color: var(--ink-mute); }
.consent input { margin-top: 3px; accent-color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(241,232,219,.7); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 54px; }
.site-footer .brand__word .w7 { color: #fff; }
.site-footer .brand__word .transfer { color: rgba(241,232,219,.6); }
.footer-about { margin: 20px 0; font-size: .9rem; max-width: 300px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(241,232,219,.16); display: grid; place-items: center; transition: .2s var(--ease); }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer-social svg { width: 18px; }
.site-footer h5 { color: #fff; font-family: var(--font-sans); font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 20px; }
.footer-links { display: grid; gap: 12px; }
.footer-links a { font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold-300); }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: .9rem; margin-bottom: 14px; }
.footer-contact svg { flex: none; width: 1.15rem; color: var(--gold-300); margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(241,232,219,.12); padding: 24px 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .8rem; color: rgba(241,232,219,.5); }
.footer-bottom a:hover { color: var(--gold-300); }

/* ---------- Animations / reveal ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* ---------- Pills (airports, tour spots) ---------- */
.pill-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.pill { display: inline-flex; align-items: center; gap: .55rem; padding: .7rem 1.15rem; border: 1px solid var(--line); border-radius: 999px; background: var(--white); font-size: .88rem; font-weight: 600; color: var(--navy); box-shadow: var(--shadow-sm); }
.pill svg { width: 1.05rem; color: var(--gold-600); }
.section--alt .pill { background: var(--white); }

/* ---------- Intro split for service pages ---------- */
.svc-intro__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16/13; }
.svc-intro__media img { width: 100%; height: 100%; object-fit: cover; }

/* =============================================================================
   Interactive layer — glass, hero showcase, marquee, FAQ, tilt, progress
   ============================================================================= */

/* Scroll progress bar */
.scroll-progress {
  position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 100;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-300));
  transform-origin: 0 50%; transform: scaleX(0); will-change: transform;
}

/* Glassmorphism */
.glass {
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 20px 50px rgba(14,22,30,.35);
}

/* Numbered eyebrow */
.eyebrow .num { font-variant-numeric: tabular-nums; opacity: .9; }

/* Hero full-bleed photo */
.hero__photo { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.hero__bg { z-index: -2; }
.hero__bg.with-photo { background: linear-gradient(105deg, rgba(26,37,48,.94) 0%, rgba(36,51,65,.82) 45%, rgba(36,51,65,.55) 100%); }

/* Hero showcase (framed image + floating glass cards) */
.hero__showcase { position: relative; width: 100%; max-width: 440px; margin-left: auto; }
.hero__frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; border: 1px solid rgba(241,232,219,.14); }
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }

.float-card {
  position: absolute; display: flex; align-items: center; gap: .7rem;
  padding: .8rem 1rem; border-radius: 14px; color: var(--cream-soft);
  background: rgba(26,37,48,.55); backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(241,232,219,.16); box-shadow: 0 16px 40px rgba(14,22,30,.4);
  font-size: .82rem; will-change: transform; animation: floaty 6s var(--ease) infinite;
}
.float-card .fc-ic { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; flex: none; background: rgba(181,135,72,.22); color: var(--gold-300); }
.float-card .fc-ic svg { width: 18px; }
.float-card > span:not(.fc-ic) { display: flex; flex-direction: column; gap: 2px; }
.float-card .fc-t { font-weight: 700; color: #fff; line-height: 1.2; }
.float-card .fc-s { color: rgba(241,232,219,.7); font-size: .72rem; line-height: 1.2; }
.float-card--tl { top: 8%; left: -8%; animation-delay: 0s; }
.float-card--br { bottom: 12%; right: -10%; animation-delay: 1.2s; }
.float-card--ml { bottom: 40%; left: -14%; animation-delay: 2.4s; }
.float-card .stars { color: var(--gold-300); letter-spacing: .1em; font-size: .78rem; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Marquee */
.marquee { position: relative; width: 100%; max-width: 100vw; overflow: hidden; padding: 20px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 18px; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: .6rem; padding: .7rem 1.3rem; border: 1px solid var(--line); border-radius: 999px; font-weight: 600; font-size: .9rem; color: var(--navy); white-space: nowrap; background: var(--white); }
.marquee__item svg { width: 1.1rem; color: var(--gold-600); }
.section--navy .marquee__item { background: rgba(241,232,219,.06); border-color: rgba(241,232,219,.14); color: var(--cream-soft); }
@keyframes marquee { to { transform: translateX(calc(-50% - 9px)); } }

/* FAQ accordion */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--white); margin-bottom: 14px; overflow: hidden; transition: box-shadow .25s var(--ease), border-color .25s; }
.faq-item.open { box-shadow: var(--shadow); border-color: var(--gold-300); }
.faq-item [data-accordion-btn] { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; background: none; border: 0; cursor: pointer; text-align: left; font-family: var(--font-sans); font-weight: 600; font-size: 1.02rem; color: var(--navy); }
.faq-item .faq-icon { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--cream-soft); display: grid; place-items: center; transition: .3s var(--ease); }
.faq-item .faq-icon svg { width: 14px; color: var(--gold-600); transition: transform .3s var(--ease); }
.faq-item.open .faq-icon { background: var(--gold); }
.faq-item.open .faq-icon svg { color: #fff; transform: rotate(45deg); }
.faq-item [data-accordion-body] { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-item [data-accordion-body] p { padding: 0 24px 22px; color: var(--ink-soft); font-size: .96rem; }

/* Tilt helper (JS sets transform) */
[data-tilt] { transition: transform .25s var(--ease); }

@media (prefers-reduced-motion: reduce) {
  .float-card { animation: none; }
  .marquee__track { animation: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
@media (max-width: 960px) {
  .float-card--tl { left: 2%; } .float-card--br { right: 2%; } .float-card--ml { display: none; }
}

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.center { text-align: center; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.no-scroll { overflow: hidden; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero__panel { display: none; }
  .split { grid-template-columns: 1fr; }
  .split__media { aspect-ratio: 16/11; max-height: 420px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 860px) {
  .nav, .header-actions .lang-switch, .header-actions .btn--gold { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: inline-flex; width: 100%; justify-content: center; margin-top: 20px; }
  .site-header { background: rgba(255,255,255,.95); backdrop-filter: blur(14px); }
  .site-header .brand__word .w7 { color: var(--navy); }
  .brand__word .w7 { font-size: 1.15rem; }
  /* Mobile nav drawer */
  .nav { position: fixed; inset: var(--header-h) 0 0 0; background: var(--white); flex-direction: column; align-items: flex-start; gap: 4px; padding: 24px; transform: translateX(100%); transition: transform .3s var(--ease); overflow-y: auto; }
  .nav-open .nav { display: flex; transform: none; }
  .nav a { font-size: 1.1rem; padding: 14px 0; width: 100%; border-bottom: 1px solid var(--line-soft); }
  .nav-dropdown { width: 100%; }
  .nav-dropdown > button { width: 100%; justify-content: space-between; font-size: 1.1rem; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
  .nav-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; min-width: 0; padding: 4px 0 8px 12px; }
  .mobile-lang { display: flex; gap: 8px; margin-top: 20px; }
  .mobile-lang button { flex: 1; padding: 12px; border: 1px solid var(--line); border-radius: 10px; background: none; font-weight: 600; cursor: pointer; }
  .mobile-lang button[aria-current="true"] { background: var(--gold); color: #fff; border-color: var(--gold); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field.col-2 { grid-column: span 1; }
  .hero__stats { gap: 24px; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; }
  .quote__head, .quote__progress, .quote__body { padding-inline: 20px; }
  .quote__step .lbl { display: none; }
  .section { padding: 56px 0; }
}
@media (min-width: 861px) { .mobile-lang { display: none; } }
