/* ============================================
   NURU ACTIVITIES – STYLE.CSS
   Fonts: Cormorant Garamond (display) + Outfit (body)
   ============================================ */

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

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #1F4D3A;
  --primary-dark: #163528;
  --primary-light: #2a6b4f;
  --bg: #F5F3EF;
  --accent: #8B6B4A;
  --accent-light: #a6885e;
  --white: #FFFFFF;
  --text: #2B2B2B;
  --text-light: #5A5A5A;
  --shadow: 0 4px 24px rgba(31,77,58,0.08);
  --shadow-hover: 0 8px 32px rgba(31,77,58,0.14);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1200px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; color: var(--primary); line-height: 1.25; }
h1 { font-size: 42px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

p { margin-bottom: 1em; color: var(--text-light); }
p:last-child { margin-bottom: 0; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  justify-content: center;
}

.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(31,77,58,0.25); }

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

.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: #7a5c3e; transform: translateY(-2px); }

.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1ebe57; transform: translateY(-2px); }

/* ---------- IMAGE PLACEHOLDERS ---------- */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 20px;
  position: relative;
}

.img-placeholder.green-bg  { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); }
.img-placeholder.brown-bg  { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%); }
.img-placeholder.mixed-bg  { background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%); }
.img-placeholder.dark-bg   { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); }

.img-placeholder .ph-icon  { font-size: 48px; opacity: 0.5; }
.img-placeholder .ph-label { font-size: 13px; opacity: 0.8; font-weight: 600; }
.img-placeholder .ph-size  { font-size: 11px; opacity: 0.45; letter-spacing: 1px; font-family: monospace; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31,77,58,0.06);
  transition: var(--transition);
}

.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* ---------- LOGO ---------- */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: var(--transition);
}

.nav-logo:hover .nav-logo-img {
  opacity: 0.82;
}

.nav-links { display: flex; align-items: center; gap: 32px; }

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }

.nav-cta {
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 10px 22px;
  background: var(--primary);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--primary-dark) !important; color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

/* IMAGE SLOT: hero-bg.jpg — 1920×1080px */
.hero-bg img,
.hero-bg .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31,77,58,0.88) 0%, rgba(42,107,79,0.35) 50%, rgba(139,107,74,0.15) 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 15% 25%, white 1px, transparent 1px),
    radial-gradient(circle at 85% 75%, white 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, white 0.5px, transparent 0.5px);
  background-size: 60px 60px, 80px 80px, 40px 40px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text { color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.hero h1 {
  color: var(--white);
  font-size: 52px;
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.15s both;
}

.hero-sub {
  font-size: 19px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.45s both;
}

.hero-buttons .btn-primary { background: var(--white); color: var(--primary); }
.hero-buttons .btn-primary:hover { background: #e8e6e1; box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.hero-buttons .btn-outline { border-color: rgba(255,255,255,0.5); color: var(--white); }
.hero-buttons .btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); color: var(--white); }

.hero-visual {
  position: relative;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  padding: 32px;
  color: var(--white);
}

.hero-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-card-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.stat-item {
  text-align: center;
  padding: 16px;
  background: rgba(255,255,255,0.2);
  border-radius: var(--radius);
}
.stat-number { font-family: var(--font-display); font-size: 28px; font-weight: 700; display: block; }
.stat-label { font-size: 13px; opacity: 0.8; margin-top: 4px; }

/* ---------- SECTIONS ---------- */
.section { padding: 80px 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}
.section-header p { font-size: 17px; }

/* ---------- ACTIVITY CARDS ---------- */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.activity-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

/* IMAGE SLOT: activity cards — 800×600px each */
.activity-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--bg);
}
.activity-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.activity-card:hover .activity-card-img img {
  transform: scale(1.05);
}
.activity-card-img .card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
  z-index: 2;
}

.card-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.activity-card-body { padding: 24px; }
.activity-card-body h3 { margin-bottom: 10px; }
.activity-card-body p { font-size: 15px; margin-bottom: 16px; }
.activity-card-body .btn { width: 100%; }

/* ---------- WHY CHOOSE US ---------- */
.why-section { background: var(--white); }

.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }

.why-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--bg);
  border-radius: var(--radius);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.why-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
}

.why-card h3 { font-size: 18px; margin-bottom: 6px; }
.why-card p { font-size: 14px; margin: 0; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--primary);
  opacity: 0.12;
  position: absolute;
  top: 8px; left: 24px;
  line-height: 1;
}
.testimonial-card p { font-size: 15px; font-style: italic; margin-bottom: 16px; position: relative; z-index: 1; }
.testimonial-author { font-size: 14px; font-weight: 600; color: var(--primary); }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 70px 20px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(139,107,74,0.2), transparent 60%);
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 18px; margin-bottom: 28px; position: relative; }
.cta-banner .btn { position: relative; }
.cta-banner .btn-primary { background: var(--white); color: var(--primary); }
.cta-banner .btn-primary:hover { background: #e8e6e1; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---------- PAGE HERO (sub-pages) ---------- */
.page-hero {
  margin-top: 72px;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  min-height: 280px;
  display: flex;
  align-items: flex-end;
}

/* IMAGE SLOT: page hero — 1920×600px wide banner */
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img,
.page-hero-bg .img-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31,77,58,0.1) 0%, rgba(42,107,79,0.42) 100%);
}

.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 18px; max-width: 640px; }

.breadcrumb { display: flex; gap: 8px; font-size: 14px; margin-bottom: 20px; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }

/* ---------- CONTENT GRID ---------- */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.content-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.content-block h2 { margin-bottom: 16px; }
.content-block h3 { margin-bottom: 10px; font-size: 20px; }
.content-block.full-width { grid-column: 1 / -1; }

/* IMAGE SLOT: content block inline images — 600×400px */
.content-img {
  width: 100%;
  height: 260px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
}
.content-img img,
.content-img .img-placeholder { width: 100%; height: 100%; object-fit: cover; }

/* ---------- PRICING TABLE ---------- */
.pricing-table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.pricing-table th, .pricing-table td { padding: 14px 20px; text-align: left; border-bottom: 1px solid rgba(31,77,58,0.08); }
.pricing-table th { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); background: var(--bg); }
.pricing-table td { font-size: 15px; color: var(--text); }
.price-highlight { font-weight: 700; color: var(--primary); font-size: 18px; }

/* ---------- INCLUDE LIST ---------- */
.include-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.include-list li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text); }
.include-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: rgba(31,77,58,0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/* ---------- ROUTE CARDS ---------- */
.route-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 16px; }
.route-card { padding: 20px; background: var(--bg); border-radius: var(--radius-sm); border-left: 3px solid var(--primary); }
.route-card h4 { font-family: var(--font-display); margin-bottom: 6px; color: var(--primary); }
.route-card p { font-size: 14px; margin: 0; }

/* ---------- FOOD PAGE ---------- */
.food-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

.food-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.food-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

/* IMAGE SLOT: food cards — 800×500px */
.food-card-visual {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--bg);
}
.food-card-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.food-card:hover .food-card-visual img { transform: scale(1.05); }

.food-card-body { padding: 28px; }
.food-card-body h3 { margin-bottom: 6px; }

.food-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin: 12px 0;
}

.food-features { margin: 16px 0; }
.food-features li { padding: 6px 0; font-size: 15px; color: var(--text-light); display: flex; align-items: center; gap: 8px; }
.food-features li::before { content: '●'; color: var(--primary); font-size: 8px; }

/* ---------- ABOUT PAGE ---------- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* IMAGE SLOT: about visual — 600×800px portrait */
.about-visual {
  border-radius: var(--radius);
  height: 450px;
  overflow: hidden;
  background: var(--bg);
}
.about-visual img,
.about-visual .img-placeholder { width: 100%; height: 100%; object-fit: cover; }

.about-text h2 { margin-bottom: 20px; }
.about-text p { font-size: 17px; }

.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }

.value-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.value-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  background: rgba(31,77,58,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.value-card h3 { font-size: 18px; margin-bottom: 8px; }
.value-card p { font-size: 14px; margin: 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 28px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-icon { font-size: 20px; transition: var(--transition); flex-shrink: 0; margin-left: 16px; color: var(--primary); }
.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 28px 20px; font-size: 15px; color: var(--text-light); }

/* ---------- CONTACT FORM ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

.contact-form-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 6px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(31,77,58,0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(31,77,58,0.08);
}

.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 16px; font-size: 16px; }

.form-status { margin-top: 16px; padding: 14px 20px; border-radius: var(--radius-sm); font-size: 15px; font-weight: 500; display: none; }
.form-status.success { display: block; background: rgba(31,77,58,0.08); color: var(--primary); }
.form-status.error { display: block; background: rgba(200,50,50,0.08); color: #c83232; }

.contact-info-card {
  background: var(--primary);
  padding: 36px;
  border-radius: var(--radius);
  color: var(--white);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 20px; }

.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-info-item h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-bottom: 4px;
}
.contact-info-item p { color: rgba(255,255,255,0.9); font-size: 16px; margin: 0; }
.contact-info-item a { color: rgba(255,255,255,0.9); transition: var(--transition); }
.contact-info-item a:hover { color: var(--white); }

.transport-note {
  margin-top: 24px;
  padding: 20px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
}
.transport-note h4 { color: var(--white); font-size: 15px; margin-bottom: 6px; opacity: 1; }
.transport-note p { font-size: 14px; color: rgba(255,255,255,0.75); margin: 0; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h4 { color: var(--white); font-family: var(--font-body); font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-about p { font-size: 14px; color: rgba(255,255,255,0.6); }

.footer-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: var(--transition);
}

.footer-logo:hover {
  opacity: 1;
}
.footer-links a { display: block; font-size: 14px; color: rgba(255,255,255,0.6); padding: 4px 0; transition: var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; font-size: 13px; color: rgba(255,255,255,0.4); }

/* ---------- WHATSAPP WIDGET ---------- */
.wa-widget { position: fixed; bottom: 24px; right: 24px; z-index: 9999; }

.wa-fab {
  width: 60px; height: 60px;
  background: #25D366;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  position: relative;
  z-index: 2;
}
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-fab svg { width: 28px; height: 28px; fill: var(--white); }

.wa-popup {
  position: absolute;
  bottom: 72px; right: 0;
  width: 280px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.95);
  transition: var(--transition);
}
.wa-popup.active { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.wa-popup-header { background: var(--primary); color: var(--white); padding: 18px 20px; border-radius: var(--radius) var(--radius) 0 0; }
.wa-popup-header h4 { color: var(--white); font-size: 15px; margin-bottom: 2px; }
.wa-popup-header p { font-size: 13px; color: rgba(255,255,255,0.7); margin: 0; }

.wa-popup-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.wa-popup-body a { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: var(--radius-sm); font-size: 15px; font-weight: 600; transition: var(--transition); }
.wa-popup-body a.wa-chat { background: #25D366; color: var(--white); }
.wa-popup-body a.wa-chat:hover { background: #1ebe57; }
.wa-popup-body a.wa-call { background: var(--bg); color: var(--text); }
.wa-popup-body a.wa-call:hover { background: #e8e5df; }
.wa-link-icon { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.wa-chat .wa-link-icon { background: rgba(255,255,255,0.2); }
.wa-call .wa-link-icon { background: var(--white); }

.wa-fab::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0;
  animation: waPulse 2s ease-in-out infinite;
  z-index: -1;
}

@keyframes waPulse {
  0% { opacity: 0.4; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.5); }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---------- MOBILE NAV OVERLAY ---------- */
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 998; opacity: 0; transition: opacity 0.3s ease; }
.nav-overlay.active { opacity: 1; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: -300px;
    width: 280px; height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 30px 40px;
    gap: 0;
    z-index: 999;
    box-shadow: -4px 0 24px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    align-items: stretch;
  }
  .nav-links.active { right: 0; }
  .nav-overlay.active { display: block; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 16px; }
  .nav-links a::after { display: none; }
  .nav-cta { margin-top: 12px; text-align: center; padding: 14px 22px; }

  .nav-logo-img { height: 36px; }
  .footer-logo { height: 32px; }

  .hero h1 { font-size: 36px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-sub { font-size: 17px; }
  .hero { min-height: 80vh; }
  .hero-visual { display: none; }

  h1 { font-size: 34px; }
  h2 { font-size: 28px; }

  .section { padding: 50px 0; }

  .activities-grid,
  .why-grid,
  .content-grid,
  .food-grid,
  .contact-grid,
  .about-story { grid-template-columns: 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .route-cards { grid-template-columns: 1fr; }
  .include-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }

  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .btn { width: 100%; }
  .content-block.full-width { grid-column: auto; }
}

@media (max-width: 600px) {
  .nav-logo-img { height: 30px; }
  .footer-logo { height: 28px; }
  .hero h1 { font-size: 30px; }
  .section { padding: 40px 0; }
  .container { padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-card-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .wa-widget { bottom: 16px; right: 16px; }
  .wa-popup { width: 260px; }
}
