/* ===============================================
   AllVisaCenter — Modern Visa Consultancy
   Design System & Styles
   =============================================== */

:root {
  /* Brand palette */
  --navy-900: #0a1f3c;
  --navy-800: #0e2a52;
  --navy-700: #143661;
  --navy-600: #1b4480;
  --gold-500: #e0a82e;
  --gold-400: #f0bf52;
  --gold-600: #c08f1c;
  --sky-500: #2f80ed;
  --sky-50:  #eaf2fd;

  /* Neutrals */
  --ink-900: #0f172a;
  --ink-700: #334155;
  --ink-500: #64748b;
  --ink-300: #cbd5e1;
  --paper:   #ffffff;
  --mist:    #f6f8fb;
  --mist-2:  #eef2f8;
  --line:    #e3e9f2;

  /* Effects */
  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(16, 31, 60, .06), 0 2px 8px rgba(16, 31, 60, .05);
  --shadow-md: 0 8px 30px rgba(16, 31, 60, .10);
  --shadow-lg: 0 24px 60px rgba(16, 31, 60, .16);
  --ring: 0 0 0 4px rgba(47, 128, 237, .18);

  --container: 1180px;
  --font: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --transition: .25s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink-700);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { color: var(--ink-900); line-height: 1.18; font-weight: 800; letter-spacing: -.02em; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.section { padding: 92px 0; }
.section--tight { padding: 64px 0; }
.section--mist { background: var(--mist); }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-600); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--gold-500); border-radius: 2px; }
.center .eyebrow::before { display: none; }
.section-title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 16px; }
.section-lead { font-size: 1.08rem; color: var(--ink-500); max-width: 620px; }
.center .section-lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: .96rem;
  transition: var(--transition); white-space: nowrap; cursor: pointer;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--gold-500); color: var(--navy-900); box-shadow: 0 8px 22px rgba(224, 168, 46, .35); }
.btn--primary:hover { background: var(--gold-400); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(224, 168, 46, .42); }
.btn--dark { background: var(--navy-800); color: #fff; }
.btn--dark:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn--ghost { background: rgba(255, 255, 255, .08); color: #fff; border: 1.5px solid rgba(255, 255, 255, .35); }
.btn--ghost:hover { background: rgba(255, 255, 255, .16); border-color: #fff; }
.btn--outline { background: transparent; color: var(--navy-800); border: 1.5px solid var(--line); }
.btn--outline:hover { border-color: var(--navy-600); color: var(--navy-700); background: var(--mist); }
.btn--lg { padding: 16px 32px; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ===============================================
   Header / Navigation
   =============================================== */
.topbar {
  background: var(--navy-900); color: #cdd9ec;
  font-size: .84rem; border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; height: 42px; }
.topbar__group { display: flex; align-items: center; gap: 22px; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; transition: color var(--transition); }
.topbar a:hover { color: var(--gold-400); }
.topbar svg { width: 15px; height: 15px; opacity: .8; }
.topbar__socials { display: flex; gap: 14px; }

.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(160%) blur(14px); border-bottom: 1px solid var(--line);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; }
.brand__mark {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900)); color: var(--gold-500);
  box-shadow: var(--shadow-sm); flex-shrink: 0;
  border: 1px solid rgba(224, 168, 46, .28); position: relative; overflow: hidden;
}
.brand__mark::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 30% 25%, rgba(240, 191, 82, .22), transparent 70%);
}
.brand__mark svg { position: relative; z-index: 1; }
.brand__mark svg { width: 34px; height: 34px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-size: 1.18rem; color: var(--navy-900); letter-spacing: -.02em; }
.brand__name span { color: var(--gold-600); }
.brand__tag { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-500); font-weight: 600; }

.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__menu a {
  padding: 10px 16px; border-radius: 10px; font-weight: 600; font-size: .96rem;
  color: var(--ink-700); transition: var(--transition);
}
.nav__menu a:hover, .nav__menu a.active { color: var(--navy-800); background: var(--mist-2); }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__toggle { display: none; width: 44px; height: 44px; border-radius: 10px; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--navy-900); margin: 5px auto; border-radius: 2px; transition: var(--transition); }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===============================================
   Hero
   =============================================== */
.hero {
  position: relative; color: #eaf1fb; overflow: hidden;
  background:
    radial-gradient(1100px 600px at 78% -10%, rgba(47, 128, 237, .35), transparent 60%),
    radial-gradient(800px 500px at 8% 110%, rgba(224, 168, 46, .18), transparent 55%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, #0c244a 100%);
  background-color: var(--navy-900);
}
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: 86px 0 96px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border-radius: 999px;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16);
  font-size: .84rem; font-weight: 600; margin-bottom: 24px;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #38d39f; box-shadow: 0 0 0 4px rgba(56, 211, 159, .25); }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 5vw, 3.7rem); line-height: 1.08; margin-bottom: 22px; }
.hero h1 .accent { color: var(--gold-400); }
.hero__lead { font-size: 1.16rem; color: #c2d2e8; max-width: 540px; margin-bottom: 32px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero__trust { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero__stars { color: var(--gold-400); font-size: 1.05rem; letter-spacing: 2px; }
.hero__trust small { display: block; color: #97aaca; font-size: .82rem; }
.hero__trust strong { color: #fff; }

.hero__card {
  background: rgba(255, 255, 255, .96); border-radius: var(--radius-lg); padding: 30px;
  box-shadow: var(--shadow-lg); color: var(--ink-700);
}
.hero__card h3 { font-size: 1.25rem; margin-bottom: 6px; }
.hero__card p.sub { font-size: .92rem; color: var(--ink-500); margin-bottom: 20px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: .82rem; font-weight: 700; color: var(--ink-700); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: .95rem; color: var(--ink-900); background: var(--mist); transition: var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sky-500); background: #fff; box-shadow: var(--ring);
}
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note { font-size: .78rem; color: var(--ink-500); margin-top: 10px; text-align: center; }

/* Marquee logos */
.partners { background: var(--navy-900); padding: 28px 0; border-top: 1px solid rgba(255, 255, 255, .07); }
.partners__row { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.partners__label { color: #8ca0c2; font-size: .82rem; font-weight: 600; white-space: nowrap; }
.partners__logos { display: flex; gap: 34px; flex-wrap: wrap; align-items: center; }
.partners__logos span { color: #aebfd8; font-weight: 800; font-size: 1.05rem; letter-spacing: .02em; opacity: .85; }

/* ===============================================
   Stats
   =============================================== */
.stats { background: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 28px 18px; border-radius: var(--radius); background: var(--mist); border: 1px solid var(--line); }
.stat__num { font-size: 2.5rem; font-weight: 800; color: var(--navy-800); letter-spacing: -.03em; }
.stat__num span { color: var(--gold-600); }
.stat__label { font-size: .92rem; color: var(--ink-500); font-weight: 600; margin-top: 4px; }

/* ===============================================
   Services / Cards grid
   =============================================== */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card__icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px;
  background: var(--sky-50); color: var(--sky-500);
}
.card__icon svg { width: 28px; height: 28px; }
.card--gold .card__icon { background: #fdf3dc; color: var(--gold-600); }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { font-size: .96rem; color: var(--ink-500); }
.card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 700; color: var(--navy-700); font-size: .92rem; transition: gap var(--transition); }
.card:hover .card__link { gap: 11px; color: var(--gold-600); }

/* ===============================================
   Destinations
   =============================================== */
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.dest {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 260px;
  display: flex; align-items: flex-end; padding: 22px; color: #fff; isolation: isolate;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.dest:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.dest::before { content: ""; position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; transition: transform .5s ease; }
.dest:hover::before { transform: scale(1.08); }
.dest::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10, 31, 60, .15) 0%, rgba(10, 31, 60, .85) 100%); }
.dest__flag { font-size: 1.7rem; position: absolute; top: 18px; left: 18px; filter: drop-shadow(0 2px 4px rgba(0,0,0,.3)); }
.dest__body h3 { color: #fff; font-size: 1.25rem; margin-bottom: 2px; }
.dest__body p { font-size: .86rem; color: #d6e2f2; }
.dest__tag { display: inline-block; margin-top: 10px; font-size: .76rem; font-weight: 700; background: rgba(255,255,255,.18); padding: 4px 11px; border-radius: 999px; backdrop-filter: blur(4px); }
/* gradient "photo" stand-ins */
.dest--uk::before     { background: linear-gradient(135deg, #1e3a8a, #312e81); }
.dest--usa::before    { background: linear-gradient(135deg, #7f1d1d, #1e3a8a); }
.dest--canada::before { background: linear-gradient(135deg, #b91c1c, #7f1d1d); }
.dest--europe::before { background: linear-gradient(135deg, #1e40af, #0e7490); }
.dest--aus::before    { background: linear-gradient(135deg, #065f46, #1e3a8a); }
.dest--schengen::before { background: linear-gradient(135deg, #4338ca, #6d28d9); }
.dest--dubai::before  { background: linear-gradient(135deg, #92400e, #b45309); }
.dest--nz::before     { background: linear-gradient(135deg, #134e4a, #064e3b); }

/* ===============================================
   Process / Steps
   =============================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 30px 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.step__num {
  counter-increment: step; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--navy-800); color: var(--gold-500); font-weight: 800; font-size: 1.15rem; margin-bottom: 18px;
}
.step__num::before { content: "0" counter(step); }
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { font-size: .92rem; color: var(--ink-500); }
.steps--connected .step::after {
  content: ""; position: absolute; top: 52px; right: -14px; width: 28px; height: 2px;
  background: var(--ink-300); z-index: 2;
}
.steps--connected .step:last-child::after { display: none; }

/* ===============================================
   Why us / split feature
   =============================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature-list { display: grid; gap: 18px; margin-top: 28px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-item__icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: #fdf3dc; color: var(--gold-600);
}
.feature-item__icon svg { width: 22px; height: 22px; }
.feature-item h4 { font-size: 1.05rem; margin-bottom: 3px; color: var(--ink-900); }
.feature-item p { font-size: .93rem; color: var(--ink-500); }
.media-stack { position: relative; }
.media-card {
  border-radius: var(--radius-lg); padding: 40px; color: #fff; min-height: 420px;
  background:
    radial-gradient(600px 300px at 80% 0%, rgba(47,128,237,.4), transparent 60%),
    linear-gradient(160deg, var(--navy-800), var(--navy-900));
  display: flex; flex-direction: column; justify-content: space-between; box-shadow: var(--shadow-lg);
}
.media-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 12px; }
.media-card p { color: #c2d2e8; }
.media-card__quote { font-size: 1.2rem; line-height: 1.5; color: #eaf1fb; font-weight: 600; }
.media-card__author { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.media-card__avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--gold-500); color: var(--navy-900); display: grid; place-items: center; font-weight: 800; }
.media-badge {
  position: absolute; bottom: -26px; left: -26px; background: #fff; color: var(--ink-900);
  border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px;
}
.media-badge .big { font-size: 1.9rem; font-weight: 800; color: var(--navy-800); line-height: 1; }
.media-badge small { color: var(--ink-500); font-size: .82rem; }

/* ===============================================
   Testimonials
   =============================================== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.testi__stars { color: var(--gold-500); letter-spacing: 2px; margin-bottom: 14px; }
.testi__text { color: var(--ink-700); font-size: .98rem; margin-bottom: 20px; }
.testi__person { display: flex; align-items: center; gap: 12px; }
.testi__avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #fff; flex-shrink: 0; }
.testi__name { font-weight: 700; color: var(--ink-900); font-size: .95rem; }
.testi__role { font-size: .82rem; color: var(--ink-500); }

/* ===============================================
   FAQ accordion
   =============================================== */
.faq { max-width: 800px; margin-inline: auto; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; background: #fff; overflow: hidden; transition: var(--transition); }
.faq__item.open { box-shadow: var(--shadow-md); border-color: var(--ink-300); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; text-align: left; font-weight: 700; color: var(--ink-900); font-size: 1.02rem; }
.faq__q .icon { position: relative; flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--mist-2); transition: var(--transition); color: var(--navy-700); font-size: 0; }
.faq__q .icon::before, .faq__q .icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 2px;
  background: currentColor; border-radius: 2px; transition: transform var(--transition);
}
.faq__q .icon::before { transform: translate(-50%, -50%); }
.faq__q .icon::after  { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item.open .faq__q .icon { background: var(--navy-800); color: var(--gold-500); }
.faq__item.open .faq__q .icon::before { transform: translate(-50%, -50%) rotate(45deg); }
.faq__item.open .faq__q .icon::after  { transform: translate(-50%, -50%) rotate(-45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { padding: 0 24px 22px; color: var(--ink-500); font-size: .96rem; }

/* ===============================================
   CTA band
   =============================================== */
.cta-band {
  border-radius: var(--radius-lg); padding: 60px; text-align: center; color: #fff; position: relative; overflow: hidden;
  background:
    radial-gradient(700px 400px at 50% -40%, rgba(224,168,46,.3), transparent 60%),
    linear-gradient(160deg, var(--navy-800), var(--navy-900));
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 14px; }
.cta-band p { color: #c2d2e8; max-width: 560px; margin: 0 auto 30px; font-size: 1.08rem; }
.cta-band .hero__cta { justify-content: center; margin-bottom: 0; }

/* ===============================================
   Page hero (interior pages)
   =============================================== */
.page-hero {
  color: #eaf1fb; padding: 64px 0 72px; position: relative;
  background:
    radial-gradient(800px 400px at 85% 0%, rgba(47,128,237,.3), transparent 60%),
    linear-gradient(160deg, var(--navy-900), var(--navy-800));
}
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .88rem; color: #97aaca; margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--gold-400); }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.page-hero p { color: #c2d2e8; max-width: 620px; font-size: 1.12rem; }

/* ===============================================
   Content blocks (about/services pages)
   =============================================== */
.prose h2 { font-size: 1.7rem; margin: 36px 0 14px; }
.prose h3 { font-size: 1.25rem; margin: 26px 0 10px; }
.prose p { margin-bottom: 16px; color: var(--ink-700); }
.prose ul.ticks { display: grid; gap: 12px; margin: 18px 0; }
.prose ul.ticks li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-700); }
.prose ul.ticks li::before { content: "✓"; flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: #dff5ea; color: #0f9d58; display: grid; place-items: center; font-size: .8rem; font-weight: 800; }

.value-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.value-card .card__icon { margin-bottom: 16px; }
.value-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.value-card p { font-size: .94rem; color: var(--ink-500); }

/* Pricing / service plans */
.plan { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; position: relative; transition: var(--transition); }
.plan:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.plan--featured { border-color: var(--gold-500); box-shadow: var(--shadow-md); }
.plan__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold-500); color: var(--navy-900); font-size: .76rem; font-weight: 800; padding: 5px 16px; border-radius: 999px; letter-spacing: .04em; }
.plan h3 { font-size: 1.25rem; margin-bottom: 6px; }
.plan__desc { font-size: .9rem; color: var(--ink-500); margin-bottom: 18px; }
.plan__price { font-size: 2.4rem; font-weight: 800; color: var(--navy-800); letter-spacing: -.03em; }
.plan__price span { font-size: .95rem; font-weight: 600; color: var(--ink-500); }
.plan__features { display: grid; gap: 12px; margin: 22px 0 26px; }
.plan__features li { display: flex; gap: 10px; align-items: flex-start; font-size: .93rem; color: var(--ink-700); }
.plan__features li svg { flex-shrink: 0; width: 18px; height: 18px; color: #0f9d58; margin-top: 3px; }
.plan .btn { margin-top: auto; }

/* ===============================================
   Contact
   =============================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.contact-info { display: grid; gap: 20px; }
.contact-info__item { display: flex; gap: 16px; align-items: flex-start; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.contact-info__icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; background: var(--sky-50); color: var(--sky-500); display: grid; place-items: center; }
.contact-info__icon svg { width: 24px; height: 24px; }
.contact-info__item h4 { font-size: 1.02rem; margin-bottom: 3px; }
.contact-info__item p, .contact-info__item a { font-size: .94rem; color: var(--ink-500); }
.contact-info__item a:hover { color: var(--navy-700); }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-md); }
.contact-form h3 { font-size: 1.4rem; margin-bottom: 6px; }
.contact-form > p { color: var(--ink-500); margin-bottom: 24px; font-size: .95rem; }
.form-success { display: none; padding: 16px 18px; border-radius: var(--radius-sm); background: #dff5ea; color: #0a7d43; font-weight: 600; font-size: .94rem; margin-bottom: 18px; border: 1px solid #aee5c6; }
.form-success.show { display: block; }
.form-error { display: none; padding: 14px 16px; border-radius: var(--radius-sm); background: #fdecec; color: #b3261e; font-weight: 600; font-size: .92rem; margin-bottom: 16px; border: 1px solid #f5c2c0; }
.form-error.show { display: block; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-top: 30px; min-height: 280px; background: linear-gradient(135deg, var(--mist-2), var(--mist)); display: grid; place-items: center; color: var(--ink-500); }

/* ===============================================
   Footer
   =============================================== */
.footer { background: var(--navy-900); color: #aebfd8; padding: 72px 0 0; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer .brand__name { color: #fff; }
.footer__about { margin: 18px 0; font-size: .94rem; color: #97aaca; max-width: 320px; }
.footer__socials { display: flex; gap: 12px; }
.footer__socials a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; transition: var(--transition); }
.footer__socials a:hover { background: var(--gold-500); color: var(--navy-900); transform: translateY(-3px); }
.footer__socials svg { width: 18px; height: 18px; }
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer__col ul { display: grid; gap: 11px; }
.footer__col a { font-size: .92rem; color: #aebfd8; transition: var(--transition); }
.footer__col a:hover { color: var(--gold-400); padding-left: 4px; }
.footer__news p { font-size: .9rem; margin-bottom: 14px; color: #97aaca; }
.footer__news form { display: flex; gap: 8px; }
.footer__news input { flex: 1; padding: 12px 14px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.06); color: #fff; font-family: inherit; font-size: .9rem; }
.footer__news input::placeholder { color: #7e92b4; }
.footer__news input:focus { outline: none; border-color: var(--gold-500); }
.footer__news button { padding: 12px 16px; border-radius: var(--radius-sm); background: var(--gold-500); color: var(--navy-900); font-weight: 800; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 0; font-size: .86rem; color: #7e92b4; flex-wrap: wrap; }
.footer__bottom a:hover { color: var(--gold-400); }
.footer__legal { display: flex; gap: 20px; }

/* ===============================================
   Floating WhatsApp button
   =============================================== */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff; font-weight: 700; font-size: .95rem;
  padding: 14px 20px 14px 16px; border-radius: 999px;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
  transition: var(--transition);
}
.wa-float:hover { background: #1ebe5a; transform: translateY(-3px); box-shadow: 0 16px 36px rgba(37, 211, 102, .55); }
.wa-float svg { width: 26px; height: 26px; flex-shrink: 0; }
.wa-float__label { white-space: nowrap; }
.wa-float::after {
  content: ""; position: absolute; inset: -4px; border-radius: 999px; z-index: -1;
  background: #25d366; opacity: .55; animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: .5; } 70%, 100% { transform: scale(1.5); opacity: 0; } }
@media (max-width: 760px) {
  .wa-float { right: 16px; bottom: 16px; padding: 14px; }
  .wa-float__label { display: none; }
}

/* ===============================================
   Reveal on scroll
   =============================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===============================================
   Responsive
   =============================================== */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; padding: 56px 0 64px; }
  .hero__card { max-width: 480px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .grid--4, .stats__grid, .dest-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .grid--3, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .steps--connected .step::after { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .topbar__group:first-child { display: none; }
  .nav { gap: 12px; }
  .nav__menu, .nav__actions .btn--outline { display: none; }
  .nav__toggle { display: block; }
  /* Compact icon-only Call button so the header never overflows */
  .nav__actions .btn--primary { font-size: 0; gap: 0; padding: 12px; }
  .nav__actions .btn--primary svg { width: 20px; height: 20px; }
  .nav__menu.open {
    display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column;
    background: #fff; padding: 14px; gap: 4px; box-shadow: var(--shadow-lg); border-bottom: 1px solid var(--line);
  }
  .nav__menu.open a { width: 100%; padding: 13px 16px; }
  .grid--3, .grid--4, .grid--2, .stats__grid, .dest-grid, .steps, .testi-grid { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 24px; }
  .media-badge { position: static; margin-top: 20px; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .container { padding-inline: 16px; }
  .section { padding: 52px 0; }
  .brand__tag { display: none; }
  .brand__name { font-size: 1.08rem; }
  .brand__mark { width: 40px; height: 40px; }
  .hero h1 { font-size: 2rem; }
  .hero__lead { font-size: 1.04rem; }
  .hero__cta .btn, .cta-band .hero__cta .btn { width: 100%; }
  .hero__trust { gap: 16px; }
  .hero__card { padding: 22px; }
  .stat__num { font-size: 2.1rem; }
  .section-title { font-size: 1.6rem; }
  .footer__news form { flex-wrap: wrap; }
}
