/* ============================================================
   JEVON TOURS JA — Main Stylesheet
   Theme: Tropical Sunset — Light, Vibrant, Energetic
   Fonts: Righteous (display) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Righteous&family=DM+Sans:wght@400;500;600;700;800&display=swap');

/* ---- VARIABLES ---- */
:root {
  /* Brand Colors — pulled from logo */
  --yellow:      #FFE600;
  --yellow-dark: #F5C800;
  --green:       #2DB526;
  --green-neon:  #39FF14;
  --orange:      #FF6B00;
  --sunset-mid:  #FF3D6B;
  --purple:      #C850C0;
  --sky:         #4FC3F7;
  --sky-dark:    #0288D1;

  /* UI Palette */
  --white:       #FFFFFF;
  --off-white:   #F8FFF5;
  --light-bg:    #F0FAF0;
  --card-bg:     #FFFFFF;
  --border:      rgba(0,0,0,0.08);
  --text:        #111111;
  --text-mid:    #333333;
  --text-soft:   #666666;
  --text-muted:  #999999;

  /* Gradients */
  --sunset-grad: linear-gradient(135deg, #FFE600 0%, #FF6B00 40%, #FF3D6B 70%, #C850C0 100%);
  --green-grad:  linear-gradient(135deg, #2DB526 0%, #39FF14 100%);
  --card-shadow: 0 4px 24px rgba(0,0,0,0.08);
  --card-hover:  0 12px 40px rgba(0,0,0,0.14);

  /* Layout */
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --transition:  all 0.25s ease;
  --nav-h:       72px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- CONTAINER ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- TYPOGRAPHY ---- */
.display-font { font-family: 'Righteous', cursive; }
h1,h2,h3 { font-family: 'Righteous', cursive; line-height: 1.1; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: 0.9rem; cursor: pointer; border: none;
  transition: var(--transition); white-space: nowrap; text-decoration: none;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--yellow); color: var(--text);
  box-shadow: 0 4px 16px rgba(255,230,0,0.4);
}
.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,230,0,0.5); }

.btn-green {
  background: var(--green); color: white;
  box-shadow: 0 4px 16px rgba(45,181,38,0.35);
}
.btn-green:hover { background: #259e1f; transform: translateY(-2px); }

.btn-whatsapp {
  background: #25D366; color: white;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { background: #20ba59; transform: translateY(-2px); }

.btn-outline {
  background: transparent; color: var(--text);
  border: 2px solid var(--text);
}
.btn-outline:hover { background: var(--text); color: var(--white); }

.btn-outline-white {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: white; color: var(--text); }

.btn-sm { padding: 9px 18px; font-size: 0.82rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ---- TAGS ---- */
.tag {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: 50px; font-size: 0.72rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.tag-yellow { background: var(--yellow); color: var(--text); }
.tag-green  { background: var(--green); color: white; }
.tag-orange { background: var(--orange); color: white; }
.tag-sky    { background: var(--sky); color: white; }
.tag-white  { background: rgba(255,255,255,0.9); color: var(--text); }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.0);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
}
.nav-inner {
  display: flex; align-items: center; height: var(--nav-h);
  max-width: 1200px; margin: 0 auto; padding: 0 24px; gap: 32px;
}
.nav-logo img { height: 52px; width: auto; }
.nav-links {
  display: flex; gap: 4px; align-items: center; flex: 1;
}
.nav-links a {
  padding: 8px 14px; border-radius: 50px; font-weight: 600;
  font-size: 0.875rem; color: var(--text-mid); transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  background: var(--yellow); color: var(--text);
}
.nav-cta { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav-phone { font-weight: 700; font-size: 0.85rem; color: var(--text-mid); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999;
  background: white; transform: translateX(-100%); transition: transform 0.3s ease;
  display: flex; flex-direction: column; padding: 100px 32px 40px;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 40px; }
.mobile-nav-links a {
  padding: 14px 20px; border-radius: var(--radius); font-weight: 700;
  font-size: 1.05rem; color: var(--text); transition: var(--transition);
  border-left: 3px solid transparent;
}
.mobile-nav-links a:hover { background: var(--light-bg); border-left-color: var(--yellow); }
.mobile-cta { display: flex; flex-direction: column; gap: 12px; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: linear-gradient(160deg, #FFF9E6 0%, #FFF0D0 40%, #FFE5E5 70%, #F0E5FF 100%);
  padding-top: var(--nav-h);
}
.hero-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 15% 85%, rgba(255,230,0,0.25) 0%, transparent 50%),
    radial-gradient(circle at 85% 15%, rgba(200,80,192,0.12) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(79,195,247,0.08) 0%, transparent 70%);
}
.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0; line-height: 0;
}
.hero-wave svg { display: block; width: 100%; }
.hero-inner {
  position: relative; z-index: 2; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; padding: 60px 0 80px;
}
.hero-left { }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; border-radius: 50px; padding: 6px 16px 6px 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08); margin-bottom: 24px;
  font-size: 0.82rem; font-weight: 700; color: var(--text-mid);
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green { 0%,100%{box-shadow:0 0 0 0 rgba(45,181,38,0.4)} 50%{box-shadow:0 0 0 6px rgba(45,181,38,0)} }
.hero-title {
  font-family: 'Righteous', cursive;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.0; margin-bottom: 20px; color: var(--text);
}
.hero-title .highlight {
  display: inline-block;
  background: var(--sunset-grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-title .underline-yellow {
  position: relative; display: inline-block;
}
.hero-title .underline-yellow::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 6px; background: var(--yellow); border-radius: 3px; z-index: -1;
}
.hero-sub {
  font-size: 1.05rem; color: var(--text-soft); line-height: 1.7;
  max-width: 480px; margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex; gap: 28px; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--border);
}
.hero-trust-item { text-align: center; }
.hero-trust-num {
  font-family: 'Righteous', cursive; font-size: 1.8rem;
  background: var(--sunset-grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-trust-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }

/* Hero right — logo + floating cards */
.hero-right { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-logo-wrap {
  position: relative; z-index: 2;
  filter: drop-shadow(0 20px 60px rgba(255,107,0,0.25));
  animation: float 4s ease-in-out infinite;
}
.hero-logo-wrap img { width: 380px; max-width: 100%; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

/* Floating stat cards */
.float-card {
  position: absolute; background: white; border-radius: var(--radius-lg);
  padding: 14px 20px; box-shadow: var(--card-shadow); z-index: 3;
  display: flex; align-items: center; gap: 12px; white-space: nowrap;
  animation: float-card 5s ease-in-out infinite;
}
.float-card:nth-child(2) { animation-delay: -1.5s; }
.float-card:nth-child(3) { animation-delay: -3s; }
@keyframes float-card { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.float-card-icon { font-size: 1.8rem; }
.float-card-text .num { font-family:'Righteous',cursive; font-size:1.1rem; color:var(--text); }
.float-card-text .lbl { font-size:0.72rem; color:var(--text-muted); }
.fc-1 { top: 5%; right: -5%; }
.fc-2 { bottom: 20%; left: -5%; }
.fc-3 { top: 50%; right: -8%; }

/* ---- BOOKING BAR ---- */
.booking-bar {
  background: white; box-shadow: 0 -4px 0 var(--yellow), 0 8px 40px rgba(0,0,0,0.1);
  padding: 0; position: relative; z-index: 10;
}
.booking-bar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.booking-tabs {
  display: flex; gap: 0; border-bottom: 2px solid var(--border);
}
.booking-tab {
  padding: 16px 24px; font-weight: 700; font-size: 0.875rem; cursor: pointer;
  border: none; background: transparent; color: var(--text-muted);
  border-bottom: 3px solid transparent; margin-bottom: -2px; transition: var(--transition);
}
.booking-tab.active { color: var(--text); border-bottom-color: var(--yellow); }
.booking-tab:hover { color: var(--text); }
.booking-form-panel {
  padding: 20px 0; display: flex; gap: 16px; flex-wrap: wrap; align-items: flex-end;
}
.form-group { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 120px; }
.form-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.form-control {
  background: var(--light-bg); border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 11px 14px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  font-weight: 600; color: var(--text); outline: none; transition: var(--transition); width: 100%;
}
.form-control:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255,230,0,0.2); }
textarea.form-control { resize: vertical; min-height: 110px; }

/* ---- SECTIONS ---- */
.section { padding: 96px 0; }
.section-sm { padding: 60px 0; }
.section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px; color: var(--orange);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Righteous', cursive; font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--text); margin-bottom: 16px; line-height: 1.1;
}
.section-sub { font-size: 1.05rem; color: var(--text-soft); max-width: 560px; margin-bottom: 48px; }

/* gradient text utility */
.text-sunset {
  background: var(--sunset-grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.text-green { color: var(--green); }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ---- TOUR CARDS ---- */
.tours-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 24px;
}
.tour-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--card-shadow); transition: var(--transition); cursor: pointer;
  border: 1.5px solid var(--border);
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--card-hover); border-color: var(--yellow); }
.tour-card-img { position: relative; height: 210px; overflow: hidden; background: var(--light-bg); }
.tour-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.tour-card:hover .tour-card-img img { transform: scale(1.06); }
.tour-card-tags { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; flex-wrap: wrap; }
.tour-card-body { padding: 20px; }
.tour-card-rating { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 700; color: var(--orange); margin-bottom: 8px; }
.stars { color: var(--yellow-dark); letter-spacing: -1px; }
.tour-card-title { font-family: 'Righteous', cursive; font-size: 1.1rem; color: var(--text); margin-bottom: 10px; line-height: 1.2; }
.tour-card-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.tour-meta-item { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }
.tour-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); }
.tour-price .from { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.tour-price .amount { font-family: 'Righteous', cursive; font-size: 1.6rem; color: var(--text); }
.tour-price .per { font-size: 0.75rem; color: var(--text-muted); }

/* ---- FEATURE STRIP ---- */
.feature-strip {
  background: var(--yellow); padding: 20px 0;
  border-top: 3px solid var(--green); border-bottom: 3px solid var(--green);
  overflow: hidden;
}
.feature-strip-inner {
  display: flex; gap: 48px; animation: scroll-strip 20s linear infinite;
  width: max-content;
}
@keyframes scroll-strip { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.strip-item { display: flex; align-items: center; gap: 10px; font-family: 'Righteous', cursive; font-size: 0.95rem; color: var(--text); white-space: nowrap; }
.strip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* ---- SERVICE CARDS ---- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.service-card {
  background: white; border-radius: var(--radius-lg); padding: 28px;
  border: 1.5px solid var(--border); transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--sunset-grad);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--card-hover); border-color: var(--yellow); }
.service-card-icon { font-size: 2.5rem; margin-bottom: 16px; }
.service-card-title { font-family: 'Righteous', cursive; font-size: 1.1rem; margin-bottom: 10px; }
.service-card-desc { font-size: 0.875rem; color: var(--text-soft); line-height: 1.6; margin-bottom: 16px; }

/* ---- WHY CARDS ---- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
.why-card {
  background: white; border-radius: var(--radius-lg); padding: 28px;
  border: 1.5px solid var(--border); transition: var(--transition); text-align: center;
}
.why-card:hover { border-color: var(--yellow); box-shadow: var(--card-shadow); }
.why-icon { font-size: 2.5rem; margin-bottom: 16px; }
.why-title { font-family: 'Righteous', cursive; font-size: 1rem; margin-bottom: 10px; }
.why-desc { font-size: 0.875rem; color: var(--text-soft); line-height: 1.6; }

/* ---- TRANSFER ROUTES ---- */
.routes-section { background: white; border-radius: var(--radius-xl); padding: 48px; box-shadow: var(--card-shadow); border: 1.5px solid var(--border); }
.transfer-routes { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; margin-top: 28px; }
.transfer-route {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--light-bg); border-radius: var(--radius); padding: 16px 20px;
  cursor: pointer; transition: var(--transition); border: 1.5px solid var(--border);
}
.transfer-route:hover { background: var(--yellow); border-color: var(--yellow-dark); transform: translateX(4px); }
.route-info { display: flex; flex-direction: column; }
.route-from { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.route-name { font-family: 'Righteous', cursive; font-size: 1rem; color: var(--text); }
.route-time { font-size: 0.78rem; color: var(--text-muted); }
.route-price { font-family: 'Righteous', cursive; font-size: 1.4rem; color: var(--green); }

/* ---- TESTIMONIALS ---- */
.testimonials-track { display: flex; gap: 24px; animation: scroll-test 30s linear infinite; width: max-content; }
.testimonials-track:hover { animation-play-state: paused; }
@keyframes scroll-test { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.testimonials-wrap { overflow: hidden; }
.testimonial-card {
  background: white; border-radius: var(--radius-lg); padding: 28px;
  width: 320px; flex-shrink: 0; box-shadow: var(--card-shadow);
  border: 1.5px solid var(--border);
}
.test-stars { color: var(--yellow-dark); font-size: 1rem; margin-bottom: 12px; letter-spacing: -1px; }
.test-text { font-size: 0.9rem; color: var(--text-soft); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--sunset-grad); display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; font-size: 1rem; flex-shrink: 0; }
.test-name { font-weight: 700; font-size: 0.875rem; }
.test-loc { font-size: 0.75rem; color: var(--text-muted); }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--text); border-radius: var(--radius-xl);
  padding: 64px 48px; position: relative; overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: var(--yellow); opacity: 0.15;
}
.cta-banner::after {
  content: ''; position: absolute; bottom: -40px; left: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: var(--green); opacity: 0.12;
}
.cta-banner-title { font-family: 'Righteous', cursive; font-size: clamp(2rem, 4vw, 3rem); color: white; margin-bottom: 16px; position: relative; z-index: 1; }
.cta-banner-sub { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 32px; position: relative; z-index: 1; }
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ---- FOOTER ---- */
.footer { background: var(--text); color: rgba(255,255,255,0.8); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 70px; filter: brightness(0) invert(1); }
.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
  transition: var(--transition); cursor: pointer;
}
.social-btn:hover { background: var(--yellow); color: var(--text); }
.footer-heading { font-family: 'Righteous', cursive; font-size: 0.9rem; color: white; letter-spacing: 1px; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--yellow); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 10px; }
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-copy a { color: var(--yellow); }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-badge { font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4); text-decoration: none;
  transition: var(--transition); animation: wa-pulse 3s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.5); }
@keyframes wa-pulse { 0%,100%{box-shadow:0 6px 24px rgba(37,211,102,0.4)} 50%{box-shadow:0 6px 32px rgba(37,211,102,0.7)} }
.whatsapp-tooltip {
  position: absolute; right: 68px; background: var(--text); color: white;
  padding: 6px 14px; border-radius: 50px; font-size: 0.78rem; font-weight: 700;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ---- REVEAL ANIMATIONS ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- SKELETON ---- */
.skeleton { background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: var(--radius); }
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding: calc(var(--nav-h) + 60px) 0 80px;
  background: linear-gradient(135deg, #FFF9E6 0%, #FFF0D0 50%, #FFE0F0 100%);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: var(--sunset-grad);
}
.page-hero .breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 16px; }
.page-hero .breadcrumb a { color: var(--orange); font-weight: 700; }
.page-hero h1 { font-family: 'Righteous', cursive; font-size: clamp(2.5rem, 6vw, 5rem); color: var(--text); margin-bottom: 16px; }

/* ---- GRIDS ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { gap: 40px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .hero { min-height: auto; padding-top: var(--nav-h); }
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 40px 0 60px; gap: 32px; }
  .hero-right { display: none; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; flex-wrap: wrap; gap: 20px; }
  .hero-eyebrow { margin: 0 auto 20px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; }
  .routes-section { padding: 24px 20px; }
  .float-card { display: none; }
  .booking-form-panel { flex-direction: column; gap: 12px; }
  .booking-form-panel .form-group { flex: 1 1 100%; min-width: 100%; }
  .booking-form-panel .btn { width: 100%; justify-content: center; }
  .booking-form-panel a.btn { text-align: center; }
  .booking-tab { padding: 12px 14px; font-size: 0.78rem; flex: 1; text-align: center; }
  .booking-tabs { border-bottom: 2px solid var(--border); }
  .booking-bar-inner { padding: 0 16px; }
  .section { padding: 60px 0; }
  .section-sm { padding: 40px 0; }
  .tours-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .transfer-routes { grid-template-columns: 1fr; }
  .footer-socials { justify-content: flex-start; }
  .feature-strip { display: none; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.4rem; }
  .btn-lg { padding: 14px 22px; font-size: 0.9rem; }
  .hero-trust { gap: 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .cta-banner-actions .btn { width: 100%; justify-content: center; }
  .testimonials-wrap { display: none; }
}
