/* ============================================
   SISTEMA DE DISEÑO — AMAZON TOURS PERU
   ============================================ */
:root {
  --forest-1: #4C572D;
  --forest-2: #1a5c48;
  --forest-3: #FF5800;
  --forest-4: #515C35;
  --forest-5: #515C35;
  --forest-6: #a8e9c8;
  --forest-7: #d4f5e0;
  --sand: #e8faf0;
  --sand: #f4fdf7;
  --cream: #faf9f6;
  --sand: #f5f3ee;
  --charcoal: #1a1a1a;
  --gray-text: #555555;
  --light-gray: #888888;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition-fast: 0.2s ease-out;
  --transition-medium: 0.3s ease-out;
  --transition-slow: 0.6s ease-out;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

.btn-whatsapp {
	display:block;
	width:70px;
	height:70px;
	color#fff;
	position: fixed;
	right:20px;
	bottom:100px;
	border-radius:50%;
	line-height:80px;
	text-align:center;
	z-index:999;
}
/* ============================================
   UTILIDADES
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--forest-4);
  font-weight: 500;
  margin-bottom: 12px;
  display: inline-block;
}

.section-tag2 {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--forest-9);
  font-weight: 500;
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--forest-4);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--forest-3);
}

.section-desc {
  font-size: 16px;
  color: var(--gray-text);
  max-width: 960px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-desc2 {
  font-size: 16px;
  color: var(--forest-9);
  max-width: 960px;
  margin: 0 auto;
  line-height: 1.6;
}
/* ============================================
   NAVEGACIÓN
   ============================================ */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: #C0CAA7;
  padding: 20px 0;
  transition: box-shadow var(--transition-fast);
}
.nav.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 500; color: var(--forest-1); }
.nav-logo-icon { width: 32px; height: 32px; background: var(--forest-4); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 14px; flex-shrink: 0; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 13px; color: var(--gray-text); position: relative; padding-bottom: 4px; transition: color var(--transition-fast); }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--forest-3); transition: width var(--transition-medium); }
.nav-links a:hover { color: var(--forest-1); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--forest-3); color: white; padding: 10px 24px; border-radius: 6px; font-size: 13px; font-weight: 500; border: none; cursor: pointer; transition: background var(--transition-fast); }
.nav-cta:hover { background: var(--forest-2); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--forest-1); }

/* ============================================
   MENÚ MULTINIVEL — DROPDOWN DESKTOP
   ============================================ */
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
}
.dropdown-arrow {
  font-size: 10px;
  transition: transform 0.2s;
  display: inline-block;
}
.nav-links > li:hover .dropdown-arrow { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(13,59,46,0.12);
  padding: 8px 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  z-index: 1001;
  margin-top: 8px;
  border: 1px solid var(--sand);
}
.nav-links > li:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li { list-style: none; }
.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--gray-text);
  text-decoration: none;
  transition: all 0.15s;
  border-left: 3px solid transparent;
}
.dropdown li a:hover {
  background: var(--sand);
  color: var(--forest-1);
  border-left-color: var(--forest-4);
  padding-left: 24px;
}
.dropdown li a strong {
  display: block;
  color: var(--forest-1);
  font-weight: 500;
  margin-bottom: 2px;
}
.dropdown li a span {
  display: block;
  font-size: 11px;
  color: var(--light-gray);
}

/* ============================================
   MENÚ MÓVIL — ACORDEÓN
   ============================================ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 25px; left: 0;
  width: 100%; height: 100vh;
  background: white;
  z-index: 999;
  flex-direction: column;
  overflow-y: auto;
  padding: 80px 50px 40px;
}
.mobile-menu.active { display: flex; }

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--forest-1);
  z-index: 10;
}

.mobile-menu-item {
  border-bottom: 1px solid var(--sand);
}
.mobile-accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  background: none;
  border: none;
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--forest-1);
  cursor: pointer;
  text-align: left;
}
.mobile-accordion-trigger .mobile-arrow {
  font-size: 14px;
  color: var(--forest-4);
  transition: transform 0.25s;
}
.mobile-accordion-trigger.active .mobile-arrow {
  transform: rotate(180deg);
}

.mobile-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 0 0 16px;
}
.mobile-accordion-panel.open {
  padding-bottom: 8px;
}

.mobile-accordion-panel a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  color: var(--gray-text);
  text-decoration: none;
  border-bottom: 1px solid var(--sand);
  transition: color 0.15s;
}
.mobile-accordion-panel a:last-child { border-bottom: none; }
.mobile-accordion-panel a:hover { color: var(--forest-1); }
.mobile-accordion-panel a strong {
  display: block;
  color: var(--forest-1);
  font-weight: 500;
  margin-bottom: 2px;
}
.mobile-accordion-panel a span {
  display: block;
  font-size: 12px;
  color: var(--light-gray);
}

.mobile-menu > a.mobile-link {
  display: block;
  padding: 16px 0;
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--forest-1);
  text-decoration: none;
  border-bottom: 1px solid var(--sand);
}

.mobile-menu-cta {
  margin-top: 24px;
  width: 100%;
  background: var(--forest-3);
  color: white;
  padding: 16px;
  border-radius: 50px;
  border: none;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-cta:hover { background: var(--forest-2); }

/* ============================================
   HERO CON VIDEO DE FONDO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: linear-gradient(
	180deg,
	rgba(13, 59, 46, 0.55) 0%,
	rgba(13, 59, 46, 0.45) 40%,
	rgba(13, 59, 46, 0.65) 100%
  );*/
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 300px 40px 100px;
}

.hero-label {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: white;
  font-weight: 500;
  margin-bottom: 24px;
  display: inline-block;
  background: rgba(13, 59, 46, 0.4);
  padding: 6px 18px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(125, 219, 181, 0.3);
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 400;
  line-height: 1.05;
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 em {
  font-style: italic;
  color: #FF5800;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.6;
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

.hero-btn {
  background: var(--forest-5);
  color: white;
  padding: 16px 44px;
  border-radius: 50px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all var(--transition-medium);
  display: inline-block;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-btn:hover {
  background: white;
  color: var(--forest-1);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.hero-btn:active {
  transform: scale(0.98);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  cursor: pointer;
}

.hero-scroll svg {
  width: 24px;
  height: 24px;
  stroke: rgba(255,255,255,0.6);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   STATS
   ============================================ */
.stats {
  background: white;
  border-top: 1px solid var(--forest-8);
  border-bottom: 1px solid var(--forest-8);
  padding: 48px 0;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--forest-1);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  color: var(--light-gray);
  letter-spacing: 0.5px;
}

/* ============================================
   WHY MANU
   ============================================ */
.why-section {
  background: var(--cream);
  padding: 80px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid var(--forest-7);
  border-radius: 16px;
  overflow: hidden;
  background: white;
}

.why-item {
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.why-item:nth-child(1) { border-right: 1px solid var(--forest-7); border-bottom: 1px solid var(--forest-7); }
.why-item:nth-child(2) { border-bottom: 1px solid var(--forest-7); }
.why-item:nth-child(3) { border-right: 1px solid var(--forest-7); }

.why-icon {
  width: 44px;
  height: 44px;
  background: var(--forest-8);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.why-text h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--forest-1);
  margin-bottom: 6px;
}

.why-text p {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.5;
}

/* ============================================
   EXPERIENCES / TOURS
   ============================================ */
.tours-section {
  background: white;
  padding: 80px 0;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tour-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--forest-8);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(13,59,46,0.08);
}

/* IMAGEN VERTICAL */
.tour-img {
  height: 360px;
  position: relative;
  overflow: hidden;
}

.tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.tour-card:hover .tour-img img {
  transform: scale(1.05);
}

.tour-duration {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.95);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  color: var(--forest-1);
  backdrop-filter: blur(4px);
}

.tour-info {
  padding: 24px;
}

.tour-info h3 {
  font-size: 17px;
  font-weight: 500;
  color: var(--forest-1);
  margin-bottom: 8px;
}

.tour-info p {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.5;
  margin-bottom: 16px;
}

.tour-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tour-price {
  color: var(--forest-3);
  font-weight: 500;
  font-size: 15px;
}

.tour-link {
  color: var(--forest-4);
  font-size: 13px;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.tour-link:hover {
  color: var(--forest-2);
}

/* ============================================
   CATEGORÍAS DE TOURS (REEMPLAZA CONSERVATION)
   ============================================ */
.categories-section {
  background: var(--cream);
  padding: 100px 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.category-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(13,59,46,0.12);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
	180deg,
	rgba(13, 59, 46, 0.2) 0%,
	rgba(13, 59, 46, 0.5) 60%,
	rgba(13, 59, 46, 0.75) 100%
  );
  transition: background var(--transition-medium);
}

.category-card:hover .category-overlay {
  background: linear-gradient(
	180deg,
	rgba(13, 59, 46, 0.15) 0%,
	rgba(13, 59, 46, 0.4) 60%,
	rgba(13, 59, 46, 0.7) 100%
  );
}

.category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 28px;
  z-index: 2;
}

.category-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  font-weight: 500;
  margin-bottom: 8px;
  background: rgba(13, 59, 46, 0.5);
  padding: 4px 12px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.category-content h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: white;
  margin-bottom: 8px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.category-content p {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  max-width: 90%;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.category-arrow {
  position: absolute;
  bottom: 28px;
  right: 28px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: all var(--transition-fast);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
}

.category-card:hover .category-arrow {
  background: var(--forest-5);
  color: var(--forest-1);
  transform: translateX(4px);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--sand);
  padding: 80px 0;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--forest-8);
  transition: box-shadow var(--transition-medium);
}

.testi-card:hover {
  box-shadow: 0 8px 24px rgba(13,59,46,0.06);
}

.testi-stars {
  color: #f5c518;
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testi-quote {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--forest-5), var(--forest-4));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
  font-weight: 500;
  flex-shrink: 0;
}

.testi-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--forest-1);
}

.testi-location {
  font-size: 12px;
  color: var(--light-gray);
}

/* ============================================
   BLOG / JOURNAL
   ============================================ */
.blog-section {
  background: white;
  padding: 80px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--forest-8);
  transition: box-shadow var(--transition-medium);
  background: white;
}

.blog-card:hover {
  box-shadow: 0 8px 24px rgba(13,59,46,0.06);
}

.blog-img {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-img-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,0.95);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 500;
  color: var(--forest-1);
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(4px);
}

.blog-content {
  padding: 24px;
}

.blog-content h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--forest-1);
  margin-bottom: 8px;
  line-height: 1.3;
  transition: color var(--transition-fast);
}

.blog-card:hover .blog-content h4 {
  color: var(--forest-3);
}

.blog-content p {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.5;
  margin-bottom: 12px;
}

.blog-meta {
  font-size: 11px;
  color: var(--light-gray);
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--forest-4), var(--forest-4));
  text-align: center;
}

.cta-section h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: white;
  margin-bottom: 12px;
}

.cta-section h2 em {
  font-style: italic;
  color: var(--forest-3);
}

.cta-section p {
  font-size: 16px;
  color: white;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  background: var(--forest-3);
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-medium);
  display: inline-block;
}

.cta-btn:hover {
  background: var(--forest-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,138,110,0.25);
}

.cta-btn:active {
  transform: scale(0.98);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  /*background: var(--charcoal);*/
  background-image: url('../img/odd_background2.png'); 
  color: #aaa;
  padding: 64px 0 32px;
  text-align: center;
}

.footer-brand {
  font-size: 18px;
  font-weight: 500;
  color: white;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-brand-icon {
  width: 28px;
  height: 28px;
  background: var(--forest-4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: white;
}

.footer-tagline {
  font-size: 13px;
  color: #777;
  margin-bottom: 32px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-size: 13px;
  margin-bottom: 32px;
  list-style: none;
}

.footer-links a {
  color: #aaa;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: white;
}

.footer-copy {
  font-size: 12px;
  color: #555;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .tours-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 48px; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .hero { min-height: 90vh; }
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 16px; }
  .hero-content { padding: 100px 24px 80px; }
  .section-title { font-size: 28px; }
  .stats-grid { flex-direction: column; gap: 32px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item:nth-child(1), .why-item:nth-child(2), .why-item:nth-child(3) { border-right: none; }
  .why-item:nth-child(1), .why-item:nth-child(2) { border-bottom: 1px solid var(--forest-7); }
  .tours-grid, .blog-grid, .testi-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .category-card { height: 220px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 48px 0; }
  .categories-section { padding: 64px 0; }
  .cta-section { padding: 64px 0; }
}