/*
Theme Name: Afrika Experiences
Theme URI: https://afrikaexperiences.com
Author: Afrika Experiences
Description: Custom theme for Afrika Experiences — cultural tours, street food, and sunset adventures.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: afrika-experiences
*/

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

/* ── Tokens ─────────────────────────────────────────── */
:root {
  --green:   #1B3A2D;
  --green-dark: #122619;
  --ochre:   #C8862A;
  --ochre-light: #E8A84A;
  --cream:   #F5EDD8;
  --cream-dark: #EADEc4;
  --charcoal:#1A1A1A;
  --white:   #FFFFFF;
  --text-muted: #5A5A4A;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius: 4px;
  --radius-lg: 12px;
  --max-w: 1160px;
  --section-pad: 6rem 1.5rem;
}

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

/* ── Utility ─────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: var(--section-pad); }
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 0.75rem;
}

/* ── Pattern divider ────────────────────────────────── */
.pattern-divider {
  width: 100%;
  height: 18px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--ochre) 0px, var(--ochre) 6px,
    transparent 6px, transparent 12px,
    var(--green) 12px, var(--green) 18px,
    transparent 18px, transparent 24px
  );
  opacity: 0.25;
}

/* ── Nav ─────────────────────────────────────────────── */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.35s, box-shadow 0.35s;
  padding: 1.25rem 0;
}
#site-nav.scrolled {
  background: var(--green-dark);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
  padding: 0.85rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.nav-logo span { color: var(--ochre); }
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ochre-light); }
.nav-cta {
  background: var(--ochre) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--ochre-light) !important; }

/* ── Hero ────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background:
    linear-gradient(to bottom, rgba(18,38,25,0.62) 0%, rgba(18,38,25,0.45) 60%, rgba(18,38,25,0.72) 100%),
    url('https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?w=1600&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-top: 5rem;
}
.hero-content {
  max-width: 720px;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--ochre-light);
}
.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--ochre);
  color: var(--white);
}
.btn-primary:hover { background: var(--ochre-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
  margin-left: 1rem;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: bounce 2s infinite;
}
.hero-scroll-hint::after {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.35);
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── About strip ─────────────────────────────────────── */
#about-strip {
  background: var(--green);
  padding: 3.5rem 1.5rem;
}
.about-strip-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  text-align: center;
}
.stat-item .num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--ochre-light);
  font-weight: 700;
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

/* ── Services ────────────────────────────────────────── */
#services {
  background: var(--cream);
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.section-header p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  font-size: 1rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(27,58,45,0.15);
}
.service-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--ochre);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius);
}
.service-body { padding: 1.5rem; }
.service-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.service-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.service-meta {
  display: flex;
  gap: 1.25rem;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  border-top: 1px solid var(--cream-dark);
  padding-top: 1rem;
}
.service-meta span::before { margin-right: 4px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ochre);
  font-weight: 600;
  font-size: 14px;
  margin-top: 0.75rem;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

/* ── Why us ──────────────────────────────────────────── */
#why-us {
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-img {
  border-radius: var(--radius-lg);
  height: 480px;
  background: url('https://images.unsplash.com/photo-1489493585363-d69421e0edd3?w=900&q=80') center/cover no-repeat;
  position: relative;
}
.why-img-badge {
  position: absolute;
  bottom: 1.5rem; left: -2rem;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  min-width: 160px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.why-img-badge .big { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--ochre-light); }
.why-img-badge .small { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 2px; }
.why-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--green);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.why-text p { color: var(--text-muted); margin-bottom: 2rem; }
.why-list { display: flex; flex-direction: column; gap: 1.1rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ochre);
  font-size: 18px;
}
.why-item-text strong { display: block; color: var(--green); font-size: 15px; margin-bottom: 2px; }
.why-item-text span { font-size: 14px; color: var(--text-muted); }

/* ── CTA ─────────────────────────────────────────────── */
#cta {
  background:
    linear-gradient(135deg, rgba(18,38,25,0.88) 0%, rgba(27,58,45,0.80) 100%),
    url('https://images.unsplash.com/photo-1547471080-7cc2caa01a7e?w=1400&q=80') center/cover no-repeat;
  padding: var(--section-pad);
  text-align: center;
}
#cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 700;
}
#cta p { color: rgba(255,255,255,0.75); max-width: 480px; margin: 0 auto 2rem; }

/* ── Footer ──────────────────────────────────────────── */
#site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 1.5rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .nav-logo { font-size: 1.2rem; margin-bottom: 0.75rem; display: block; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre-light);
  margin-bottom: 1rem;
}
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* ── WhatsApp Float ──────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }
.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: var(--radius);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ── Contact Form ─────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--ochre);
  box-shadow: 0 0 0 3px rgba(200,134,42,0.12);
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-notice {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  display: none;
}
.form-notice.success { background: #E6F8EF; color: #0F6E3A; border: 1px solid #9FE1CB; }
.form-notice.error   { background: #FEF0EE; color: #8B1A0A; border: 1px solid #F7B8B0; }

/* ── Page hero (inner pages) ─────────────────────────── */
.page-hero {
  padding: 9rem 1.5rem 5rem;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: var(--white);
  text-align: center;
}
.page-hero .eyebrow { color: var(--ochre-light); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.page-hero p {
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* ── Service page ─────────────────────────────────────── */
.service-hero {
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 0 1.5rem 4rem;
  position: relative;
  padding-top: 80px; /* clear fixed nav */
}
.service-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18,38,25,0.9) 0%, rgba(18,38,25,0.3) 60%, rgba(18,38,25,0.5) 100%);
}
.service-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.service-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.service-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.service-hero-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 580px;
  margin-bottom: 1.75rem;
}
.service-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.meta-pill {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(6px);
}

/* ── Service detail sections ──────────────────────────── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.highlight-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.highlight-card .hc-icon { font-size: 28px; margin-bottom: 0.75rem; }
.highlight-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--green);
  margin-bottom: 0.4rem;
}
.highlight-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

.itinerary-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0; }
.itinerary-step {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2rem;
  position: relative;
}
.itinerary-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: var(--cream-dark);
}
.step-dot {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ochre-light);
  font-weight: 700;
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.step-body h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--green);
  margin-bottom: 0.3rem;
  padding-top: 6px;
}
.step-body p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

.pricing-box {
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
  text-align: center;
}
.pricing-box .price-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--ochre-light);
  line-height: 1;
}
.pricing-box .price-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; }
.pricing-box ul { text-align: left; margin-bottom: 2rem; }
.pricing-box li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
.pricing-box li::before { content: '✓  '; color: var(--ochre-light); font-weight: 700; }

/* ── Blog archive ─────────────────────────────────────── */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.archive-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  transition: transform 0.25s, box-shadow 0.25s;
}
.archive-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(27,58,45,0.12); }
.archive-card-img {
  height: 200px;
  background: var(--cream) center/cover no-repeat;
}
.archive-card-body { padding: 1.5rem; }
.archive-card-body .post-date { font-size: 12px; color: var(--text-muted); margin-bottom: 0.5rem; }
.archive-card-body h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--green);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.archive-card-body p { font-size: 14px; color: var(--text-muted); margin-bottom: 1rem; }
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.pagination a, .pagination span {
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--green);
  transition: all 0.2s;
}
.pagination a:hover, .pagination .current {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.service-card a { text-decoration: none; }
.service-card > a { display: block; }
.service-card > a .service-img { transition: opacity 0.2s; }
.service-card > a:hover .service-img { opacity: 0.92; }

/* ── Gallery filters ─────────────────────────────────── */
.gallery-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-bottom: 0;
}
.gf-btn {
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 100px;
  background: var(--white);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.gf-btn:hover { border-color: var(--ochre); color: var(--ochre); }
.gf-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

/* ── Gallery grid ────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,38,25,0.72) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.gallery-item.hidden { display: none; }
.gallery-item.visible { display: block; }

/* ── Lightbox ────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,18,14,0.96);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox[hidden] { display: none; }
.lb-inner {
  max-width: 900px;
  width: 100%;
  text-align: center;
}
.lb-inner img {
  max-height: 75vh;
  width: auto;
  max-width: 100%;
  border-radius: var(--radius-lg);
  object-fit: contain;
  margin: 0 auto;
}
.lb-caption {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  margin-top: 1rem;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.22); }
.lb-close { top: 1.5rem; right: 1.5rem; font-size: 28px; }
.lb-prev  { left: 1.5rem;  top: 50%; transform: translateY(-50%); }
.lb-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) {
  .lb-prev { left: 0.5rem; }
  .lb-next { right: 0.5rem; }
}

/* ── Hamburger button ────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu drawer ──────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--green-dark);
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-inner {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.mobile-menu-close {
  align-self: flex-end;
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--white);
  font-size: 22px;
  width: 38px; height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.2s;
}
.mobile-menu-close:hover { background: rgba(255,255,255,0.16); }

.mobile-menu-logo {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  display: block;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.mobile-nav-links li {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav-links a {
  display: block;
  padding: 1rem 0.25rem;
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav-links a:hover { color: var(--ochre-light); padding-left: 0.5rem; }
.mobile-cta {
  display: inline-block !important;
  margin-top: 1.5rem;
  background: var(--ochre) !important;
  color: var(--white) !important;
  padding: 0.85rem 1.5rem !important;
  border-radius: var(--radius) !important;
  text-align: center;
  font-weight: 600 !important;
  width: 100%;
}
.mobile-cta:hover { background: var(--ochre-light) !important; padding-left: 1.5rem !important; }

.mobile-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.25rem;
  background: #25D366;
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}
.mobile-whatsapp:hover { background: #1ebe5a; }
.mobile-whatsapp svg { width: 20px; height: 20px; fill: var(--white); flex-shrink: 0; }

/* ── Backdrop ────────────────────────────────────────── */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 299;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.mobile-menu-backdrop.open { opacity: 1; pointer-events: all; }

/* ── Booking form extras ─────────────────────────────── */
.booking-form { gap: 0.85rem; }
.booking-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
  padding-bottom: 0.4rem;
  border-bottom: 1.5px solid var(--cream-dark);
}
.input-icon-wrap {
  position: relative;
  width: 100%;
}
.input-icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  pointer-events: none;
  z-index: 1;
}
.input-icon-wrap input,
.input-icon-wrap select {
  padding-left: 2.5rem !important;
  width: 100%;
}

/* Ticket grid */
.ticket-grid {
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
}
.ticket-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--cream-dark);
  gap: 1rem;
  background: var(--white);
}
.ticket-row:last-child { border-bottom: none; }
.ticket-info { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.ticket-type { font-size: 14px; font-weight: 500; color: var(--charcoal); }
.ticket-type small { font-weight: 400; color: var(--text-muted); font-size: 12px; }
.ticket-price { font-size: 12px; color: var(--ochre); font-weight: 500; }

/* Counter widget */
.ticket-counter {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
  height: 38px;
}
.tc-btn {
  width: 38px;
  height: 38px;
  background: var(--cream);
  border: none !important;
  outline: none;
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
  padding: 0;
  line-height: 1;
  -webkit-appearance: none;
  appearance: none;
}
.tc-btn:hover { background: var(--green); color: var(--white); }
.tc-btn:active { background: var(--green-dark); color: var(--white); }
.ticket-counter input[type="number"] {
  width: 46px !important;
  height: 38px !important;
  text-align: center !important;
  border: none !important;
  border-left: 1.5px solid var(--cream-dark) !important;
  border-right: 1.5px solid var(--cream-dark) !important;
  border-radius: 0 !important;
  padding: 0 !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--charcoal) !important;
  box-shadow: none !important;
  background: var(--white) !important;
  -moz-appearance: textfield;
}
.ticket-counter input[type="number"]::-webkit-inner-spin-button,
.ticket-counter input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

/* Price summary */
.price-summary {
  background: var(--green);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: none;
}
.price-summary.visible { display: block; }
.ps-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ps-total {
  font-size: 15px !important;
  font-weight: 700;
  color: var(--white) !important;
  border-top: 1.5px solid rgba(255,255,255,0.25) !important;
  border-bottom: none !important;
  padding-top: 10px !important;
  margin-top: 4px;
}
.ps-total span:last-child { color: var(--ochre-light) !important; }
.ps-note { font-size: 12px; color: rgba(255,255,255,0.5); margin: 8px 0 0; text-align: center; }

/* ── Social icon buttons ─────────────────────────────── */
.soc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.soc-btn svg {
  width: 18px;
  height: 18px;
  display: block;
}
.soc-btn:hover { transform: translateY(-2px); color: #fff; }
.soc-btn[data-brand="instagram"]:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.soc-btn[data-brand="facebook"]:hover  { background: #1877F2; }
.soc-btn[data-brand="tiktok"]:hover    { background: #010101; outline: 2px solid #69C9D0; }
.soc-btn[data-brand="youtube"]:hover   { background: #FF0000; }
.soc-btn[data-brand="linkedin"]:hover  { background: #0A66C2; }

/* ── Nav dark on inner pages (no hero behind it) ────── */
body:not(.home) #site-nav,
body:not(.front-page) #site-nav {
  background: var(--green-dark);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --section-pad: 4rem 1.25rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .btn-outline { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-img { height: 300px; }
  .why-img-badge { left: 1rem; bottom: 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero-content h1 { font-size: 2.4rem; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .service-hero-content h1 { font-size: 2.2rem; }
  div[style*="grid-template-columns:1fr 1.4fr"] { display: flex !important; flex-direction: column !important; }
}
