/* ==========================================================================
   FAIZA TOUR AND TRAVELS — Landing Page Styles
   Design tokens live in :root. To rebrand, edit the brand name inside
   index.html (the .logo-text and .hero-brand-name elements) — colors and
   type below don't need to change.
   ========================================================================== */

:root{
  /* --- Color tokens --- */
  --night:      #14213D;   /* deep indigo night — primary dark */
  --night-2:    #1F3358;   /* secondary dark, gradient partner */
  --amber:      #E8935A;   /* sunset amber — primary accent */
  --gold:       #D4A857;   /* sand gold — secondary accent */
  --teal:       #3E8E7E;   /* horizon teal — tertiary accent */
  --cream:      #F7F3EA;   /* warm light background */
  --charcoal:   #201C18;   /* body text on light bg */
  --line:       rgba(32,28,24,0.12);
  --line-light: rgba(247,243,234,0.18);

  /* --- Type tokens --- */
  --font-display: "Fraunces", ui-serif, Georgia, serif;
  --font-body:    "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  --container: 1220px;
}

/* --------------------------------------------------------------------- */
/* Reset & base                                                           */
/* --------------------------------------------------------------------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--charcoal);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img,svg{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{ margin:0; font-family:var(--font-display); font-weight:600; line-height:1.08; }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }
.mono{ font-family:var(--font-mono); letter-spacing:0.04em; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}

:focus-visible{
  outline:2px solid var(--amber);
  outline-offset:3px;
  border-radius:2px;
}

.section-inner{
  max-width:var(--container);
  margin:0 auto;
  padding:0 32px;
}

.italic-word{ font-style:italic; font-weight:500; color:var(--amber); }

/* --------------------------------------------------------------------- */
/* Scroll progress bar                                                   */
/* --------------------------------------------------------------------- */
.scroll-progress{
  position:fixed; top:0; left:0; height:3px; width:0%;
  background:linear-gradient(90deg,var(--amber),var(--gold));
  z-index:200; transition:width .12s linear;
}

/* --------------------------------------------------------------------- */
/* Cursor glow (decorative, hero only, disabled on touch)                */
/* --------------------------------------------------------------------- */
.cursor-glow{
  position:fixed; top:0; left:0; width:420px; height:420px; z-index:1;
  border-radius:50%; pointer-events:none;
  background:radial-gradient(circle, rgba(212,168,87,0.16), transparent 70%);
  transform:translate(-50%,-50%);
  opacity:0; transition:opacity .4s ease;
  will-change:transform;
}
.cursor-glow.active{ opacity:1; }
@media (hover:none){ .cursor-glow{ display:none; } }

/* --------------------------------------------------------------------- */
/* Eyebrow / structural label                                            */
/* --------------------------------------------------------------------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:rgba(247,243,234,0.8);
  margin:0 0 20px;
}
.eyebrow-dark{ color:var(--teal); }
.eyebrow-line{ width:30px; height:1px; background:currentColor; opacity:0.7; }

.section-title{
  font-size:clamp(30px,4vw,46px);
  color:var(--night);
  margin-bottom:6px;
}
.section-title-light{ color:var(--cream); }
.section-text{
  max-width:46ch;
  font-size:16.5px;
  line-height:1.7;
  color:rgba(32,28,24,0.78);
  margin:20px 0;
}
.section-head{ margin-bottom:56px; }

/* --------------------------------------------------------------------- */
/* Buttons & links                                                       */
/* --------------------------------------------------------------------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:15px 26px;
  border-radius:100px;
  font-weight:600;
  font-size:15px;
  border:1px solid transparent;
  transition:transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, background .3s ease;
}
.btn-small{ padding:10px 18px; font-size:13.5px; }
.btn-outline-light{
  border-color:var(--line-light);
  color:var(--cream);
}
.btn-outline-light:hover{ background:rgba(247,243,234,0.1); }

.btn-travel{
  gap:12px;
  background:linear-gradient(100deg,var(--amber),var(--gold));
  color:var(--night);
  box-shadow:0 10px 30px -12px rgba(232,147,90,0.65);
}
.btn-travel-icon{
  display:inline-flex; width:18px; height:18px;
  transform:rotate(0deg);
  transition:transform .5s cubic-bezier(.34,1.56,.64,1);
}
.btn-travel:hover{ box-shadow:0 16px 34px -12px rgba(232,147,90,0.8); }
.btn-travel:hover .btn-travel-icon{ transform:translate(3px,-3px) rotate(45deg); }

/* Magnetic buttons: JS sets --mx/--my per-pixel offset within bounds */
.magnetic{
  --mx:0px; --my:0px;
  transform:translate(var(--mx),var(--my));
}

.link-underline{
  position:relative;
  font-weight:600;
  font-size:14.5px;
  padding-bottom:2px;
  background-image:linear-gradient(currentColor,currentColor);
  background-size:0% 1px;
  background-repeat:no-repeat;
  background-position:left bottom;
  transition:background-size .4s ease;
}
.link-underline:hover{ background-size:100% 1px; }

/* --------------------------------------------------------------------- */
/* Logo                                                                   */
/* --------------------------------------------------------------------- */
.logo{
  display:inline-flex; align-items:center; gap:10px;
  color:var(--cream);
}
.logo-mark{ width:26px; height:26px; color:var(--amber); flex-shrink:0; }
.logo-text{
  font-family:var(--font-display);
  font-weight:600;
  font-size:19px;
  letter-spacing:0.01em;
  white-space:nowrap;
}
.logo-text em{ color:var(--amber); font-style:normal; }
.logo-footer{ color:var(--cream); margin-bottom:18px; }
.logo-footer .logo-text{ font-size:21px; }

/* --------------------------------------------------------------------- */
/* Header                                                                 */
/* --------------------------------------------------------------------- */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:20px 0;
  transition:padding .35s ease, background .35s ease, box-shadow .35s ease;
}
.site-header.scrolled{
  padding:12px 0;
  background:rgba(20,33,61,0.86);
  backdrop-filter:blur(14px) saturate(140%);
  box-shadow:0 8px 30px -18px rgba(0,0,0,0.5);
}
.header-inner{
  max-width:var(--container);
  margin:0 auto;
  padding:0 32px;
  display:flex; align-items:center; justify-content:space-between;
  gap:24px;
}
.main-nav ul{ display:flex; gap:34px; }
.main-nav a{
  font-size:14.5px; font-weight:500; color:rgba(247,243,234,0.85);
  position:relative; padding:4px 0;
}
.main-nav a::after{
  content:""; position:absolute; left:0; right:0; bottom:-2px; height:1px;
  background:var(--amber); transform:scaleX(0); transform-origin:left;
  transition:transform .35s ease;
}
.main-nav a:hover{ color:var(--cream); }
.main-nav a:hover::after{ transform:scaleX(1); }

.header-actions{ display:flex; align-items:center; gap:16px; }
.nav-toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:34px; height:34px; background:none; border:none; padding:0;
}
.nav-toggle span{ display:block; width:100%; height:2px; background:var(--cream); border-radius:2px; transition:transform .3s ease, opacity .3s ease; }

/* --------------------------------------------------------------------- */
/* HERO                                                                   */
/* --------------------------------------------------------------------- */
.hero{
  position:relative;
  min-height:100vh;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  overflow:hidden;
  color:var(--cream);
  padding:140px 24px 80px;
  isolation:isolate;
}
.hero-sky{
  position:absolute; inset:-10%;
  z-index:-3;
  background:
    radial-gradient(ellipse 60% 50% at 80% 10%, rgba(212,168,87,0.35), transparent 60%),
    radial-gradient(ellipse 55% 45% at 15% 85%, rgba(62,142,126,0.35), transparent 60%),
    linear-gradient(120deg, #0f1a30, #1F3358 35%, #2b3d63 55%, #14213D 80%, #0f1a30);
  background-size:220% 220%, 220% 220%, 260% 260%;
  animation:sky-drift 26s ease-in-out infinite alternate;
}
@keyframes sky-drift{
  0%{ background-position:0% 20%, 100% 80%, 0% 0%; }
  100%{ background-position:60% 60%, 20% 20%, 100% 100%; }
}
.hero-grain{
  position:absolute; inset:0; z-index:-2; opacity:0.5; mix-blend-mode:overlay;
  background-image:radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size:3px 3px;
}

.hero-marquee{
  position:absolute; inset:0; z-index:-1;
  display:flex; align-items:center;
  overflow:hidden;
  -webkit-mask-image:linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
  mask-image:linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
}
.hero-marquee-track{
  display:flex; align-items:center; gap:70px;
  white-space:nowrap;
  animation:marquee-scroll 34s linear infinite;
  will-change:transform;
}
.hero-brand-name{
  font-family:var(--font-display);
  font-weight:600;
  font-style:italic;
  font-size:clamp(80px,14vw,190px);
  color:transparent;
  -webkit-text-stroke:1px rgba(247,243,234,0.14);
  opacity:0.9;
  padding-right:70px;
}
@keyframes marquee-scroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

.hero-plane-path{ position:absolute; inset:0; width:100%; height:100%; z-index:0; opacity:0; pointer-events:none; }
.hero-plane-path path{ fill:none; stroke:rgba(247,243,234,0.18); stroke-width:1.5; stroke-dasharray:2 10; stroke-linecap:round; }
.hero-plane{
  position:absolute; width:26px; height:26px; color:var(--gold);
  z-index:0;
  offset-path: path("M -100 560 C 250 420, 450 620, 700 380 S 1100 120, 1350 160");
  offset-rotate:auto;
  animation:fly-hero 22s linear infinite;
  filter:drop-shadow(0 4px 10px rgba(0,0,0,0.35));
}
@keyframes fly-hero{
  0%{ offset-distance:0%; opacity:0; }
  6%{ opacity:1; }
  94%{ opacity:1; }
  100%{ offset-distance:100%; opacity:0; }
}

/* Floating destination chips — ambient parallax drift */
.hero-floaters{ position:absolute; inset:0; z-index:0; pointer-events:none; }
.float-chip{
  position:absolute;
  font-size:11.5px; letter-spacing:0.06em; color:rgba(247,243,234,0.55);
  border:1px solid rgba(247,243,234,0.16);
  border-radius:100px; padding:7px 14px;
  background:rgba(247,243,234,0.04);
  backdrop-filter:blur(6px);
}
.chip-1{ top:22%; left:8%; animation:float-drift 9s ease-in-out infinite; }
.chip-2{ top:65%; left:12%; animation:float-drift 11s ease-in-out infinite 1.5s; }
.chip-3{ top:28%; right:9%; animation:float-drift 10s ease-in-out infinite .7s; }
.chip-4{ top:68%; right:13%; animation:float-drift 8s ease-in-out infinite 2.2s; }
@keyframes float-drift{
  0%,100%{ transform:translateY(0) translateX(0); }
  50%{ transform:translateY(-16px) translateX(6px); }
}
@media (max-width: 980px){ .hero-floaters{ display:none; } }

.hero-content{
  position:relative; z-index:2;
  max-width:900px;
  text-align:center;
  display:flex; flex-direction:column; align-items:center;
}

/* Guaranteed page-load entrance sequence (no JS dependency) */
.hero-load{
  opacity:0; transform:translateY(22px);
  animation:hero-in .9s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-load-1{ animation-delay:.15s; }
.hero-load-2{ animation-delay:.32s; }
.hero-load-3{ animation-delay:.5s; }
.hero-load-4{ animation-delay:.68s; }
.hero-load-5{ animation-delay:.85s; }
@keyframes hero-in{
  to{ opacity:1; transform:translateY(0); }
}

.hero-title{
  font-size:clamp(42px,7vw,84px);
  letter-spacing:-0.01em;
  margin-bottom:22px;
}
.cursor{
  display:inline-block; width:3px; height:0.85em; background:var(--amber);
  margin-left:6px; vertical-align:-0.1em;
  animation:blink 1s step-end infinite;
}
@keyframes blink{ 50%{ opacity:0; } }

.hero-sub{
  font-size:18px; line-height:1.65; color:rgba(247,243,234,0.82);
  max-width:56ch; margin-bottom:38px;
}
.hero-cta-row{ display:flex; align-items:center; gap:30px; flex-wrap:wrap; justify-content:center; margin-bottom:64px; }
.hero-cta-row .link-underline{ color:var(--cream); }

.hero-stats{
  display:flex; gap:48px; flex-wrap:wrap; justify-content:center;
  padding-top:34px; border-top:1px solid var(--line-light);
  width:100%; max-width:620px;
}
.hero-stat{ display:flex; flex-direction:column; align-items:center; gap:4px; }
.hero-stat .count-up, .hero-stat .plus{
  font-family:var(--font-display); font-weight:600; font-size:32px; color:var(--gold);
}
.hero-stat .plus{ font-size:22px; }
.hero-stat small{ font-size:12.5px; color:rgba(247,243,234,0.65); letter-spacing:0.02em; }

.scroll-cue{
  position:absolute; bottom:30px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px;
  font-family:var(--font-mono); font-size:11px; letter-spacing:0.14em; text-transform:uppercase;
  color:rgba(247,243,234,0.55); z-index:2;
}
.scroll-cue span{
  width:1px; height:34px; background:linear-gradient(var(--gold), transparent);
  animation:scroll-cue-move 1.8s ease-in-out infinite;
}
@keyframes scroll-cue-move{
  0%{ transform:scaleY(0); transform-origin:top; opacity:0; }
  40%{ transform:scaleY(1); transform-origin:top; opacity:1; }
  60%{ transform:scaleY(1); transform-origin:bottom; opacity:1; }
  100%{ transform:scaleY(0); transform-origin:bottom; opacity:0; }
}

/* --------------------------------------------------------------------- */
/* Destination ticker                                                    */
/* --------------------------------------------------------------------- */
.ticker-section{
  background:var(--night);
  padding:26px 0;
  border-top:1px solid var(--line-light);
  border-bottom:1px solid var(--line-light);
  overflow:hidden;
}
.ticker-label{
  text-align:center; font-family:var(--font-mono); font-size:11px;
  letter-spacing:0.16em; text-transform:uppercase; color:rgba(247,243,234,0.4);
  margin-bottom:14px;
}
.ticker{ overflow:hidden; -webkit-mask-image:linear-gradient(to right, transparent, black 8%, black 92%, transparent); mask-image:linear-gradient(to right, transparent, black 8%, black 92%, transparent); margin-bottom:14px; }
.ticker:last-child{ margin-bottom:0; }
.ticker-track{
  display:flex; align-items:center; gap:22px; white-space:nowrap;
  font-family:var(--font-display); font-style:italic; font-weight:500;
  font-size:26px; color:rgba(247,243,234,0.88);
  animation:ticker-scroll 30s linear infinite;
  width:max-content;
}
.ticker-track-reverse{
  font-size:16px; font-style:normal; font-weight:500;
  color:rgba(247,243,234,0.45);
  animation:ticker-scroll-reverse 26s linear infinite;
}
.ticker-track i{ font-style:normal; font-size:8px; color:var(--amber); }
@keyframes ticker-scroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}
@keyframes ticker-scroll-reverse{
  from{ transform:translateX(-50%); }
  to{ transform:translateX(0); }
}

/* --------------------------------------------------------------------- */
/* About                                                                  */
/* --------------------------------------------------------------------- */
.about{ padding:130px 0; background:var(--cream); }
.about-grid{
  display:grid; grid-template-columns:1.1fr 1fr; gap:80px; align-items:start;
}
.about-badges{ display:flex; flex-direction:column; gap:14px; margin-top:32px; }
.about-badge{ display:flex; align-items:center; gap:12px; font-size:14px; font-weight:600; color:var(--night); }
.about-badge svg{ width:20px; height:20px; color:var(--teal); flex-shrink:0; }

.about-cards{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.boarding-card{
  background:var(--night);
  color:var(--cream);
  border-radius:18px;
  padding:24px 22px;
  position:relative;
  overflow:hidden;
  transition:transform .4s cubic-bezier(.2,.8,.2,1);
}
.boarding-card:hover{ transform:translateY(-6px); }
.boarding-card-alt{ background:linear-gradient(155deg,var(--night-2),var(--teal) 160%); margin-top:34px; }
.boarding-top{
  display:flex; justify-content:space-between; font-size:10.5px; letter-spacing:0.08em;
  color:rgba(247,243,234,0.55); margin-bottom:22px; text-transform:uppercase;
  padding-bottom:14px; border-bottom:1px dashed rgba(247,243,234,0.25);
}
.boarding-stat{ font-family:var(--font-display); font-size:38px; font-weight:600; color:var(--gold); margin-bottom:10px; }
.boarding-stat .plus{ font-size:26px; }
.boarding-card p{ font-size:13.5px; line-height:1.55; color:rgba(247,243,234,0.75); }

/* --------------------------------------------------------------------- */
/* Featured destinations                                                 */
/* --------------------------------------------------------------------- */
.destinations{ padding:130px 0; background:#EFE9DB; }
.dest-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:26px;
}
.dest-card{
  position:relative;
  border-radius:20px; overflow:hidden; background:var(--night);
  box-shadow:0 18px 40px -26px rgba(20,33,61,0.5);
  transition:box-shadow .5s ease;
}
.price-tag{
  position:absolute; top:14px; left:14px; z-index:3;
  font-family:var(--font-mono); font-size:11.5px; font-weight:500;
  color:var(--night); background:rgba(247,243,234,0.92);
  padding:6px 12px; border-radius:100px; letter-spacing:0.01em;
  backdrop-filter:blur(4px);
  box-shadow:0 6px 16px -8px rgba(0,0,0,0.35);
}
.price-tag span{ color:var(--amber); font-weight:700; }
.tilt-card{ transform-style:preserve-3d; will-change:transform; transition:transform .25s ease, box-shadow .5s ease; }
.tilt-card:hover{ box-shadow:0 28px 50px -22px rgba(20,33,61,0.45); }
.dest-art{ aspect-ratio:3/2; overflow:hidden; }
.dest-art svg{ width:100%; height:100%; transition:transform .8s cubic-bezier(.2,.8,.2,1); }
.dest-card:hover .dest-art svg{ transform:scale(1.08); }
.dest-body{ padding:24px 22px 26px; color:var(--cream); position:relative; }
.dest-code{ font-size:11px; color:rgba(247,243,234,0.5); }
.dest-body h3{ font-size:23px; margin:8px 0 6px; }
.dest-body p{ font-size:14px; color:rgba(247,243,234,0.72); line-height:1.5; max-width:32ch; }
.dest-arrow{
  position:absolute; right:22px; bottom:24px;
  width:36px; height:36px; border-radius:50%; border:1px solid rgba(247,243,234,0.3);
  display:flex; align-items:center; justify-content:center;
  transition:background .35s ease, transform .35s ease;
}
.dest-card:hover .dest-arrow{ background:var(--amber); transform:rotate(45deg); border-color:var(--amber); }

/* --------------------------------------------------------------------- */
/* Process / route                                                       */
/* --------------------------------------------------------------------- */
.process{ background:var(--night); padding:130px 0 150px; position:relative; overflow:hidden; }
.process::before{
  content:""; position:absolute; inset:0;
  background:radial-gradient(ellipse 50% 40% at 90% 0%, rgba(212,168,87,0.15), transparent 60%);
  pointer-events:none;
}
.route{ position:relative; margin-top:40px; }
.route-line{ width:100%; height:auto; display:block; margin-bottom:-10px; }
.route-line path{ fill:none; stroke:rgba(247,243,234,0.18); stroke-width:1.5; stroke-dasharray:1 10; stroke-linecap:round; }
.route-plane{
  position:absolute; top:0; left:0; width:22px; height:22px; color:var(--amber);
  offset-path: path("M40 60 C 260 -10, 340 130, 500 60 S 740 -10, 960 60");
  offset-rotate:auto;
  animation:fly-route 12s linear infinite;
  filter:drop-shadow(0 3px 8px rgba(0,0,0,0.4));
}
@keyframes fly-route{
  from{ offset-distance:0%; }
  to{ offset-distance:100%; }
}
.route-steps{
  display:grid; grid-template-columns:repeat(4,1fr); gap:34px; margin-top:20px;
}
.route-step{
  border-top:1px solid var(--line-light); padding-top:22px;
}
.route-num{ display:block; color:var(--gold); font-size:13px; margin-bottom:16px; }
.route-step h3{ color:var(--cream); font-size:20px; margin-bottom:10px; }
.route-step p{ color:rgba(247,243,234,0.68); font-size:14.5px; line-height:1.6; }

/* --------------------------------------------------------------------- */
/* Testimonials                                                          */
/* --------------------------------------------------------------------- */
.testimonials{ padding:130px 0; background:var(--cream); }
.slider{ max-width:760px; margin:0 auto; text-align:center; }
.slider-track{ position:relative; min-height:220px; }
.slide{
  position:absolute; inset:0; margin:0;
  opacity:0; transform:translateY(14px);
  transition:opacity .5s ease, transform .5s ease;
  pointer-events:none;
}
.slide.active{ opacity:1; transform:translateY(0); pointer-events:auto; position:relative; }
.slide blockquote{
  font-family:var(--font-display); font-style:italic; font-weight:400;
  font-size:clamp(20px,2.6vw,27px); line-height:1.55; color:var(--night); margin:0 0 26px;
}
.slide figcaption{ display:flex; flex-direction:column; gap:2px; }
.slide figcaption strong{ font-size:15px; }
.slide figcaption span{ font-size:13px; color:var(--teal); font-family:var(--font-mono); }

.slider-controls{ display:flex; align-items:center; justify-content:center; gap:22px; margin-top:36px; }
.slider-btn{
  width:44px; height:44px; border-radius:50%; border:1px solid var(--line);
  background:transparent; font-size:16px; color:var(--night);
  transition:background .3s ease, color .3s ease, transform .3s ease;
}
.slider-btn:hover{ background:var(--night); color:var(--cream); transform:scale(1.06); }
.slider-dots{ display:flex; gap:9px; }
.slider-dots button{
  position:relative;
  width:34px; height:3px; border-radius:3px; border:none; background:var(--line); padding:0;
  overflow:hidden;
  transition:background .3s ease;
}
.slider-dots button::after{
  content:""; position:absolute; inset:0; background:var(--amber);
  transform:scaleX(0); transform-origin:left; transition:transform .3s ease;
}
.slider-dots button.active::after{ animation:dot-fill 6.5s linear forwards; }
@keyframes dot-fill{ from{ transform:scaleX(0); } to{ transform:scaleX(1); } }

/* --------------------------------------------------------------------- */
/* CTA banner                                                            */
/* --------------------------------------------------------------------- */
.cta-banner{ position:relative; padding:140px 0; overflow:hidden; isolation:isolate; }
.cta-bg{
  position:absolute; inset:0; z-index:-1;
  background:linear-gradient(125deg,#0f1a30,#1F3358 40%,#2f7a6d 100%);
  background-size:200% 200%;
  animation:sky-drift 20s ease-in-out infinite alternate;
}
.cta-inner{ text-align:center; display:flex; flex-direction:column; align-items:center; }
.cta-title{ color:var(--cream); font-size:clamp(32px,4.8vw,52px); margin-bottom:18px; }
.cta-text{ color:rgba(247,243,234,0.78); font-size:17px; max-width:48ch; margin-bottom:42px; }
.cta-form{ display:flex; gap:14px; flex-wrap:wrap; justify-content:center; width:100%; max-width:460px; }
.cta-form input{
  flex:1; min-width:220px;
  padding:15px 20px; border-radius:100px; border:1px solid var(--line-light);
  background:rgba(247,243,234,0.06); color:var(--cream); font-size:15px; font-family:inherit;
}
.cta-form input::placeholder{ color:rgba(247,243,234,0.45); }
.cta-form input:focus{ background:rgba(247,243,234,0.12); outline:none; border-color:var(--gold); }
.cta-note{ margin-top:18px; font-size:13px; color:rgba(247,243,234,0.55); font-family:var(--font-mono); }
.cta-note.success{ color:var(--gold); }

/* --------------------------------------------------------------------- */
/* Footer                                                                 */
/* --------------------------------------------------------------------- */
.site-footer{ background:var(--night); color:rgba(247,243,234,0.8); padding:90px 0 0; }
.footer-grid{
  display:grid; grid-template-columns:1.6fr 1fr 1fr 1.2fr; gap:50px;
  padding-bottom:70px; border-bottom:1px solid var(--line-light);
}
.footer-brand p{ font-size:14.5px; line-height:1.6; max-width:32ch; margin:6px 0 22px; color:rgba(247,243,234,0.6); }
.footer-social{ display:flex; gap:12px; }
.footer-social a{
  width:36px; height:36px; border-radius:50%; border:1px solid var(--line-light);
  display:flex; align-items:center; justify-content:center; font-size:11px; font-family:var(--font-mono);
  transition:background .3s ease, transform .3s ease;
}
.footer-social a:hover{ background:var(--amber); color:var(--night); transform:translateY(-3px) rotate(-6deg); }
.footer-col h4{ font-family:var(--font-body); font-size:13.5px; text-transform:uppercase; letter-spacing:0.08em; color:var(--cream); margin-bottom:18px; font-weight:700; }
.footer-col ul{ display:flex; flex-direction:column; gap:12px; font-size:14.5px; }
.footer-col a{ color:rgba(247,243,234,0.65); transition:color .3s ease; }
.footer-col a:hover{ color:var(--gold); }
.footer-contact li{ color:rgba(247,243,234,0.65); }

.footer-bottom{
  max-width:var(--container); margin:0 auto; padding:26px 32px 34px;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px;
  font-size:13px; color:rgba(247,243,234,0.5);
}
.footer-legal{ display:flex; gap:20px; }
.footer-legal a:hover{ color:var(--gold); }

/* --------------------------------------------------------------------- */
/* Back to top + WhatsApp FAB                                            */
/* --------------------------------------------------------------------- */
.back-to-top{
  position:fixed; right:26px; bottom:26px; z-index:80;
  width:46px; height:46px; border-radius:50%; border:none;
  background:var(--night); color:var(--cream);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 24px -10px rgba(0,0,0,0.5);
  opacity:0; visibility:hidden; transform:translateY(10px);
  transition:opacity .35s ease, transform .35s ease, visibility .35s ease, background .3s ease;
}
.back-to-top.visible{ opacity:1; visibility:visible; transform:translateY(0); }
.back-to-top:hover{ background:var(--amber); color:var(--night); }
.back-to-top svg{ width:18px; height:18px; }

.whatsapp-fab{
  position:fixed; left:26px; bottom:26px; z-index:80;
  width:52px; height:52px; border-radius:50%;
  background:#25D366; color:#0b3d1f;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 24px -8px rgba(37,211,102,0.6);
  animation:whatsapp-pulse 2.8s ease-in-out infinite;
  transition:transform .3s ease;
}
.whatsapp-fab svg{ width:26px; height:26px; }
.whatsapp-fab:hover{ transform:scale(1.08); }
@keyframes whatsapp-pulse{
  0%,100%{ box-shadow:0 10px 24px -8px rgba(37,211,102,0.6), 0 0 0 0 rgba(37,211,102,0.35); }
  50%{ box-shadow:0 10px 24px -8px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0); }
}

/* --------------------------------------------------------------------- */
/* Scroll reveal                                                         */
/* --------------------------------------------------------------------- */
.reveal{
  opacity:0; transform:translateY(26px);
  transition:opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
  transition-delay:var(--reveal-delay, 0s);
}
.reveal.in-view{ opacity:1; transform:translateY(0); }
/* No-JS / JS-failure safety net: never leave content permanently invisible */
.no-js .reveal, .js-failed .reveal{ opacity:1; transform:none; }

/* --------------------------------------------------------------------- */
/* Responsive                                                            */
/* --------------------------------------------------------------------- */
@media (max-width: 980px){
  .about-grid{ grid-template-columns:1fr; gap:56px; }
  .dest-grid{ grid-template-columns:repeat(2,1fr); }
  .route-steps{ grid-template-columns:repeat(2,1fr); }
  .footer-grid{ grid-template-columns:1fr 1fr; row-gap:44px; }
}

@media (max-width: 760px){
  .main-nav{
    position:fixed; inset:0 0 0 auto; top:0; height:100vh; width:78%; max-width:340px;
    background:var(--night); padding:110px 32px 40px;
    transform:translateX(100%); transition:transform .45s cubic-bezier(.2,.8,.2,1);
    z-index:90;
  }
  .main-nav.open{ transform:translateX(0); }
  .main-nav ul{ flex-direction:column; gap:26px; }
  .main-nav a{ font-size:19px; }
  .nav-toggle{ display:flex; z-index:95; }
  .nav-toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2){ opacity:0; }
  .nav-toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
  .header-actions .btn-small{ display:none; }

  .hero{ padding-top:120px; }
  .hero-cta-row{ flex-direction:column; gap:20px; }
  .hero-stats{ gap:30px; }

  .about-cards{ grid-template-columns:1fr 1fr; }
  .dest-grid{ grid-template-columns:1fr; }
  .route-steps{ grid-template-columns:1fr; gap:40px; }
  .route-line, .route-plane{ display:none; }

  .footer-grid{ grid-template-columns:1fr; gap:40px; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }

  .whatsapp-fab{ width:46px; height:46px; left:18px; bottom:18px; }
  .back-to-top{ right:18px; bottom:18px; }
}
