/* ==========================================================
   URBAN VOYAGES — Bright Tropical Luxury
   ========================================================== */

:root {
  --teal:        #2EC4C6;
  --teal-deep:   #1AA7A9;
  --teal-soft:   #E6F8F8;
  --brand-dark:  #0E5759;          /* dark teal — same family as INQUIRE button */
  --brand-darker:#062E30;          /* deepest teal for gradient end */
  --sand:        #F7F2EA;
  --cream:       #FBF8F3;
  --gold:        #C8A96A;
  --ink:         #0E2A2B;
  --ink-soft:    #4A6263;
  --white:       #FFFFFF;
  --line:        rgba(14, 42, 43, 0.08);
  --shadow-sm:   0 4px 14px rgba(14, 42, 43, 0.06);
  --shadow-md:   0 16px 40px rgba(14, 42, 43, 0.10);
  --shadow-lg:   0 30px 80px rgba(14, 42, 43, 0.18);
  --radius:      14px;
  --radius-lg:   22px;
  --max:         1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); line-height: 1.05; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); line-height: 1.15; }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: var(--teal-deep); text-decoration: none; transition: color .2s; }
a:hover { color: var(--ink); }

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

/* ===== NAVBAR ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 243, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1px 24px 1px 20px;
  max-width: none;
  margin: 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0px;
  text-decoration: none;
  color: var(--ink);
  line-height: 1;
}
/* Logo image (rendered inline in HTML, no flicker) */
.brand-logo-img {
  display: block;
  height: 130px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  margin-left: -18px;
}
.footer .brand-logo-img { height: 130px; filter: brightness(1.05); }
@media (max-width: 720px) {
  .brand-logo-img { height: 80px; }
}
.brand-fallback { display: flex; flex-direction: column; line-height: 1; }
.brand-fallback[hidden] { display: none; }
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #5FD0D2, var(--teal-deep) 65%, #1B7A66);
  display: grid; place-items: center;
  color: white;
  font-size: 0;
  position: relative;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  margin-left: 20px;
}
.brand-mark::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.45);
}
.brand-mark::after {
  content: '✈';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  color: white;
  font-size: 18px;
  line-height: 1;
  background: none;
  -webkit-mask: none;
          mask: none;
  width: auto;
  height: auto;
}
.brand-text {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}
.brand-urban {
  font-family: 'Anton', 'Oswald', 'Inter', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--teal);
  text-transform: uppercase;
  font-weight: 400;
}
.brand-voyages {
  font-family: 'Sacramento', 'Great Vibes', cursive;
  font-size: 1.85rem;
  background: linear-gradient(95deg, var(--teal) 0%, var(--gold) 60%, #2EA856 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: -2px;
  margin-top: 2px;
}
.brand small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 4px;
}
/* Footer logo on dark bg — keep colors but lighten tagline */
.footer .brand-urban { color: #5FD0D2; }
.footer .brand small { color: #C8A96A; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.nav-links a.active::after,
.nav-links a:hover::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.nav-cta {
  background: transparent;
  color: var(--teal-deep) !important;
  border: 1.5px solid var(--teal-deep);
  padding: 11px 28px;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: none;
  transition: all .25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  height: auto;
  min-width: 110px;
}
.nav-cta:hover {
  background: var(--teal);
  color: white !important;
  border-color: var(--teal);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(46, 196, 198, 0.30);
}
.nav-cta::after,
.nav-links a.nav-cta::after,
.nav-links a.nav-cta:hover::after { display: none !important; }
.nav-toggle {
  display: none;
  background: none; border: none;
  font-size: 1.5rem; cursor: pointer;
  color: var(--ink);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 10px 30px rgba(46, 196, 198, 0.35);
}
.btn-primary:hover {
  background: var(--teal-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(46, 196, 198, 0.45);
  color: white;
}
.btn-ghost {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: white;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  color: white;
}
.btn-dark {
  background: var(--ink);
  color: white;
}
.btn-dark:hover { background: var(--teal-deep); color: white; transform: translateY(-2px); }

/* ===== HERO (homepage) — Canva-styled, centered, video bg ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-slides {
  position: absolute; inset: 0; z-index: -2;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.6s ease, transform 8s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,42,43,0.30) 0%, rgba(14,42,43,0.55) 100%);
  z-index: -1;
}
.hero-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 28px;
  color: white;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-welcome {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  font-weight: 300;
  margin-bottom: 20px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.45);
}
.hero-brand {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3.6rem, 10vw, 8rem);
  color: #5FD0D2;
  line-height: 1;
  margin: 0;
  letter-spacing: -0.015em;
  text-shadow: 0 6px 36px rgba(0, 30, 35, 0.4);
}
.hero-tagline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: white;
  font-weight: 300;
  margin: 26px 0 0;
  text-shadow: 0 2px 14px rgba(0,0,0,0.45);
  padding-left: 0.6em;
}
.hero-divider {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.5);
  margin: 28px auto;
}
.btn-outline {
  display: inline-block;
  margin-top: 14px;
  padding: 16px 52px;
  border: 1.5px solid rgba(255,255,255,0.85);
  color: white;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.35s ease;
  font-weight: 400;
}
.btn-outline:hover {
  background: white;
  color: var(--ink);
  border-color: white;
  letter-spacing: 0.35em;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.8);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  z-index: 2;
  text-decoration: none;
  animation: bounce 2.4s ease-in-out infinite;
}
.hero-scroll::after {
  content: '↓';
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  letter-spacing: 0;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ===== PAGE HERO (interior pages) ===== */
.page-hero {
  position: relative;
  padding: 140px 0 90px;
  text-align: center;
  background: linear-gradient(135deg, var(--teal-soft) 0%, var(--sand) 100%);
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -60px; bottom: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 196, 198, 0.18), transparent 70%);
}
.page-hero h1 {
  font-style: italic;
  margin-bottom: 16px;
}
.page-hero p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
}
.page-hero .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 600;
  display: block;
  margin-bottom: 16px;
}

/* Beach-background variant for the booking page hero */
.page-hero--beach {
  background: none;
  min-height: 460px;
  padding: 160px 0 110px;
  isolation: isolate;
}
.page-hero--beach::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2400&q=80');
  background-size: cover;
  background-position: center 60%;
  z-index: -2;
}
.page-hero--beach::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 42, 43, 0.30) 0%, rgba(14, 42, 43, 0.55) 100%);
  z-index: -1;
  right: 0; bottom: 0;
  width: auto; height: auto;
  border-radius: 0;
}
.page-hero--beach h1,
.page-hero--beach p { color: white; text-shadow: 0 2px 16px rgba(0,0,0,0.4); }
.page-hero--beach h1 { color: white; }
.page-hero--beach .eyebrow {
  color: white;
  /* background: rgba(46, 196, 198, 0.85);
  padding: 7px 18px;
  border-radius: 999px;
  display: inline-block; */
}
.page-hero--beach p { font-size: 1.15rem; max-width: 660px; }

/* ===== SECTIONS ===== */
section {
  padding: 100px 0;
}
.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 600;
  margin-bottom: 14px;
}
.section-head {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-head h2 em { font-style: italic; color: var(--teal-deep); }

/* ===== ABOUT ===== */
.about {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
  background: var(--cream);
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
}
.about-image::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: calc(var(--radius-lg) - 6px);
  pointer-events: none;
}
.about-badge {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  display: grid; place-items: center;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  line-height: 1.1;
  box-shadow: var(--shadow-md);
  padding: 16px;
}
.about-badge strong {
  display: block;
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
}
.about-text .section-eyebrow { text-align: left; }
.about-text h2 { font-style: italic; }
.about-text h2 em { font-style: normal; color: var(--teal-deep); }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--teal-deep);
  display: block;
}
.stat span {
  font-size: 0.82rem;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== FEATURED TRIPS ===== */
.trips {
  background: var(--sand);
}
.trips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
}
.trip-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}
.trip-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.trip-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  position: relative;
}
.trip-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}
.trip-body {
  padding: 26px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.trip-body h3 {
  font-style: italic;
  margin-bottom: 6px;
}
.trip-dates {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 600;
  margin-bottom: 14px;
}
.trip-features {
  list-style: none;
  padding: 0; margin: 0 0 22px;
  font-size: 0.92rem;
}
.trip-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  color: var(--ink-soft);
}
.trip-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
}
.trip-foot {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.trip-price small {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.trip-price strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--ink);
}
.trip-link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

/* ===== SERVICES STRIP ===== */
.services {
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.service-card {
  position: relative;
  text-align: center;
  padding: 44px 28px 38px;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  color: var(--ink);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, var(--teal) 0%, var(--teal-deep) 60%, var(--brand-dark) 100%);
  opacity: 0;
  transition: opacity .4s ease;
  z-index: -1;
}
.service-card > * { position: relative; z-index: 1; transition: color .35s ease; }
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--teal);
  box-shadow: 0 24px 56px rgba(46, 196, 198, 0.32);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover,
.service-card:hover h3,
.service-card:hover p,
.service-card:hover div { color: white !important; }
.service-card:hover .service-icon {
  background: rgba(255, 255, 255, 0.18);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.service-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  display: grid; place-items: center;
  background: var(--teal-soft);
  border: 1px solid transparent;
  border-radius: 50%;
  color: var(--teal-deep);
  font-size: 1.6rem;
  transition: background .35s ease, color .35s ease, border-color .35s ease;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-style: italic;
}
.service-card p {
  font-size: 0.93rem;
  margin: 0;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: white;
  text-align: center;
  padding: 80px 28px;
  border-radius: var(--radius-lg);
  margin: 60px auto;
  max-width: 1100px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.cta-banner::before { top: -80px; left: -80px; }
.cta-banner::after  { bottom: -80px; right: -80px; }
.cta-banner h2 { color: white; font-style: italic; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.92); max-width: 560px; margin: 16px auto 30px; position: relative; }
.cta-banner .btn { position: relative; }
.cta-banner .btn-light {
  background: white;
  color: var(--ink);
}
.cta-banner .btn-light:hover {
  background: var(--ink);
  color: white;
}

/* ===== FORMS ===== */
.form-wrap {
  max-width: 820px;
  margin: 0 auto;
  background: white;
  padding: 56px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}
.form-row.full { grid-template-columns: 1fr; }
.form-field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color .2s, background .2s;
}
.form-field textarea {
  min-height: 130px;
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: white;
}
.form-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 16px;
}
.form-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 18px 0;
}
.form-check input {
  margin-top: 4px;
  accent-color: var(--teal);
}
.form-check label {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: white;
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s;
}
.faq-item.open { box-shadow: var(--shadow-md); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--ink);
  user-select: none;
}
.faq-q::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--teal-deep);
  transition: transform .3s;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  flex-shrink: 0;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 28px;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding-bottom: 22px;
}
.faq-a p { margin: 0; }

/* ===== INFO BLOCKS ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.info-card {
  background: white;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--teal);
}
.info-card h3 {
  font-style: italic;
  margin-bottom: 14px;
}
.info-card ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}
.info-card li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.95rem;
}
.info-card li:last-child { border-bottom: none; }
.info-card li strong { color: var(--ink); }
.info-card li span { color: var(--ink-soft); text-align: right; }

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 30px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
  align-items: start;
}
.footer .socials a svg { width: 18px; height: 18px; }
.footer h4 {
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer a {
  display: block;
  color: rgba(255,255,255,0.7);
  padding: 5px 0;
  font-size: 0.92rem;
}
.footer a:hover { color: var(--teal); }
.footer .brand small { color: rgba(255,255,255,0.5); }
.footer .brand { color: white; }
.footer-about {
  font-size: 0.92rem;
  margin: 16px 0 22px;
  color: rgba(255,255,255,0.6);
  max-width: 320px;
}
.socials {
  display: flex;
  gap: 12px;
}
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  padding: 0;
  font-size: 0.95rem;
  transition: background .25s;
}
.socials a:hover { background: var(--teal); color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 20px 28px;
    transform: translateY(-130%);
    transition: transform .3s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { padding: 14px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-badge { width: 110px; height: 110px; right: 10px; bottom: -20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-wrap { padding: 32px 22px; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 70px 0; }
  .hero-content { padding: 60px 28px 100px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}

/* ===== PROCESS / HOW IT WORKS WITH ICONS ===== */
.process {
  position: relative;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 42px; left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--teal) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 22px;
  background: white;
  border: 2px solid var(--teal-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--teal-deep);
  position: relative;
  transition: transform .3s, border-color .3s, background .3s;
  box-shadow: var(--shadow-sm);
}
.process-step:hover .process-icon {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
  transform: translateY(-4px);
}
.process-icon svg { width: 36px; height: 36px; }
.process-num {
  position: absolute;
  top: -10px; right: -6px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  display: grid; place-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 600;
}
.process-step h3 {
  font-style: italic;
  margin-bottom: 6px;
  font-size: 1.25rem;
}
.process-step p {
  font-size: 0.9rem;
  max-width: 220px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .process-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .process-grid::before { display: none; }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ===== IMAGE STRIP (destinations marquee-style) ===== */
.image-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  margin: 0;
  overflow: hidden;
}
.image-strip-item {
  aspect-ratio: 1/1.2;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform .5s ease;
}
.image-strip-item::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14, 42, 43, 0.75));
}
.image-strip-item span {
  position: absolute;
  bottom: 14px; left: 16px; right: 16px;
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  z-index: 1;
}
.image-strip-item:hover { transform: scale(1.05); }
.image-strip-item::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  transition: opacity .35s ease, transform .35s ease;
  z-index: 2;
  -webkit-mask: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.35-4.35'/%3E%3C/svg%3E") center / 28px no-repeat, linear-gradient(white, white);
          mask: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.35-4.35'/%3E%3C/svg%3E") center / 28px no-repeat, linear-gradient(white, white);
  -webkit-mask-composite: source-out;
          mask-composite: exclude;
}
.image-strip-item:hover::after { opacity: 1; transform: translate(-50%, -50%) scale(1); }
@media (max-width: 800px) {
  .image-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ===== TESTIMONIALS / SOCIAL PROOF ===== */
.testimonials { background: var(--cream); }
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  padding: 24px 30px;
  background: white;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.avatar-stack {
  display: flex;
  align-items: center;
}
.avatar-stack img,
.avatar-stack .avatar-fallback {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2.5px solid white;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  margin-right: -10px;
  display: grid; place-items: center;
  color: white;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  object-fit: cover;
}
.avatar-stack .avatar-fallback:nth-child(2) { background: linear-gradient(135deg, var(--gold), #A8884F); }
.avatar-stack .avatar-fallback:nth-child(3) { background: linear-gradient(135deg, var(--green), #1F7A40); }
.trust-stat strong {
  display: block;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.trust-stat span {
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.trust-stat .stars {
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-right: 6px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: white;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  border-top: 3px solid var(--teal);
  display: flex;
  flex-direction: column;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 8px; right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--teal-soft);
  line-height: 1;
  pointer-events: none;
}
.testimonial-card blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  margin: 0 0 22px;
  line-height: 1.5;
  position: relative;
}
.testimonial-meta {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.testimonial-meta strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 600;
}
.testimonial-meta span {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 500;
}

/* ===== FOOTER UPGRADES ===== */
.footer-signup {
  display: flex;
  background: white;
  border-radius: 999px;
  padding: 6px;
  max-width: 320px;
  margin-top: 16px;
  overflow: hidden;
}
.footer-signup input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--ink);
  outline: none;
  min-width: 0;
}
.footer-signup button {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--teal);
  color: white;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .25s;
  flex-shrink: 0;
}
.footer-signup button:hover { background: var(--teal-deep); }
.footer-cta-block {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--brand-dark) 100%);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  color: white;
  position: relative;
  overflow: hidden;
}
.footer-cta-block::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.footer-cta-block h4 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: white;
  letter-spacing: 0;
  text-transform: none;
  margin: 0 0 10px;
  position: relative;
}
.footer-cta-block p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 22px;
  position: relative;
}
.footer-cta-block .btn {
  position: relative;
  padding: 10px 22px;
  font-size: 0.82rem;
}

/* ===== QUOTE / TESTIMONIAL BLOCK ===== */
.quote-block {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
  color: white;
  padding: 100px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-block::before {
  content: '"';
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 14rem;
  color: rgba(46, 196, 198, 0.18);
  line-height: 1;
  pointer-events: none;
}
.quote-block blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  max-width: 820px;
  margin: 0 auto 28px;
  line-height: 1.4;
  position: relative;
}
.quote-block cite {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: white;
  padding: 36px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}
.trust-bar-inner > div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.trust-bar-inner svg {
  width: 26px; height: 26px;
  color: var(--teal);
  flex-shrink: 0;
}

/* ===== FAQ CATEGORY TABS ===== */
.faq-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.faq-tab {
  padding: 10px 22px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all .25s ease;
}
.faq-tab:hover { border-color: var(--teal); color: var(--teal-deep); }
.faq-tab.active {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
}

/* ===== STATS BANNER ===== */
.stats-banner {
  background: linear-gradient(135deg, var(--brand-darker) 0%, var(--brand-dark) 100%);
  color: white;
  padding: 80px 28px;
  position: relative;
  overflow: hidden;
}
.stats-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,196,198,0.25), transparent 70%);
}
.stats-banner-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
.stat-block { text-align: center; }
.stat-block strong {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: white;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-block strong em {
  color: var(--gold);
  font-style: italic;
}
.stat-block span {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
@media (max-width: 780px) {
  .stats-banner-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ===== FOUNDER / ABOUT PHOTO TREATMENT ===== */
.founder-frame {
  position: relative;
  isolation: isolate;
  max-width: 380px;
  margin: 0 auto;
}
.founder-frame::before {
  content: '';
  position: absolute;
  inset: -18px -18px 18px 18px;
  border: 2px solid var(--teal);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
