:root {
  --navy: #062549;
  --navy-2: #031429;
  --teal: #1199a9;
  --teal-2: #0b7480;
  --gold: #d8a21b;
  --gold-soft: #f5d77a;
  --sky: #eff9fb;
  --tint: #f6f9fc;
  --white: #ffffff;
  --text: #132033;
  --muted: #5d6c80;
  --border: rgba(6, 37, 73, .10);
  --shadow: 0 18px 50px rgba(6, 37, 73, .10);
  --shadow-strong: 0 24px 64px rgba(6, 37, 73, .18);
  --radius-lg: 26px;
  --radius-md: 20px;
  --container: 1220px;
  --font-ui: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
small { color: var(--muted); }
h1, h2, h3, h4 {
  margin: 0 0 1rem;
  color: var(--navy);
  line-height: 1.06;
  letter-spacing: -0.032em;
  font-weight: 750;
}
h1 { font-size: clamp(2.2rem, 10vw, 4.95rem); }
h2 { font-size: clamp(1.8rem, 7vw, 3.25rem); }
h3 { font-size: clamp(1.08rem, 4.8vw, 1.35rem); }

.container {
  width: min(var(--container), calc(100% - 28px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 14px;
  top: -100px;
  z-index: 3000;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 750;
}
.skip-link:focus { top: 14px; }

.utility-bar {
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
  color: rgba(255,255,255,.88);
  font-size: .82rem;
}
.utility-bar__inner {
  min-height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px 14px;
  flex-wrap: wrap;
  padding: 7px 0;
}
.utility-bar__links {
  display: flex;
  align-items: center;
  gap: 10px 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.utility-bar a, .utility-bar span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

/* Thin sticky nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 2000;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(6,37,73,.08);
  backdrop-filter: blur(18px);
  transition: background .24s ease, box-shadow .24s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.98);
  box-shadow: 0 8px 26px rgba(6,37,73,.08);
}
.header-shell {
  min-height: 62px;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 158px;
  height: auto;
}
.nav-toggle {
  display: block;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 13px;
  background: var(--navy);
  padding: 9px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  margin: 5px 0;
  transition: .25s ease;
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.main-nav {
  position: absolute;
  top: calc(100% + 8px);
  left: 14px;
  right: 14px;
  display: grid;
  gap: 4px;
  padding: 12px;
  background: rgba(255,255,255,.98);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-strong);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: .22s ease;
}
.main-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.main-nav a {
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 650;
  color: var(--navy);
  transition: .2s ease;
}
.main-nav a:hover,
.main-nav a.is-active {
  background: rgba(17,153,169,.10);
  color: var(--teal-2);
}
.header-actions { display: none; }
.header-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.78);
  font-weight: 650;
  color: var(--navy);
}

/* Buttons */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  min-height: 48px;
  padding: 12px 18px;
  font-family: var(--font-ui);
  font-weight: 750;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: linear-gradient(135deg, var(--navy), var(--teal-2));
  color: #fff;
  box-shadow: 0 14px 30px rgba(6,37,73,.18);
}
.btn--secondary {
  background: rgba(17,153,169,.10);
  border-color: rgba(17,153,169,.18);
  color: var(--teal-2);
}
.btn--gold {
  background: linear-gradient(135deg,#f3cf65,var(--gold));
  color: var(--navy);
  box-shadow: 0 16px 30px rgba(216,162,27,.22);
}
.btn--light { background: #fff; color: var(--navy); box-shadow: 0 14px 30px rgba(0,0,0,.09); }
.btn--ghost-light, .btn--outline-light {
  border-color: rgba(255,255,255,.42);
  color: #fff;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.btn--full { width: 100%; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  font-weight: 800;
  color: var(--teal-2);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(135deg,var(--gold),var(--teal));
}
.eyebrow--light { color: rgba(255,255,255,.9); }
.eyebrow--light::before { background: linear-gradient(135deg,var(--gold-soft),#fff); }

.section { padding: 66px 0; }
.section--soft { background: linear-gradient(180deg,rgba(17,153,169,.07),#fff 78%); }
.section--tint { background: linear-gradient(180deg,var(--tint),#fff); }
.section--navy {
  background: radial-gradient(circle at top right,rgba(17,153,169,.3),transparent 30%), linear-gradient(135deg,var(--navy-2),var(--navy));
  color: rgba(255,255,255,.9);
}
.section-head {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 34px;
}
.section-head--left {
  text-align: left;
  max-width: 640px;
  margin: 0;
}
.section-head--light h2,
.section-head--light p,
.split-copy--light h2,
.split-copy--light p { color: #fff; }

/* Consistent professional banners */
.hero,
.hero-slider,
.hero-layout { min-height: 680px; }
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-2);
}
.hero-slider { position: relative; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background-image: var(--hero);
  background-size: cover;
  background-position: center;
  transition: opacity .75s ease, transform .75s ease, filter .75s ease;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0,0) scale(1);
  filter: saturate(1);
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 30%;
  background: linear-gradient(0deg,rgba(3,20,41,.92),transparent);
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 20%,rgba(17,153,169,.18),transparent 32%),
    linear-gradient(90deg,rgba(3,20,41,.94) 0%,rgba(6,37,73,.75) 52%,rgba(6,37,73,.28) 100%);
}
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  padding: 48px 0 92px;
}
.hero-copy {
  max-width: 780px;
  color: #fff;
}
.hero-copy h1 {
  color: #fff;
  text-wrap: balance;
  margin-bottom: 18px;
}
.hero-copy p {
  max-width: 720px;
  color: rgba(255,255,255,.86);
  font-size: clamp(1rem,4vw,1.18rem);
  margin-bottom: 1.45rem;
}
.hero-actions,
.button-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-proof {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 720px;
}
.hero-proof div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
}
.hero-proof strong {
  display: block;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
}
.hero-proof span {
  display: block;
  color: rgba(255,255,255,.76);
  font-size: .84rem;
  margin-top: 5px;
}
.hero-panel { display: none; }
.slider-control { display: none; }
.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  z-index: 5;
}
.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  transition: .24s ease;
}
.slider-dots button.is-active {
  width: 34px;
  background: linear-gradient(135deg,var(--gold),#ffe7a1);
}

/* Randomized hero transitions */
.hero-slider.transition-fade .hero-slide { transform: scale(1.02); }
.hero-slider.transition-fade .hero-slide.is-active { transform: scale(1); }

.hero-slider.transition-zoom .hero-slide { transform: scale(1.08); }
.hero-slider.transition-zoom .hero-slide.is-active { transform: scale(1); }

.hero-slider.transition-slide-left .hero-slide { transform: translateX(34px) scale(1.02); }
.hero-slider.transition-slide-left .hero-slide.is-active { transform: translateX(0) scale(1); }

.hero-slider.transition-slide-up .hero-slide { transform: translateY(30px) scale(1.02); }
.hero-slider.transition-slide-up .hero-slide.is-active { transform: translateY(0) scale(1); }

.hero-slider.transition-blur .hero-slide { transform: scale(1.04); filter: blur(8px) saturate(.9); }
.hero-slider.transition-blur .hero-slide.is-active { transform: scale(1); filter: blur(0) saturate(1); }

/* Metric tabs below hero no longer overlap content */
.metrics-band {
  position: relative;
  z-index: 5;
  margin-top: 0;
  background: linear-gradient(180deg,#fff,var(--tint));
  padding: 18px 0 0;
}
.metrics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.metric-card {
  background: rgba(255,255,255,.96);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 20px;
}
.metric-card strong {
  display: block;
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.metric-card span {
  font-weight: 650;
  color: var(--muted);
}

/* Content blocks */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
}
.split-copy p { font-size: 1rem; }
.stacked-media { position: relative; }
.stacked-media__main img,
.image-card img,
.contact-image {
  width: 100%;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow-strong);
}
.stacked-media__main img { aspect-ratio: 4 / 3; }
.stacked-media__card {
  position: static;
  width: 100%;
  margin-top: 14px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.image-card,
.card,
.package-card,
.destination-card,
.contact-form {
  background: rgba(255,255,255,.96);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.image-card { padding: 12px; overflow: hidden; }
.card { padding: 20px; }
.card--service h2 { font-size: 1.4rem; }
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.icon-pill {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg,rgba(17,153,169,.13),rgba(6,37,73,.10));
  color: var(--teal-2);
  font-size: 1.15rem;
  margin-bottom: 16px;
}
.icon-pill--small {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 1rem;
  margin-bottom: 12px;
}
.check-list,
.mini-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.check-list li,
.mini-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}
.check-list li::before,
.mini-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--teal-2);
}
.check-list--spaced { gap: 14px; }

.carousel-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
}
.carousel-arrow { display: none; }
.services-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 18px;
  overflow: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 2px 18px;
  scrollbar-width: none;
}
.services-carousel::-webkit-scrollbar { display: none; }
.service-slide {
  scroll-snap-align: start;
  min-height: 100%;
}
.center-action {
  text-align: center;
  margin-top: 24px;
}

.illustration-panel {
  padding: 14px;
  border-radius: 28px;
  background: linear-gradient(180deg,#fff,#f8fbfd);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.reason-grid {
  display: grid;
  gap: 14px;
}
.mini-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(6,37,73,.08);
}
.mini-feature:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.mini-feature h3 { margin-bottom: .35rem; }
.mini-feature p { margin-bottom: 0; }

.destination-grid,
.destination-grid--large {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.destination-card {
  overflow: hidden;
  padding: 0;
}
.destination-card__image {
  padding: 16px;
  background: linear-gradient(180deg,rgba(17,153,169,.08),rgba(6,37,73,.04));
}
.destination-card__image--soft {
  background: linear-gradient(180deg,#f8fbfd,#edf6fa);
}
.destination-card__image img {
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: contain;
  border-radius: 20px;
}
.destination-card__body { padding: 20px; }
.tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(17,153,169,.12);
  color: var(--teal-2);
  font-size: .78rem;
  font-weight: 750;
}
.card-topline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.step-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.step-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 20px;
  box-shadow: var(--shadow);
}
.step-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg,var(--navy),var(--teal-2));
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
}

.testimonial-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}
.testimonial-slider {
  min-height: 330px;
  position: relative;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  border-radius: 26px;
  padding: 28px;
  backdrop-filter: blur(14px);
}
.quote {
  position: absolute;
  inset: 28px;
  opacity: 0;
  transition: opacity .45s ease;
  margin: 0;
}
.quote.is-active { opacity: 1; }
.quote p {
  font-size: clamp(1.05rem,4vw,1.28rem);
  color: #fff;
  margin-bottom: 1rem;
}
.quote cite {
  font-style: normal;
  color: var(--gold-soft);
  font-weight: 700;
}

.faq-shell { max-width: 930px; }
.faq-list {
  display: grid;
  gap: 14px;
}
.faq-item {
  background: rgba(255,255,255,.96);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 20px;
  font: inherit;
  font-weight: 750;
  color: var(--navy);
  cursor: pointer;
}
.faq-panel {
  display: none;
  padding: 0 20px 20px;
}
.faq-item.is-open .faq-panel { display: block; }
.faq-item.is-open .faq-trigger i { transform: rotate(45deg); }

/* Consistent inner-page banners */
.page-hero {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: center;
  padding: 72px 0;
  background-image: linear-gradient(90deg,rgba(4,22,45,.86),rgba(6,37,73,.64),rgba(17,153,169,.20)), var(--page-hero);
  background-size: cover;
  background-position: center;
}
.page-hero__content { max-width: 860px; }
.page-hero h1,
.page-hero p { color: #fff; }
.glass-panel--hero {
  padding: 24px;
  border-radius: 26px;
  background: rgba(6,37,73,.20);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(14px);
}

.package-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}
.package-card { padding: 22px; }
.package-card--featured {
  background: linear-gradient(135deg,var(--navy),var(--navy-2));
  color: #fff;
}
.package-card--featured h3,
.package-card--featured p,
.package-card--featured strong { color: #fff; }
.package-price {
  display: block;
  font-size: 1.2rem;
  color: var(--teal-2);
  margin-bottom: 1rem;
}
.package-card--featured .package-price { color: #fff; }
.badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg,#ffe7a1,var(--gold));
  color: var(--navy);
  font-size: .74rem;
  font-weight: 800;
}

.filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.filter-chip {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 10px 13px;
  cursor: pointer;
  font-weight: 650;
}
.filter-chip.is-active {
  background: rgba(17,153,169,.12);
  color: var(--teal-2);
  border-color: rgba(17,153,169,.2);
}

.timeline {
  display: grid;
  gap: 16px;
  max-width: 960px;
  margin-inline: auto;
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.timeline-item span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(135deg,var(--navy),var(--teal-2));
  color: #fff;
  font-weight: 800;
}
.ethical-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: center;
}
.ethics-grid {
  display: grid;
  gap: 12px;
}
.ethics-grid div {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
}
.ethics-grid i {
  color: var(--gold-soft);
  margin-right: 8px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}
.contact-stack {
  display: grid;
  gap: 14px;
}
.contact-card p { margin: 0; }
.contact-image {
  border-radius: 22px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.contact-form {
  padding: 22px;
  display: grid;
  gap: 16px;
}
.contact-form h2 {
  font-size: clamp(1.55rem,7vw,2.4rem);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 650;
  color: var(--navy);
}
input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  font: inherit;
  background: #fff;
  color: var(--text);
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(17,153,169,.55);
  box-shadow: 0 0 0 4px rgba(17,153,169,.12);
}
.alert {
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 650;
}
.alert ul {
  margin: 0;
  padding-left: 20px;
}
.alert--success { background: #e8f8ee; color: #126738; }
.alert--error { background: #fff0f0; color: #991b1b; }

.cta-panel { padding: 66px 0; }
.cta-panel__shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
  background: linear-gradient(135deg,var(--navy),var(--teal-2));
  padding: 24px;
  border-radius: 28px;
  color: #fff;
  box-shadow: var(--shadow-strong);
}
.cta-panel__shell h2,
.cta-panel__shell p { color: #fff; }
.cta-panel__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer {
  background: linear-gradient(180deg,var(--navy-2),#030d1b);
  color: rgba(255,255,255,.82);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
.footer-brand img {
  width: 230px;
  background: #fff;
  padding: 8px;
  border-radius: 18px;
  margin-bottom: 16px;
}
.site-footer h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.site-footer a,
.site-footer p {
  display: block;
  color: rgba(255,255,255,.76);
  margin-bottom: 10px;
}
.social-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-row a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.10);
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 42px;
  padding-top: 20px;
  font-size: .9rem;
}
.floating-whatsapp {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 2000;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #fff;
  font-size: 1.65rem;
  box-shadow: 0 18px 36px rgba(37,211,102,.34);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Tablet */
@media (min-width: 640px) {
  .container { width: min(var(--container), calc(100% - 40px)); }
  .brand img { width: 190px; }
  .header-shell { min-height: 66px; }
  .utility-bar__inner { justify-content: space-between; }
  .hero,
  .hero-slider,
  .hero-layout { min-height: 700px; }
  .hero-actions,
  .button-row,
  .cta-panel__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .metrics-grid,
  .step-grid,
  .destination-grid,
  .package-grid,
  .card-grid--four {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-carousel {
    grid-auto-columns: calc((100% - 18px) / 2);
  }
  .card-grid--three,
  .card-grid--two,
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline-item {
    grid-template-columns: 72px 1fr;
    gap: 18px;
  }
  .footer-grid {
    grid-template-columns: 1.1fr .9fr;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .section { padding: 96px 0; }
  .utility-bar { font-size: .88rem; }
  .utility-bar__inner { min-height: 38px; padding: 0; }
  .header-shell {
    min-height: 68px;
    grid-template-columns: auto 1fr auto;
  }
  .brand img { width: 230px; }
  .nav-toggle { display: none; }
  .main-nav {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    display: flex;
    justify-content: center;
    gap: 4px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .main-nav a {
    padding: 8px 12px;
    font-size: .92rem;
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .header-actions .btn {
    min-height: 42px;
    padding: 10px 16px;
  }
  .header-link {
    padding: 8px 11px;
    font-size: .9rem;
  }

  .hero,
  .hero-slider,
  .hero-layout { min-height: 720px; }
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    padding: 60px 0 86px;
  }
  .hero-panel {
    display: block;
    align-self: end;
    margin-bottom: 58px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(255,255,255,.55);
    box-shadow: var(--shadow-strong);
    border-radius: 28px;
    padding: 22px;
    backdrop-filter: blur(16px);
  }
  .hero-panel__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 16px;
  }
  .hero-panel__top i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--teal-2);
    background: rgba(17,153,169,.12);
  }
  .roadmap-mini {
    display: grid;
    gap: 12px;
  }
  .roadmap-mini div {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    background: #f7fbfd;
    border: 1px solid rgba(6,37,73,.07);
  }
  .roadmap-mini b {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg,var(--navy),var(--teal-2));
  }
  .roadmap-mini span {
    color: var(--navy);
    font-weight: 700;
    font-size: .92rem;
  }
  .slider-control {
    display: grid;
    place-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,.16);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(12px);
    z-index: 5;
  }
  .slider-control--prev { left: 22px; }
  .slider-control--next { right: 22px; }
  .slider-dots { bottom: 28px; }

  .metrics-band {
    padding: 26px 0 0;
    margin-top: 0;
  }
  .metrics-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .metric-card {
    padding: 22px;
  }

  .split {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }
  .split--media-right {
    grid-template-columns: 1.05fr .95fr;
  }
  .stacked-media__card {
    position: absolute;
    right: -12px;
    bottom: 20px;
    width: min(290px, 100%);
    margin-top: 0;
  }
  .card { padding: 28px; }
  .card-grid--three { grid-template-columns: repeat(3, 1fr); }
  .card-grid--four { grid-template-columns: repeat(4, 1fr); }
  .card-grid--two { grid-template-columns: repeat(2, 1fr); }
  .carousel-shell {
    grid-template-columns: auto 1fr auto;
  }
  .carousel-arrow {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--navy);
    cursor: pointer;
    box-shadow: var(--shadow);
  }
  .services-carousel {
    grid-auto-columns: calc((100% - 44px) / 3);
    gap: 22px;
  }
  .destination-grid { grid-template-columns: repeat(3, 1fr); }
  .destination-grid--large { grid-template-columns: repeat(2, 1fr); }
  .step-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonial-shell {
    grid-template-columns: .85fr 1.15fr;
    gap: 38px;
  }
  .testimonial-slider {
    min-height: 240px;
    padding: 34px;
  }
  .quote { inset: 34px; }
  .page-hero {
    min-height: 440px;
    padding: 96px 0;
  }
  .glass-panel--hero {
    padding: 34px;
  }
  .package-grid { grid-template-columns: repeat(3, 1fr); }
  .package-card--featured {
    transform: translateY(-8px);
  }
  .ethical-layout {
    grid-template-columns: .9fr 1.1fr;
  }
  .contact-layout {
    grid-template-columns: .92fr 1.08fr;
    gap: 26px;
  }
  .contact-form {
    padding: 30px;
  }
  .cta-panel__shell {
    grid-template-columns: 1fr auto;
    padding: 34px;
    border-radius: 34px;
  }
  .footer-grid {
    grid-template-columns: 1.4fr .8fr .9fr 1fr;
    gap: 30px;
  }
}

/* Large desktop */
@media (min-width: 1280px) {
  .header-shell { min-height: 70px; }
  .brand img { width: 245px; }
  .hero,
  .hero-slider,
  .hero-layout { min-height: 740px; }
}


/* ===== Theme-ready refinements: thinner sticky nav + seamless dark/light mode ===== */
:root,
:root[data-theme="light"] {
  color-scheme: light;
  --page-bg: #ffffff;
  --surface: rgba(255,255,255,.96);
  --surface-solid: #ffffff;
  --surface-soft: #f6f9fc;
  --surface-raised: rgba(255,255,255,.96);
  --text: #132033;
  --muted: #5d6c80;
  --border: rgba(6,37,73,.10);
  --shadow: 0 16px 42px rgba(6,37,73,.09);
  --shadow-strong: 0 22px 60px rgba(6,37,73,.16);
  --header-bg: rgba(255,255,255,.92);
  --header-bg-scrolled: rgba(255,255,255,.98);
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --page-bg: #07111f;
  --surface: rgba(11,24,42,.92);
  --surface-solid: #0b182a;
  --surface-soft: #0f2238;
  --surface-raised: rgba(13,29,50,.94);
  --text: #edf6ff;
  --muted: #a8b7c8;
  --border: rgba(221,245,247,.12);
  --shadow: 0 18px 46px rgba(0,0,0,.28);
  --shadow-strong: 0 26px 70px rgba(0,0,0,.38);
  --header-bg: rgba(7,17,31,.84);
  --header-bg-scrolled: rgba(7,17,31,.94);
  --sky: #0f2739;
  --tint: #0a1727;
}

body {
  background:
    radial-gradient(circle at top left, rgba(17,153,169,.06), transparent 30%),
    var(--page-bg);
  color: var(--text);
  transition: background-color .25s ease, color .25s ease;
}
h1, h2, h3, h4 { color: var(--text); }
p, small { color: var(--muted); }

.site-header {
  background: var(--header-bg);
  min-height: auto;
}
.site-header.is-scrolled {
  background: var(--header-bg-scrolled);
}
.header-shell {
  min-height: 54px;
}
.brand img {
  width: 148px;
}
.nav-toggle {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}
.main-nav a {
  color: var(--text);
}

.theme-toggle {
  min-height: 38px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(6,37,73,.06);
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(17,153,169,.35);
}
.theme-toggle--mobile {
  display: inline-flex;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 12px;
}
.theme-toggle--mobile span { display: none; }

.header-shell {
  grid-template-columns: auto auto auto;
}
.main-nav {
  background: var(--surface);
}
.utility-bar {
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
}

.card,
.metric-card,
.destination-card,
.package-card,
.contact-form,
.image-card,
.faq-item,
.step-card,
.timeline-item,
.illustration-panel,
.stacked-media__card {
  background: var(--surface-raised);
  border-color: var(--border);
}
.card h1, .card h2, .card h3,
.metric-card strong,
.destination-card h3,
.package-card h3,
.contact-form h2,
.faq-trigger,
.timeline-item h3,
.step-card h3,
.mini-feature h3,
.roadmap-mini span,
.hero-panel__top {
  color: var(--text);
}
input,
select,
textarea {
  background: var(--surface-solid);
  color: var(--text);
  border-color: var(--border);
}
input::placeholder,
textarea::placeholder {
  color: color-mix(in srgb, var(--muted), transparent 20%);
}

.section--soft {
  background: linear-gradient(180deg, rgba(17,153,169,.08), var(--page-bg) 78%);
}
.section--tint,
.metrics-band {
  background: linear-gradient(180deg, var(--surface-soft), var(--page-bg));
}
.destination-card__image,
.destination-card__image--soft,
.roadmap-mini div {
  background: var(--surface-soft);
  border-color: var(--border);
}
.icon-pill {
  background: linear-gradient(135deg, rgba(17,153,169,.16), rgba(216,162,27,.08));
}
.btn--secondary {
  background: rgba(17,153,169,.14);
}
.btn--light {
  background: var(--surface-solid);
  color: var(--text);
}
.package-card--featured h3,
.package-card--featured p,
.package-card--featured strong,
.section--navy h2,
.section--navy h3,
.section--navy p {
  color: #fff;
}

/* Keep banners consistent across light and dark */
.hero,
.hero-slider,
.hero-layout {
  min-height: 680px;
}
.page-hero {
  min-height: 420px;
}

/* Desktop: thinner sticky nav */
@media (min-width: 640px) {
  .brand img { width: 174px; }
  .header-shell { min-height: 56px; }
}

@media (min-width: 1024px) {
  .header-shell {
    min-height: 58px;
    grid-template-columns: auto 1fr auto;
  }
  .brand img {
    width: 198px;
  }
  .main-nav a {
    padding: 7px 10px;
    font-size: .88rem;
  }
  .header-actions .btn,
  .header-link,
  .theme-toggle {
    min-height: 38px;
    padding: 8px 12px;
    font-size: .88rem;
  }
  .theme-toggle--mobile {
    display: none;
  }
}

@media (min-width: 1280px) {
  .header-shell { min-height: 60px; }
  .brand img { width: 210px; }
}


/* ===== public_html ready refinements ===== */
/* Smaller sticky menu footprint */
.utility-bar {
  font-size: .76rem;
}
.utility-bar__inner {
  min-height: 28px !important;
  padding: 3px 0 !important;
}
.site-header {
  border-bottom-width: 1px;
}
.header-shell {
  min-height: 46px !important;
}
.brand img {
  width: 132px !important;
}
.nav-toggle,
.theme-toggle--mobile {
  width: 34px !important;
  height: 34px !important;
  border-radius: 10px !important;
}
.nav-toggle {
  padding: 7px !important;
}
.nav-toggle span {
  margin: 4px 0 !important;
}
.theme-toggle {
  min-height: 34px !important;
  padding: 6px 10px !important;
  font-size: .82rem !important;
}
.main-nav {
  top: calc(100% + 6px);
}
.main-nav a {
  padding: 8px 10px !important;
  font-size: .86rem;
}
.header-actions .btn,
.header-link {
  min-height: 34px !important;
  padding: 6px 10px !important;
  font-size: .82rem !important;
}

/* Local icon fallback so the site does not depend on external icon CSS */
.fa-solid,
.fa-brands {
  display: inline-grid;
  place-items: center;
  width: 1.1em;
  min-width: 1.1em;
  height: 1.1em;
  line-height: 1;
  font-style: normal;
  font-weight: 800;
  text-rendering: auto;
}
.fa-solid::before,
.fa-brands::before {
  display: inline-block;
  font-size: .95em;
}

/* Generic icon mappings used across the site */
.fa-location-dot::before { content: "📍"; }
.fa-phone::before { content: "☎"; }
.fa-envelope::before { content: "✉"; }
.fa-whatsapp::before { content: "☘"; }
.fa-moon::before { content: "◐"; }
.fa-sun::before { content: "☀"; }
.fa-chevron-left::before { content: "‹"; font-size: 1.35em; }
.fa-chevron-right::before { content: "›"; font-size: 1.35em; }
.fa-arrow-left::before { content: "←"; }
.fa-arrow-right::before { content: "→"; }
.fa-plus::before { content: "+"; }
.fa-check::before,
.fa-check-circle::before { content: "✓"; }
.fa-route::before { content: "⟲"; }
.fa-comments::before { content: "☏"; }
.fa-book-open::before { content: "▤"; }
.fa-building-columns::before { content: "▦"; }
.fa-file-signature::before { content: "✎"; }
.fa-pen-nib::before { content: "✒"; }
.fa-hand-holding-dollar::before { content: "$"; }
.fa-passport::before { content: "▣"; }
.fa-plane-departure::before { content: "✈"; }
.fa-user-graduate::before { content: "🎓"; }
.fa-earth-africa::before,
.fa-globe::before { content: "◎"; }
.fa-shield-halved::before { content: "◈"; }
.fa-layer-group::before { content: "▧"; }
.fa-scale-balanced::before { content: "⚖"; }
.fa-star::before { content: "★"; }
.fa-people-group::before { content: "👥"; }
.fa-eye::before { content: "◉"; }
.fa-facebook-f::before { content: "f"; font-weight: 900; }
.fa-instagram::before { content: "◎"; }
.fa-tiktok::before { content: "♪"; }
.fa-linkedin-in::before { content: "in"; font-size: .76em; font-weight: 900; }

/* Consistent content clearance below thin sticky header */
.hero,
.hero-slider,
.hero-layout {
  min-height: 660px;
}
.hero-layout {
  padding-top: 42px;
}
.metrics-band {
  margin-top: 0 !important;
}

@media (min-width: 640px) {
  .header-shell {
    min-height: 48px !important;
  }
  .brand img {
    width: 154px !important;
  }
}

@media (min-width: 1024px) {
  .utility-bar__inner {
    min-height: 30px !important;
  }
  .header-shell {
    min-height: 50px !important;
  }
  .brand img {
    width: 178px !important;
  }
  .main-nav a {
    padding: 6px 9px !important;
    font-size: .84rem !important;
  }
  .hero,
  .hero-slider,
  .hero-layout {
    min-height: 700px;
  }
}

@media (min-width: 1280px) {
  .header-shell {
    min-height: 52px !important;
  }
  .brand img {
    width: 188px !important;
  }
}


/* ===== Sticky-after-hero + smaller compact navigation + dark-mode logo ===== */
.brand {
  display: inline-flex;
  align-items: center;
  position: relative;
  line-height: 0;
}
.brand-logo {
  display: block;
  width: 132px;
  height: auto;
  transition: width .22s ease, opacity .2s ease, transform .22s ease;
}
.brand-logo--dark {
  position: absolute;
  inset: 0 auto auto 0;
  opacity: 0;
  pointer-events: none;
}
:root[data-theme="dark"] .brand-logo--light {
  opacity: 0;
}
:root[data-theme="dark"] .brand-logo--dark {
  opacity: 1;
}

/* Header is initially part of the document and does not consume sticky space over the hero.
   After the visitor passes the hero section, JS adds .is-after-hero and the header becomes fixed. */
.site-header {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  background: transparent;
  box-shadow: none;
  border-bottom-color: transparent;
}
.site-header.is-after-hero {
  position: fixed !important;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  background: var(--header-bg-scrolled);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 24px rgba(6,37,73,.08);
}
.header-shell {
  min-height: 42px !important;
}
.site-header.is-after-hero .header-shell,
.site-header.is-scrolled .header-shell {
  min-height: 40px !important;
}
.site-header.is-after-hero .brand-logo,
.site-header.is-scrolled .brand-logo {
  width: 118px !important;
}
.nav-toggle,
.theme-toggle--mobile {
  width: 32px !important;
  height: 32px !important;
  border-radius: 9px !important;
}
.nav-toggle {
  padding: 6px !important;
}
.nav-toggle span {
  margin: 4px 0 !important;
}
.theme-toggle {
  min-height: 32px !important;
  padding: 5px 9px !important;
  font-size: .78rem !important;
}
.main-nav a {
  padding: 6px 9px !important;
  font-size: .8rem !important;
}
.header-actions .btn,
.header-link {
  min-height: 32px !important;
  padding: 5px 9px !important;
  font-size: .78rem !important;
}

/* Keep hero content clear because the header now appears only after the hero */
.hero-layout {
  padding-top: 42px;
}

/* Page hero banners still have normal top visibility because header is hidden until after banner scroll */
.page-hero {
  min-height: 420px;
}

/* On inner pages without .hero, JS shows sticky almost immediately; keep it compact */
body.no-hero .site-header {
  position: fixed !important;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  background: var(--header-bg-scrolled);
  border-bottom-color: var(--border);
}

@media (min-width: 640px) {
  .brand-logo {
    width: 148px;
  }
  .site-header.is-after-hero .brand-logo,
  .site-header.is-scrolled .brand-logo {
    width: 126px !important;
  }
  .header-shell {
    min-height: 44px !important;
  }
  .site-header.is-after-hero .header-shell,
  .site-header.is-scrolled .header-shell {
    min-height: 42px !important;
  }
}

@media (min-width: 1024px) {
  .brand-logo {
    width: 174px;
  }
  .site-header.is-after-hero .brand-logo,
  .site-header.is-scrolled .brand-logo {
    width: 148px !important;
  }
  .header-shell {
    min-height: 46px !important;
  }
  .site-header.is-after-hero .header-shell,
  .site-header.is-scrolled .header-shell {
    min-height: 42px !important;
  }
  .main-nav a {
    padding: 5px 8px !important;
    font-size: .8rem !important;
  }
  .header-actions .btn,
  .header-link,
  .theme-toggle {
    min-height: 31px !important;
    padding: 5px 9px !important;
    font-size: .78rem !important;
  }
}

@media (min-width: 1280px) {
  .brand-logo {
    width: 184px;
  }
  .site-header.is-after-hero .brand-logo,
  .site-header.is-scrolled .brand-logo {
    width: 156px !important;
  }
}


/* ===== FINAL NORMAL HEADER + ASSET FIX OVERRIDES ===== */
.site-header {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  background: var(--header-bg, rgba(255,255,255,.92)) !important;
  border-bottom: 1px solid var(--border) !important;
  box-shadow: none !important;
  z-index: 2000;
}
.site-header.is-after-hero {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background: var(--header-bg-scrolled, rgba(255,255,255,.98)) !important;
  box-shadow: 0 8px 24px rgba(6,37,73,.08) !important;
  animation: edunetHeaderDrop .22s ease both;
}
@keyframes edunetHeaderDrop {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
.header-shell { min-height: 48px !important; }
.brand-logo, .brand img { width: 138px !important; height: auto; }
.site-header.is-after-hero .header-shell { min-height: 40px !important; }
.site-header.is-after-hero .brand-logo,
.site-header.is-after-hero .brand img { width: 116px !important; }
.brand { display: inline-flex; align-items: center; position: relative; line-height: 0; }
.brand-logo--dark { position: absolute; inset: 0 auto auto 0; opacity: 0; pointer-events: none; }
:root[data-theme="dark"] .brand-logo--light { opacity: 0; }
:root[data-theme="dark"] .brand-logo--dark { opacity: 1; }
.nav-toggle, .theme-toggle--mobile { width: 32px !important; height: 32px !important; border-radius: 9px !important; }
.nav-toggle { padding: 6px !important; }
.nav-toggle span { margin: 4px 0 !important; }
.theme-toggle { min-height: 32px !important; padding: 5px 9px !important; font-size: .78rem !important; }
.main-nav a { padding: 6px 9px !important; font-size: .8rem !important; }
.header-actions .btn, .header-link { min-height: 32px !important; padding: 5px 9px !important; font-size: .78rem !important; }
.hero, .hero-slider, .hero-layout { min-height: 650px; }
.hero-layout { padding-top: 44px; }
.metrics-band { margin-top: 0 !important; }
@media (min-width: 640px) {
  .header-shell { min-height: 50px !important; }
  .brand-logo, .brand img { width: 156px !important; }
  .site-header.is-after-hero .header-shell { min-height: 42px !important; }
  .site-header.is-after-hero .brand-logo, .site-header.is-after-hero .brand img { width: 128px !important; }
}
@media (min-width: 1024px) {
  .header-shell { min-height: 52px !important; }
  .brand-logo, .brand img { width: 176px !important; }
  .site-header.is-after-hero .header-shell { min-height: 42px !important; }
  .site-header.is-after-hero .brand-logo, .site-header.is-after-hero .brand img { width: 148px !important; }
  .main-nav a { padding: 5px 8px !important; font-size: .8rem !important; }
  .hero, .hero-slider, .hero-layout { min-height: 690px; }
}
@media (min-width: 1280px) {
  .brand-logo, .brand img { width: 186px !important; }
  .site-header.is-after-hero .brand-logo, .site-header.is-after-hero .brand img { width: 156px !important; }
}


/* ===== Social + automatic theme UI refinements ===== */
/* Mobile/open menu should visually match navbar background */
.main-nav {
  background: var(--header-bg, rgba(255,255,255,.92)) !important;
  backdrop-filter: blur(18px);
}
.site-header.is-after-hero .main-nav,
.site-header.is-scrolled .main-nav {
  background: var(--header-bg-scrolled, rgba(255,255,255,.98)) !important;
}
:root[data-theme="dark"] .main-nav {
  background: var(--header-bg, rgba(7,17,31,.84)) !important;
}
:root[data-theme="dark"] .site-header.is-after-hero .main-nav,
:root[data-theme="dark"] .site-header.is-scrolled .main-nav {
  background: var(--header-bg-scrolled, rgba(7,17,31,.94)) !important;
}

/* Icon-only theme control */
.theme-toggle span {
  display: none !important;
}
.theme-toggle {
  width: 32px !important;
  min-width: 32px !important;
  padding: 0 !important;
  border-radius: 999px !important;
}
.theme-toggle i {
  margin: 0;
}

/* Social buttons now include Instagram, TikTok, Facebook, WhatsApp */
.social-row a {
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.social-row a:hover {
  transform: translateY(-2px);
  background: rgba(17,153,169,.28);
  color: #fff;
}


/* ===== Shorter inner heroes, switch theme control, drawer footer, interactive chat ===== */

/* Shorter page hero sections for all pages except landing page */
.page-hero {
  min-height: 250px !important;
  padding: 46px 0 !important;
}
.page-hero__content {
  max-width: 760px !important;
}
.page-hero h1 {
  font-size: clamp(1.95rem, 5vw, 3.1rem) !important;
  margin-bottom: .75rem !important;
}
.page-hero p {
  font-size: clamp(.98rem, 2vw, 1.08rem) !important;
  margin-bottom: 0 !important;
}
.glass-panel--hero {
  padding: 22px !important;
}

/* Toggle switch, no emoji/icon text */
.theme-switch {
  width: 54px !important;
  min-width: 54px !important;
  height: 28px !important;
  min-height: 28px !important;
  padding: 0 !important;
  border: 1px solid var(--border) !important;
  background: color-mix(in srgb, var(--surface-solid, #fff), var(--teal) 6%) !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 8px 18px rgba(6,37,73,.08);
}
.theme-switch__track {
  position: relative;
  display: block;
  width: 46px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(216,162,27,.45), rgba(17,153,169,.30));
}
.theme-switch__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 8px rgba(0,0,0,.25);
  transition: transform .22s ease, background .22s ease;
}
.theme-switch.is-dark .theme-switch__thumb {
  transform: translateX(24px);
  background: var(--gold-soft, #f5d77a);
}
.theme-switch.is-dark .theme-switch__track {
  background: linear-gradient(135deg, #0f2238, #062549);
}
.theme-toggle,
.theme-toggle--mobile {
  display: none !important;
}

/* Large screens: theme switch far right */
.header-actions {
  margin-left: auto;
}
.header-actions .theme-switch {
  order: 99;
}

/* Mobile drawer: theme switch at bottom of drawer menu */
.main-nav {
  align-content: start;
}
.main-nav__footer {
  margin-top: 14px;
  padding: 12px 10px 4px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: .84rem;
  font-weight: 700;
}
.main-nav__footer .theme-switch {
  flex: 0 0 auto;
}

/* Do not show drawer footer on desktop nav */
@media (min-width: 1024px) {
  .main-nav__footer {
    display: none !important;
  }
}

/* Interactive chat widget */
.floating-whatsapp {
  display: none !important;
}
.chat-widget {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 2500;
  font-family: var(--font-ui);
}
.chat-launcher {
  position: relative;
  border: 0;
  border-radius: 999px;
  min-width: 86px;
  height: 48px;
  padding: 0 18px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(6,37,73,.28);
}
.chat-launcher__pulse {
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  background: rgba(17,153,169,.28);
  animation: chatPulse 1.8s ease-in-out infinite;
  z-index: -1;
}
@keyframes chatPulse {
  0%, 100% { transform: scale(.95); opacity: .55; }
  50% { transform: scale(1.08); opacity: .18; }
}
.chat-panel {
  position: absolute;
  right: 0;
  bottom: 62px;
  width: min(360px, calc(100vw - 28px));
  max-height: min(620px, calc(100vh - 120px));
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--surface-solid, #fff);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(.98);
  transition: opacity .22s ease, transform .22s ease;
}
.chat-widget.is-open .chat-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.chat-panel__header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: linear-gradient(135deg, var(--navy), var(--teal-2));
  color: #fff;
}
.chat-panel__header strong {
  display: block;
  font-size: .98rem;
}
.chat-panel__header span {
  display: block;
  color: rgba(255,255,255,.78);
  font-size: .82rem;
}
.chat-close {
  border: 0;
  background: rgba(255,255,255,.14);
  color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}
.chat-panel__body {
  padding: 14px;
  overflow: auto;
  display: grid;
  gap: 10px;
}
.chat-message {
  padding: 11px 13px;
  border-radius: 16px;
  font-size: .9rem;
  line-height: 1.45;
}
.chat-message--bot {
  background: color-mix(in srgb, var(--surface-soft, #f6f9fc), var(--teal) 7%);
  color: var(--text);
  border-bottom-left-radius: 6px;
}
.chat-message--user {
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: #fff;
  justify-self: end;
  border-bottom-right-radius: 6px;
}
.chat-options {
  display: grid;
  gap: 8px;
  margin-top: 2px;
}
.chat-options button {
  border: 1px solid var(--border);
  background: var(--surface-raised, #fff);
  color: var(--text);
  border-radius: 14px;
  padding: 10px 12px;
  text-align: left;
  cursor: pointer;
  font: inherit;
  font-size: .86rem;
  font-weight: 650;
}
.chat-options button:hover {
  border-color: rgba(17,153,169,.4);
  background: color-mix(in srgb, var(--surface-raised, #fff), var(--teal) 8%);
}
.chat-panel__footer {
  padding: 12px 14px 14px;
  border-top: 1px solid var(--border);
}
.chat-whatsapp {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-weight: 800;
}
@media (min-width: 768px) {
  .chat-widget {
    right: 20px;
    bottom: 20px;
  }
}


/* ===== Enterprise-ready final UI pass ===== */

/* Mobile navbar: logo left, hamburger always justified to far right */
.header-shell {
  display: grid !important;
  grid-template-columns: auto 1fr auto !important;
  justify-content: normal !important;
  align-items: center !important;
  gap: 10px !important;
}
.brand {
  grid-column: 1 !important;
  justify-self: start !important;
}
.nav-toggle {
  grid-column: 3 !important;
  justify-self: end !important;
  margin-left: auto !important;
}
.header-actions {
  grid-column: 3 !important;
  justify-self: end !important;
}
.main-nav {
  grid-column: 1 / -1 !important;
}

/* Mobile drawer: more enterprise, full-width command panel under navbar */
@media (max-width: 1023px) {
  .header-shell {
    grid-template-columns: auto 1fr auto !important;
  }

  .nav-toggle {
    display: grid !important;
    place-items: center;
    margin-left: auto !important;
  }

  .nav-toggle span {
    width: 18px;
  }

  .main-nav {
    left: 14px !important;
    right: 14px !important;
    top: calc(100% + 8px) !important;
    border-radius: 22px !important;
    padding: 10px !important;
    background: color-mix(in srgb, var(--header-bg-scrolled, #fff), transparent 3%) !important;
    border: 1px solid var(--border) !important;
    box-shadow: 0 22px 70px rgba(6,37,73,.18) !important;
    backdrop-filter: blur(22px) saturate(1.1);
  }

  .main-nav a {
    display: flex !important;
    align-items: center;
    min-height: 42px;
    padding: 10px 12px !important;
    border-radius: 14px !important;
    font-size: .92rem !important;
  }

  .main-nav a.is-active {
    box-shadow: inset 0 0 0 1px rgba(17,153,169,.16);
  }

  .main-nav__footer {
    position: sticky;
    bottom: 0;
    background: color-mix(in srgb, var(--header-bg-scrolled, #fff), transparent 4%);
    border-radius: 16px;
    padding: 12px !important;
    margin-top: 10px !important;
  }
}

/* Large screens: navbar retains full enterprise layout and theme toggle remains far right */
@media (min-width: 1024px) {
  .header-shell {
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    gap: 18px !important;
  }

  .brand {
    grid-column: 1 !important;
  }

  .main-nav {
    grid-column: 2 !important;
    justify-self: center !important;
  }

  .header-actions {
    grid-column: 3 !important;
    display: flex !important;
    justify-self: end !important;
    align-items: center !important;
    margin-left: auto !important;
  }

  .header-actions .theme-switch {
    order: 999 !important;
    margin-left: 4px !important;
  }

  .nav-toggle {
    display: none !important;
  }
}

/* Enterprise polish: consistent focus rings and better button accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--teal), white 25%);
  outline-offset: 3px;
}

/* Softer enterprise surfaces */
.card,
.metric-card,
.destination-card,
.package-card,
.contact-form,
.faq-item,
.step-card,
.timeline-item,
.chat-panel {
  backdrop-filter: blur(10px);
}

/* Hero CTA clarity */
.hero-copy h1 {
  max-width: 12ch;
}
.hero-copy p {
  max-width: 640px;
}

/* More balanced hero on desktop */
@media (min-width: 1024px) {
  .hero-layout {
    grid-template-columns: minmax(0, .98fr) 380px !important;
  }

  .hero-panel {
    border-radius: 30px !important;
  }
}

/* Cleaner chat launcher for enterprise feel */
.chat-launcher {
  min-width: 96px !important;
  height: 50px !important;
  letter-spacing: .01em;
}
.chat-launcher__icon::before {
  content: "●";
  display: inline-block;
  color: #25D366;
  margin-right: 7px;
  font-size: .7rem;
  vertical-align: middle;
}

/* Hide accidental old icon-only theme controls if any remain */
.theme-toggle,
.theme-toggle--mobile {
  display: none !important;
}


/* ===== Official SVG social icons + functional chat button ===== */
.brand-svg,
.chat-svg {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
  stroke: none;
}
.social-row a {
  color: rgba(255,255,255,.86);
}
.social-row a .brand-svg {
  width: 1.12rem;
  height: 1.12rem;
}
.social-row a[aria-label="Instagram"]:hover {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  color: #fff;
}
.social-row a[aria-label="TikTok"]:hover {
  background: #111;
  color: #fff;
}
.social-row a[aria-label="Facebook"]:hover {
  background: #1877f2;
  color: #fff;
}
.social-row a[aria-label="WhatsApp"]:hover {
  background: #25D366;
  color: #fff;
}

/* Ensure old emoji fallback never appears inside the new SVG social buttons */
.social-row .fa-solid::before,
.social-row .fa-brands::before,
.chat-launcher .fa-solid::before,
.chat-launcher .fa-brands::before {
  content: none !important;
}

/* Make the floating interactive chat button visible and clearly clickable */
.chat-widget {
  position: fixed !important;
  right: 16px !important;
  bottom: 16px !important;
  z-index: 3000 !important;
}
.chat-launcher {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 138px !important;
  height: 52px !important;
  border: 0;
  border-radius: 999px;
  padding: 0 18px !important;
  background: linear-gradient(135deg, var(--teal), var(--navy)) !important;
  color: #fff !important;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(6,37,73,.30);
}
.chat-launcher__icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
}
.chat-launcher__icon::before {
  content: none !important;
}
.chat-launcher__icon .chat-svg {
  width: 1.15rem;
  height: 1.15rem;
}
.chat-launcher__text {
  display: inline-block;
  letter-spacing: .01em;
}
.chat-panel {
  z-index: 3001;
}

/* Mobile: keep it compact but visible */
@media (max-width: 520px) {
  .chat-launcher {
    min-width: 56px !important;
    width: 56px !important;
    height: 56px !important;
    padding: 0 !important;
  }
  .chat-launcher__text {
    display: none;
  }
  .chat-launcher__icon {
    width: 34px;
    height: 34px;
  }
}


/* ===== Mobile chat responsiveness + hamburger alignment + full hero visibility ===== */

/* Make landing hero a true first-screen section below the visible normal header.
   Use dynamic viewport where available so mobile browser bars do not crop content. */
.hero,
.hero-slider,
.hero-layout {
  min-height: calc(100svh - 48px) !important;
}
@supports not (height: 100svh) {
  .hero,
  .hero-slider,
  .hero-layout {
    min-height: calc(100vh - 48px) !important;
  }
}
.hero-layout {
  padding-top: clamp(28px, 5vh, 54px) !important;
  padding-bottom: clamp(70px, 9vh, 104px) !important;
  align-items: center !important;
}
.hero-copy {
  max-width: min(780px, 100%) !important;
}
.hero-copy h1 {
  max-width: 13ch !important;
}
.hero-panel {
  margin-bottom: 28px !important;
}
.slider-dots {
  bottom: 18px !important;
}

/* Push hamburger all the way to the right on mobile.
   Keep the middle column flexible and force controls into the last grid column. */
@media (max-width: 1023px) {
  .header-shell {
    width: 100% !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    justify-content: stretch !important;
    column-gap: 8px !important;
  }

  .brand {
    justify-self: start !important;
    min-width: 0 !important;
  }

  .nav-toggle {
    grid-column: 3 !important;
    justify-self: end !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    transform: translateX(4px);
  }

  .theme-switch--drawer,
  .main-nav__footer .theme-switch {
    margin-left: auto !important;
  }

  .main-nav {
    left: 10px !important;
    right: 10px !important;
  }
}

/* Floating chat: mobile-first responsive layout.
   On phones, the launcher becomes a compact circular button and the panel uses safe widths/heights. */
.chat-widget {
  right: max(12px, env(safe-area-inset-right)) !important;
  bottom: max(12px, env(safe-area-inset-bottom)) !important;
}
.chat-launcher {
  min-width: 54px !important;
  width: 54px !important;
  height: 54px !important;
  padding: 0 !important;
  border-radius: 50% !important;
}
.chat-launcher__text {
  display: none !important;
}
.chat-launcher__icon {
  width: 34px !important;
  height: 34px !important;
}
.chat-panel {
  right: 0 !important;
  bottom: 68px !important;
  width: min(360px, calc(100vw - 24px)) !important;
  max-height: min(72svh, 560px) !important;
  border-radius: 22px !important;
}
@supports not (height: 100svh) {
  .chat-panel {
    max-height: min(72vh, 560px) !important;
  }
}
.chat-panel__body {
  max-height: calc(min(72svh, 560px) - 130px) !important;
}
.chat-options button {
  font-size: .84rem !important;
  padding: 10px 11px !important;
}

/* Extra-small devices */
@media (max-width: 390px) {
  .chat-widget {
    right: 10px !important;
    bottom: 10px !important;
  }
  .chat-panel {
    width: calc(100vw - 20px) !important;
    bottom: 64px !important;
    border-radius: 18px !important;
  }
  .chat-panel__header {
    padding: 14px !important;
  }
  .chat-panel__body {
    padding: 12px !important;
  }
}

/* Tablet and desktop: allow labeled chat button again, without blocking content */
@media (min-width: 768px) {
  .chat-widget {
    right: 20px !important;
    bottom: 20px !important;
  }
  .chat-launcher {
    min-width: 138px !important;
    width: auto !important;
    height: 52px !important;
    padding: 0 18px !important;
    border-radius: 999px !important;
  }
  .chat-launcher__text {
    display: inline-block !important;
  }
  .chat-panel {
    width: 360px !important;
    max-height: min(70vh, 620px) !important;
  }
}

/* Desktop hero: full, balanced, not obscured by header or cards */
@media (min-width: 1024px) {
  .hero,
  .hero-slider,
  .hero-layout {
    min-height: calc(100vh - 52px) !important;
  }

  .hero-layout {
    padding-top: 56px !important;
    padding-bottom: 92px !important;
  }

  .hero-panel {
    align-self: center !important;
    margin-bottom: 0 !important;
  }

  .hero-copy {
    padding-right: 8px;
  }
}

/* Avoid metric cards visually crowding the hero */
.metrics-band {
  padding-top: 24px !important;
}



/* ===== EduNet virtual assistant: fixed, mobile responsive, interactive ===== */
.chat-widget,
.chat-panel,
.chat-launcher,
.floating-whatsapp {
  display: none !important;
}

.edunet-assistant,
.edunet-assistant * {
  box-sizing: border-box;
}

.edunet-assistant {
  position: fixed !important;
  right: max(12px, env(safe-area-inset-right)) !important;
  bottom: max(12px, env(safe-area-inset-bottom)) !important;
  z-index: 9999 !important;
  width: auto !important;
  max-width: calc(100vw - 24px) !important;
  font-family: var(--font-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
}

.edunet-assistant__launcher {
  position: relative;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--teal, #1199a9), var(--navy, #062549));
  cursor: pointer;
  box-shadow: 0 20px 48px rgba(6,37,73,.32);
}

.edunet-assistant__pulse {
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: rgba(17,153,169,.28);
  animation: assistantPulse 1.8s ease-in-out infinite;
  z-index: -1;
}

@keyframes assistantPulse {
  0%, 100% { transform: scale(.96); opacity: .62; }
  50% { transform: scale(1.1); opacity: .16; }
}

.edunet-assistant__launcher-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
}

.assistant-svg {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  fill: currentColor;
}

.edunet-assistant__launcher-text {
  display: none;
  font-weight: 850;
  letter-spacing: .01em;
  white-space: nowrap;
}

.edunet-assistant__panel {
  position: absolute !important;
  right: 0 !important;
  bottom: 70px !important;
  width: min(380px, calc(100vw - 24px)) !important;
  height: auto !important;
  max-height: min(78svh, 640px) !important;
  display: grid !important;
  grid-template-rows: auto minmax(0, 1fr) auto auto !important;
  background: var(--surface-solid, #fff) !important;
  color: var(--text, #132033) !important;
  border: 1px solid var(--border, rgba(6,37,73,.10)) !important;
  border-radius: 24px !important;
  box-shadow: 0 26px 80px rgba(0,0,0,.22) !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(14px) scale(.98) !important;
  transition: opacity .22s ease, transform .22s ease !important;
}

@supports not (height: 100svh) {
  .edunet-assistant__panel {
    max-height: min(78vh, 640px) !important;
  }
}

.edunet-assistant.is-open .edunet-assistant__panel {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) scale(1) !important;
}

.edunet-assistant__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy, #062549), var(--teal-2, #0b7480));
}

.edunet-assistant__avatar {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255,255,255,.14);
}

.edunet-assistant__header strong {
  display: block;
  color: #fff;
  font-size: .98rem;
  line-height: 1.15;
}

.edunet-assistant__header span {
  display: block;
  color: rgba(255,255,255,.76);
  font-size: .8rem;
  margin-top: 2px;
}

.edunet-assistant__close {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.edunet-assistant__messages {
  min-height: 160px;
  max-height: 34svh;
  overflow-y: auto;
  padding: 14px;
  display: grid;
  align-content: start;
  gap: 10px;
  background: color-mix(in srgb, var(--surface-soft, #f6f9fc), transparent 10%);
}

@supports not (height: 100svh) {
  .edunet-assistant__messages {
    max-height: 34vh;
  }
}

.assistant-message {
  width: fit-content;
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 16px;
  font-size: .9rem;
  line-height: 1.45;
}

.assistant-message--bot {
  justify-self: start;
  color: var(--text, #132033);
  background: var(--surface-raised, #fff);
  border: 1px solid var(--border, rgba(6,37,73,.10));
  border-bottom-left-radius: 6px;
}

.assistant-message--user {
  justify-self: end;
  color: #fff;
  background: linear-gradient(135deg, var(--teal, #1199a9), var(--navy, #062549));
  border-bottom-right-radius: 6px;
}

.edunet-assistant__topics {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 14px;
  border-top: 1px solid var(--border, rgba(6,37,73,.10));
  background: var(--surface-solid, #fff);
  scrollbar-width: thin;
}

.edunet-assistant__topics button {
  flex: 0 0 auto;
  border: 1px solid var(--border, rgba(6,37,73,.10));
  border-radius: 999px;
  padding: 9px 11px;
  background: var(--surface-raised, #fff);
  color: var(--text, #132033);
  font: inherit;
  font-size: .82rem;
  font-weight: 750;
  cursor: pointer;
}

.edunet-assistant__topics button:hover {
  border-color: rgba(17,153,169,.42);
  background: color-mix(in srgb, var(--surface-raised, #fff), var(--teal, #1199a9) 8%);
}

.edunet-assistant__composer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--border, rgba(6,37,73,.10));
  background: var(--surface-solid, #fff);
}

.edunet-assistant__composer input {
  min-width: 0;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border, rgba(6,37,73,.10));
  padding: 0 14px;
  background: var(--surface-raised, #fff);
  color: var(--text, #132033);
}

.edunet-assistant__composer button {
  height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 14px;
  background: linear-gradient(135deg, var(--teal, #1199a9), var(--navy, #062549));
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.edunet-assistant__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 12px;
  border-top: 1px solid var(--border, rgba(6,37,73,.10));
  background: var(--surface-solid, #fff);
}

.edunet-assistant__footer small {
  color: var(--muted, #5d6c80);
  font-size: .72rem;
  line-height: 1.25;
}

.edunet-assistant__footer a {
  flex: 0 0 auto;
  color: #fff;
  background: #25D366;
  border-radius: 999px;
  padding: 8px 10px;
  font-size: .78rem;
  font-weight: 850;
}

/* Small phones */
@media (max-width: 390px) {
  .edunet-assistant {
    right: 10px !important;
    bottom: 10px !important;
    max-width: calc(100vw - 20px) !important;
  }

  .edunet-assistant__panel {
    width: calc(100vw - 20px) !important;
    bottom: 66px !important;
    border-radius: 20px !important;
  }

  .edunet-assistant__header {
    padding: 12px;
  }

  .edunet-assistant__messages {
    padding: 12px;
    max-height: 32svh;
  }

  .edunet-assistant__footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Tablet and desktop labelled launcher */
@media (min-width: 768px) {
  .edunet-assistant {
    right: 20px !important;
    bottom: 20px !important;
  }

  .edunet-assistant__launcher {
    width: auto;
    min-width: 142px;
    height: 52px;
    padding: 0 18px;
  }

  .edunet-assistant__launcher-text {
    display: inline-block;
  }

  .edunet-assistant__panel {
    width: 390px !important;
    bottom: 66px !important;
    max-height: min(72vh, 660px) !important;
  }

  .edunet-assistant__messages {
    max-height: 320px;
  }
}


/* ===== Professional spacing adjustment: hamburger and assistant alignment ===== */

/* Give the navbar a little more breathing room while keeping the menu compact */
.header-shell {
  padding-inline: 0 !important;
}

/* Push hamburger slightly further right without breaking the container alignment */
@media (max-width: 1023px) {
  .container.header-shell {
    width: min(var(--container), calc(100% - 18px)) !important;
  }

  .nav-toggle {
    justify-self: end !important;
    margin-left: auto !important;
    margin-right: -2px !important;
    transform: translateX(6px) !important;
  }

  .brand {
    padding-left: 2px !important;
  }

  .main-nav {
    left: 9px !important;
    right: 9px !important;
  }
}

/* On very small phones keep it professional without touching the screen edge */
@media (max-width: 390px) {
  .container.header-shell {
    width: min(var(--container), calc(100% - 16px)) !important;
  }

  .nav-toggle {
    transform: translateX(4px) !important;
    margin-right: 0 !important;
  }

  .main-nav {
    left: 8px !important;
    right: 8px !important;
  }
}

/* Move assistant slightly further right but preserve safe-area spacing */
.edunet-assistant {
  right: max(8px, env(safe-area-inset-right)) !important;
  bottom: max(14px, env(safe-area-inset-bottom)) !important;
}

/* Ensure panel still opens inward and does not overflow mobile screens */
.edunet-assistant__panel {
  right: 0 !important;
}

/* Better desktop/tablet spacing for assistant */
@media (min-width: 768px) {
  .edunet-assistant {
    right: 18px !important;
    bottom: 20px !important;
  }
}

/* Large screens: align assistant with the visual page edge, not too far inward */
@media (min-width: 1280px) {
  .edunet-assistant {
    right: 22px !important;
  }
}

/* More balanced spacing between nav controls on desktop */
@media (min-width: 1024px) {
  .header-actions {
    gap: 8px !important;
  }

  .header-actions .theme-switch {
    margin-left: 8px !important;
  }
}


/* ===== Final professional polish + pretty URL build ===== */
:root {
  --professional-ring: rgba(17,153,169,.28);
}
.site-header {
  backdrop-filter: blur(22px) saturate(1.08);
}
.main-nav a {
  letter-spacing: -.01em;
}
.section-head p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.card,
.destination-card,
.package-card,
.metric-card,
.step-card,
.faq-item,
.contact-form {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover,
.destination-card:hover,
.package-card:hover,
.metric-card:hover,
.step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(17,153,169,.22);
  box-shadow: 0 24px 66px rgba(6,37,73,.13);
}
.btn {
  letter-spacing: -.01em;
}
.btn--primary {
  background: linear-gradient(135deg, #062549 0%, #0b7480 100%);
}
.btn--gold {
  background: linear-gradient(135deg, #f5d77a 0%, #d8a21b 100%);
}
input, select, textarea {
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
input:focus, select:focus, textarea:focus {
  box-shadow: 0 0 0 4px var(--professional-ring) !important;
}
@media (max-width: 1023px) {
  .main-nav {
    max-height: calc(100svh - 82px);
    overflow: auto;
  }
}
.contact-card a {
  font-weight: 750;
  color: var(--teal-2);
}
:root[data-theme="dark"] .contact-card a {
  color: var(--gold-soft);
}
.site-footer a:hover {
  color: #fff;
}


/* ===== iPhone, iPad and Safari readiness pass ===== */
:root {
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --app-vh: calc(var(--vh, 1vh) * 100);
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  min-height: var(--app-vh);
  overflow-x: hidden;
}

.site-header,
.main-nav,
.hero-panel,
.glass-panel--hero,
.edunet-assistant__panel,
.stacked-media__card {
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  backdrop-filter: blur(18px) saturate(1.08);
}

/* Safari fallback backgrounds for places using color-mix elsewhere */
.main-nav,
.main-nav__footer,
.edunet-assistant__messages,
.edunet-assistant__topics button,
.chat-options button {
  background-color: var(--surface-solid, #ffffff);
}

:root[data-theme="dark"] .main-nav,
:root[data-theme="dark"] .main-nav__footer,
:root[data-theme="dark"] .edunet-assistant__messages,
:root[data-theme="dark"] .edunet-assistant__topics button,
:root[data-theme="dark"] .chat-options button {
  background-color: var(--surface-solid, #0b182a);
}

/* Prevent iOS Safari zoom-on-focus */
input,
select,
textarea,
.edunet-assistant__composer input {
  font-size: 16px !important;
}

/* Landing page hero: dynamic viewport for Safari and mobile browser bars */
.hero,
.hero-slider,
.hero-layout {
  min-height: calc(var(--app-vh) - 52px) !important;
}

.hero {
  isolation: isolate;
}

.hero-slide {
  background-position: center center !important;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.hero-layout {
  padding-left: max(0px, var(--safe-left)) !important;
  padding-right: max(0px, var(--safe-right)) !important;
}

/* iPhone portrait */
@media (max-width: 767px) {
  .hero,
  .hero-slider,
  .hero-layout {
    min-height: calc(var(--app-vh) - 50px) !important;
  }

  .hero-layout {
    padding-top: clamp(26px, 4.5vh, 42px) !important;
    padding-bottom: max(88px, calc(70px + var(--safe-bottom))) !important;
  }

  .hero-copy h1 {
    max-width: 14ch !important;
    font-size: clamp(2.05rem, 9vw, 3.2rem) !important;
  }

  .hero-copy p {
    font-size: 1rem !important;
    line-height: 1.55 !important;
  }

  .hero-proof {
    gap: 8px !important;
  }

  .hero-proof div {
    padding: 11px 12px !important;
  }

  .slider-dots {
    bottom: max(18px, calc(12px + var(--safe-bottom))) !important;
  }
}

/* iPad/tablet portrait and landscape */
@media (min-width: 768px) and (max-width: 1180px) {
  .hero,
  .hero-slider,
  .hero-layout {
    min-height: calc(var(--app-vh) - 56px) !important;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) !important;
    align-items: center !important;
    padding-top: clamp(46px, 7vh, 78px) !important;
    padding-bottom: clamp(86px, 10vh, 120px) !important;
  }

  .hero-copy {
    max-width: 760px !important;
  }

  .hero-copy h1 {
    max-width: 13ch !important;
    font-size: clamp(3rem, 7vw, 4.75rem) !important;
  }

  .hero-copy p {
    max-width: 660px !important;
    font-size: clamp(1.08rem, 2.4vw, 1.22rem) !important;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    max-width: 680px !important;
  }

  .hero-panel {
    display: none !important;
  }

  .slider-dots {
    bottom: max(24px, calc(16px + var(--safe-bottom))) !important;
  }
}

/* iPad Pro / large tablet landscape */
@media (min-width: 1024px) and (max-width: 1180px) and (orientation: landscape) {
  .hero-layout {
    grid-template-columns: minmax(0, .98fr) 340px !important;
    gap: 28px !important;
  }

  .hero-panel {
    display: block !important;
    align-self: center !important;
  }

  .hero-copy h1 {
    font-size: clamp(3.15rem, 5.4vw, 4.8rem) !important;
  }
}

/* Virtual assistant safe positioning for iOS Safari */
.edunet-assistant {
  right: max(14px, var(--safe-right)) !important;
  bottom: max(14px, var(--safe-bottom)) !important;
}

.edunet-assistant__panel {
  max-height: min(calc(var(--app-vh) - 110px), 660px) !important;
}

@media (max-width: 767px) {
  .edunet-assistant__panel {
    width: min(380px, calc(100vw - 24px)) !important;
    max-height: calc(var(--app-vh) - 96px) !important;
  }

  .edunet-assistant__messages {
    max-height: calc(var(--app-vh) - 380px) !important;
  }
}

:root[data-theme="dark"] .brand-logo--dark {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.25));
}

button,
a,
.nav-toggle,
.theme-switch,
.edunet-assistant__launcher {
  -webkit-tap-highlight-color: rgba(17,153,169,.18);
  touch-action: manipulation;
}

.site-header,
.hero,
main,
.site-footer {
  max-width: 100vw;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  .site-header,
  .hero,
  main,
  .site-footer {
    overflow-x: hidden;
  }
}


/* ===== Enterprise UI/UX v2: phone + tablet hardening and richer imagery ===== */
html,body{max-width:100%;overflow-x:hidden} img{height:auto}
@media(max-width:1023px){
  .site-header{width:100%!important}
  .container.header-shell,.header-shell{width:100%!important;max-width:none!important;margin:0!important;padding-left:max(14px,env(safe-area-inset-left,0px))!important;padding-right:max(14px,env(safe-area-inset-right,0px))!important;min-height:54px!important;display:flex!important;align-items:center!important;justify-content:space-between!important;gap:10px!important}
  .brand{flex:1 1 auto!important;min-width:0!important;max-width:calc(100vw - 76px)!important;overflow:hidden!important}
  .brand-logo,.brand img{width:clamp(126px,39vw,164px)!important;max-width:100%!important}
  .site-header.is-after-hero .brand-logo,.site-header.is-after-hero .brand img{width:clamp(112px,34vw,138px)!important}
  .header-actions{display:none!important}
  .nav-toggle{flex:0 0 42px!important;width:42px!important;height:42px!important;min-width:42px!important;min-height:42px!important;margin-left:auto!important;margin-right:0!important;transform:none!important;display:inline-flex!important;flex-direction:column!important;justify-content:center!important;align-items:center!important;border-radius:13px!important;padding:0!important;z-index:2202!important}
  .nav-toggle span{width:21px!important;height:2px!important;margin:3.2px 0!important;background:#fff!important}
  .main-nav{position:absolute!important;top:calc(100% + 8px)!important;left:max(12px,env(safe-area-inset-left,0px))!important;right:max(12px,env(safe-area-inset-right,0px))!important;width:auto!important;max-height:min(calc(100svh - 86px),620px)!important;overflow-y:auto!important;-webkit-overflow-scrolling:touch;z-index:2200!important}
}
@media(max-width:360px){.container.header-shell,.header-shell{padding-left:10px!important;padding-right:10px!important;gap:8px!important}.brand-logo,.brand img{width:118px!important}.nav-toggle{flex-basis:39px!important;width:39px!important;height:39px!important;min-width:39px!important;min-height:39px!important}.nav-toggle span{width:19px!important}}
@media(min-width:768px) and (max-width:1023px){
  .container{width:min(100% - 48px,920px)!important}
  .hero-layout{grid-template-columns:minmax(0,1fr)!important;padding-top:clamp(48px,6vh,72px)!important;padding-bottom:clamp(86px,9vh,118px)!important}
  .hero-copy{max-width:740px!important}.hero-proof{grid-template-columns:repeat(3,minmax(0,1fr))!important}
  .metrics-grid,.destination-grid,.step-grid,.package-grid,.card-grid--three,.card-grid--four{grid-template-columns:repeat(2,minmax(0,1fr))!important}
  .split,.contact-layout,.ethical-layout{grid-template-columns:1fr!important}
  .services-carousel{grid-auto-columns:calc((100% - 18px)/2)!important}
  .footer-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}
}
@media(min-width:1024px) and (max-width:1180px){
  .container{width:min(100% - 56px,1060px)!important}
  .main-nav{gap:2px!important}.main-nav a{padding:6px 8px!important;font-size:.78rem!important}
  .header-actions .btn,.header-link{padding-inline:9px!important}
  .hero-layout{grid-template-columns:minmax(0,.95fr) 320px!important;gap:24px!important}
  .hero-copy h1{font-size:clamp(3.1rem,5vw,4.45rem)!important}
  .hero-panel{display:block!important}.services-carousel{grid-auto-columns:calc((100% - 22px)/2)!important}
}
.section--gallery{background:radial-gradient(circle at 10% 10%,rgba(17,153,169,.12),transparent 30%),linear-gradient(180deg,var(--page-bg,#fff),var(--surface-soft,#f6f9fc))}
.gallery-grid{display:grid;grid-template-columns:1fr;gap:18px}.gallery-card{position:relative;min-height:300px;border-radius:28px;overflow:hidden;border:1px solid var(--border);box-shadow:var(--shadow);background:var(--surface-raised,#fff)}
.gallery-card img{width:100%;height:100%;min-height:300px;object-fit:cover;transition:transform .45s ease}.gallery-card:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 30%,rgba(3,20,41,.78))}
.gallery-card__content{position:absolute;left:20px;right:20px;bottom:18px;z-index:2}.gallery-card__content h3{color:#fff;margin-bottom:.35rem}.gallery-card__content p{color:rgba(255,255,255,.82);margin:0}.gallery-card:hover img{transform:scale(1.05)}
@media(min-width:760px){.gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(min-width:1180px){.gallery-grid{grid-template-columns:1.1fr .9fr .9fr}.gallery-card:first-child{grid-row:span 2;min-height:620px}}
.service-image-band{padding-top:0!important}.service-band-grid{display:grid;grid-template-columns:1fr;gap:18px}.service-band-grid img{width:100%;aspect-ratio:16/10;object-fit:cover;border-radius:26px;border:1px solid var(--border);box-shadow:var(--shadow)}
@media(min-width:760px){.service-band-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
.card,.destination-card,.package-card,.metric-card,.step-card,.gallery-card,.service-band-grid img{transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease}.card:hover,.destination-card:hover,.package-card:hover,.metric-card:hover,.step-card:hover,.gallery-card:hover,.service-band-grid img:hover{transform:translateY(-4px);border-color:rgba(17,153,169,.24);box-shadow:0 28px 74px rgba(6,37,73,.14)}
.edunet-assistant{max-width:calc(100vw - 20px)!important}.edunet-assistant__panel{max-width:calc(100vw - 20px)!important}


/* ===== Style loading reliability + modern responsive UI polish ===== */
html.no-js .reveal,
html.no-js .motion-item {
  opacity: 1 !important;
  transform: none !important;
}

body {
  opacity: 1;
  transition: opacity .28s ease, background-color .25s ease, color .25s ease;
}

body.page-leaving {
  opacity: .72;
}

/* Loader skeleton */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(17,153,169,.18), transparent 28%),
    linear-gradient(135deg, var(--page-bg, #ffffff), var(--surface-soft, #f6f9fc));
  transition: opacity .45s ease, visibility .45s ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader__shell {
  width: min(420px, calc(100vw - 44px));
  padding: 28px;
  border-radius: 30px;
  border: 1px solid var(--border, rgba(6,37,73,.10));
  background: var(--surface-raised, rgba(255,255,255,.92));
  box-shadow: var(--shadow-strong, 0 26px 80px rgba(6,37,73,.18));
  overflow: hidden;
}

.site-loader__brand,
.site-loader__line,
.site-loader__grid span {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg,
    rgba(125,140,160,.18) 0%,
    rgba(17,153,169,.16) 40%,
    rgba(125,140,160,.18) 80%);
  background-size: 240% 100%;
  animation: skeletonShimmer 1.15s ease-in-out infinite;
}

.site-loader__brand {
  width: 168px;
  height: 38px;
  border-radius: 14px;
  margin-bottom: 22px;
}

.site-loader__line {
  width: 100%;
  height: 18px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.site-loader__line--short {
  width: 68%;
}

.site-loader__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.site-loader__grid span {
  height: 82px;
  border-radius: 20px;
}

@keyframes skeletonShimmer {
  from { background-position: 120% 0; }
  to { background-position: -120% 0; }
}

/* Page entrance */
main,
.site-footer,
.cta-panel {
  animation: pageEnter .56s cubic-bezier(.2,.8,.2,1) both;
}

@keyframes pageEnter {
  from { opacity: 0; transform: translateY(14px); filter: blur(5px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* Staggered modern motion */
.motion-item {
  opacity: 0;
  transform: translateY(18px) scale(.985);
  animation: motionItemEnter .58s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: var(--stagger, 0ms);
}

@keyframes motionItemEnter {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.reveal {
  transition:
    opacity .68s cubic-bezier(.2,.8,.2,1),
    transform .68s cubic-bezier(.2,.8,.2,1),
    filter .68s cubic-bezier(.2,.8,.2,1);
  filter: blur(4px);
}

.reveal.is-visible {
  filter: blur(0);
}

/* Modern glass and gradient accents */
.card,
.metric-card,
.destination-card,
.package-card,
.contact-form,
.faq-item,
.step-card,
.gallery-card {
  position: relative;
  overflow: hidden;
}

.card::before,
.metric-card::before,
.destination-card::before,
.package-card::before,
.contact-form::before,
.faq-item::before,
.step-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal, #1199a9), var(--gold, #d8a21b));
  opacity: .65;
  transform: scaleX(.18);
  transform-origin: left;
  transition: transform .24s ease, opacity .24s ease;
}

.card:hover::before,
.metric-card:hover::before,
.destination-card:hover::before,
.package-card:hover::before,
.contact-form:hover::before,
.faq-item:hover::before,
.step-card:hover::before {
  transform: scaleX(1);
  opacity: 1;
}

/* Responsive typography and spacing refinements */
@media (max-width: 767px) {
  .section {
    padding-top: 58px !important;
    padding-bottom: 58px !important;
  }

  .section-head {
    margin-bottom: 28px !important;
  }

  .hero-actions .btn,
  .button-row .btn,
  .cta-panel__actions .btn {
    width: 100%;
  }

  .site-loader__grid {
    grid-template-columns: 1fr;
  }

  .site-loader__grid span {
    height: 54px;
  }
}

@media (min-width: 768px) and (max-width: 1180px) {
  .section {
    padding-top: 78px !important;
    padding-bottom: 78px !important;
  }

  .card,
  .contact-form,
  .package-card {
    padding: clamp(22px, 3vw, 30px) !important;
  }
}

/* Better image loading presentation */
.gallery-card img,
.service-band-grid img,
.stacked-media__main img,
.image-card img,
.contact-image {
  background:
    linear-gradient(135deg, rgba(17,153,169,.12), rgba(216,162,27,.10)),
    var(--surface-soft, #f6f9fc);
}

/* Enterprise-grade reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .site-loader {
    display: none !important;
  }

  .motion-item,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* Ensure CSS fallback still renders if JS fails */
html.no-js .site-loader {
  display: none !important;
}
