/* =========================================================
   LENNOX SAFARI KENYA — Main Stylesheet
   Palette: Savanna ochre, deep bush green, midnight earth
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Tokens ── */
:root {
  --ochre:       #C8922A;
  --ochre-light: #E8B44A;
  --ochre-pale:  #F5E8CC;
  --earth:       #2A1F0E;
  --earth-mid:   #4A3520;
  --bush:        #2D4A1E;
  --bush-light:  #3D6A2A;
  --dusk:        #1A2A3A;
  --sand:        #F2EDE3;
  --white:       #FDFAF5;
  --text-body:   #3A2E1E;
  --text-muted:  #7A6A50;
  --border:      rgba(200,146,42,0.25);

  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --max-width:   1200px;
  --section-gap: 100px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1,h2,h3,h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--earth);
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }
p  { max-width: 68ch; color: var(--text-body); }

/* ── Utility ── */
.container     { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section-gap   { padding: var(--section-gap) 0; }
.text-ochre    { color: var(--ochre); }
.text-center   { text-align: center; }
.text-center p { margin: 0 auto; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ochre);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}
.btn-primary {
  background: var(--ochre);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--ochre-light);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--ochre);
  border: 1.5px solid var(--ochre);
}
.btn-outline:hover {
  background: var(--ochre);
  color: var(--white);
}
.btn-dark {
  background: var(--earth);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--earth-mid);
  transform: translateY(-1px);
}
.btn-wa {
  background: #25D366;
  color: var(--white);
}
.btn-wa:hover {
  background: #1EBE5A;
  transform: translateY(-1px);
}

/* ── Top Bar ── */
.top-bar {
  background: var(--earth);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: rgba(255,255,255,0.75); }
.top-bar a:hover { color: var(--ochre-light); }
.top-contacts { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.top-contacts span { display: flex; align-items: center; gap: 6px; }
.top-lang { display: flex; gap: 8px; align-items: center; }
.top-lang a {
  padding: 2px 10px;
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}
.top-lang a.active, .top-lang a:hover {
  background: var(--ochre);
  color: var(--white);
}

/* ── Navigation ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253,250,245,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.nav-logo img { height: 60px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 6px 12px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--ochre);
  background: var(--ochre-pale);
}
.nav-links .btn { margin-left: 8px; padding: 10px 22px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--earth);
  transition: all 0.3s;
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,15,5,0.85) 0%,
    rgba(26,15,5,0.3) 50%,
    rgba(26,15,5,0.1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 24px;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}
.hero-content .eyebrow { color: var(--ochre-light); }
.hero-content h1 {
  color: var(--white);
  font-weight: 300;
  margin-bottom: 20px;
}
.hero-content h1 strong {
  font-weight: 700;
  font-style: italic;
  color: var(--ochre-light);
}
.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 55ch;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-dots {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}
.hero-dot.active {
  background: var(--ochre-light);
  width: 24px;
  border-radius: 4px;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--earth);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 12px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--ochre-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* ── Section Headers ── */
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 16px auto 0; }
.section-header p { margin-top: 16px; color: var(--text-muted); font-size: 1.05rem; }

/* ── About Strip (homepage) ── */
.about-strip {
  background: var(--sand);
}
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--ochre);
  color: var(--white);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  text-align: center;
}
.about-badge strong { font-size: 1.8rem; font-weight: 700; line-height: 1; }
.about-badge span { font-size: 0.65rem; font-weight: 400; line-height: 1.3; margin-top: 2px; }
.about-text { }
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 20px; font-size: 1.05rem; }
.about-features { margin: 28px 0; }
.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.about-features li:last-child { border-bottom: none; }
.about-features li .icon {
  color: var(--ochre);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── Package Cards ── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pkg-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(42,31,14,0.12);
}
.pkg-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.pkg-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.pkg-card:hover .pkg-card-img img { transform: scale(1.06); }
.pkg-duration {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--ochre);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}
.pkg-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pkg-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--earth);
}
.pkg-card-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
  max-width: 100%;
}
.pkg-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.pkg-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.pkg-tag {
  font-size: 0.72rem;
  background: var(--ochre-pale);
  color: var(--earth-mid);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
}
.pkg-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ochre);
  font-weight: 600;
  font-size: 0.88rem;
  transition: gap 0.2s;
}
.pkg-link:hover { gap: 10px; }

.view-all-wrap { text-align: center; margin-top: 48px; }

/* ── Safari Page: Full Listing ── */
.packages-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

/* ── Package Detail Page ── */
.pkg-detail-hero {
  height: 460px;
  position: relative;
  overflow: hidden;
}
.pkg-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pkg-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,15,5,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
}
.pkg-detail-hero-text {
  padding: 40px;
  color: var(--white);
}
.pkg-detail-hero-text h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 8px;
}
.pkg-detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
  padding: 60px 0;
}
.pkg-detail-main { }
.pkg-detail-sidebar { }

.info-card {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  position: sticky;
  top: 100px;
}
.info-card h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.info-row:last-of-type { border-bottom: none; }
.info-row .label { color: var(--text-muted); }
.info-row .value { font-weight: 600; color: var(--earth); }
.info-card .btn { width: 100%; justify-content: center; margin-top: 20px; }

.itinerary { margin: 32px 0; }
.itinerary h3 { margin-bottom: 24px; }
.day-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 20px;
  margin-bottom: 28px;
}
.day-label {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ochre);
  line-height: 1;
  padding-top: 4px;
  text-align: center;
}
.day-label small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.day-content {
  border-left: 2px solid var(--border);
  padding-left: 20px;
}
.day-content h4 { margin-bottom: 8px; font-size: 1.1rem; }
.day-content p { font-size: 0.95rem; color: var(--text-muted); max-width: 100%; }

.inclusions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}
.inclusion-item, .exclusion-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
}
.inclusion-item .icon { color: var(--bush-light); flex-shrink: 0; margin-top: 2px; }
.exclusion-item .icon { color: #C0392B; flex-shrink: 0; margin-top: 2px; }

/* ── Excursion Cards ── */
.excursion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.exc-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.exc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(42,31,14,0.1);
}
.exc-card-img {
  height: 200px;
  overflow: hidden;
}
.exc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.exc-card:hover .exc-card-img img { transform: scale(1.08); }
.exc-card-body { padding: 20px; }
.exc-card-body h4 { margin-bottom: 8px; font-size: 1.1rem; }
.exc-card-body p { font-size: 0.88rem; color: var(--text-muted); max-width: 100%; margin-bottom: 14px; }

/* ── Dark Callout Strip ── */
.callout-strip {
  background: var(--bush);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.callout-strip::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='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.callout-strip .eyebrow { color: var(--ochre-light); }
.callout-strip h2 { color: var(--white); position: relative; }
.callout-strip p { color: rgba(255,255,255,0.75); margin: 16px auto 32px; position: relative; }
.callout-strip .hero-actions { justify-content: center; position: relative; }

/* ── Testimonials ── */
.testimonials-bg { background: var(--sand); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
}
.testi-stars { color: var(--ochre); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--earth-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}
.testi-author { font-size: 0.85rem; font-weight: 600; color: var(--text-body); }
.testi-origin { font-size: 0.78rem; color: var(--text-muted); }

/* ── Booking Form ── */
.booking-section { background: var(--sand); }
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 64px;
  align-items: start;
}
.booking-info { min-width: 0; }
.booking-info h2 { margin-bottom: 20px; }
.booking-info p { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 28px; max-width: 100%; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.contact-method:hover { border-color: var(--ochre); }
.contact-method .icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--ochre-pale);
  color: var(--ochre);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-method .details .label { font-size: 0.75rem; color: var(--text-muted); }
.contact-method .details .value { font-size: 0.92rem; font-weight: 600; color: var(--earth); }

.booking-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(42,31,14,0.07);
  min-width: 0;
  overflow: hidden;
}
.booking-form-wrap h3 { margin-bottom: 28px; font-size: 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; width: 100%; }
.form-group { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-body);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--ochre);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; }
.form-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 12px; text-align: center; }

/* ── Footer ── */
.footer {
  background: var(--earth);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand img { height: 70px; margin-bottom: 16px; filter: none; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 24px; max-width: 100%; color: rgba(255,255,255,0.75); }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: all 0.2s;
}
.social-link:hover { background: var(--ochre); color: var(--white); }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ochre-light);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--ochre-light); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}
.footer-contact-item .icon { color: var(--ochre); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--ochre-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--ochre-light); }

/* ── Breadcrumb ── */
.breadcrumb-bar {
  background: var(--sand);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--ochre); }
.breadcrumb .sep { color: var(--border); }
.breadcrumb .current { color: var(--text-body); font-weight: 500; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--earth);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--ochre), var(--ochre-light), var(--ochre));
}
.page-hero .eyebrow { color: var(--ochre-light); }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 60ch; font-size: 1.05rem; }

/* ── About Page ── */
.about-full-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-full-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-full-imgs img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-full-imgs img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
}
.value-card .icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.value-card h4 { margin-bottom: 10px; font-size: 1.1rem; }
.value-card p { font-size: 0.9rem; color: var(--text-muted); max-width: 100%; }

/* ── WhatsApp Float ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

/* ── Flash Messages ── */
.flash-success, .flash-error {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 0.92rem;
  font-weight: 500;
}
.flash-success { background: #D4EDDA; color: #155724; border: 1px solid #C3E6CB; }
.flash-error   { background: #F8D7DA; color: #721C24; border: 1px solid #F5C6CB; }

/* ── Gallery Grid (About page) ── */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
.gallery-mosaic img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.gallery-mosaic img:nth-child(1) { grid-column: span 2; height: 280px; }
.gallery-mosaic img:nth-child(5) { grid-column: span 2; height: 240px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid         { grid-template-columns: 1fr 1fr; }
  .packages-grid       { grid-template-columns: repeat(2, 1fr); }
  .excursion-grid      { grid-template-columns: repeat(2, 1fr); }
  .about-strip-inner   { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap img  { height: 340px; }
  .booking-layout      { grid-template-columns: 1fr; }
  .pkg-detail-layout   { grid-template-columns: 1fr; }
  .about-full-layout   { grid-template-columns: 1fr; }
  .stats-grid          { grid-template-columns: repeat(2, 1fr); }
  .values-grid         { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-gap: 64px; }
  .nav-links          { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--border); padding: 16px 24px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
  .nav-links.open     { display: flex; }
  .nav-toggle         { display: flex; }
  .packages-grid      { grid-template-columns: 1fr; }
  .excursion-grid     { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr; gap: 32px; }
  .form-grid          { grid-template-columns: 1fr; }
  .gallery-mosaic     { grid-template-columns: repeat(2, 1fr); }
  .gallery-mosaic img:nth-child(1), .gallery-mosaic img:nth-child(5) { grid-column: 1; height: 200px; }
  .stats-grid         { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .values-grid        { grid-template-columns: 1fr; }
  .top-bar .container { flex-direction: column; text-align: center; }
  .inclusions-grid    { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-content h1    { font-size: 2.2rem; }
  .hero-actions       { flex-direction: column; }
  .about-badge        { bottom: -16px; right: 8px; }
  .nav-logo img       { height: 48px; }
}