/* ============================================
   COOK TRAVEL — VisitUSA-inspired redesign
   Color: Emerald Green + White + Dark Green
   ============================================ */

:root {
  --green-900: #064e3b;
  --green-800: #065f46;
  --green-700: #047857;
  --green-600: #059669;
  --green-500: #10b981;
  --green-400: #34d399;
  --green-300: #6ee7b7;
  --green-100: #d1fae5;
  --green-50:  #ecfdf5;
  --green-alt: #f0fdf4;

  --text-dark:   #064e3b;
  --text-body:   #1f2937;
  --text-muted:  #6b7280;
  --text-light:  #9ca3af;

  --white:       #ffffff;
  --gray-50:     #f9fafb;
  --gray-100:    #f3f4f6;
  --border:      #d1fae5;
  --border-gray: #e5e7eb;

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm: 0 2px 8px rgba(6,78,59,0.06);
  --shadow-md: 0 6px 24px rgba(6,78,59,0.10);
  --shadow-lg: 0 16px 48px rgba(6,78,59,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1);
}
.reveal.from-left  { transform: translateX(-28px); }
.reveal.from-right { transform: translateX(28px); }
.reveal.visible    { opacity: 1; transform: none; }

.stagger-1 { transition-delay: .06s; }
.stagger-2 { transition-delay: .13s; }
.stagger-3 { transition-delay: .20s; }
.stagger-4 { transition-delay: .27s; }
.stagger-5 { transition-delay: .34s; }
.stagger-6 { transition-delay: .41s; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gray);
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 36px; height: 36px;
  background: var(--green-600);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-mark svg { width: 20px; height: 20px; fill: white; }
.nav-logo-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--green-800);
  letter-spacing: -.3px;
}
.nav-logo-name span { color: var(--green-500); }

.nav-links {
  display: flex;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  color: var(--text-muted);
  padding: 7px 12px;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav-links a:hover { background: var(--green-50); color: var(--green-700); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-phone {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-700);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-phone svg { width: 15px; height: 15px; }
.nav-cta {
  background: var(--green-600);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--green-700); transform: translateY(-1px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 860px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: -6%;
  z-index: 0;
  will-change: transform;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  animation: kenBurns 22s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0%   { transform: scale(1.0) translate(0, 0); }
  100% { transform: scale(1.1) translate(-2%, -1%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(6, 60, 30, 0.72) 0%,
    rgba(6, 60, 30, 0.45) 55%,
    rgba(6, 60, 30, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 60px;
  max-width: 700px;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeSlideUp .8s cubic-bezier(.16,1,.3,1) .1s both;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1.5px;
  background: var(--green-400);
  border-radius: 2px;
}

.hero-h1 {
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  color: white;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

/* Word-by-word Framer animation */
.hero-h1 .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.hero-h1 .word .inner {
  display: inline-block;
  animation: wordReveal .75s cubic-bezier(.16,1,.3,1) both;
}
.hero-h1 em { color: var(--green-400); font-style: normal; }

@keyframes wordReveal {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.hero-accent {
  width: 0;
  height: 3px;
  background: var(--green-400);
  border-radius: 2px;
  margin-bottom: 20px;
  animation: expandBar 1s cubic-bezier(.16,1,.3,1) 1.2s both;
}
@keyframes expandBar { to { width: 64px; } }

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 36px;
  animation: fadeSlideUp .8s cubic-bezier(.16,1,.3,1) 1.1s both;
}
.hero-sub strong { color: var(--green-300); font-weight: 600; }

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeSlideUp .8s cubic-bezier(.16,1,.3,1) 1.3s both;
}
.btn-primary {
  background: var(--green-600);
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 15px 32px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all .25s cubic-bezier(.16,1,.3,1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.btn-primary:hover { background: var(--green-700); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(5,150,105,0.35); }
.btn-primary svg { width: 17px; height: 17px; }

.btn-outline {
  background: rgba(255,255,255,0.12);
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 15px 32px;
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all .25s cubic-bezier(.16,1,.3,1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255,255,255,0.2); border-color: white; transform: translateY(-3px); }
.btn-outline svg { width: 16px; height: 16px; }

/* Hero floating stats card */
.hero-stats {
  position: absolute;
  right: 60px;
  bottom: 56px;
  z-index: 10;
  background: rgba(255,255,255,0.96);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex;
  gap: 24px;
  align-items: center;
  animation: fadeSlideUp .8s cubic-bezier(.16,1,.3,1) 1.6s both;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--green-100);
}
.hero-stat { text-align: center; }
.hero-stat-n {
  font-size: 28px;
  font-weight: 800;
  color: var(--green-700);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero-stat-l {
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}
.hero-stat-div { width: 1px; height: 44px; background: var(--border); }

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: fadeIn 1s ease 2s both;
}
.hero-scroll span {
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--green-400);
  animation: scrollDrop 2s ease-in-out 2.2s infinite;
}
@keyframes scrollDrop {
  0%   { top: -100%; }
  100% { top: 200%; }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust {
  background: var(--green-alt);
  border-bottom: 1px solid var(--border);
  padding: 16px 60px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.trust-label {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  flex-shrink: 0;
  white-space: nowrap;
}
.trust-pubs {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-shrink: 0;
}
.trust-pub {
  font-size: 13px;
  color: #9ca3af;
  font-style: italic;
  transition: color .25s;
  cursor: default;
  white-space: nowrap;
}
.trust-pub:hover { color: var(--green-600); }
.trust-divider { width: 1px; height: 24px; background: var(--border); flex-shrink: 0; }
.trust-quote {
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
  flex: 1;
  border-left: 2px solid var(--green-500);
  padding-left: 12px;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section { padding: 80px 60px; }
.section-alt { background: var(--green-alt); }
.section-dark { background: var(--green-900); }

.section-head { text-align: center; margin-bottom: 52px; }
.section-eyebrow {
  font-size: 11px;
  color: var(--green-600);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 24px; height: 1.5px;
  background: var(--green-300);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -.5px;
}
.section-title-light { color: white; }
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 10px;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   STATS ROW
   ============================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
  background: white;
}
.stat-item {
  padding: 40px 20px;
  text-align: center;
  border-right: 1px solid var(--border-gray);
}
.stat-item:last-child { border-right: none; }
.stat-n {
  font-size: 48px;
  font-weight: 800;
  color: var(--green-700);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-l {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 8px;
}
.stat-d { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* ============================================
   BENEFIT CARDS — VisitUSA image card style
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.benefit-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  height: 260px;
  cursor: pointer;
  transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s;
}
.benefit-card:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.benefit-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.16,1,.3,1);
}
.benefit-card:hover img { transform: scale(1.06); }
.benefit-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 60, 30, 0.82) 0%,
    rgba(6, 60, 30, 0.3)  50%,
    rgba(6, 60, 30, 0.05) 100%
  );
  transition: background .3s;
}
.benefit-card:hover .benefit-overlay {
  background: linear-gradient(
    to top,
    rgba(6, 60, 30, 0.72) 0%,
    rgba(6, 60, 30, 0.15) 50%,
    transparent 100%
  );
}
.benefit-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--green-600);
  color: white;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}
.benefit-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
}
.benefit-h {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
  line-height: 1.2;
}
.benefit-p {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}

/* ============================================
   DESTINATION CARDS
   ============================================ */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.dest-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  height: 280px;
  cursor: pointer;
  transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s;
}
.dest-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}
.dest-card:hover img { transform: scale(1.08); }
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6,50,25,0.85) 0%,
    rgba(6,50,25,0.2) 55%,
    transparent 100%
  );
}
.dest-save {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--green-600);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 20px;
  letter-spacing: .5px;
}
.dest-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.dest-city { font-size: 24px; font-weight: 700; color: white; line-height: 1; }
.dest-country {
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 4px;
}
.dest-arrow {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  flex-shrink: 0;
}
.dest-arrow svg { width: 16px; height: 16px; stroke: white; fill: none; }
.dest-card:hover .dest-arrow { background: var(--green-600); }

/* ============================================
   AIRLINES MARQUEE
   ============================================ */
.airlines-section {
  background: white;
  border-top: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
  padding: 20px 0 14px;
  overflow: hidden;
  position: relative;
}
.airlines-label {
  text-align: center;
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.airlines-mask { position: relative; }
.airlines-mask::before,
.airlines-mask::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.airlines-mask::before { left: 0; background: linear-gradient(to right, white, transparent); }
.airlines-mask::after  { right: 0; background: linear-gradient(to left, white, transparent); }
.airlines-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}
.airlines-track:hover { animation-play-state: paused; }
.airline-item {
  padding: 0 28px;
  border-right: 1px solid var(--border-gray);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  height: 36px;
  display: flex;
  align-items: center;
  transition: color .25s;
  cursor: default;
}
.airline-item:hover { color: var(--green-600); }
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   FULL-WIDTH IMAGE BANNER
   ============================================ */
.banner {
  position: relative;
  height: 440px;
  overflow: hidden;
  isolation: isolate;
}
.banner-bg {
  position: absolute;
  inset: -8%;
  will-change: transform;
  transition: transform .15s cubic-bezier(.16,1,.3,1);
}
.banner-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenBurns 24s ease-in-out 2s infinite alternate;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 30, 15, 0.64);
}
.banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 60px;
}
.banner-eyebrow {
  font-size: 10px;
  color: var(--green-300);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.banner-eyebrow::before,
.banner-eyebrow::after {
  content: '';
  width: 24px; height: 1px;
  background: var(--green-400);
}
.banner-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.banner-title em { color: var(--green-300); font-style: normal; }
.banner-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.banner-pill {
  border: 1.5px solid rgba(52, 211, 153, 0.4);
  color: var(--green-300);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 24px;
  transition: all .25s;
  cursor: default;
}
.banner-pill:hover { background: rgba(52,211,153,0.12); border-color: var(--green-300); }

/* ============================================
   QUOTE FORM SECTION
   ============================================ */
.form-section {
  background: var(--green-alt);
  padding: 80px 60px;
}
.form-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.form-left-big {
  font-size: clamp(64px, 8vw, 96px);
  font-weight: 800;
  color: var(--green-700);
  line-height: 1;
  letter-spacing: -2px;
}
.form-left-big sup {
  font-size: 32px;
  vertical-align: super;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0;
}
.form-left-tag {
  font-size: 10px;
  color: var(--green-600);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 14px;
  font-weight: 600;
}
.form-left-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 20px;
}
.form-2for1 {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.f2-badge {
  font-size: 22px;
  font-weight: 800;
  color: var(--green-700);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.f2-text { font-size: 12px; color: var(--text-muted); line-height: 1.7; }

.form-card {
  background: white;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.form-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-card-title svg { width: 18px; height: 18px; stroke: var(--green-600); fill: none; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.field-group { display: flex; flex-direction: column; gap: 10px; }

.fi {
  width: 100%;
  border: 1.5px solid var(--border-gray);
  border-radius: var(--radius-sm);
  padding: 12px 15px;
  font-size: 13px;
  color: var(--text-body);
  background: var(--gray-50);
  font-family: inherit;
  transition: border-color .2s, background .2s;
  appearance: none;
}
.fi:focus { outline: none; border-color: var(--green-500); background: white; }
.fi::placeholder { color: var(--text-light); }

.fi-submit {
  width: 100%;
  background: var(--green-600);
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 15px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all .25s cubic-bezier(.16,1,.3,1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}
.fi-submit:hover { background: var(--green-700); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(5,150,105,0.3); }
.fi-submit svg { width: 18px; height: 18px; fill: white; }

.form-note {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
}
.form-note a { color: var(--green-600); text-decoration: none; font-weight: 600; }
.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 11px;
  color: var(--text-light);
}
.form-trust svg { width: 14px; height: 14px; stroke: var(--green-500); fill: none; }

/* ============================================
   PRESS / FEATURED IN
   ============================================ */
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
}
.press-card {
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all .3s cubic-bezier(.16,1,.3,1);
  cursor: default;
  background: white;
}
.press-card:hover {
  border-color: var(--green-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.press-pub { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.press-cat {
  font-size: 10px;
  color: var(--green-600);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}
.press-quote {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  border-left: 3px solid var(--green-500);
  padding-left: 14px;
  margin-bottom: 12px;
}
.press-source { font-size: 10px; color: var(--text-light); letter-spacing: .5px; }

.badges-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-gray);
}
.badge-item { display: flex; align-items: center; gap: 12px; }
.badge-icon {
  width: 44px; height: 44px;
  background: var(--green-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--green-700);
  flex-shrink: 0;
}
.badge-icon svg { width: 20px; height: 20px; stroke: var(--green-700); fill: none; }
.badge-text strong { display: block; font-size: 13px; color: var(--text-dark); font-weight: 700; }
.badge-text span { font-size: 11px; color: var(--text-muted); }

/* ============================================
   AGENT SECTION
   ============================================ */
.agent-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.agent-image { position: relative; overflow: hidden; }
.agent-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.agent-section:hover .agent-image img { transform: scale(1.04); }
.agent-image-overlay { position: absolute; inset: 0; background: rgba(4,30,15,0.15); }

.agent-copy {
  background: var(--green-alt);
  padding: 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--border);
}
.agent-eyebrow {
  font-size: 10px;
  color: var(--green-600);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.agent-eyebrow::before { content: ''; width: 18px; height: 2px; background: var(--green-500); border-radius: 2px; }
.agent-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -.5px;
  margin-bottom: 14px;
}
.agent-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 28px;
}
.agent-desc strong { color: var(--green-700); font-weight: 700; }
.agent-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.agent-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}
.check-icon {
  width: 20px; height: 20px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-icon svg { width: 11px; height: 11px; stroke: var(--green-700); fill: none; stroke-width: 2.5; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testi-main {
  background: var(--green-900);
  border-radius: var(--radius-xl);
  padding: 44px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 24px;
}
.testi-stars { font-size: 18px; letter-spacing: 4px; color: var(--green-400); margin-bottom: 16px; }
.testi-quote {
  font-size: 20px;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 18px;
}
.testi-author { font-size: 11px; color: var(--green-400); letter-spacing: 2.5px; text-transform: uppercase; opacity: .8; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.testi-card {
  background: var(--green-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: all .3s;
}
.testi-card:hover { border-color: var(--green-300); background: white; box-shadow: var(--shadow-sm); }
.testi-card-stars { color: var(--green-600); font-size: 12px; letter-spacing: 2px; margin-bottom: 10px; }
.testi-card-text { font-size: 13px; color: var(--text-muted); line-height: 1.75; font-style: italic; margin-bottom: 14px; }
.testi-card-author { font-size: 12px; font-weight: 700; color: var(--text-dark); }
.testi-card-role { font-size: 11px; color: var(--text-light); margin-top: 2px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--green-900);
  padding: 64px 60px 28px;
  border-top: 4px solid var(--green-600);
}
.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-logo-mark {
  width: 32px; height: 32px;
  background: var(--green-600);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-mark svg { width: 17px; height: 17px; fill: white; }
.footer-brand-name { font-size: 17px; font-weight: 700; color: white; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 16px; max-width: 240px; }
.footer-phone {
  font-size: 16px;
  font-weight: 700;
  color: var(--green-400);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-phone svg { width: 16px; height: 16px; }
.footer-col-title {
  font-size: 10px;
  color: var(--green-500);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--green-400); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.55); }
.footer-badges { display: flex; gap: 12px; }
.footer-badge {
  border: 1px solid rgba(52,211,153,0.2);
  border-radius: 6px;
  padding: 5px 14px;
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-badge svg { width: 12px; height: 12px; stroke: var(--green-500); fill: none; }

/* ============================================
   UTILITIES
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ── Focus visible (keyboard nav) ── */
:focus-visible {
  outline: 2px solid var(--green-500);
  outline-offset: 3px;
  border-radius: 3px;
}
/* Remove default outline since we handle it via :focus-visible */
:focus:not(:focus-visible) { outline: none; }

/* ── Scroll offset for sticky nav ── */
#benefits, #destinations, #form, #testimonials, #press, #banner {
  scroll-margin-top: 68px;
}

/* ============================================
   FORM — LABEL + WRAP ENHANCEMENTS
   ============================================ */
.fi-wrap { display: flex; flex-direction: column; gap: 4px; }

.fi-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .3px;
}

.form-error {
  font-size: 12px;
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-top: 4px;
  line-height: 1.6;
}
.form-error a { color: #b91c1c; font-weight: 600; }

/* ============================================
   NAVIGATION — HAMBURGER
   ============================================ */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--green-800);
  border-radius: 2px;
  transition: transform .25s cubic-bezier(.16,1,.3,1), opacity .2s;
}
.nav.menu-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav-hamburger span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   RESPONSIVE — 1024px (tablet)
   ============================================ */
@media (max-width: 1024px) {
  .nav { padding: 0 28px; }
  .nav-links a { font-size: 12px; padding: 7px 8px; }

  .hero-content { padding: 0 40px; max-width: 620px; }
  .hero-stats { right: 40px; bottom: 48px; }

  .section { padding: 64px 40px; }
  .trust { padding: 16px 40px; }
  .form-section { padding: 64px 40px; }
  .form-inner { gap: 48px; }
  .agent-copy { padding: 52px 40px; }

  .footer { padding: 52px 40px 24px; }
  .footer-top { gap: 32px; }
}

/* ============================================
   RESPONSIVE — 768px (mobile)
   ============================================ */
@media (max-width: 768px) {

  /* Nav */
  .nav {
    padding: 0 20px;
    height: auto;
    min-height: 60px;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .nav-logo { height: 60px; display: flex; align-items: center; }
  .nav-hamburger { display: flex; height: 60px; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 8px 0 12px;
    border-top: 1px solid var(--border-gray);
  }
  .nav.menu-open .nav-links { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { font-size: 15px; padding: 11px 4px; display: block; }
  .nav-right {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 10px;
    padding: 4px 0 16px;
  }
  .nav.menu-open .nav-right { display: flex; }
  .nav-phone { font-size: 15px; }
  .nav-cta { text-align: center; padding: 13px; display: block; }

  /* Scroll offset for smaller nav */
  #benefits, #destinations, #form, #testimonials, #press, #banner {
    scroll-margin-top: 60px;
  }

  /* Hero */
  .hero { max-height: none; }
  .hero-content {
    padding: 80px 20px 180px;
    max-width: 100%;
  }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-outline { justify-content: center; width: 100%; box-sizing: border-box; }
  .hero-stats {
    right: 20px;
    left: 20px;
    bottom: 60px;
    width: auto;
    padding: 14px 16px;
    gap: 12px;
    justify-content: space-around;
  }
  .hero-stat-n { font-size: 22px; }
  .hero-stat-div { height: 36px; }
  .hero-scroll { display: none; }

  /* Trust */
  .trust {
    flex-wrap: wrap;
    padding: 16px 20px;
    gap: 14px;
  }
  .trust-pubs { gap: 16px; flex-wrap: wrap; }
  .trust-divider { display: none; }
  .trust-quote {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 10px;
    width: 100%;
  }

  /* Stats row — 2×2 */
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: 1px solid var(--border-gray); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-top: 1px solid var(--border-gray); }
  .stat-n { font-size: 36px; }

  /* Section padding */
  .section { padding: 52px 20px; }
  .section-alt { padding: 52px 20px; }
  .form-section { padding: 52px 20px; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; }

  /* Destinations */
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-card { height: 240px; }

  /* Banner */
  .banner { height: auto; }
  .banner-content {
    padding: 64px 24px;
    height: auto;
    position: relative;
    z-index: 2;
  }
  .banner-bg { position: absolute; inset: 0; }

  /* Form */
  .form-inner { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .form-left-big { font-size: clamp(52px, 14vw, 80px); }

  /* Press */
  .press-grid { grid-template-columns: 1fr; }
  .badges-row { gap: 20px; }
  .badge-item { min-width: 0; }

  /* Agent */
  .agent-section { grid-template-columns: 1fr; }
  .agent-image { height: 280px; }
  .agent-copy {
    padding: 40px 20px;
    border-left: none;
    border-top: 1px solid var(--border);
  }
  .agent-title { font-size: 28px; }

  /* Testimonials */
  .testi-main { padding: 28px 20px; }
  .testi-quote { font-size: 16px; }
  .testi-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer { padding: 48px 20px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-badges { flex-wrap: wrap; }
}

/* ============================================
   RESPONSIVE — 480px (small mobile)
   ============================================ */
@media (max-width: 480px) {
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card { height: 220px; }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
  }
  .hero-stat-div { display: none; }

  .benefit-card { height: 200px; }

  .banner-title { font-size: 26px; }
  .banner-pill { font-size: 9px; padding: 6px 12px; }

  .form-card { padding: 20px 16px; }
  .testi-main { padding: 24px 16px; }
  .testi-quote { font-size: 15px; }
}
