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

:root {
  --teal: #2ec4a9;
  --teal-d: #1fa88f;
  --teal-faint: rgba(46, 196, 169, 0.08);
  --teal-faint2: rgba(46, 196, 169, 0.16);
  --ink: #141e1b;
  --mid: #4a5e59;
  --muted: #8c9e99;
  --light: #f3f8f6;
  --white: #ffffff;
  --border: rgba(20, 30, 27, 0.09);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Plus Jakarta Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
}

main,
section {
  max-width: 100%;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  padding-top: 64px;
  background: var(--ink);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(46, 196, 169, 0.15) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatGlow 8s ease-in-out infinite;
}

.hero-glow-2 {
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(46, 196, 169, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: floatGlow 10s ease-in-out infinite reverse;
}

@keyframes floatGlow {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-20px, 20px) scale(1.1);
  }
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .7s ease .1s forwards;
}

.hero-line {
  width: 24px;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(54px, 6vw, 86px);
  font-weight: 300;
  line-height: 1.05;
  color: white;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .9s ease .25s forwards;
}

.hero-h1 em {
  font-style: italic;
  color: var(--teal);
}

.hero-p {
  font-size: 16.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .55);
  max-width: 460px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp .9s ease .4s forwards;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp .9s ease .55s forwards;
}

.btn-primary {
  background: var(--teal);
  color: white;
  padding: 16px 36px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .01em;
  box-shadow: 0 4px 24px rgba(46, 196, 169, 0.35);
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left .6s ease;
}

.btn-primary:hover {
  background: var(--teal-d);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(46, 196, 169, 0.5);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-outline-white {
  color: rgba(255, 255, 255, .65);
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all .3s ease;
  position: relative;
  padding: 12px 0;
}

.btn-outline-white::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 0;
  height: 1px;
  background: white;
  transition: width .3s ease;
}

.btn-outline-white:hover {
  color: white;
  gap: 12px;
}

.btn-outline-white:hover::after {
  width: 100%;
}

/* hero stats strip */
.hero-trust-strip {
  display: flex;
  gap: 0;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  opacity: 0;
  animation: fadeUp .9s ease .7s forwards;
}

.htrust {
  padding-right: 36px;
  margin-right: 36px;
  border-right: 1px solid rgba(255, 255, 255, .1);
  transition: transform .3s ease;
}

.htrust:hover {
  transform: translateY(-5px);
}

.htrust:last-child {
  border-right: none;
}

.htrust-val {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
  transition: color .3s ease;
}

.htrust:hover .htrust-val {
  color: var(--teal);
}

.htrust-val em {
  color: var(--teal);
  font-style: normal;
}

.htrust-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, .35);
  letter-spacing: .04em;
  text-transform: uppercase;
}


/* hero right — dynamic uni panel */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  animation: fadeUp .9s ease .4s forwards;
}

.hero-uni-panel {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  transition: all .4s ease;
}

.hero-uni-panel:hover {
  border-color: rgba(46, 196, 169, .2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
}

.hup-top {
  padding: 28px 32px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hup-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
}

.hup-uni-stage {
  flex: 1;
  position: relative;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}

.uni-slide {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all .8s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(30px) scale(0.95);
  pointer-events: none;
  text-align: center;
}

.uni-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: all;
}

.uni-slide.exit {
  opacity: 0;
  transform: translateX(-30px) scale(0.95);
}

.uni-logo-letters {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 300;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
  animation: letterFloat 3s ease-in-out infinite;
}

@keyframes letterFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.uni-logo-letters em {
  font-style: normal;
  color: white;
}

.uni-name {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
  line-height: 1.2;
}

.uni-location {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.uni-student-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(46, 196, 169, .1);
  border: 1px solid rgba(46, 196, 169, .2);
  border-radius: 12px;
  padding: 14px 20px;
  width: 100%;
  max-width: 300px;
  transition: all .3s ease;
}

.uni-student-badge:hover {
  background: rgba(46, 196, 169, .15);
  border-color: rgba(46, 196, 169, .3);
  transform: translateX(5px);
}

.usb-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-d));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  transition: transform .3s ease;
}

.uni-student-badge:hover .usb-av {
  transform: scale(1.1) rotate(5deg);
}

.usb-text {
  text-align: left;
}

.usb-name {
  font-size: 13px;
  font-weight: 600;
  color: white;
  margin-bottom: 1px;
}

.usb-detail {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .45);
}

.hup-progress {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  padding: 20px 32px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  justify-content: center;
}

.hup-bar {
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .12);
  flex: 1;
  max-width: 40px;
  overflow: hidden;
  cursor: pointer;
  transition: all .3s ease;
}

.hup-bar:hover {
  background: rgba(255, 255, 255, .25);
  transform: scaleY(1.5);
}

.hup-bar-fill {
  height: 100%;
  background: var(--teal);
  width: 0%;
  transition: width 0s;
}

.hup-bar.active .hup-bar-fill {
  width: 100%;
  transition: width 3s linear;
}

.hup-bottom {
  padding: 20px 32px;
  background: rgba(46, 196, 169, .05);
  border-top: 1px solid rgba(46, 196, 169, .15);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hup-bottom-label {
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hup-bottom-val {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--teal);
}


/* ── MARQUEE ── */
#marquee {
  background: rgba(20, 30, 27, 0.95);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255, 255, 255, .05);
  position: relative;
}

#marquee::before,
#marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

#marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(20, 30, 27, 1), transparent);
}

#marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(20, 30, 27, 1), transparent);
}

.marquee-track {
  display: inline-flex;
  animation: marquee 90s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  padding: 0 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .28);
  border-right: 1px solid rgba(255, 255, 255, .07);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all .3s ease;
  cursor: default;
}

.marquee-item:hover {
  color: var(--teal);
  transform: scale(1.1);
}

.mt {
  color: var(--teal);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── STATS BAND ── */
#stats {
  background: var(--teal);
  padding: 70px 60px;
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: statsRotate 20s linear infinite;
}

@keyframes statsRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.stat-block {
  text-align: center;
  padding: 0 20px;
  position: relative;
  transition: transform .3s ease;
}

.stat-block:hover {
  transform: translateY(-10px);
}

.stat-block::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, .25);
}

.stat-block:last-child::after {
  display: none;
}

.stat-val {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
  transition: all .3s ease;
}

.stat-block:hover .stat-val {
  transform: scale(1.1);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ── WHY ── */
#why {
  padding: 120px 60px;
  background: var(--white);
}

.why-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: end;
  margin-bottom: 80px;
}

.why-top > div {
  grid-column: 1 / 3;
  text-align: left;
}

.why-top > p {
  grid-column: 3;
  text-align: right;
}

.why-grid-wrap {
  display: grid;
  align-items: start;
  position: relative;
  overflow: hidden;
  padding-top: 12px;
}

.why-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateX(0) scale(1);
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  will-change: transform, opacity;
}

.why-page.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: all;
}

.why-page.exit {
  opacity: 0;
  transform: translateX(0) scale(1);
}

.why-card {
  background: var(--light);
  border-radius: 20px;
  padding: 48px 40px;
  border: 1px solid var(--border);
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .4s cubic-bezier(0.4, 0, 0.2, 1), border-color .4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-d));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.why-card:hover {
  border-color: rgba(46, 196, 169, .3);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(20, 30, 27, 0.12);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card-num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  color: rgba(46, 196, 169, .5);
  line-height: 1;
  margin-bottom: 24px;
  transition: color .3s ease, transform .3s ease;
}

.why-card:hover .why-card-num {
  color: var(--teal);
  transform: scale(1.08);
}

.why-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.why-card-body {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--mid);
}

.why-page-dots {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  justify-content: center;
}

.wpd {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
  position: relative;
  overflow: visible;
}

.wpd::after {
  display: none;
}

.wpd.active {
  background: var(--teal);
  transform: scaleX(1);
}

.wpd:hover {
  background: rgba(46, 196, 169, .3);
}

/* ── PROCESS ── */
#process {
  padding: 0;
}

.process-top {
  background: var(--teal);
  padding: 90px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.process-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(255, 255, 255, .12) 0%, transparent 60%);
}

.process-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 16px;
  display: block;
  position: relative;
  z-index: 1;
}

.process-h {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  color: white;
  line-height: 1.08;
  position: relative;
  z-index: 1;
}

.process-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, .7);
  margin: 20px auto 0;
  max-width: 560px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: visible;
}

.pcard {
  background: var(--ink);
  padding: 60px 40px;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, .06);
  transition: background .3s, box-shadow .3s;
  overflow: hidden;
}

.pcard:last-child {
  border-right: none;
}

.pcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(46, 196, 169, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
}

.pcard:hover {
  background: #1e2e2a;
  box-shadow: inset 0 0 0 1px rgba(46, 196, 169, .2);
}

.pcard:hover::before {
  opacity: 1;
}

.pcard-accent {
  width: 48px;
  height: 4px;
  background: var(--teal);
  border-radius: 2px;
  margin-bottom: 32px;
  transition: all .3s ease;
}

.pcard:hover .pcard-accent {
  width: 64px;
  box-shadow: 0 0 20px rgba(46, 196, 169, 0.5);
}

.pcard-step {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.pcard-title {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
  transition: color .3s ease;
}

.pcard:hover .pcard-title {
  color: var(--teal);
}

.pcard-body {
  font-size: 14.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .5);
}

.pcard-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: rgba(46, 196, 169, .45);
  line-height: 1;
  pointer-events: none;
  transition: all .4s ease;
}

.pcard:hover .pcard-num {
  color: rgba(46, 196, 169, .7);
  transform: scale(1.15);
}

/* ── DESTINATIONS ── */
#destinations {
  padding: 120px 60px;
  background: var(--light);
}

.dest-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 60px;
}

.dest-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ditem {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 40px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 40px;
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.ditem::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--teal);
  transform: scaleY(0);
  transition: transform .3s ease;
}

.ditem:hover {
  border-color: var(--teal);
  box-shadow: 0 12px 40px rgba(46, 196, 169, 0.15);
  transform: translateX(8px);
}

.ditem:hover::before {
  transform: scaleY(1);
}

.ditem-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ditem-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}

.ditem-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-faint2);
  color: var(--teal-d);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: .04em;
  margin-top: 6px;
  width: fit-content;
  transition: all .3s ease;
}

.ditem:hover .ditem-badge {
  background: var(--teal);
  color: white;
  transform: scale(1.05);
}

.ditem-mid {
  font-size: 15px;
  line-height: 1.7;
  color: var(--mid);
}

.ditem-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  background: var(--light);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  white-space: nowrap;
  transition: all .3s ease;
}

.ditem:hover .ditem-tag {
  background: rgba(46, 196, 169, .1);
  border-color: rgba(46, 196, 169, .3);
  color: var(--teal-d);
}

.ditem-budget {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 10px;
  white-space: nowrap;
  transition: color .3s ease;
}

.ditem:hover .ditem-budget {
  color: var(--teal);
}

.ditem-budget span {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  font-family: var(--sans);
}

.ditem-tags-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ditem-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}

/* ── TESTIMONIALS ── */
#testimonials {
  padding: 120px 60px;
  background: var(--white);
}

.testi-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: end;
  margin-bottom: 80px;
}

.testi-top > div {
  grid-column: 1 / 3;
}

.testi-top > p {
  grid-column: 3;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tcard {
  background: var(--light);
  border-radius: 20px;
  padding: 40px 36px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .4s cubic-bezier(0.4, 0, 0.2, 1), border-color .4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.tcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-d));
  transform: scaleX(0);
  transition: transform .4s ease;
}

.tcard:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(20, 30, 27, 0.12);
}

.tcard:hover::before {
  transform: scaleX(1);
}

.tcard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.ttag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(20, 30, 27, .06);
  color: var(--mid);
  transition: all .3s ease;
}

.ttag.hl {
  background: rgba(46, 196, 169, .15);
  color: var(--teal-d);
}

.tcard:hover .ttag.hl {
  background: var(--teal);
  color: white;
  transform: scale(1.05);
}

.tcard-quote {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink);
  flex: 1;
  margin-bottom: 32px;
  padding-top: 0;
}

.tcard-openquote {
  font-family: var(--serif);
  font-size: 80px;
  color: var(--teal);
  line-height: .8;
  display: block;
  margin-bottom: 8px;
}

.tcard:hover .tcard-openquote {
  transform: none;
}

.tcard-foot {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.tcard-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.tcard-uni {
  font-size: 13px;
  color: var(--teal-d);
  font-weight: 500;
  margin-bottom: 12px;
}

.tcard-score {
  display: inline-block;
  background: var(--ink);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 4px 12px;
  border-radius: 6px;
  transition: all .3s ease;
}

.tcard:hover .tcard-score {
  background: var(--teal);
  transform: translateX(5px);
}

.testi-cycle-wrap {
  display: grid;
  align-items: start;
  position: relative;
  overflow: hidden;
  padding-top: 12px;
  margin-top: -12px;
}

.testi-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  grid-area: 1 / 1;
  opacity: 0;
  transition: opacity .6s ease;
  pointer-events: none;
}

.testi-page.active {
  opacity: 1;
  pointer-events: all;
}

.testi-page.exit {
  opacity: 0;
}

/* FIX[TST-01]: overflow visible for dots */
.testi-dots {
  display: flex;
  gap: 12px;
  margin-top: 48px;
  justify-content: center;
  align-items: center;
  overflow: visible;
  padding: 8px 0;
  position: relative;
  z-index: 5;
}

/* FIX[TST-01]: perfect circles */
.tdot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  min-height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all .3s ease;
  display: inline-block;
  flex-shrink: 0;
  box-sizing: content-box;
  overflow: visible;
  aspect-ratio: 1/1;
  padding: 0;
  border: none;
}

/* FIX[TST-01]: no scale to prevent clipping */
.tdot.active {
  background: var(--teal);
  transform: scale(1.15);
}

.tdot:hover {
  transform: scale(1.15);
}

/* Testimonial hover fix */
.tcard:hover .tcard-name {
  color: var(--teal-d);
}

.tcard:hover .tcard-uni {
  color: var(--teal);
}

/* ── CTA STRIP ── */
#cta-strip {
  background: var(--ink);
  padding: 120px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(46, 196, 169, .12) 0%, transparent 70%);
  pointer-events: none;
  animation: ctaPulse 8s ease-in-out infinite;
}

@keyframes ctaPulse {

  0%,
  100% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.1);
  }
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.cta-inner-wide {
  max-width: 820px;
}

.cta-h {
  font-family: var(--serif);
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 300;
  color: white;
  line-height: 1.08;
  margin-bottom: 24px;
}

.cta-h em {
  font-style: italic;
  color: var(--teal);
}

.cta-p {
  font-size: 17px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.8;
  margin-bottom: 48px;
}

/* FIX[CTA-01]: 2x2 centered grid */
.cta-checks {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 16px 60px;
  margin-bottom: 48px;
  justify-content: center;
}

/* FIX[CTA-01]: restored font */
.cta-check {
  font-size: 15px;
  color: rgba(255, 255, 255, .65);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all .3s ease;
}

.cta-check:hover {
  color: white;
  transform: translateX(5px);
}

.cta-check::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  font-size: 16px;
}

.cta-main-btn {
  font-size: 16px;
  padding: 18px 44px;
}

.cta-note {
  font-size: 13px;
  color: rgba(255, 255, 255, .35);
  margin-top: 20px;
}

/* ── BOOK ── */
#book {
  padding: 120px 60px;
  background: var(--ink);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.book-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.book-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0 40px;
}

.book-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--mid);
  transition: all .3s ease;
  padding: 8px 0;
}

.book-list li:hover {
  color: var(--ink);
  transform: translateX(10px);
}

.book-list li::before {
  content: '→';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  transition: transform .3s ease;
}

.book-list li:hover::before {
  transform: translateX(5px);
}

.book-note {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  border-radius: 12px;
  padding: 24px 28px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  transition: all .3s ease;
}

.book-note:hover {
  box-shadow: 0 10px 30px rgba(20, 30, 27, 0.08);
  transform: translateY(-3px);
}

.form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 4px 40px rgba(20, 30, 27, 0.08);
  border: 1px solid var(--border);
}

.fhed {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.fsub {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 28px;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}

.fg label {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.fg input,
.fg select {
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: 7px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--sans);
  color: var(--ink);
  outline: none;
  width: 100%;
  appearance: none;
  transition: border-color .2s, box-shadow .2s;
}

.fg input:focus,
.fg select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(46, 196, 169, .1);
}

.fg .hint {
  font-size: 11.5px;
  color: var(--muted);
}

.fsub-btn {
  width: 100%;
  padding: 14px;
  background: var(--ink);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--sans);
  transition: background .2s, transform .15s;
  margin-top: 4px;
}

.fsub-btn:hover {
  background: var(--teal);
  transform: translateY(-1px);
}

.form-sm {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}

/* ── FAQ ── */
#faq {
  padding: 60px 60px 100px;
  background: var(--white);
}

.faq-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-body {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  margin-top: 20px;
  align-items: start;
}

.faq-sidebar {
  align-self: start;
}

.faq-sidebar .sec-p {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.8;
  margin: 20px 0 36px;
}

.faq-cta {
  margin-top: 8px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  transition: all .3s ease;
}

.faq-item:hover {
  border-color: rgba(46, 196, 169, .3);
}

.faq-q {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 24px;
  transition: all .3s ease;
}

.faq-q span {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  flex: 1;
  transition: color .3s ease;
}

.faq-q:hover span {
  color: var(--teal);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  color: var(--muted);
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--teal);
  color: white;
  box-shadow: 0 0 20px rgba(46, 196, 169, 0.4);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-a {
  max-height: 400px;
}

.faq-a p {
  padding: 0 0 28px;
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--mid);
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 800;
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.back-to-top button {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, .2);
  background: var(--ink);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .3);
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-to-top button:hover {
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 40px rgba(46, 196, 169, 0.4);
}

.back-to-top button svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── STICKY removed - replaced by back-to-top ── */
.sticky-cta {
  display: none;
}

/* shared helpers */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-d);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
}

.sec-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
}

.sec-title em {
  font-style: italic;
  color: var(--teal);
}

.sec-p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--mid);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ── FOOTER ── */
footer { background: #0a1512; padding: 100px 60px 32px; position: relative; overflow: hidden; min-height: auto; box-sizing: border-box; }
.footer-wave { position: absolute; top: 0; left: 0; right: 0; line-height: 0; z-index: 0; }
.footer-wave svg { width: 100%; height: 80px; display: block; }
.footer-chevron-bg { position: absolute; right: -60px; top: -40px; opacity: .035; pointer-events: none; z-index: 0; }
.footer-chevron-bg svg { width: 500px; height: 534px; }
.footer-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 64px; margin-bottom: 64px; }
.footer-logo-img { height: 40px; width: auto; display: block; margin-bottom: 24px; transition: transform .3s ease; }
.footer-logo-img:hover { transform: scale(1.05); }
.footer-desc { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,.4); max-width: 260px; }
.footer-col h4 { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); font-weight: 600; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,.5); text-decoration: none; transition: all .3s ease; display: inline-block; position: relative; }
.footer-col ul li a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--teal); transition: width .3s ease; }
.footer-col ul li a:hover { color: white; }
.footer-col ul li a:hover::after { width: 100%; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); transition: all .3s cubic-bezier(0.4,0,0.2,1); position: relative; overflow: hidden; }
.footer-social a::before { content: ''; position: absolute; inset: 0; background: var(--teal); transform: scale(0); border-radius: 12px; transition: transform .3s ease; }
.footer-social a:hover { border-color: var(--teal); color: white; transform: translateY(-5px); }
.footer-social a:hover::before { transform: scale(1); }
.footer-social svg { width: 18px; height: 18px; position: relative; z-index: 2; }
.footer-social a:hover svg { color: white; fill: currentColor; stroke: currentColor; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(46,196,169,.12); padding-top: 28px; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,.3); }

/* ── RESPONSIVE ── */
@media(max-width: 1100px) {

  .hero-inner,
  #why,
  #destinations,
  #testimonials,
  #book,
  #faq,
  #showcase,
  .process-top {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-right {
    display: none;
  }

  .why-top,
  .testi-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-top > div,
  .why-top > p,
  .testi-top > div,
  .testi-top > p {
    grid-column: auto;
    text-align: left;
  }

  .why-grid,
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-cards {
    grid-template-columns: 1fr 1fr;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px 0;
  }

  .stat-block::after {
    display: none;
  }

  .dest-list .ditem {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ditem-right {
    justify-content: flex-start;
  }

  .book-wrap,
  .faq-body {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .frow {
    grid-template-columns: 1fr;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media(max-width: 680px) {

  #why,
  #destinations,
  #testimonials,
  #book,
  #faq,
  #showcase,
  .process-top {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero-inner {
    padding: 52px 20px;
  }

  /* FIX[HERO-01]: 2x2 grid on mobile */
  .hero-trust-strip {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    flex-direction: unset;
  }

  .htrust {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }

  .process-cards {
    grid-template-columns: 1fr;
  }

  .why-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }

  #stats {
    padding: 40px 20px;
  }

  .sticky-cta {
    bottom: 14px;
    right: 14px;
  }
  .footer-grid { grid-template-columns: 1fr; }
}

.reel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.reel-card {
  text-decoration: none;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  transition: all .5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.reel-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46, 196, 169, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 1;
}

.reel-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  border-color: rgba(46, 196, 169, .3);
}

.reel-card:hover::before {
  opacity: 1;
}

.reel-thumb {
  position: relative;
  aspect-ratio: 9/14;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.reel-play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  padding-left: 4px;
  transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.reel-card:hover .reel-play {
  background: var(--teal);
  transform: scale(1.2);
  box-shadow: 0 0 40px rgba(46, 196, 169, 0.6);
}

.reel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, .9) 0%, transparent 100%);
  z-index: 2;
}

.reel-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: white;
  background: rgba(46, 196, 169, .25);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(46, 196, 169, .4);
  transition: all .3s ease;
}

.reel-card:hover .reel-tag {
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-5px);
}

.reel-info {
  padding: 24px 28px;
  position: relative;
  z-index: 2;
}

.reel-title {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  line-height: 1.4;
  transition: color .3s ease;
}

.reel-card:hover .reel-title {
  color: var(--teal);
}

.reel-sub {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.6;
}

@media(max-width:1024px) {
  .reel-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:640px) {
  .reel-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    padding: 0;
    scrollbar-width: none;
  }

  .reel-grid::-webkit-scrollbar {
    display: none;
  }

  .reel-card {
    flex: 0 0 calc(100vw - 36px);
    scroll-snap-align: start;
    min-width: 0;
    margin-right: 16px;
  }

  .reel-card:last-child {
    margin-right: 0;
  }

  .reel-thumb {
    aspect-ratio: 9/14;
  }

  .reel-indicators {
    display: flex !important;
  }
  .footer-bottom { padding-bottom: 0; }
  .footer-grid { gap: 32px !important; }
}

.reel-indicators {
  display: none;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.reel-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: background .3s;
}

.reel-indicator.active {
  background: var(--teal);
}


/* FIX[UNI-01]: scholarship inline badge */
#hupBottom {
  display: none !important;
}

.uni-scholarship-badge {
  display: inline-block;
  background: rgba(46, 196, 169, 0.15);
  border: 1px solid rgba(46, 196, 169, 0.3);
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-top: 12px;
  letter-spacing: 0.03em;
}

/* ── STAGGERED REVEALS ── */
.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* FIX[MOB-01]: Mobile responsive fixes */
@media(max-width: 680px) {
  .why-page {
    grid-template-columns: 1fr !important;
  }

  .why-page .why-card {
    min-width: 0;
  }

  .testi-page {
    grid-template-columns: 1fr !important;
  }

  .testi-page .tcard {
    min-width: 0;
  }

  .cta-checks {
    grid-template-columns: repeat(2, auto) !important;
    gap: 12px 40px !important;
  }
}

.why-mob-dots,
.testi-mob-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  margin-top: 18px;
}

.why-mob-dots::-webkit-scrollbar,
.testi-mob-dots::-webkit-scrollbar {
  display: none;
}

.why-mob-dots .mob-slide-dot {
  width: 18px;
  height: 4px;
  border-radius: 999px;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.why-mob-dots .mob-slide-dot.active {
  width: 28px;
  background: var(--teal);
}

.testi-mob-dots .mob-slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: transform .25s ease, background .25s ease;
}

.testi-mob-dots .mob-slide-dot.active {
  background: var(--teal);
  transform: scale(1.15);
}

/* FIX[HDR-FTR-01]: home header/footer style parity with new-page homepage */
.home-page {
  overflow-x: hidden;
  overflow-x: clip;
}

.home-page .gv-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 900;
  background: #141e1b;
  backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
  transition: transform .38s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-page .gv-header.scrolled {
  box-shadow: none;
}

.home-page .gv-header-inner {
  min-height: 80px;
  padding: 0;
}

.home-page .gv-logo img {
  height: 30px;
  filter: none;
  opacity: 1;
}

.home-page .gv-nav-links {
  gap: 20px;
}

.home-page .gv-nav-links .btn-primary {
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  min-height: unset;
  line-height: 1;
  color: white;
  text-decoration: none;
  letter-spacing: .01em;
  box-shadow: 0 4px 24px rgba(46, 196, 169, 0.35);
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  font-family: var(--sans);
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.home-page .gv-nav-links a {
  color: rgba(255, 255, 255, 0.55);
  position: relative;
  transition: all .3s ease;
  letter-spacing: .01em;
}

.home-page .gv-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width .3s ease;
  border-radius: 1px;
}

.home-page .gv-nav-links a:hover {
  color: #fff;
}

.home-page .gv-nav-links a:hover::after {
  width: 100%;
}

.home-page .gv-nav-links .gv-nav-cta {
  background: var(--teal);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.home-page .gv-nav-links .gv-nav-cta::after {
  display: none !important;
}

.home-page .gv-nav-links .gv-nav-cta::before {
  display: none !important;
}

.home-page .gv-nav-links .gv-nav-cta:hover {
  background: var(--teal-d);
  color: #fff !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: none;
}

.home-page .gv-menu-btn {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
}

.home-page .gv-menu-line {
  background: rgba(255, 255, 255, 0.9);
}

.home-page .gv-footer {
  background: #0a1512;
  padding: 100px 60px 32px;
  position: relative;
  overflow: hidden;
}

.home-page .gv-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46, 196, 169, 0.2), transparent);
}

.home-page .gv-footer-inner {
  position: relative;
  z-index: 1;
}

.home-page .gv-footer-grid {
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

.home-page .gv-footer-logo {
  height: 40px;
  margin-bottom: 24px;
  width: auto;
  display: block;
  transition: transform .3s ease;
}

.home-page .gv-footer-logo:hover {
  transform: scale(1.05);
}

.home-page .gv-footer-desc {
  color: rgba(255, 255, 255, .4);
  max-width: 260px;
}

.home-page .gv-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.home-page .gv-footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.home-page .gv-footer-social a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--teal);
  transform: scale(0);
  border-radius: 12px;
  transition: transform .3s ease;
}

.home-page .gv-footer-social a svg {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 2;
}

.home-page .gv-footer-social a:hover {
  border-color: var(--teal);
  color: #fff;
  transform: translateY(-5px);
}

.home-page .gv-footer-social a:hover::before {
  transform: scale(1);
}

.home-page .gv-footer-col h4 {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 20px;
}

.home-page .gv-footer-col ul li a {
  color: rgba(255, 255, 255, .5);
  position: relative;
  display: inline-block;
}

.home-page .gv-footer-col ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--teal);
  transition: width .3s ease;
}

.home-page .gv-footer-col ul li a:hover {
  color: #fff;
}

.home-page .gv-footer-col ul li a:hover::after {
  width: 100%;
}

.home-page .gv-footer-bottom {
  border-top: 1px solid rgba(46, 196, 169, .12);
  padding-top: 28px;
}

.home-page .gv-footer-bottom p {
  color: rgba(255, 255, 255, .3);
}

.home-page .gv-footer-trust span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 1180px) {
  .home-page .gv-header-inner {
    padding: 0 20px;
  }

  .home-page .gv-nav {
    background: #0f1b18;
    backdrop-filter: none;
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
  }

  .home-page .gv-nav-links a {
    color: rgba(255, 255, 255, 0.76);
  }

  .home-page .gv-nav-links a::after {
    display: none;
  }
}

@media (max-width: 1100px) {
  .home-page .gv-footer {
    padding-left: 32px;
    padding-right: 32px;
  }

  .home-page .gv-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .home-page .gv-header-inner {
    padding: 0 16px;
  }

  .home-page .gv-footer {
    padding: 64px 20px 24px;
  }

  .home-page .gv-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }

  .home-page .gv-footer-bottom {
    padding-bottom: 0;
  }
}

/* FIX[RWD-03]: section style moved from inline for consistent breakpoints */
#showcase {
  padding: 10px 60px;
  background: var(--ink);
  overflow: hidden;
}

.showcase-eyebrow {
  color: var(--teal);
}

.showcase-title {
  color: white;
}

.showcase-action {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.reel-thumb-uk {
  background: linear-gradient(135deg, #0d2420, #1a3d32);
}

.reel-thumb-usa {
  background: linear-gradient(135deg, #1a1a2e, #2a1f3d);
}

.reel-thumb-europe {
  background: linear-gradient(135deg, #0a1f3c, #142d52);
}

.showcase-copy {
  font-size: 14px;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 16px;
}

.showcase-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 10px 22px;
  border-radius: 7px;
  transition: color .2s ease, border-color .2s ease;
}

.showcase-more-link:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* FIX[RWD-03]: tablet behavior */
@media (max-width: 1100px) {

  .why-page,
  .testi-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-trust-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 28px;
  }

  .htrust {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }

  .ditem {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 26px 24px;
  }

  .ditem-right {
    align-items: flex-start;
  }
}

/* FIX[RWD-03]: iPad + small tablet */
@media (max-width: 820px) {
  .hero-inner {
    padding: 52px 18px;
    gap: 38px;
  }

  .hero-h1 {
    font-size: clamp(42px, 11vw, 64px);
  }

  .hero-p {
    max-width: 100%;
  }

  .process-top,
  #why,
  #destinations,
  #testimonials,
  #faq,
  #book,
  #showcase {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  #stats {
    padding: 52px 18px;
  }

  .stats-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .stat-val {
    font-size: 42px;
  }

  .process-cards {
    grid-template-columns: 1fr;
  }

  .pcard {
    padding: 42px 24px;
  }

  .pcard-num {
    font-size: 64px;
    top: 20px;
    right: 20px;
  }

  .why-top,
  .testi-top {
    gap: 24px;
    margin-bottom: 44px;
  }

  .why-page,
  .testi-page {
    grid-template-columns: 1fr;
  }

  .faq-body {
    gap: 32px;
  }

  .faq-q span {
    font-size: 15px;
  }

  .faq-a p {
    font-size: 14px;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
  }
}

/* FIX[RWD-04]: tablet+mobile card carousels */
@media (max-width: 820px) {

  .why-page-dots,
  .testi-dots {
    display: none !important;
  }

  .why-mob-dots,
  .testi-mob-dots {
    display: flex !important;
  }

  .cta-checks {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    justify-items: CENTER;
  }

  .ditem-name {
    font-size: 20px;
  }

  .ditem-mid {
    font-size: 14px;
  }

  .ditem-budget {
    font-size: 24px;
  }
}

/* FIX[RWD-03]: very small phones */
@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }
}

