/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  nav { padding: 1rem 1.25rem; }
  /* Hide regular nav links but keep the Book Now CTA visible */
  .nav-links { gap: 0; }
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-links .nav-cta {
    padding: 0.5rem 1.1rem;
    font-size: 0.8rem;
  }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 1.5rem; }
  .hero-visual { display: none; }
  .hero-text { text-align: center; }
  .hero-tag { margin-left: auto; margin-right: auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.75rem 2rem;
  }
  .hero-stats > div { flex: 0 0 auto; }
  .stat-num { justify-content: center; }
  .section-inner,
  .section-inner.reverse { grid-template-columns: 1fr; direction: ltr; gap: 3rem; }
  .section-inner.reverse .illus-panel { order: -1; }
  .section-number { font-size: 10rem; }
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .steps-track { grid-template-columns: 1fr; gap: 3rem; }
  .steps-track::before { display: none; }
  .reviews-row { grid-template-columns: 1fr; }
  .illus-badge-1, .illus-badge-2 { display: none; }
  .section-inner { padding: 0 1.5rem; }
  .pricing-inner, .how-inner, .reviews-inner { padding: 0 1.5rem; }
  .two-ways-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.25rem 1.5rem; }
  .hero h1 { font-size: clamp(2.25rem, 10vw, 3.25rem); }
  footer { padding: 3rem 1.5rem 2rem; }
  .footer-links { gap: 2rem; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .ctab { padding: 0.85rem 0.9rem; font-size: 0.78rem; }
  #quote-bar { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════
   LAUNCH BANNER
══════════════════════════════════════ */
@keyframes marquee-scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes banner-shimmer { 0%{opacity:.4} 50%{opacity:1} 100%{opacity:.4} }
@keyframes badge-pop { 0%,100%{transform:scale(1) rotate(-1.5deg)} 50%{transform:scale(1.1) rotate(-1.5deg)} }
@keyframes btn-bounce { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-3px) scale(1.03)} }
@keyframes cd-pulse { 0%,100%{opacity:1} 50%{opacity:.6} }

.launch-banner { position: sticky; top: 0; z-index: 102; font-family: 'DM Sans', sans-serif; }
.launch-banner-main {
  background: #050709;
  padding: .45rem 1.5rem;
  display: flex; align-items: center; gap: .75rem;
  position: relative; overflow: hidden; min-height: 38px;
}
.launch-banner-glow { display: none; }
.launch-badge {
  background: #e82e14; color: #fff;
  font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 4px; white-space: nowrap; flex-shrink: 0;
}
.launch-title {
  font-size: 12px; font-weight: 600; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1; min-width: 0;
}
.launch-countdown {
  display: flex; align-items: center; gap: .3rem; flex-shrink: 0;
}
.cd-unit { display: flex; align-items: baseline; gap: 2px; }
.cd-num { font-size: 13px; font-weight: 700; color: #ffb800; line-height: 1; display: inline; }
.cd-lbl { font-size: 9px; color: rgba(255,255,255,.4); text-transform: uppercase; display: inline; }
.cd-colon { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.25); }
.launch-btn {
  background: #ffb800; color: #050709;
  font-size: 10px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase;
  border: none; padding: 5px 13px; border-radius: 2px;
  cursor: pointer; white-space: nowrap; flex-shrink: 0;
  transition: background .15s; text-decoration: none; display: inline-block;
}
.launch-btn:hover { background: #e0a200; color: #fff; }
.launch-marquee {
  background: #1a2a38;
  border-top: .5px solid rgba(26,125,217,.15);
  overflow: hidden; padding: .28rem 0;
}
.launch-marquee-track {
  display: flex; width: max-content;
  animation: marquee-scroll 30s linear infinite; white-space: nowrap;
}
.launch-marquee-track span {
  font-size: 9.5px; font-weight: 600; color: rgba(255,255,255,.45);
  letter-spacing: .1em; text-transform: uppercase; padding: 0 1.5rem;
}
.launch-marquee-track .msep { color: #ffb800; padding: 0 .2rem; letter-spacing: 0; }
.launch-marquee-track .mhi { color: rgba(255,255,255,.8); }
@media (max-width: 600px) {
  .launch-countdown { display: none; }
  .launch-title { font-size: 11px; }
}

/* ══════════════════════════════════════
   PHOTO SLIDESHOWS (replace illus panels)
══════════════════════════════════════ */
.slide-panel {
  position: relative; border-radius: 1.5rem; overflow: hidden;
  background: #111; z-index: 1; aspect-ratio: 4/3;
}
.slide-item {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity .7s ease;
}
.slide-item.active { opacity: 1; }
.slide-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,42,78,.65) 0%, transparent 55%);
}
.slide-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem 1.25rem;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.slide-caption-text { font-size: 13px; font-weight: 600; color: #fff; }
.slide-caption-sub { font-size: 11px; color: rgba(255,255,255,.6); margin-top: 2px; }
.slide-dots { display: flex; gap: 5px; align-items: center; }
.slide-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.4); border: none; padding: 0; cursor: pointer;
  transition: all .2s;
}
.slide-dot.active { background: #ffb800; width: 16px; border-radius: 3px; }
.slide-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,0,0,.35); border: .5px solid rgba(255,255,255,.25);
  color: #fff; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s; z-index: 2; line-height: 1;
  font-family: sans-serif; font-weight: 300;
}
.slide-arrow:hover { background: rgba(0,0,0,.6); }
.slide-arrow-prev { left: .65rem; }
.slide-arrow-next { right: .65rem; }
.slide-badge {
  position: absolute; background: #fff; border-radius: 1rem;
  padding: .75rem 1.1rem; box-shadow: 0 10px 36px rgba(10,42,78,.2);
  display: flex; align-items: center; gap: .65rem;
  font-size: .85rem; font-weight: 600; color: var(--navy); min-width: 150px; z-index: 3;
}
.slide-badge .badge-sub { font-size: .72rem; font-weight: 400; color: var(--muted); margin-top: 1px; }
.slide-badge-bl { bottom: 1.5rem; left: -1.25rem; }
.slide-badge-tr { top: 1.5rem; right: -1.25rem; }

/* ══════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════ */
.about-section {
  background: var(--navy); padding: 7rem 0; position: relative; overflow: hidden;
}
.about-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 3rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-avatars {
  display: flex; gap: 1.5rem; align-items: flex-end;
  justify-content: center; position: relative;
}
.about-avatar-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 1.25rem; padding: 1.75rem 1.5rem; text-align: center;
  flex: 1; max-width: 200px;
}
.about-avatar-circle {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.6rem; font-weight: 700; color: #fff; margin: 0 auto 1rem;
}
.about-avatar-name { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: .25rem; }
.about-avatar-role { font-size: .72rem; color: rgba(255,255,255,.4); letter-spacing: .07em; text-transform: uppercase; }
.about-text .section-eyebrow { color: var(--sky); }
.about-text .section-eyebrow::before { background: var(--sky); }
.about-text .section-h2 { color: #fff; }
.about-body { font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,.6); margin-bottom: 1.25rem; }
.about-langs { display: flex; gap: .65rem; flex-wrap: wrap; margin-top: 1.25rem; }
.about-lang-pill {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 3px; padding: .35rem .9rem; font-size: .75rem;
  letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600;
  color: rgba(255,255,255,.65);
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .slide-badge-bl, .slide-badge-tr { display: none; }
}

@media (max-width: 900px) {
  .pkg-grid { grid-template-columns: 1fr !important; }
}
