/* ============================================================
   style.css — World Light Mission Travel
   ============================================================
   COLOR PALETTE (Safari Tourism Theme):
   --green:      #2d6a4f   (deep safari green)
   --light-green:#52b788   (leaf green)
   --orange:     #f4a261   (sunset orange)
   --sand:       #fdf3e3   (warm sand beige)
   --dark:       #1a3a2a   (dark forest)
   ============================================================ */

/* ── Root Variables ─────────────────────────────────────────── */
:root {
  --green: #2d6a4f;
  --light-green: #52b788;
  --orange: #f4a261;
  --sand: #fdf3e3;
  --dark: #1a3a2a;
  --white: #ffffff;
  --text: #333333;
  --text-muted: #6c757d;
  --radius: 16px;
  --shadow: 0 10px 40px rgba(0,0,0,0.1);
  --transition: 0.3s ease;
}

/* ── Base Styles ─────────────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  overflow-x: hidden;
  padding-top: 76px; /* account for fixed navbar */
}
h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; }

/* ── NAVBAR ──────────────────────────────────────────────────── */
#mainNav {
  background: rgba(26,58,42,0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  transition: var(--transition);
  border-bottom: 2.5px solid rgba(26,58,42,0.95);
}
#mainNav.scrolled {
  background: rgba(26,58,42,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.navbar-brand { display: flex; align-items: center; gap: 10px; }
.brand-icon { font-size: 1.8rem; }
.brand-text { font-family: 'Playfair Display', serif; font-size: 13px; line-height: 1.2; color: #fff; font-weight: 700; }
.brand-text small { color: rgba(255,255,255,0.7); font-size: 11px; }
.navbar-nav .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-size: 14px; font-weight: 600; letter-spacing: 0.5px;
  padding: 8px 15px !important; border-radius: 8px;
}
.navbar-nav .nav-link:hover { color: #fff !important; background: rgba(255,255,255,0.1); }

/* ── SECTION HELPERS ─────────────────────────────────────────── */
.section-pad { padding: 90px 0; }
.section-header { max-width: 640px; margin: 0 auto; }
.section-tag {
  display: inline-block; background: var(--sand); color: var(--green);
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; padding: 6px 16px; border-radius: 20px;
  border: 1px solid rgba(45,106,79,0.2); margin-bottom: 12px;
}
.section-tag.light { background: rgba(255,255,255,0.2); color: #fff; border-color: rgba(255,255,255,0.3); }
.section-title { font-size: 2.2rem; font-weight: 900; color: var(--dark); margin-bottom: 15px; }
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; }

/* ── HERO SECTION ────────────────────────────────────────────── */
.hero-section {
  position: relative;
  height: 94vh;
  max-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* SLIDESHOW CONTAINER */
.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-caption {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  z-index: 3;
}

/* SLIDE */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

/* ACTIVE SLIDE */
.slide.active {
  opacity: 1;
  animation: kenburns 18s ease-in-out forwards;
}

/* CINEMATIC ZOOM */
@keyframes kenburns {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.06); }
  100% { transform: scale(1.1); }
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.5) 60%,
    rgba(0,0,0,0.65) 100%
  );
  z-index: 1;
}

/* TEXT ABOVE SLIDES */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 0 40px 0;
}

/* Typography */
.hero-tagline {
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.hero-title {
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
}
.hero-buttons .btn {
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
}

/* Badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.badge-item {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 7px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  animation: bounce 2s infinite;
  z-index: 3;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* Animations */
.animate-fade-up {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 0.8s forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-section {
    height: 100svh; /* uses small viewport height on mobile, avoids browser chrome */
  }
  .hero-title { font-size: 1.9rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .badge-item { font-size: 11px; padding: 6px 12px; }
}

/* ── STATS STRIP ─────────────────────────────────────────────── */
.stats-strip { background: var(--dark); }
.stat-item { color: #fff; }
.stat-number { font-family: 'Playfair Display',serif; font-size: 2.5rem; font-weight: 900; color: var(--orange); margin: 0; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.7); margin: 0; }

/* ── TOUR CARDS ──────────────────────────────────────────────── */
.tour-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: var(--transition);
  display: flex; flex-direction: column;
}
.tour-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
.tour-card-img { position: relative; height: 220px; overflow: hidden; }
.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.08); }
.tour-placeholder-img {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--green), var(--light-green));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
}
.tour-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--dark); color: #fff;
  padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600;
}
.tour-price-tag {
  position: absolute; top: 12px; right: 12px;
  background: var(--orange); color: #fff;
  padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 700;
}
.tour-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.tour-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.tour-desc { color: var(--text-muted); font-size: 14px; line-height: 1.6; flex: 1; margin-bottom: 16px; }
.tour-highlights-mini li { font-size: 13px; color: var(--text-muted); margin-bottom: 4px; }
.tour-card-footer { display: flex; justify-content: space-between; gap: 8px; margin-top: auto; }
.tour-card-footer .btn { border-radius: 8px; font-size: 13px; font-weight: 600; }

/* ── SAFARI HIGHLIGHTS REDESIGN ─────────────────────────────── */
.safari-highlights {
  background: linear-gradient(160deg, #1a3a2a 0%, #2d6a4f 50%, #1a3a2a 100%);
  position: relative;
  overflow: hidden;
}
.safari-highlights::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.text-white-75 { color: rgba(255,255,255,0.75) !important; }

/* Fact Numbers */
.kenya-fact-number {
  padding: 30px 15px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  background: rgba(255,255,255,0.07);
  transition: var(--transition);
}
.kenya-fact-number:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.fact-big {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
}
.fact-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* Wildlife Cards */
.wildlife-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
}
.wildlife-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-6px);
  border-color: rgba(244,162,97,0.4);
}
.wildlife-card-header {
  padding: 30px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
}
.wildlife-icon-wrap {
  font-size: 3.5rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}
.wildlife-card-body {
  padding: 22px;
}
.wildlife-card-body h5 {
  color: var(--orange);
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.wildlife-card-body p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.wildlife-tag {
  display: inline-block;
  background: rgba(244,162,97,0.2);
  border: 1px solid rgba(244,162,97,0.3);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* Did You Know Strip */
.did-you-know-strip {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 35px;
  margin-top: 20px;
}
.dyk-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.dyk-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 6px;
}
.dyk-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin: 0;
}
.dyk-item p strong {
  color: #fff;
}

/* ── WHY NAIROBI ─────────────────────────────────────────────── */
.why-item { display: flex; gap: 15px; margin-bottom: 24px; }
.why-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: var(--sand); color: var(--green);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.why-item h6 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.why-item p { font-size: 13px; color: var(--text-muted); margin: 0; }
.why-image-grid { display: flex; gap: 12px; }
.why-img-main { flex: 2; }
.why-img-small { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.why-placeholder {
  width: 100%; border-radius: 16px;
  background: linear-gradient(135deg, var(--green), var(--light-green));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); padding: 60px 20px;
}
.why-placeholder.small { padding: 30px 15px; flex: 1; }
.why-placeholder p { font-size: 12px; margin: 8px 0 0; }

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testimonial-card {
  background: #fff; border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  border-bottom: 4px solid var(--green);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-text { font-size: 15px; line-height: 1.7; color: var(--text); font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; flex-shrink: 0;
}

/* ── CTA SECTION ─────────────────────────────────────────────── */
.cta-section {
  position: relative; padding: 100px 0;
  background: linear-gradient(135deg, var(--dark), var(--green));
}
.cta-overlay {
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="80" r="3" fill="rgba(255,255,255,0.03)"/></svg>');
}

/* ── PAGE HERO ───────────────────────────────────────────────── */
.page-hero {
  position: relative; min-height: 45vh;
  height: 450px;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--dark), var(--green));
  margin-top: -76px; padding-top: 130px; padding-bottom: 60px;
}
.page-hero-overlay { 
  position: absolute; 
  inset: 0; 
  background: rgba(0,0,0,0.3); 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }
.tour-detail-hero { min-height: 50vh; }
.tour-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.5);
}
.tour-meta-strip { display: flex; flex-wrap: wrap; gap: 12px; }
.tour-meta-badge {
  background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3);
  color: #fff; padding: 6px 16px; border-radius: 20px; font-size: 14px; font-weight: 600;
}
.tour-meta-badge.price { background: var(--orange); border-color: var(--orange); }

/* ── TOUR DETAIL PAGE ────────────────────────────────────────── */
.content-block { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid #f0f0f0; }
.content-block h3 { font-size: 1.4rem; margin-bottom: 20px; color: var(--dark); }
.highlight-item {
  background: #f8fffe; border: 1px solid #e0f0ea;
  border-radius: 10px; padding: 10px 15px;
  font-size: 14px; color: var(--text);
}
.highlight-item.exclude { background: #fff8f8; border-color: #fde; }
.itinerary-timeline { position: relative; padding-left: 30px; }
.itinerary-timeline::before {
  content: ''; position: absolute; left: 8px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--green), var(--light-green));
}
.itinerary-step { position: relative; padding: 12px 0; }
.step-dot {
  position: absolute; left: -26px; top: 18px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--green); border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--green);
}
.step-content { font-size: 14px; color: var(--text); line-height: 1.5; }
.info-box { background: #e8f5e9; border-radius: 12px; padding: 20px; border: none; }
.info-box h5 { color: var(--green); }

/* ── BOOKING WIDGET ──────────────────────────────────────────── */
.booking-widget {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden;
}
.widget-header { background: var(--dark); color: #fff; padding: 25px; }
.widget-header h4 { font-size: 1.8rem; color: var(--orange); margin: 0; }
.widget-header small { color: rgba(255,255,255,0.6); }
.widget-body { padding: 25px; }
.wi-item { display: flex; gap: 12px; margin-bottom: 15px; font-size: 14px; }
.wi-item i { width: 18px; flex-shrink: 0; margin-top: 2px; }
.trust-badges { display: flex; justify-content: space-around; padding-top: 5px; }
.tb-item { font-size: 11px; color: var(--text-muted); }

/* Pickup list */
.pickup-list { border-radius: 12px; overflow: hidden; }
.pickup-item {
  display: flex; align-items: center; gap: 15px; padding: 16px;
  border-bottom: 1px solid #f5f5f5; font-size: 14px;
}
.pickup-item:last-child { border-bottom: none; }

/* ── BOOKING FORM ────────────────────────────────────────────── */
.booking-form-card {
  background: #fff; border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow);
}
.booking-info-sidebar .steps-list { }
.step-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; }
.step-num {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--green); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
}

/* ── GALLERY ─────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative; border-radius: 12px; overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5); display: flex;
  flex-direction: column; align-items: center; justify-content: center;
  color: #fff; opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.lightbox-modal {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.95); z-index: 9999;
  align-items: center; justify-content: center; flex-direction: column;
  padding: 20px;
}
.lightbox-modal img { max-height: 80vh; max-width: 90vw; border-radius: 12px; }
.lightbox-modal p { color: #fff; margin-top: 12px; }
.lightbox-close {
  position: absolute; top: 20px; right: 30px;
  color: #fff; font-size: 40px; cursor: pointer;
}

/* ── STAR RATING INPUT ───────────────────────────────────────── */
.star-rating-input { display: flex; flex-direction: row-reverse; gap: 4px; justify-content: flex-end; }
.star-rating-input input { display: none; }
.star-rating-input label { font-size: 24px; color: #ccc; cursor: pointer; transition: var(--transition); }
.star-rating-input input:checked ~ label,
.star-rating-input label:hover,
.star-rating-input label:hover ~ label { color: #f4a261; }

/* ── CONTACT PAGE ────────────────────────────────────────────── */
.contact-info-list { }
.ci-item { display: flex; gap: 15px; margin-bottom: 24px; align-items: flex-start; }
.ci-icon {
  width: 44px; height: 44px; background: var(--sand); color: var(--green);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.map-container { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }

/* ── ABOUT PAGE ──────────────────────────────────────────────── */
.value-card 
{ background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); 
  padding: 40px 30px;
  border-right: 1px solid #f0f0f0;
  border-top: 4px solid transparent;
  transition: var(--transition);
  height: 100%;
}
.value-card:hover {
  background: var(--sand);
 
  transform: translateY(-4px);
}
.value-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--sand); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin: 0 auto 16px;
}
.team-card { background: #fff; border-radius: var(--radius); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.team-avatar {
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--light-green));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 700;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer-section { background: #111c16; color: rgba(255,255,255,0.7); }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #fff; font-weight: 700; }
.footer-heading { color: rgba(255,255,255,0.5); font-size: 11px; text-transform: uppercase; letter-spacing: 2px; font-family: 'Lato', sans-serif; }
.footer-links li, .footer-contact li { margin-bottom: 8px; font-size: 14px; }
.footer-links a { color: rgba(255,255,255,0.6); }
.footer-links a:hover { color: var(--orange); }
.footer-contact li { display: flex; align-items: flex-start; gap: 8px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: var(--transition);
}
.social-link:hover { background: var(--green); color: #fff; }

/* ── WHATSAPP BUTTON ─────────────────────────────────────────── */
.whatsapp-btn {
  position: fixed; bottom: 30px; right: 30px; z-index: 9998;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-btn:hover { transform: scale(1.15); color: #fff; background: #1ebe5d; }
.whatsapp-tooltip {
  position: absolute; right: 70px; background: #25d366; color: #fff;
  padding: 6px 14px; border-radius: 8px; font-size: 13px; font-weight: 600;
  white-space: nowrap; opacity: 0; transform: translateX(8px);
  transition: var(--transition); pointer-events: none;
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  body { padding-top: 60px; }
  .section-title { font-size: 1.7rem; }
  .booking-form-card { padding: 25px 20px; }
  .why-image-grid { display: none; }
}