/* =============================
   Travelator Brand Palette
   ============================= */
:root {
  --nav-height: 64px;
  --primary-skyblue: #A8DADC;
  --primary-skyblue-dark: #90C7CC;   /* added */
  --primary-skyblue-light: #EAF6F7;  /* added */
  --secondary-peach: #F6A6A1;
  --accent-yellow: #FFF1A6;
  --neutral-offwhite: #FDFCFB;
  --text-charcoal: #3A3A3A;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--neutral-offwhite);
  color: var(--text-charcoal);
  font-family: var(--font-body);
  line-height: 1.7;
}

/* Text highlight override */
::selection {
  background: var(--secondary-peach);
  color: white; /* or var(--text-charcoal) if you prefer */
}

::-moz-selection {
  background: var(--secondary-peach);
  color: white;
}


/* =============================
   Navigation Bar
   ============================= */
.navbar {
  background: var(--primary-skyblue);
  padding: 15px 40px;
  border-bottom: 1px solid var(--primary-skyblue);
  position: fixed;
  top: 0;
  z-index: 1000; /* must be higher than clouds */
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.logo img {
  height: 60px;
}

/* Nav links (desktop) */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-charcoal);
  font-weight: 600;
  font-family: var(--font-heading);
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--neutral-offwhite);
}

/* Demo Button in Nav */
.btn-nav {
  background: var(--secondary-peach);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-nav:hover {
  background: var(--accent-yellow);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Hamburger button */
.hamburger {
  display: none; /* hidden on desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 32px;   /* wider icon */
  height: 24px;  /* taller spacing */
  background: none;
  border: none;
  cursor: pointer;
  z-index: 6000; /* stay above clouds */
}

/* Bars inside the hamburger */
.hamburger .bar {
  height: 4px;
  width: 100%;
  background-color: var(--neutral-offwhite);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Show hamburger on mobile */
/* Show hamburger on mobile + add spacing between nav items */
@media (max-width: 955px) {
  .hamburger { 
    display: flex;   /* <- this was missing */
  }

  /* just add vertical space between stacked items */
  #nav-links > li + li { 
    margin-top: 10px;
    margin-bottom:0px;
    text-align: center; /* adjust to taste */
  }

  /* optional niceties */
  #nav-links .requires-auth:first-of-type { margin-top: 8px; }
  #googleSignIn { transform: none; margin-top: 24px; justify-content: center; }
  
}



/* =============================
   Cloud Background
   ============================= */
/* Pastel sky background for the landing page */
body {
  margin: 0;
  font-family: var(--font-body, 'Nunito Sans', sans-serif);
  color: var(--text-charcoal, #3A3A3A);
  line-height: 1.7;

  /* Soft sky blue -> off-white */
  background: linear-gradient(
    180deg,
    rgba(168, 218, 220, 0.45) 0%,
    #FDFCFB 100%
  );
}

#background-wrap {
  position: absolute;
  top: 0; /* extend up under nav */
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}

.cloud {
  position: absolute; /* each cloud floats independently */
}

/* ==== DESKTOP CLOUDS: start fully off-screen, drift all the way across ==== */
@keyframes cloudDriftDesktop {
  0%   { transform: translateX(0) scale(var(--scale,1)); }       /* starts at left:-30vw */
  100% { transform: translateX(160vw) scale(var(--scale,1)); }   /* ends far off right */
}

/* Make sure wrappers are positioned and anchored to the left edge */
.x1, .x2, .x3, .x4, .x5, .x6, .x7, .x8,
.x9, .x10, .x11, .x12 {
  position: absolute;
  left: -30vw;                 /* <-- guarantees they begin off-screen on desktop */
  will-change: transform;
}

/* Even speeds + small staggered delays so they enter quickly */
.x1  { --scale: 0.65; animation: cloudDriftDesktop 26s linear infinite; animation-delay: 0s;   top: 12%; }
.x2  { --scale: 0.30; animation: cloudDriftDesktop 32s linear infinite; animation-delay: -2s;  top: 20%; }
.x3  { --scale: 0.50; animation: cloudDriftDesktop 38s linear infinite; animation-delay: -4s;  top: 30%; }
.x4  { --scale: 0.40; animation: cloudDriftDesktop 42s linear infinite; animation-delay: -6s;  top: 44%; }
.x5  { --scale: 0.55; animation: cloudDriftDesktop 57s linear infinite; animation-delay: -8s;  top: 58%; }
.x6  { --scale: 0.45; animation: cloudDriftDesktop 49s linear infinite; animation-delay: -10s; top: 24%; }
.x7  { --scale: 0.35; animation: cloudDriftDesktop 35s linear infinite; animation-delay: -12s; top: 50%; }
.x8  { --scale: 0.60; animation: cloudDriftDesktop 60s linear infinite; animation-delay: -14s; top: 70%; }
.x9  { --scale: 0.42; animation: cloudDriftDesktop 40s linear infinite; animation-delay: -16s; top: 16%; }
.x10 { --scale: 0.28; animation: cloudDriftDesktop 52s linear infinite; animation-delay: -18s; top: 34%; }
.x11 { --scale: 0.63; animation: cloudDriftDesktop 47s linear infinite; animation-delay: -20s; top: 62%; }
.x12 { --scale: 0.37; animation: cloudDriftDesktop 29s linear infinite; animation-delay: -22s; top: 76%; }




.x2, .x3, .x4, .x9, .x10 { z-index: 4; }

.x5, .x6, .x7, .x8, .x11, .x12 { z-index: 8; }


/* ==== MOBILE OVERRIDE (keeps your smaller clouds & fast entry) ==== */
@media (max-width: 768px) {
  .cloud { width: 120px; height: 45px; }
  .cloud:after { width: 40px; height: 40px; left: 20px; top: -20px; }
  .cloud:before { width: 70px; height: 70px; right: 20px; top: -35px; }

  @keyframes cloudDriftMobile {
    0%   { transform: translateX(0)   scale(var(--scale,1)); }
    100% { transform: translateX(120vw) scale(var(--scale,1)); }
  }

  /* On mobile we don't need the off-screen anchor; just drift across quickly */
  .x1, .x2, .x3, .x4, .x5, .x6, .x7, .x8, .x9, .x10, .x11, .x12 {
    left: 0;
    animation-name: cloudDriftMobile;
  }

  .x1 { animation-duration: 28s; animation-delay: -10s; top: 10%; }
  .x2 { animation-duration: 22s; animation-delay: -6s;  top: 18%; }
  .x3 { animation-duration: 30s; animation-delay: -12s; top: 26%; }
  .x4 { animation-duration: 26s; animation-delay: -4s;  top: 38%; }
  .x5 { animation-duration: 34s; animation-delay: -14s; top: 48%; }
  .x6 { animation-duration: 24s; animation-delay: -8s;  top: 20%; }
  .x7 { animation-duration: 32s; animation-delay: -16s; top: 54%; }
  .x8 { animation-duration: 36s; animation-delay: -20s; top: 64%; }
  .x9  { animation-duration: 24s; animation-delay: -9s;  top: 14%; }
  .x10 { animation-duration: 33s; animation-delay: -13s; top: 32%; }
  .x11 { animation-duration: 28s; animation-delay: -7s;  top: 60%; }
  .x12 { animation-duration: 25s; animation-delay: -11s; top: 74%; }
}


/* Cloud shape */
.cloud {
  background: linear-gradient(to bottom, #fff 5%, #f1f1f1 100%);
  border-radius: 100px;
  box-shadow: 0 8px 5px rgba(0, 0, 0, 0.1);
  height: 120px;
  width: 350px;
  position: relative;
}

.cloud:after,
.cloud:before {
  background: #fff;
  content: '';
  position: absolute;
  z-index: -1;
}

.cloud:after {
  border-radius: 100px;
  height: 100px;
  width: 100px;
  left: 50px;
  top: -50px;
}

.cloud:before {
  border-radius: 200px;
  width: 180px;
  height: 180px;
  right: 50px;
  top: -90px;
}


.plane-wrap {
  position: absolute;
  right: -25vw;
  top: var(--alt, 38%);
  z-index: 6;
  pointer-events: none;
  will-change: transform;
  opacity: 0;                 /* hide while waiting */
}

/* When flying, run one pass then stop */
.plane-wrap.is-flying {
  animation: plane-fly var(--dur, 26s) linear 1;
  animation-fill-mode: forwards;   /* stay off-left when done */
  opacity: 1;
}

/* Bobbing only while flying */
.is-flying .plane {
  animation: plane-bob var(--bob, 4.5s) ease-in-out infinite;
}

.plane {
  width: clamp(120px, 15vw, 220px);
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,0.18));
  transform-origin: 50% 60%;
}

/* Keyframes (same as before) */
@keyframes plane-fly {
  from { transform: translateX(0); }
  to   { transform: translateX(-125vw); }
}

@keyframes plane-bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-0.9vh) rotate(-1.1deg); }
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .plane-wrap { top: var(--alt, 32%); }
  .plane { width: clamp(96px, 22vw, 180px); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .plane-wrap, .is-flying .plane { animation: none !important; }
  .plane-wrap { opacity: 0; } /* keep it hidden if motion reduced */
}

/* =============================
   Hero Section (Full Screen)
   ============================= */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  height: 100vh;
  padding: 0 20px;

  /* Gradient background from pastel sky blue to off-white */
  background: linear-gradient(to bottom, #A8DADC 0%, #FDFCFB 100%);
  
  color: var(--text-charcoal);
  position: relative;
  overflow: hidden;
}


.hero-content {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  z-index: 2; /* sits above clouds */
}

/* Headline */
.hero h1 {
  font-size: 3.2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-charcoal);
  line-height: 1.2;
}

/* Subline */
.hero .subline {
  font-size: 1.6rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--secondary-peach);
  margin-bottom: 15px;
}

/* Subline */
.formheader {
  font-size: 1.6rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--secondary-peach);
  margin-top: -3px;
}
/* Supporting tagline */
.hero .tagline {
  font-size: 1.2rem;
  font-family: var(--font-body);
  margin-bottom: 40px;
  color: var(--text-charcoal);
}

/* Buttons container */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Primary CTA */
.btn-primary {
  display: inline-flex;           
  align-items: center;             
  justify-content: center;        
  min-width: 10rem;                
  background-color: var(--text-charcoal);
  color: var(--neutral-offwhite);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--secondary-peach);
  color: var(--text-charcoal);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-signup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10rem;
  background-color: var(--accent-yellow);
  color: var(--text-charcoal);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color .3s ease, box-shadow .3s ease, transform .3s ease;
  will-change: transform, box-shadow;
}

/* pulse only when you add .is-pulsing */
@media (prefers-reduced-motion: no-preference) {
  .btn-signup.is-pulsing {
    animation: btn-breathe 2.2s ease-in-out infinite;
    animation-delay: .6s; /* optional */
  }
}

.btn-signup:hover,
.btn-signup:focus-visible {
  transform: translateY(-1px) scale(1.03);
  background-color: var(--secondary-peach);
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
  animation-play-state: paused; /* pause pulse while interacting */
}

@keyframes btn-breathe {
  0%, 100% { transform: scale(1);   box-shadow: 0 4px 12px rgba(0,0,0,.15); }
  50%      { transform: scale(1.05); box-shadow: 0 12px 28px rgba(0,0,0,.22); }
}

.btn-signup2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10rem;
  background-color: var(--secondary-peach);
  color: var(--text-charcoal);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color .3s ease, box-shadow .3s ease, transform .3s ease;
  will-change: transform, box-shadow;
}

/* pulse only when you add .is-pulsing */
@media (prefers-reduced-motion: no-preference) {
  .btn-signup2.is-pulsing {
    animation: btn-breathe 2.2s ease-in-out infinite;
    animation-delay: .6s; /* optional */
  }
}

.btn-signup2:hover,
.btn-signup2:focus-visible {
  transform: translateY(-1px) scale(1.03);
  background-color: var(--primary-skyblue);
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
  animation-play-state: paused; /* pause pulse while interacting */
}

@keyframes btn-breathe {
  0%, 100% { transform: scale(1);   box-shadow: 0 4px 12px rgba(0,0,0,.15); }
  50%      { transform: scale(1.05); box-shadow: 0 12px 28px rgba(0,0,0,.22); }
}


.btn-signin {
  background-color: var(--secondary-peach);
  color: var(--text-charcoal);
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-signin:hover {
  background-color: var(--accent-yellow);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-reveal {
  background-color: var(--accent-yellow);
  color: var(--text-charcoal);
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-reveal:hover {
  background-color: var(--secondary-peach);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-nav {
  background-color: var(--secondary-peach);
  color: var(--text-charcoal);
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-nav:hover {
  background-color: var(--accent-yellow);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Secondary CTA */
.btn-secondary {
  background: var(--text-charcoal);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--secondary-peach);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* =============================
   Services Section
   ============================= */
#services, .services {
  background: var(--neutral-offwhite);
  padding: 0 20px 90px;
}

#services h2, .services h2 {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary-skyblue);
  margin: 0 0 15px; /* no top margin, keep bottom margin */
}


#services .section-intro, .services .section-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-charcoal);
}

#services .service-grid, .services .service-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

#services .service-card, .services .service-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#services .service-card:hover, .services .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.service-card .icon img {
  width: 90px;   /* adjust size */
  height: auto;  /* keeps aspect ratio */
  display: block;
  margin: 0 auto; /* centers the gif inside the card */
}

#services .service-card h3, .services .service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--secondary-peach);
  margin-bottom: 15px;
}

#services .service-card p, .services .service-card p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-charcoal);
}

/* =============================
   Benefits Section
   ============================= */
#benefits, .benefits {
  padding: 40px 50px;
  background: var(--neutral-offwhite);
  text-align: center;
}

#benefits h2, .benefits h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary-skyblue);
  margin-bottom: 15px;
}

#benefits .section-intro, .benefits .section-intro {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  color: var(--text-charcoal);
}

/* Metrics row */
.metrics {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.metric .number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--secondary-peach);
  font-family: var(--font-heading);
}

.metric .label {
  display: block;
  margin-top: 5px;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text-charcoal);
}


.metric .badge {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 10px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--text-charcoal);
  background: var(--accent-yellow);
  border-radius: 20px;
  animation: pulse 2s infinite;
}

/* Gentle pulse animation */
@keyframes pulse {
  0%   { transform: scale(1); opacity: 1; }
  50%  { transform: scale(1.05); opacity: 0.9; }
  100% { transform: scale(1); opacity: 1; }
}


/* =============================
   Pricing Table Cards
   ============================= */
.pricing {
  background: linear-gradient(to bottom, #FDFCFB 0%, #FFF1A6 100%);
  width: 100%;          /* full bleed */
  margin: 0;            /* no white bars above/below */
  padding: 60px 0;      /* vertical space only */
}

.pricing h2 {
  font-family: var(--font-heading);
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-skyblue);
  margin-bottom: 20px;
}

.pricing p {
  font-size: 1.1rem;
  text-align: center;
  font-family: var(--font-body);
  color: var(--text-charcoal);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.pricing .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;  /* keep some breathing room */
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;            /* space between tiers */
  margin-top: 50px;
}

.pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  min-height: 520px; /* consistent tall look */
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

/* --- Icon & Title --- */
.pricing-card .icon {
  margin-bottom: 8px; /* tighter gap */
}

.pricing-card .icon img {
  width: 80px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--secondary-peach);
  margin: 6px 0 10px; /* reduced spacing */
}

/* --- Price --- */
.pricing-card .price {
  font-size: 2.2rem; /* slightly bigger */
  font-weight: bold;
  color: var(--primary-skyblue);
  margin: 10px 0 12px; /* balanced spacing */
}

.pricing-card .price span {
  font-size: 1rem;
  color: var(--text-charcoal);
}

/* --- Button --- */
.pricing-card .btn-primary {
  display: block;
  width: 100%;
  box-sizing: border-box;  /* keeps inside card padding */
  margin: 12px 0 16px;     /* closer to price/features */
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 10px;
  background: var(--secondary-peach);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pricing-card .btn-primary:hover {
  background: var(--accent-yellow);
  color: var(--text-charcoal);
}

.pricing-card .btn-disable {
  display: block;
  width: 100%;
  box-sizing: border-box;   /* keeps inside card padding */
  margin: 12px 0 16px;      /* closer to price/features */
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 10px;
  background: #cfcfcf;      /* light grey to indicate disabled */
  color: #7a7a7a;           /* muted grey text */
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  cursor: not-allowed;      /* shows "disabled" cursor */
  opacity: 0.7;             /* slight transparency */
  pointer-events: none;     /* prevents interaction */
}

.pricing-card .btn-disable:hover {
  background: #cfcfcf;      /* no hover effect */
  color: #7a7a7a;
}

/* Pricing feature icons */
.tick {
  color: var(--primary-skyblue);
  font-weight: bold;
  margin-right: 6px;
}

.cross {
  color: var(--secondary-peach);
  font-weight: bold;
  margin-right: 6px;
}


/* --- Features --- */
.pricing-card .features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  flex-grow: 1;
}

.pricing-card .features li {
  margin: 8px 0;
  font-size: 0.95rem;
}

/* Highlight most popular */
.pricing-card.popular {
  border: 2px solid var(--secondary-peach);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.pricing-card .badge {
  position: absolute;
  top: -12px;
  right: 12px;
  background: var(--primary-skyblue-light);
  color: var(--text-charcoal);
  font-size: 0.8rem;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  animation: pulse 2s infinite;
}


/* =============================
   About
   ============================= */
.about {
  background: var(--neutral-offwhite); /* page section stays off-white */
  padding: 90px 20px;
}

.about .container {
  background: var(--secondary-peach); /* pink card */
  color: #fff;
  border-radius: 16px;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 25px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08); /* subtle floating card */
}

.about h2 {
  font-family: var(--font-heading);
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #fff;
}

.about p {
  font-size: 1.1rem;
  text-align: center;
  line-height: 1.7;
  margin: 15px auto;
  max-width: 700px;
}



/* =============================
   FAQ
   ============================= */
/* FAQ Section Heading */
.faq h2 {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary-skyblue);
  margin-bottom: 20px;
}

.faq {
  background: var(--accent-yellow);
  width: 100%;          /* full bleed */
  margin: 0;
  padding: 60px 0;
}

.faq .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--primary-skyblue);
}

.faq-question {
  width: 100%;
  background: var(--neutral-offwhite);
  color: var(--primary-skyblue-dark);
  text-align: left;
  padding: 15px 20px;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
  background: var(--neutral-offwhite);
  font-family: var(--font-body);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 20px;
}

/* CTA Section */
.cta {
  background: var(--accent-yellow);
  text-align: center;
  padding: 80px 20px;
  color: var(--text-charcoal);
}

.cta h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta p {
  font-family: var(--font-body);
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.cta-subtext {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 15px;
}

/* Footer */
footer {
  background: var(--primary-skyblue);
  color: var(--text-charcoal);
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  font-family: var(--font-body);
}

footer a {
  color: var(--text-charcoal);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--secondary-peach);
}

footer .parent-company {
  margin-top: 6px;
  font-size: 0.85rem;
  opacity: 0.9;
}

/* blog */
.blog-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 90px;       /* fixed column width */
  flex-shrink: 0;    /* don't let it shrink */
  text-align: center;
}

.blog-icon img {
  width: 60px;       /* consistent gif size */
  height: 60px;      /* makes them all square */
  object-fit: contain; /* scale without stretching */
}

.blog-tag {
  background: var(--accent-yellow);
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 600;
  color: var(--text-charcoal);
  font-size: 0.85rem;
  white-space: nowrap; /* prevent tag text wrapping */
}

.blog-info {
  flex: 1;
  text-align: left;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--secondary-peach);
  display: block;
  margin-bottom: 6px;
}

.blog-title:hover {
  color: var(--primary-skyblue);
}

.blog-summary {
  font-size: 1rem;
  margin: 0 0 8px 0;
  color: var(--text-charcoal);
}

.blog-date {
  font-size: 0.9rem;
  color: #666;
}

.blog-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 30px; /* add space between cards */
}

.blog-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 24px; /* more inner breathing room */
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0px auto 40px;
}

.filter-btn {
  background: var(--neutral-offwhite);
  border: 2px solid var(--primary-skyblue);
  color: var(--text-charcoal);
  padding: 8px 16px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: var(--primary-skyblue-light);
}

.filter-btn.active {
  background: var(--primary-skyblue);
  color: #fff;
}

/* =============================
   Chat bubble style testimonials
   ============================= */
/* Testimonials Section */
.testimonials {
  padding: 60px 20px; /* more breathing room */
  background: var(--accent-yellow);
  text-align: center;
}

.testimonials h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--primary-skyblue);
  margin-bottom: 10px;
}

.testimonials .section-intro {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  color: var(--text-charcoal);
}

/* Chat bubble container */
.testimonial-grid {
  display: flex;
  flex-direction: column;
  gap: 40px; /* more spacing between bubbles */
  max-width: 800px;
  margin: 0 auto;
}

/* Chat bubble */
.testimonial-bubble {
  max-width: 70%;
  padding: 30px 25px; /* more padding inside */
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--primary-skyblue);
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  position: relative;
  font-style: italic;
}

/* Left/right alignment */
.testimonial-bubble.left {
  align-self: flex-start;
  border-top-left-radius: 6px;
}

.testimonial-bubble.right {
  align-self: flex-end;
  border-top-right-radius: 6px;
  background: var(--neutral-offwhite); /* subtle variation */
}

/* Little "chat tail" */
.testimonial-bubble.left::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 25px;
  border-width: 12px 12px 0;
  border-style: solid;
  border-color: var(--primary-skyblue) transparent transparent transparent;
}

.testimonial-bubble.right::after {
  content: "";
  position: absolute;
  bottom: -12px;
  right: 25px;
  border-width: 12px 12px 0;
  border-style: solid;
  border-color: var(--primary-skyblue) transparent transparent transparent;
}

/* User signature */
.testimonial-user {
  margin-top: 15px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--secondary-peach);
}

.testimonial-user a {
  color: var(--primary-skyblue-dark);
  text-decoration: none;
  margin-left: 6px;
}

.testimonial-user a:hover {
  text-decoration: underline;
}

/* Initial hidden state */
.testimonial-bubble {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* When visible */
.testimonial-bubble.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Left/right variants for subtle directional entry */
.testimonial-bubble.left {
  transform: translateX(-40px) scale(0.95);
}
.testimonial-bubble.right {
  transform: translateX(40px) scale(0.95);
}

.testimonial-bubble.left.show {
  transform: translateX(0) scale(1);
}
.testimonial-bubble.right.show {
  transform: translateX(0) scale(1);
}


/* =============================
   Mobile Phone Burger
   ============================= */
/* Default hidden on mobile */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

/* On small screens hide it until toggled */
@media (max-width: 955px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 15px;
    position: absolute;
    top: var(--nav-height);
    right: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 9999;
  }

  .nav-links.show {
    display: flex; /* shown when toggled */
  }
}

/* =============================
   FIX: Mobile clouds (iOS/Android)
   ============================= */
@media (max-width: 768px) {
  /* Keep hero visible behind navbar */
  .hero { overflow: visible; }

  /* Cloud canvas sits right under the nav */
  #background-wrap {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    overflow: hidden;
  }

  /* Smaller clouds on phones */
  .cloud { width: 120px; height: 45px; }
  .cloud:after { width: 40px; height: 40px; left: 20px; top: -20px; }
  .cloud:before { width: 70px; height: 70px; right: 20px; top: -35px; }

  /* Mobile-specific drift (force override of desktop animation) */
  @keyframes cloudDriftMobile {
    0%   { transform: translateX(-110vw) scale(var(--scale,1)); } /* start fully off left */
    100% { transform: translateX(110vw)  scale(var(--scale,1)); } /* exit fully right */
  }

  /* IMPORTANT: override desktop left anchor & animation */
  .x1, .x2, .x3, .x4, .x5, .x6, .x7, .x8 {
    position: absolute;
    left: -10vw;                   /* ensure off-screen start on small screens */
    will-change: transform;
    animation-name: cloudDriftMobile !important; /* beat any earlier rule */
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }

  /* Speeds + staggered delays so they appear immediately and arenâ€™t in sync */
/* Mobile clouds: appear soon, not too far along */
@media (max-width: 768px) {
  .x1 { animation-duration: 22s; animation-delay: -17s;  top: 10%; }
  .x2 { animation-duration: 30s; animation-delay: -10s;  top: 18%; }
  .x3 { animation-duration: 26s; animation-delay: -6s;  top: 26%; }
  .x4 { animation-duration: 28s; animation-delay: -22s;  top: 36%; }
  .x5 { animation-duration: 30s; animation-delay: -11s;  top: 46%; }
  .x6 { animation-duration: 26s; animation-delay: -19s;  top: 22%; }
  .x7 { animation-duration: 32s; animation-delay: -8s;  top: 54%; }
  .x8 { animation-duration: 34s; animation-delay: -12s;  top: 64%; }
}
}
/* =============================
   Forms Hub (Tabbed Forms)
   ============================= */
.form-hub {
  max-width: 1000px;
  margin: 48px auto;
  padding: 0 20px;
  position: relative;           /* sit above cloud canvas */
  z-index: 2;
}

/* Prevent 100%-width fields from pushing outside the panel */
.form-hub * { box-sizing: border-box; }
.form-hub form > * { min-width: 0; }

.form-hub__header {
  text-align: center;
  margin-bottom: 18px;
}
.form-hub__header h1 {
  font-family: var(--font-heading);
  margin: 0 0 8px 0;
}
.form-hub__header .hint {
  color: var(--text-charcoal);
  opacity: .8;
  margin: 0;
}

/* Tab bar */
.tabbar {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 6px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
  overflow-x: auto;
  scrollbar-width: thin;
}
.tabbar [role="tab"] {
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-charcoal);
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.tabbar [role="tab"]:hover { background: var(--primary-skyblue-light); }
.tabbar [role="tab"][aria-selected="true"] {
  background: var(--primary-skyblue);
  border-color: var(--primary-skyblue-dark);
  box-shadow: 0 4px 12px rgba(0,0,0,.08) inset;
}
.tabbar [role="tab"]:focus-visible {
  outline: 3px solid var(--primary-skyblue-dark);
  outline-offset: 2px;
}

.tabbar { justify-content: center; }

/* Panels */
.tabpanel {
  margin-top: 14px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  padding: 20px;
  width: 100%;                 /* guard against intrinsic overflow */
}
.tabpanel[hidden] { display: none; }

/* Scoped form look */
.form-hub form label {
  display: block;
  margin: 14px 0 6px;
  font-weight: 700;
  font-family: var(--font-heading);
}
.form-hub input[type="text"],
.form-hub input[type="email"],
.form-hub input[type="date"],
.form-hub input[type="url"],
.form-hub input[type="password"],
.form-hub select,
.form-hub textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fff;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-hub textarea { min-height: 180px; resize: vertical; }
.form-hub input:focus,
.form-hub select:focus,
.form-hub textarea:focus {
  border-color: var(--primary-skyblue-dark);
  box-shadow: 0 0 0 3px rgba(168,218,220,.35);
}

/* Grid helpers for tidy rows */
.form-row { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .form-row.two { grid-template-columns: repeat(2, 1fr); }
}

/* Actions: align + wrap nicely */
.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  flex-wrap: wrap;
}
.form-actions label { margin: 0; flex: 1 1 320px; }
.form-actions .btn-primary {
  background: var(--secondary-peach);
  color: #fff;
  flex: 0 0 auto;
}
.form-actions .btn-primary:hover {
  background: var(--accent-yellow);
  color: var(--text-charcoal);
}

/* Small screens */
@media (max-width: 560px) {
  .tabbar { gap: 6px; }
  .tabbar [role="tab"] { padding: 9px 12px; font-size: .95rem; }
  .tabpanel { padding: 14px; }
}
/* Brand-colored checkboxes (and radios if you add any later) */
.form-hub input[type="checkbox"],
.form-hub input[type="radio"] {
  accent-color: var(--secondary-peach);           /* Peach tick/filled state */
}

/* Optional: make the checkbox a touch larger and nicely aligned */
.form-actions input[type="checkbox"] {
  width: 18px;
  height: 18px;
  vertical-align: -2px; /* nudges it to align with text baseline */
}

/* Keyboard focus ring for accessibility */
.form-hub input[type="checkbox"]:focus-visible,
.form-hub input[type="radio"]:focus-visible {
  outline: 3px solid var(--primary-skyblue-dark);
  outline-offset: 2px;
  border-radius: 4px; /* so the outline has subtle rounded corners */
}

/* Disabled state (if you ever disable the consent box) */
.form-hub input[type="checkbox"]:disabled,
.form-hub input[type="radio"]:disabled {
  accent-color: #cfcfcf;
  cursor: not-allowed;
}
/* Force forms page hero to stack heading above the forms */
.hero.hero--forms{
  display: block;                 /* overrides .hero { display:flex } */
  min-height: 420px;
  padding: 64px 20px 48px;
}

/* Optional: uppercase heading to match your text exactly */
.hero.hero--forms .hero-content h1{
  text-transform: none;
  letter-spacing: normal;
}

/* Space between heading and the forms */
.hero.hero--forms .hero-content + .form-hub{
  margin-top: 24px;
}

/* Keep forms/cards readable over clouds */
.tabbar{ background: rgba(255,255,255,.96); }
.tabpanel{ background: rgba(255,255,255,.96); }
/* Keep content above the cloud layer */
.navbar{ position: relative; z-index: 6000; }
/* Keep content above the cloud layer */
.hero .hero-content, .hero .form-hub{ position: relative; z-index: 2; }

/* Forms page: make hero behave like a normal section */
.hero.hero--forms{
  display: block;                 /* override .hero's flex */
  height: auto;                   /* override 100vh */
  min-height: 420px;
  padding: 64px 20px 48px;        /* top/right/bottom spacing */
  overflow: visible;              /* allow content to extend naturally */
}

/* Clouds should still fill the hero area */
.hero.hero--forms #background-wrap{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* The forms sit just below the "AI TRAVEL QUOTE GENERATOR" heading */
.hero.hero--forms .hero-content + .form-hub{
  margin-top: 24px;
}

/* Extra breathing room below the full form (handles iOS safe area too) */
.hero.hero--forms .form-hub{
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 140px);
}

/* Keep cards readable on clouds */
.tabbar{ background: rgba(255,255,255,.96); }
.tabpanel{ background: rgba(255,255,255,.96); }

/* Small gap after each panel so the bottom doesnâ€™t feel cramped */
.tabpanel{ margin-bottom: 24px; }

/* Optional: prevent accidental sideways scroll from animated clouds */
html, body { overflow-x: hidden; }

/* Forms page primary button: remove native border + add custom focus ring */
.form-hub .btn-primary{
  border: none;                 /* remove border */
  outline: none;                /* remove default outline */
  -webkit-appearance: none;     /* normalize across Safari/iOS */
  appearance: none;
}

.form-hub .btn-primary:focus,
.form-hub .btn-primary:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(168,218,220,.55); /* brandy focus ring */
}

/* (Optional) keep the existing hover color you had */
.form-hub .btn-primary:hover{
  background: var(--accent-yellow);
  color: var(--text-charcoal);
}

/* Left-align the confirmation label and keep layout tidy */
.form-actions{
  display: flex;
  gap: 12px;
  align-items: flex-start;        /* was center */
  justify-content: space-between;
  flex-wrap: wrap;                /* lets it wrap on small screens */
}

.form-actions label{
  flex: 1 1 320px;                /* takes available space on the left */
  display: flex;                  /* lays out checkbox + text */
  align-items: flex-start;
  gap: 10px;
  text-align: left;               /* force left alignment */
  margin: 0;
}

.form-actions label input[type="checkbox"]{
  margin-top: 2px;                /* aligns tick with first line of text */
  accent-color: var(--secondary-peach);
}

.form-actions .btn-primary{
  flex: 0 0 auto;                 /* keep button snug to its content */
}

@media (max-width: 560px){
  .form-actions .btn-primary{ width: 100%; }  /* full-width button on phones */
}

.hero.hero--forms .form-hub{
  text-align: left;
}

/* Make sure form sections and labels don't re-inherit centering */
.form-hub .tabpanel,
.form-hub form,
.form-hub label{
  text-align: left;
}

/* Keep the tab buttons centered */
.form-hub .tabbar{
  justify-content: center; /* already set inline, but safe here too */
}

/* Tweak tab text height/size */
:root{
  --tab-font-size: 1rem;     /* overall text size */
  --tab-line-height: 1.2;    /* text box height; lower = tighter */
  --tab-pad-y: 8px;          /* top/bottom padding */
  --tab-pad-x: 16px;         /* left/right padding */
}

.tabbar [role="tab"]{
  font-size: var(--tab-font-size);
  line-height: var(--tab-line-height);
  padding: var(--tab-pad-y) var(--tab-pad-x);
}

/* Optional: make tabs a bit tighter on small screens */
@media (max-width: 560px){
  :root{
    --tab-font-size: .95rem;
    --tab-line-height: 1.15;
    --tab-pad-y: 7px;
    --tab-pad-x: 12px;
  }
}

/* keep the li aligned without changing navbar height */
.nav-links .signin-slot { display: flex; align-items: center; }

/* avatar-only chip */
.signin-face{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  line-height: 0;         /* prevents row height changes */
  cursor: pointer;
}
.signin-avatar-only{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  box-shadow: 0 0 0 2px #ffff, 0 0 0 4px var(--secondary-peach);
}

/* accessible focus */
.signin-face:focus-visible{
  outline: 2px solid var(--primary-skyblue-dark);
  outline-offset: 2px;
  border-radius: 9999px;
}
/* Hidden until login */
.requires-auth { display: none; }
.auth-on .requires-auth { display: list-item; }

/* invisible but occupies space */
.hero.hero--forms .page-spacer{
  height: clamp(1940px, 40vh, 560px); /* tweak to taste */
  visibility: hidden;                 /* hidden yet keeps layout space */
  /* alternatively:
  opacity: 0; pointer-events: none;
  */
}
/* ===== New Modal Styles ===== */
.modal__card {
    max-width: 400px;
    background: #FDFCFB;
    border: 2px solid #F6A6A1;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    text-align: center;
}
.modal__header {
    justify-content: flex-end; /* Pushes close button to the right */
    border-bottom: none;
    padding: 12px 12px 0;
}
.modal__body {
    padding: 10px 40px 20px;
}
.modal__logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 180px;
    margin-bottom: 25px;
}
.modal__card h2 {
    margin: 0 0 10px;
    color: #333;
}
.modal__card p {
    color: #555;
    line-height: 1.5;
}
.modal__row {
    justify-content: center;
}
.modal__footer {
    padding: 0 40px 40px;
    flex-direction: column; /* Stack buttons vertically */
    align-items: stretch;   /* Make buttons full-width */
    border-top: none;
}

/* =============================
   Receipt Card (Success Page)
   ============================= */
/* Receipt Card Emphasis */
.receipt-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.receipt-card h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--secondary-peach);
  margin-bottom: 20px;
}

.receipt-card p {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--text-charcoal);
  margin-bottom: 20px;
  line-height: 1.6;
}

.receipt-card p strong {
  font-weight: 700;
}

.receipt-card hr {
  border: none;
  border-top: 2px dashed var(--primary-skyblue);
  margin: 25px 0;
}

/* ================================
   BENEFITS â€” TICK LIST STYLE
   ================================ */

.benefits {
  background: var(--neutral-offwhite, #FDFCFB);
  padding: 100px 20px;
  text-align: left;
}

.benefits h2 {
  font-family: 'Poppins', sans-serif;
  color: var(--primary-sky, #A8DADC);
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 1rem;
}

.benefits .section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  color: var(--text-dark, #3A3A3A);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Tick List Layout */
.tick-list {
  list-style: none;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tick-list li {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  padding: 22px 28px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(168, 218, 220, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tick-list li:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tick-icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  color: var(--primary-sky, #A8DADC);
  background: var(--accent-yellow, #FFF1A6);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  box-shadow: 0 4px 10px rgba(255, 241, 166, 0.4);
}

.tick-content h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--secondary-peach, #F6A6A1);
  margin: 0 0 4px;
  font-size: 1.2rem;
}

.tick-content p {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text-dark, #3A3A3A);
  font-size: 1rem;
  line-
}

/* ================================
   INSTAGRAM POST FEED STYLE
   ================================ */

.insta-feed {
  background: var(--neutral-offwhite, #FDFCFB);
  padding: 100px 20px;
  text-align: center;
}

.insta-feed h2 {
  font-family: 'Poppins', sans-serif;
  color: var(--primary-sky, #A8DADC);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.insta-feed .section-intro {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text-dark, #3A3A3A);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* Feed column */
.insta-feed-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 440px;
  margin: 0 auto;
}

/* Individual post */
.insta-post {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  width: 100%;
  font-family: 'Nunito Sans', sans-serif;
}

/* Post header */
.post-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
}

.post-header .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.username {
  font-weight: 600;
  color: #3A3A3A;
}

.time {
  color: #999;
  font-size: 0.9rem;
}

/* Post image */
.post-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* Post actions */
.post-actions {
  font-size: 1.2rem;
  padding: 10px 16px 0;
  color: #3A3A3A;
}

/* Post caption */
.post-caption {
  padding: 0 16px 14px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #3A3A3A;
}

.post-caption strong {
  margin-right: 4px;
}

.hashtags {
  display: block;
  color: var(--primary-sky, #A8DADC);
  font-size: 0.9rem;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .insta-feed {
    padding: 70px 16px;
  }

  .insta-feed-column {
    gap: 28px;
  }
}

/* ================================
   SCROLLABLE INSTAGRAM FEED
   ================================ */

.insta-feed-scroll {
  max-height: 740px; /* approximate phone viewport */
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  overflow-y: auto;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  scrollbar-width: thin;
  scrollbar-color: var(--primary-sky, #A8DADC) #FDFCFB;
  padding: 10px 0;
}

/* Custom pastel scrollbar (for Webkit browsers) */
.insta-feed-scroll::-webkit-scrollbar {
  width: 6px;
}

.insta-feed-scroll::-webkit-scrollbar-track {
  background: #FDFCFB;
  border-radius: 10px;
}

.insta-feed-scroll::-webkit-scrollbar-thumb {
  background-color: var(--primary-sky, #A8DADC);
  border-radius: 3px;
}

/* Inner column stays stacked */
.insta-feed-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 10px;
}

/* Add a soft fade at the top/bottom of the scroll */
.insta-feed-scroll::before,
.insta-feed-scroll::after {
  content: "";
  position: sticky;
  left: 0;
  width: 100%;
  height: 30px;
  pointer-events: none;
  z-index: 2;
}

.insta-feed-scroll::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(253,252,251,0.9), transparent);
}

.insta-feed-scroll::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(253,252,251,0.9), transparent);
}

/* Responsive tweak */
@media (max-width: 768px) {
  .insta-feed-scroll {
    max-height: none;
    border-radius: 12px;
  }
}

/* ================================
   PHONE FRAME FIX (Notch & Scrollbar)
   ================================ */

.phone-frame {
  position: relative;
  background: #111;
  border-radius: 40px;
  width: 360px;
  height: 740px;
  margin: 0 auto;
  padding: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden; /* ✅ hides scrollbar clipping */
}

/* Move the notch down slightly and make sure it's centered */
.camera-notch {
  position: absolute;
  top: 18px; /* ⬇️ lowered from 10px for balance */
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 20px;
  background: #000;
  border-radius: 10px;
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.1);
  z-index: 5;
}

/* Inner camera circle (centered properly inside the notch) */
.camera-notch::before {
  content: "";
  position: absolute;
  top: 50%; /* ✅ center vertically */
  left: 50%; /* ✅ center horizontally */
  transform: translate(-50%, -50%); /* ✅ perfect centering */
  width: 10px;
  height: 10px;
  background: radial-gradient(circle at 30% 30%, #2a2a2a 0%, #0a0a0a 70%);;
  border-radius: 50%;
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.25);
}

/* Scrollable feed stays behind frame edges */
.phone-frame .insta-feed-scroll {
  flex: 1;
  width: 100%;
  background: #fff;
  border-radius: 28px;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-sky, #A8DADC) transparent;
  z-index: 1;
  position: relative;
  clip-path: inset(0 round 28px); /* ✅ keeps scrollbar inside curved corners */
}

/* Custom scroll style (subtle) */
.phone-frame .insta-feed-scroll::-webkit-scrollbar {
  width: 6px;
}
.phone-frame .insta-feed-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.phone-frame .insta-feed-scroll::-webkit-scrollbar-thumb {
  background-color: var(--primary-sky, #A8DADC);
  border-radius: 3px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .phone-frame {
    width: 320px;
    height: 640px;
  }
  .camera-notch {
    width: 90px;
    height: 22px;
    top: 20px;
  }
}



/* ================================
   "More Info" Button Style
   ================================ */

.btn-more {
  display: inline-block;
  margin-top: 16px;
  background-color: var(--primary-sky, #A8DADC);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(168, 218, 220, 0.35);
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.btn-more:hover {
  background-color: #90C7CC;
  box-shadow: 0 6px 14px rgba(168, 218, 220, 0.45);
  transform: translateY(-2px);
}

.btn-more:active {
  transform: translateY(0);
}

/* === Socials Page === */
.social-actions-section {
  text-align: center;
  padding: 80px 20px;
}
.social-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.small-note {
  color: #777;
  font-size: 0.95rem;
  margin-top: 10px;
}
.how-it-works {
  padding: 90px 20px;
  text-align: center;
}
.how-it-works .timeline {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 40px;
}
.how-it-works .step {
  background: #fff;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.how-it-works .step span {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}
.support-section, .cta-section {
  text-align: center;
  padding: 90px 20px;
}
.support-links {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}
.support-link {
  display: block;
  margin: 10px auto;
  color: var(--primary-sky, #A8DADC);
  text-decoration: none;
  font-weight: 600;
}
.support-link:hover {
  text-decoration: underline;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

/* Footer */
footer {
    /* REMOVE position + bottom + left */
    /* position: fixed; */
    /* bottom: 0; */
    /* left: 0; */

    width: 100%;
    z-index: 900;

    background: transparent;
    backdrop-filter: none;

    color: var(--text-charcoal);
    text-align: center;
    padding: 20px 10px;
    font-size: 0.9rem;
    font-family: var(--font-body);
}

footer a {
    color: var(--text-charcoal);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--secondary-peach);
}


/* IMPORTANT: When using position: fixed for the footer, 
   you must add padding to the bottom of the <body> 
   to prevent content from being hidden behind the fixed footer.
   The footer height is roughly 60px (20px top padding + 20px bottom padding + text height).
*/
body {
    /* Ensure all body content clears the fixed footer */
    padding-bottom: 0px; /* Use a value slightly larger than the footer height (e.g., 70px) */
    /* You must apply this rule to the body definition in your styles.css */
}

/* Keep the linked styles the same */
footer a {
 color: var(--text-charcoal);
font-weight: 600;
 text-decoration: none;
 transition: color 0.3s ease;
}

footer a:hover {
 color: var(--secondary-peach);
}

footer .parent-company {
 margin-top: 6px;
 font-size: 0.85rem;
 opacity: 0.9;
}

/* Keep the linked styles the same */
footer a {
 color: var(--text-charcoal);
 font-weight: 600;
 text-decoration: none;
 transition: color 0.3s ease;
}

footer a:hover {
 color: var(--secondary-peach);
}

footer .parent-company {
 margin-top: 6px;
 font-size: 0.85rem;
 opacity: 0.9;
}

/* =============================
   Global Hyperlink Style
   ============================= */
a {
    /* Base style: Peach and Bold */
    color: var(--secondary-peach);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    /* Hover style: Primary Sky Blue */
    color: var(--primary-skyblue); /* CHANGED FROM --accent-yellow */
    text-decoration: underline; 
}
.sheet-container {
    width: 100%;
    max-width: 900px;
    margin: 1.5rem auto;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    overflow: hidden; /* Clips the iframe corners */
}

.sheet-container iframe {
    width: 100%;
    height: 70vh; /* 70% of the viewport height */
    min-height: 600px; /* A good minimum height */
    border: none;
    display: block; /* Removes extra bottom spacing */
}

/* Hide all auth-required items by default */
.requires-auth {
  display: none !important;
}

/* Show them only when the 'auth-on' class is present on the body */
body.auth-on .requires-auth {
  display: list-item !important;
}
