/* ════════════════════════════════════════════════════════════
   TORIVANA SAFARIS AFRICA — Production CSS
   Linked as: style.css (same directory as index.html)
   Structure:
     1. CSS Variables & Root
     2. Global Reset & Base
     3. Typography
     4. Utility Classes
     5. Layout / Container
     6. Buttons
     7. Navigation
     8. Hero
     9. Section Shared Styles
    10. Why Choose Us
    11. Destinations
    12. Packages
    13. Hotels & Lodges
    14. About
    15. Testimonials
    16. Gallery
    17. Booking / Form
    18. Contact Strip
    19. Footer
    20. WhatsApp FAB
    21. Reveal Animation
    22. Media Queries
════════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────────
   1. CSS VARIABLES & ROOT
───────────────────────────────────────────── */
:root {
  /* Brand palette */
  --green-deep:    #1F5133;
  --green-mid:     #2A6B45;
  --green-light:   #EAF2EC;
  --gold:          #D4A437;
  --gold-light:    #F0C96A;
  --gold-dark:     #B8891F;
  --ivory:         #FAFAF7;
  --white:         #FFFFFF;
  --charcoal:      #1A1A1A;
  --text-dark:     #222222;
  --text-mid:      #4A4A4A;
  --text-light:    #767676;
  --border:        #E5E5E0;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:     0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:     0 16px 48px rgba(0,0,0,0.13);
  --shadow-gold:   0 4px 20px rgba(212,164,55,0.28);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing scale */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Layout */
  --container:   1200px;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-pill: 999px;

  /* Transitions */
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);

  /* Nav height */
  --nav-h: 72px;
}


/* ─────────────────────────────────────────────
   2. GLOBAL RESET & BASE
───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


/* ─────────────────────────────────────────────
   3. TYPOGRAPHY
───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0.02em; }

p { color: var(--text-mid); }

strong { color: var(--text-dark); font-weight: 600; }

em { font-style: italic; }

blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-mid);
}


/* ─────────────────────────────────────────────
   4. UTILITY CLASSES
───────────────────────────────────────────── */
.link-gold {
  color: var(--gold-dark);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}
.link-gold:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Section shared eyebrow/title/desc */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.6rem;
}

.section-title {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-desc {
  max-width: 600px;
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.section-header .section-desc {
  margin-left: auto;
  margin-right: auto;
}


/* ─────────────────────────────────────────────
   5. LAYOUT / CONTAINER
───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.section {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}


/* ─────────────────────────────────────────────
   6. BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition),
              box-shadow var(--transition), transform var(--transition),
              border-color var(--transition);
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}

/* Gold primary */
.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover,
.btn-gold:focus-visible {
  background: var(--gold-light);
  box-shadow: 0 6px 28px rgba(212,164,55,0.4);
  transform: translateY(-2px);
}
.btn-gold:active { transform: translateY(0); }

/* White outline (hero) */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover,
.btn-outline-white:focus-visible {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Green outline */
.btn-sm-outline {
  padding: 0.55rem 1.2rem;
  font-size: 0.78rem;
  background: transparent;
  color: var(--green-deep);
  border: 1.5px solid var(--green-deep);
  border-radius: var(--radius-pill);
}
.btn-sm-outline:hover {
  background: var(--green-deep);
  color: var(--white);
  transform: translateY(-1px);
}

/* Small gold */
.btn-sm-gold {
  padding: 0.5rem 1.1rem;
  font-size: 0.78rem;
  background: var(--gold);
  color: var(--charcoal);
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 10px rgba(212,164,55,0.22);
}
.btn-sm-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* Full width */
.btn-full {
  width: 100%;
}

/* Focus visible ring */
.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}


/* ─────────────────────────────────────────────
   7. NAVIGATION
───────────────────────────────────────────── */
.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

/* JS adds .scrolled class */
.nav-wrap.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.09);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (max-width: 768px) {

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--nav-h));

    background: rgba(255,255,255,0.98);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;

    transform: translateX(-100%);
    transition: transform 0.3s ease;

    z-index: 9999;
    overflow-y: auto;
    padding: 2rem 1rem;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 1rem;
  }
}

body {
  overflow-x: hidden;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  transition: opacity var(--transition);
}

.nav-logo:hover { opacity: 0.85; }

.logo-img {
  width: auto;
  height: 90px;
  object-fit: contain; 
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  transition: color var(--transition);
}
.nav-wrap.scrolled .logo-text { color: var(--green-deep); }

.logo-accent {
  color: var(--gold);
}
.nav-wrap.scrolled .logo-accent { color: var(--gold-dark); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.85rem;
  right: 0.85rem;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: center;
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-link:hover { color: var(--white); }

.nav-wrap.scrolled .nav-link { color: var(--text-mid); }
.nav-wrap.scrolled .nav-link:hover { color: var(--green-deep); }

/* CTA button in nav */
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.4rem;
  margin-left: 0.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--charcoal) !important;
  box-shadow: var(--shadow-gold);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,164,55,0.4);
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}
.nav-wrap.scrolled .nav-toggle span { background: var(--text-dark); }

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ─────────────────────────────────────────────
   8. HERO
───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1800&q=80&fm=webp&auto=format');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15, 35, 20, 0.72) 0%,
    rgba(25, 55, 35, 0.60) 50%,
    rgba(10, 25, 15, 0.80) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: var(--space-lg) var(--space-md);
  color: var(--white);
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 56px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 18px;
  transition: border-color var(--transition);
}
.hero-scroll:hover { border-color: var(--gold); }

.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(-8px); opacity: 0; }
  50%       { transform: translateY(8px);  opacity: 1; }
}


/* ─────────────────────────────────────────────
   9. SECTION SHARED — tabs
───────────────────────────────────────────── */
.dest-tabs,
.pkg-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.tab-btn {
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  background: var(--ivory);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition);
}
.tab-btn:hover {
  border-color: var(--green-deep);
  color: var(--green-deep);
}
.tab-btn.active {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
  box-shadow: 0 4px 14px rgba(31,81,51,0.22);
}


/* ─────────────────────────────────────────────
   10. WHY CHOOSE US
───────────────────────────────────────────── */
.why-us {
  background: var(--ivory);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
  text-align: center;
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.why-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.4rem;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-deep);
  transition: background var(--transition), color var(--transition);
}
.why-card:hover .why-icon {
  background: var(--green-deep);
  color: var(--white);
}

.why-icon svg {
  width: 28px;
  height: 28px;
}

.why-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.why-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-mid);
}


/* ─────────────────────────────────────────────
   11. DESTINATIONS
───────────────────────────────────────────── */
.destinations {
  background: var(--white);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.dest-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.dest-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.dest-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
  flex-shrink: 0;
}
.dest-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.dest-card:hover .dest-img-wrap img {
  transform: scale(1.06);
}

.dest-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--green-deep);
  color: var(--white);
}
.dest-badge-tz {
  background: var(--gold);
  color: var(--charcoal);
}

.dest-body {
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dest-body h3 {
  font-size: 1.08rem;
  margin-bottom: 0.55rem;
  color: var(--text-dark);
}

.dest-body p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-mid);
  flex: 1;
  margin-bottom: 1.1rem;
}

.dest-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: auto;
}

.dest-price {
  font-size: 0.82rem;
  color: var(--text-mid);
}
.dest-price strong {
  display: block;
  font-size: 1.05rem;
  color: var(--green-deep);
}


/* ─────────────────────────────────────────────
   12. PACKAGES & PRICING
───────────────────────────────────────────── */
.packages {
  background: var(--ivory);
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.pkg-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.pkg-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--green-deep);
}

/* Featured card */
.pkg-card-featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.pkg-card-featured:hover {
  border-color: var(--gold-dark);
  box-shadow: 0 12px 40px rgba(212,164,55,0.3);
}

.pkg-badge-featured {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  padding: 0.3rem 1rem;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.pkg-header {
  padding-top: 0.5rem;
}

.pkg-flag {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.pkg-header h3 {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
  color: var(--text-dark);
}

.pkg-tagline {
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
}

.pkg-prices {
  background: var(--green-light);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pkg-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
}
.pkg-price-row span {
  color: var(--text-mid);
}
.pkg-price-row strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--green-deep);
}

.pkg-includes {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.pkg-includes li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: var(--text-mid);
}

.check {
  color: var(--green-deep);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.pkg-card .btn-gold {
  margin-top: auto;
  padding: 0.75rem 1.5rem;
  font-size: 0.84rem;
}


/* ─────────────────────────────────────────────
   13. HOTELS & LODGES
───────────────────────────────────────────── */
.hotels {
  background: var(--white);
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.hotel-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.hotel-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.hotel-img-wrap {
  overflow: hidden;
  height: 230px;
  flex-shrink: 0;
}
.hotel-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.hotel-card:hover .hotel-img-wrap img {
  transform: scale(1.06);
}

.hotel-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.6rem;
}

.hotel-rating {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.hotel-body h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.35;
}

.hotel-body p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-mid);
  flex: 1;
}

.hotel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.hotel-price {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.3;
}
.hotel-price small {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-light);
}


/* ─────────────────────────────────────────────
   14. ABOUT
───────────────────────────────────────────── */
.about {
  background: var(--ivory);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 420px;
  border-radius: var(--radius-lg);
  transition: transform var(--transition-slow);
}
.about-img:hover img { transform: scale(1.03); }

.about-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--gold);
  color: var(--charcoal);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge-txt {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
}

.about-content .section-title {
  margin-bottom: 1.2rem;
}

.about-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1rem;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.pillar-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pillar strong {
  display: block;
  font-size: 0.9rem;
  color: var(--green-deep);
  margin-bottom: 0.2rem;
}

.pillar p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.trust-badge {
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-pill);
  background: var(--green-light);
  color: var(--green-deep);
  border: 1px solid rgba(31,81,51,0.2);
}


/* ─────────────────────────────────────────────
   15. TESTIMONIALS
───────────────────────────────────────────── */
.testimonials {
  background: var(--green-deep);
}

.testimonials .section-eyebrow { color: var(--gold-light); }

.testimonials .section-title { color: var(--white); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.testi-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: background var(--transition), transform var(--transition);
}
.testi-card:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-3px);
}

.testi-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.testi-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.97rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  flex: 1;
}

.testi-card blockquote::before { content: '"'; }
.testi-card blockquote::after  { content: '"'; }

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1rem;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.88rem;
  color: var(--white);
}

.testi-author span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}


/* ─────────────────────────────────────────────
   16. GALLERY
───────────────────────────────────────────── */
.gallery {
  background: var(--ivory);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  display: block;
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,30,15,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
}


/* ─────────────────────────────────────────────
   17. BOOKING / FORM
───────────────────────────────────────────── */
.booking {
  background: var(--white);
}

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

/* Left info panel */
.booking-left .section-title {
  margin-bottom: 1rem;
}

.booking-left > p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.booking-promises {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.booking-promises li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.booking-promises li > span {
  color: var(--green-deep);
  font-weight: 700;
  font-size: 1rem;
}

.booking-contact {
  margin-top: 2rem;
}

.booking-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.5rem;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.booking-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

/* Booking form */
.booking-form {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  text-transform: uppercase;
}

.form-group label span {
  color: var(--gold-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-deep);
  box-shadow: 0 0 0 3px rgba(31,81,51,0.12);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231,76,60,0.1);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%234A4A4A' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 16px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-error {
  font-size: 0.75rem;
  color: #e74c3c;
  min-height: 1rem;
  display: block;
}

/* Submit button */
.btn-submit {
  padding: 0.95rem 2rem;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  margin-top: 0.5rem;
}

/* Success / fail messages */
.form-success,
.form-fail {
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.form-success {
  background: #eaf7ef;
  color: #1a7c45;
  border: 1px solid #b2dfc2;
}

.form-fail {
  background: #fef3f2;
  color: #c0392b;
  border: 1px solid #fac7c3;
}

.form-fail a {
  color: #c0392b;
  text-decoration: underline;
}


/* ─────────────────────────────────────────────
   18. CONTACT STRIP
───────────────────────────────────────────── */
.contact-strip {
  background: var(--green-deep);
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-item strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

.contact-item a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  transition: color var(--transition);
}
.contact-item a:hover { color: var(--gold-light); }


/* ─────────────────────────────────────────────
   19. FOOTER
───────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-xl);
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
  display: inline-flex;
}

.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-accent { color: var(--gold); }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.footer-socials a:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.footer-nav h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-nav ul li a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-nav ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.25rem var(--space-md);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}


/* ─────────────────────────────────────────────
   20. WHATSAPP FAB
───────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.whatsapp-fab:hover {
  background: #1ebe5a;
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}

/* Pulse ring */
.whatsapp-fab::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0;
  animation: fabPulse 2.4s ease-out infinite;
}

@keyframes fabPulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0;   }
}


/* ─────────────────────────────────────────────
   21. REVEAL ANIMATION
───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children inside a grid parent */
.why-grid .why-card:nth-child(2).reveal { transition-delay: 0.08s; }
.why-grid .why-card:nth-child(3).reveal { transition-delay: 0.16s; }
.why-grid .why-card:nth-child(4).reveal { transition-delay: 0.24s; }

.testi-grid .testi-card:nth-child(2).reveal { transition-delay: 0.08s; }
.testi-grid .testi-card:nth-child(3).reveal { transition-delay: 0.16s; }
.testi-grid .testi-card:nth-child(4).reveal { transition-delay: 0.24s; }


/* ─────────────────────────────────────────────
   22. MEDIA QUERIES
───────────────────────────────────────────── */

/* ── Tablet ≤ 1024px ── */
@media (max-width: 1024px) {
  :root {
    --space-2xl: 4.5rem;
    --space-xl:  3rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .about-inner {
    gap: 2.5rem;
  }

  .booking-inner {
    gap: 2.5rem;
  }
}

/* ── Small Tablet ≤ 900px ── */
@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-img {
    max-height: 380px;
  }
  .about-img img {
    min-height: 280px;
    max-height: 380px;
  }

  .booking-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery-item-tall {
    grid-row: span 1;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }
}

/* ── Mobile ≤ 768px ── */
@media (max-width: 768px) {
  :root {
    --space-2xl: 3.5rem;
    --space-xl:  2.5rem;
    --space-lg:  2rem;
    --nav-h:     64px;
  }

  /* Nav mobile */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(10,30,15,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
    z-index: 999;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9) !important;
    padding: 0.7rem 1.5rem;
    width: 100%;
    text-align: center;
  }

  .nav-link::after { display: none; }

  .nav-cta {
    width: 100%;
    max-width: 220px;
    justify-content: center;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    margin-left: 0;
    margin-top: 0.5rem;
  }

  /* Hero */
  .hero-title {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .stat-num { font-size: 1.5rem; }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  /* Destinations */
  .dest-grid {
    grid-template-columns: 1fr;
  }

  /* Packages */
  .pkg-grid {
    grid-template-columns: 1fr;
  }

  /* Hotels */
  .hotels-grid {
    grid-template-columns: 1fr;
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
  }

  .booking-form {
    padding: 1.75rem 1.25rem;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item-wide,
  .gallery-item-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 3rem;
  }

  .footer-brand { grid-column: 1; }

  /* Contact strip */
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  /* Testimonials */
  .testi-grid {
    grid-template-columns: 1fr;
  }

  /* Why grid */
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Small Mobile ≤ 480px ── */
@media (max-width: 480px) {
  :root {
    --space-2xl: 3rem;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-title { font-size: 1.9rem; }

  .hero-stats {
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item-wide,
  .gallery-item-tall {
    grid-column: 1;
    grid-row: auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .about-badge {
    bottom: 0.75rem;
    right: 0.75rem;
    padding: 0.65rem 0.9rem;
  }
  .about-badge-num { font-size: 1.5rem; }

  .booking-form {
    padding: 1.4rem 1rem;
  }

  .whatsapp-fab {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
  }
}