:root {
  --forest: #17381d;
  --forest-light: #2a5c36;
  --forest-dark: #0c2412;
  --gold: #f5aa1f;
  --gold-light: #ffd166;
  --gold-dark: #c7850a;
  --sky: #bbdcf7;
  --sky-soft: #e0f0fb;
  --cream: #f7f4ef;
  --white: #ffffff;
  --charcoal: #1a1a1a;
  --gray: #6b7280;
  --gray-light: #f3f4f6;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-soft: 0 4px 20px rgba(23,56,29,0.06);
  --shadow-medium: 0 12px 40px rgba(23,56,29,0.10);
  --shadow-heavy: 0 25px 80px rgba(23,56,29,0.15);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.15;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== NAVBAR TRANSPARENT ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(30px) saturate(180%);
  box-shadow: 0 1px 0 rgba(23,56,29,0.06), var(--shadow-soft);
  padding: 12px 0;
}
.navbar.scrolled .nav-link { color: var(--charcoal); }
.navbar.scrolled .logo-text { color: var(--forest); }
.navbar.scrolled .menu-line { background: var(--forest); }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-group {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-group img {
  height: 52px;
  width: auto;
  /* transition: var(--transition); 
  filter: brightness(0) invert(1);*/
}
.navbar.scrolled .logo-group img {
  filter: none;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  padding: 10px 18px;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
}
.nav-link:hover {
  color: var(--gold);
  background: rgba(245,170,31,0.1);
}
.nav-link.active {
  color: var(--gold);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(245,170,31,0.35);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,170,31,0.45);
}
.btn-forest {
  background: var(--forest);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-forest:hover {
  background: var(--forest-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(23,56,29,0.3);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 12px 28px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--forest);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--forest);
  border: 2px solid var(--forest);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 12px 28px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-dark:hover {
  background: var(--forest);
  color: var(--white);
}
.btn-wa {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 15px rgba(37,211,102,0.35);
  transition: var(--transition);
}
.btn-wa:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.5);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-line {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO CAROUSEL ===== */
.hero-carousel {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.carousel-slide.active { opacity: 1; }
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 8s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}
.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(23,56,29,0.5) 0%,
    rgba(23,56,29,0.3) 30%,
    rgba(23,56,29,0.6) 70%,
    rgba(23,56,29,0.9) 100%
  );
  z-index: 2;
}
.hero-content-v2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 0 0 100px;
}
.hero-content-v2 .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: end;
}
.hero-left { color: var(--white); }
.hero-pretitle {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-pretitle::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
}
.hero-left h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hero-left h1 em {
  color: var(--gold);
  font-style: italic;
}
.hero-left p {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}
.carousel-indicators {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}
.indicator {
  width: 50px;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.indicator.active {
  background: var(--gold);
  width: 70px;
}
.hero-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 24px;
  max-width: 320px;
  color: var(--white);
}
.hero-card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
  margin-bottom: 8px;
}
.hero-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.hero-card-text {
  font-size: 13px;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 16px;
}
.hero-card-link {
  font-weight: 600;
  font-size: 13px;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.hero-card-link:hover { gap: 12px; }
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== MARQUEE STATS ===== */
.marquee-bar {
  background: var(--forest);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 80px;
  animation: marquee 25s linear infinite;
  width: max-content;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
  white-space: nowrap;
}
.marquee-item i {
  font-size: 24px;
  color: var(--gold);
}
.marquee-item strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
}
.marquee-item span {
  font-size: 14px;
  opacity: 0.8;
}

/* ===== SECTIONS COMMON ===== */
.section-v2 {
	padding: 100px 0;
}

.section-header-v2 {
	text-align: center;
	margin-bottom: 64px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.section-tag-v2 {
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--gold);
	margin-bottom: 16px;
}

.section-title-v2 {
	font-size: clamp(2.2rem, 4vw, 3.2rem);
	color: var(--forest);
	margin-bottom: 20px;
}

.section-desc-v2 {
	color: var(--gray);
	font-size: 1.05rem;
	line-height: 1.8;
}

/* ===== DESTINOS ASYMMETRIC ===== */
.destinos-asymmetric {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 20px;
}
.destino-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.destino-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.destino-item:hover img { transform: scale(1.08); }
.destino-item.large { grid-row: span 2; }
.destino-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23,56,29,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: var(--transition);
}
.destino-item:hover .destino-item-overlay {
  background: linear-gradient(to top, rgba(23,56,29,0.95) 0%, rgba(23,56,29,0.3) 100%);
}
.destino-item-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  width: fit-content;
}
.destino-item-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 6px;
}
.destino-item-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.destino-item-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  font-size: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}
.destino-item:hover .destino-item-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ===== TOURS HORIZONTAL ===== */
.tours-bg { background: var(--cream); }
.tours-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tour-card-v2 {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid rgba(23,56,29,0.05);
}
.tour-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
}
.tour-card-v2-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.tour-card-v2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.tour-card-v2:hover .tour-card-v2-img img { transform: scale(1.1); }
.tour-card-v2-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--forest);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 50px;
}
.tour-card-v2-days {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--white);
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tour-card-v2-body { padding: 28px; }
.tour-card-v2-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--forest);
  margin-bottom: 10px;
}
.tour-card-v2-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.tour-card-v2-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(23,56,29,0.06);
}
.tour-card-v2-price { font-family: 'Playfair Display', serif; }
.tour-card-v2-price small {
  font-size: 12px;
  color: var(--gray);
  font-family: 'Inter', sans-serif;
}
.tour-card-v2-price strong {
  font-size: 1.5rem;
  color: var(--forest);
}
.tour-card-v2-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.tour-card-v2-btn:hover {
  background: var(--gold);
  transform: scale(1.1);
}

/* ===== WHY US - SPLIT ===== */
.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}
.why-image {
  position: relative;
  overflow: hidden;
}
.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--forest) 100%);
}
.why-content {
  background: var(--forest);
  color: var(--white);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.why-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 20px;
}
.why-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 24px;
}
.why-text {
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 40px;
  font-size: 15px;
}
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.why-feature { display: flex; gap: 16px; }
.why-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(245,170,31,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
}
.why-feature h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
}
.why-feature p {
  font-size: 13px;
  opacity: 0.7;
  line-height: 1.6;
}

/* ===== TESTIMONIALS CARDS ===== */
.testimonials-v2 { background: var(--sky-soft); }
.testimonials-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-v2-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: var(--transition);
}
.testimonial-v2-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}
.testimonial-v2-card.featured {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-20px);
}
.testimonial-v2-card.featured:hover { transform: translateY(-26px); }
.testimonial-v2-card.featured .testimonial-v2-text { color: rgba(255,255,255,0.9); }
.testimonial-v2-card.featured .testimonial-v2-name { color: var(--white); }
.testimonial-v2-card.featured .testimonial-v2-country { color: rgba(255,255,255,0.6); }
.testimonial-v2-quote {
  font-size: 48px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 8px;
  font-family: Georgia, serif;
}
.testimonial-v2-text {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 28px;
}
.testimonial-v2-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-v2-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}
.testimonial-v2-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--forest);
}
.testimonial-v2-country {
  font-size: 13px;
  color: var(--gray);
}
.testimonial-v2-stars {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 13px;
}

/* ===== CTA V2 ===== */
.cta-v2 {
  background: var(--charcoal);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-v2::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--gold);
  opacity: 0.08;
  border-radius: 50%;
}
.cta-v2::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: var(--forest);
  opacity: 0.15;
  border-radius: 50%;
}
.cta-v2-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.cta-v2-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 20px;
}
.cta-v2 h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 20px;
}
.cta-v2 p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.8;
}
.cta-v2-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   SECCIONES NUEVAS AGREGADAS (desde style2.css)
   - Tour Detail Page
   ============================================================ */

/* ===== HERO TOUR DETAIL ===== */
.tour-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.tour-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(23,56,29,0.4) 0%,
    rgba(23,56,29,0.6) 50%,
    rgba(23,56,29,0.95) 100%
  );
  z-index: 2;
}

.tour-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-bottom: 60px;
}

/*.breadcrumb {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	font-size: 13px;
	color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 10px; }*/

.tour-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 16px;
  max-width: 800px;
}
.tour-hero-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}
.tour-hero-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tour-hero-meta i { color: var(--gold); }
.tour-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

/* ===== QUICK INFO BAR ===== */
.quick-info-bar {
  background: var(--forest);
  padding: 28px 0;
  position: relative;
  z-index: 10;
  margin-top: -1px;
}
.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: center;
}
.quick-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}
.quick-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(245,170,31,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
}
.quick-info-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
  margin-bottom: 4px;
}
.quick-info-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
}
.quick-info-price { text-align: right; }
.quick-info-price small {
  font-size: 12px;
  opacity: 0.7;
}
.quick-info-price strong {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
}
.quick-info-price span {
  font-size: 14px;
  opacity: 0.8;
}

/* ===== MAIN LAYOUT (Tour Detail) ===== */
.tour-main {
  padding: 80px 0;
  background: var(--cream);
}
.tour-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

/* ===== SIDEBAR ===== */
.tour-sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-medium);
  margin-bottom: 24px;
}
.sidebar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--forest);
  margin-bottom: 20px;
}
.sidebar-price {
  text-align: center;
  margin-bottom: 24px;
}
.sidebar-price small {
  font-size: 13px;
  color: var(--gray);
}
.sidebar-price strong {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--forest);
}
.sidebar-price span {
  font-size: 14px;
  color: var(--gray);
}
.sidebar-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
  padding: 14px;
  font-size: 14px;
}
.sidebar-btn-wa {
  width: 100%;
  justify-content: center;
  background: #25d366;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 14px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}
.sidebar-btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.45);
}
.sidebar-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(23,56,29,0.08);
  font-size: 13px;
  color: var(--gray);
}
.sidebar-guarantee i { color: var(--gold); }
.sidebar-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}
.sidebar-contact-item i {
  color: var(--gold);
  margin-top: 3px;
  font-size: 15px;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
}
.content-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--forest);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.content-section-title i {
  color: var(--gold);
  font-size: 20px;
}
.content-text {
  color: var(--charcoal);
  line-height: 1.85;
  font-size: 15px;
}
.content-text p { margin-bottom: 16px; }
.content-text strong { color: var(--forest); }
.content-text ul {
  list-style: none;
  margin: 16px 0;
}
.content-text ul li {
  padding: 6px 0;
  padding-left: 28px;
  position: relative;
}
.content-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
}

/* ===== ITINERARY ===== */
.itinerary-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.itinerary-item {
  display: grid;
  grid-template-columns: 5px 1fr;
  gap: 10px;
  padding: 12px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}
.itinerary-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-soft);
}
.itinerary-time {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--forest);
  font-weight: 700;
}
.itinerary-time small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.itinerary-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--forest);
  margin-bottom: 8px;
}
.itinerary-body p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}
.itinerary-body ul {
  list-style: none;
  margin: 16px 0;
}
.itinerary-body ul li {
  padding: 6px 0;
  padding-left: 28px;
  position: relative;
}
.itinerary-body ul li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: zoom-in;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  pointer-events: none;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.large { grid-row: span 2; }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(23,56,29,0.4);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i {
  color: var(--white);
  font-size: 24px;
  pointer-events: none;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(12, 24, 18, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 25px 80px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.lightbox.active .lightbox-img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 3001;
}
.lightbox-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(90deg);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 3001;
}
.lightbox-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  padding: 12px 24px;
  background: rgba(0,0,0,0.4);
  border-radius: 50px;
  backdrop-filter: blur(10px);
}
.lightbox-counter {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ===== INCLUDES / EXCLUDES ===== */
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.includes-list h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.includes-list.included h4 { color: var(--forest-light); }
.includes-list.excluded h4 { color: #c0392b; }
.includes-list.included h4 i { color: var(--forest-light); }
.includes-list.excluded h4 i { color: #c0392b; }
.includes-list ul { list-style: none; }
.includes-list ul li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  font-size: 14px;
  color: var(--charcoal);
  border-bottom: 1px solid rgba(23,56,29,0.04);
}
.includes-list ul li:last-child { border-bottom: none; }
.includes-list.included ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--forest-light);
  font-size: 14px;
  font-weight: 700;
}
.includes-list.excluded ul li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #c0392b;
  font-size: 14px;
  font-weight: 700;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid rgba(23,56,29,0.08);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active {
  border-color: var(--gold);
  box-shadow: var(--shadow-soft);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--forest);
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question i {
  color: var(--gold);
  transition: var(--transition);
  font-size: 14px;
}
.faq-item.active .faq-question i { transform: rotate(180deg); }
.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 24px 20px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
}

/* ===== REVIEWS ===== */
.reviews-summary {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(23,56,29,0.08);
}
.reviews-score { text-align: center; }
.reviews-score strong {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--forest);
  display: block;
}
.reviews-score .stars {
  color: var(--gold);
  font-size: 14px;
  margin: 8px 0;
}
.reviews-score small {
  font-size: 13px;
  color: var(--gray);
}
.reviews-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.review-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}
.review-bar-label { width: 60px; color: var(--gray); }
.review-bar-track {
  flex: 1;
  height: 8px;
  background: var(--gray-light);
  border-radius: 4px;
  overflow: hidden;
}
.review-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 4px;
}
.review-bar-count {
  width: 30px;
  text-align: right;
  color: var(--gray);
}
.review-item {
  display: flex;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(23,56,29,0.06);
}
.review-item:last-child { border-bottom: none; }
.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}
.review-body { flex: 1; }
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.review-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--forest);
}
.review-country {
  font-size: 13px;
  color: var(--gray);
}
.review-stars {
  color: var(--gold);
  font-size: 12px;
}
.review-date {
  font-size: 12px;
  color: var(--gray);
  margin-left: auto;
}
.review-text {
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.7;
}

/* ===== RELATED TOURS ===== */
.related-section {
  padding: 80px 0;
  background: var(--white);
}
.related-header {
  text-align: center;
  margin-bottom: 48px;
}
.related-header .section-tag-v2 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
}
.related-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--forest);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ===== HERO NOSOTROS ===== */
.about-hero {
	position: relative;
	height: 65vh;
	min-height: 500px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-hero img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(23,56,29,0.85) 0%,
		rgba(23,56,29,0.6) 50%,
		rgba(12,36,18,0.9) 100%
	);
	z-index: 2;
}

.about-hero-content {
	position: relative;
	z-index: 3;
	text-align: center;
	color: var(--white);
	max-width: 800px;
	padding: 0 28px;
}

.about-hero-tag {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--gold);
	margin-bottom: 20px;
}

.about-hero h1 {
	font-size: clamp(2.8rem, 5.5vw, 4.2rem);
	margin-bottom: 24px;
}

.about-hero h1 em {
	color: var(--gold);
	font-style: italic;
}

.about-hero p {
	font-size: 1.1rem;
	opacity: 0.85;
	max-width: 550px;
	margin: 0 auto;
	line-height: 1.8;
	font-weight: 300;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
	background: var(--forest);
	padding: 16px 0;
}

.breadcrumb {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	font-size: 13px;
	color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 10px; }

/* ===== SECTIONS COMMON ===== */
.section-v2 {
	padding: 100px 0;
}

.section-header-v2 {
	text-align: center;
	margin-bottom: 64px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.section-tag-v2 {
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--gold);
	margin-bottom: 16px;
}

.section-title-v2 {
	font-size: clamp(2.2rem, 4vw, 3.2rem);
	color: var(--forest);
	margin-bottom: 20px;
}

.section-desc-v2 {
	color: var(--gray);
	font-size: 1.05rem;
	line-height: 1.8;
}

/* ===== STORY SECTION ===== */
.story-section {
	background: var(--cream);
}

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

.story-image {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-heavy);
}

.story-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 500px;
}

.story-image-badge {
	position: absolute;
	bottom: -20px;
	right: -20px;
	background: var(--gold);
	color: var(--white);
	padding: 24px 32px;
	border-radius: var(--radius-sm);
	text-align: center;
	box-shadow: var(--shadow-medium);
}

.story-image-badge strong {
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	display: block;
}

.story-image-badge span {
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.story-content h2 {
	font-size: clamp(2rem, 3.5vw, 2.8rem);
	color: var(--forest);
	margin-bottom: 24px;
}

.story-content h2 em {
	color: var(--gold);
	font-style: italic;
}

.story-content p {
	color: var(--gray);
	line-height: 1.85;
	margin-bottom: 20px;
	font-size: 15px;
}

.story-content strong {
	color: var(--forest);
}

.story-quote {
	margin-top: 32px;
	padding: 24px 28px;
	background: var(--white);
	border-left: 4px solid var(--gold);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	font-style: italic;
	color: var(--forest);
	font-size: 15px;
	line-height: 1.7;
}

.story-quote-author {
	margin-top: 12px;
	font-style: normal;
	font-weight: 700;
	font-size: 13px;
	color: var(--gold);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* ===== VALUES ===== */
.values-section {
	background: var(--white);
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}

.value-card {
	background: var(--cream);
	border-radius: var(--radius);
	padding: 40px 32px;
	text-align: center;
	transition: var(--transition);
	border: 1px solid rgba(23,56,29,0.04);
}

.value-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-medium);
	background: var(--white);
}

.value-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(245,170,31,0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	color: var(--gold);
	font-size: 24px;
	transition: var(--transition);
}

.value-card:hover .value-icon {
	background: var(--gold);
	color: var(--white);
	transform: scale(1.1);
}

.value-card h3 {
	font-size: 1.3rem;
	color: var(--forest);
	margin-bottom: 12px;
}

.value-card p {
	font-size: 14px;
	color: var(--gray);
	line-height: 1.7;
}

/* ===== STATS COUNTER ===== */
.stats-section {
	background: var(--forest);
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.stats-section::before {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 300px;
	height: 300px;
	background: var(--gold);
	opacity: 0.06;
	border-radius: 50%;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	position: relative;
	z-index: 1;
}

.stat-item {
	text-align: center;
	color: var(--white);
}

.stat-number {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2.5rem, 4vw, 3.5rem);
	font-weight: 800;
	color: var(--gold);
	margin-bottom: 8px;
}

.stat-label {
	font-size: 14px;
	opacity: 0.8;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.stat-divider {
	width: 40px;
	height: 2px;
	background: var(--gold);
	margin: 12px auto;
	opacity: 0.5;
}

/* ===== TEAM ===== */
.team-section {
	background: var(--cream);
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}

.team-card {
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	transition: var(--transition);
	text-align: center;
}

.team-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-heavy);
}

.team-img {
	position: relative;
	height: 280px;
	overflow: hidden;
}

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

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

.team-social {
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%) translateY(20px);
	display: flex;
	gap: 8px;
	opacity: 0;
	transition: var(--transition);
}

.team-card:hover .team-social {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.team-social a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--white);
	color: var(--forest);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	transition: var(--transition);
}

.team-social a:hover {
	background: var(--gold);
	color: var(--white);
}

.team-body {
	padding: 24px;
}

.team-name {
	font-family: 'Playfair Display', serif;
	font-size: 1.2rem;
	color: var(--forest);
	margin-bottom: 4px;
}

.team-role {
	font-size: 13px;
	color: var(--gold);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 12px;
}

.team-desc {
	font-size: 14px;
	color: var(--gray);
	line-height: 1.6;
}

/* ===== CERTIFICATIONS ===== */
.cert-section {
	background: var(--white);
	padding: 80px 0;
}

.cert-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 32px;
	align-items: center;
	justify-items: center;
}

.cert-item {
	text-align: center;
	opacity: 0.6;
	transition: var(--transition);
	filter: grayscale(100%);
}

.cert-item:hover {
	opacity: 1;
	filter: grayscale(0%);
	transform: translateY(-4px);
}

.cert-item i {
	font-size: 48px;
	color: var(--forest);
	margin-bottom: 12px;
}

.cert-item span {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--charcoal);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* ===== WHY CHOOSE US - EXPANDED ===== */
.why-section {
	background: var(--forest);
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.why-section::before {
	content: '';
	position: absolute;
	top: -150px;
	left: -150px;
	width: 400px;
	height: 400px;
	background: var(--gold);
	opacity: 0.05;
	border-radius: 50%;
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	position: relative;
	z-index: 1;
}

.why-card {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: var(--radius);
	padding: 40px 32px;
	transition: var(--transition);
}

.why-card:hover {
	background: rgba(255,255,255,0.1);
	transform: translateY(-6px);
	border-color: rgba(245,170,31,0.3);
}

.why-card-icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: rgba(245,170,31,0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
	font-size: 22px;
	margin-bottom: 24px;
}

.why-card h3 {
	font-size: 1.3rem;
	color: var(--white);
	margin-bottom: 14px;
}

.why-card p {
	font-size: 14px;
	color: rgba(255,255,255,0.7);
	line-height: 1.7;
}

/* ===== HERO CONTACT ===== */
.contact-hero {
	position: relative;
	height: 65vh;
	min-height: 500px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-hero img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contact-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(23,56,29,0.85) 0%,
		rgba(23,56,29,0.6) 50%,
		rgba(12,36,18,0.9) 100%
	);
	z-index: 2;
}

.contact-hero-content {
	position: relative;
	z-index: 3;
	text-align: center;
	color: var(--white);
	max-width: 800px;
	padding: 0 28px;
}

.contact-hero-tag {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--gold);
	margin-bottom: 20px;
}

.contact-hero h1 {
	font-size: clamp(2.8rem, 5.5vw, 4.2rem);
	margin-bottom: 24px;
}

.contact-hero h1 em {
	color: var(--gold);
	font-style: italic;
}

.contact-hero p {
	font-size: 1.1rem;
	opacity: 0.85;
	max-width: 550px;
	margin: 0 auto;
	line-height: 1.8;
	font-weight: 300;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
	padding: 100px 0;
	background: var(--cream);
}

.contact-layout {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 60px;
	align-items: start;
}

/* ===== CONTACT INFO CARDS ===== */
.contact-info-col {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.contact-info-card {
	background: var(--white);
	border-radius: var(--radius);
	padding: 32px;
	box-shadow: var(--shadow-soft);
	transition: var(--transition);
	border: 1px solid rgba(23,56,29,0.04);
}

.contact-info-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-medium);
}

.contact-info-header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
}

.contact-info-icon {
	width: 52px;
	height: 52px;
	min-width: 52px;
	border-radius: 14px;
	background: rgba(245,170,31,0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
	font-size: 20px;
	transition: var(--transition);
}

.contact-info-card:hover .contact-info-icon {
	background: var(--gold);
	color: var(--white);
}

.contact-info-header h3 {
	font-family: 'Playfair Display', serif;
	font-size: 1.25rem;
	color: var(--forest);
}

.contact-info-body {
	font-size: 14px;
	color: var(--gray);
	line-height: 1.8;
}

.contact-info-body strong {
	color: var(--charcoal);
	font-weight: 600;
}

.contact-info-body a {
	color: var(--forest);
	transition: var(--transition);
	display: block;
	padding: 4px 0;
}

.contact-info-body a:hover {
	color: var(--gold);
}

.contact-social-row {
	display: flex;
	gap: 10px;
	margin-top: 16px;
}

.contact-social-row a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--gray-light);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--forest);
	font-size: 15px;
	transition: var(--transition);
}

.contact-social-row a:hover {
	background: var(--forest);
	color: var(--white);
	transform: translateY(-3px);
}

/* ===== FORM CARD ===== */
.form-card {
	background: var(--white);
	border-radius: var(--radius);
	padding: 48px;
	box-shadow: var(--shadow-medium);
}

.form-header {
	margin-bottom: 32px;
}

.form-header h2 {
	font-size: 1.8rem;
	color: var(--forest);
	margin-bottom: 8px;
}

.form-header p {
	font-size: 14px;
	color: var(--gray);
}

.form-group {
	margin-bottom: 20px;
}

.form-label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--forest);
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.form-input,
.form-select,
.form-textarea {
	width: 100%;
	padding: 14px 18px;
	border: 2px solid rgba(23,56,29,0.08);
	border-radius: var(--radius-sm);
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	color: var(--charcoal);
	background: var(--white);
	transition: var(--transition);
	outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
	border-color: var(--gold);
	box-shadow: 0 0 0 4px rgba(245,170,31,0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
	color: #b0b5bd;
}

.form-textarea {
	resize: vertical;
	min-height: 120px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.form-submit {
	width: 100%;
	justify-content: center;
	padding: 16px;
	font-size: 15px;
	margin-top: 8px;
}

.form-note {
	text-align: center;
	margin-top: 16px;
	font-size: 13px;
	color: var(--gray);
}

.form-note i {
	color: var(--gold);
	margin-right: 4px;
}

/* ===== QUICK CONTACT BAR ===== */
.quick-contact-bar {
	background: var(--forest);
	padding: 60px 0;
}

.quick-contact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.quick-contact-item {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 28px;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: var(--radius);
	transition: var(--transition);
	color: var(--white);
}

.quick-contact-item:hover {
	background: rgba(255,255,255,0.1);
	transform: translateY(-4px);
	border-color: rgba(245,170,31,0.3);
}

.quick-contact-icon {
	width: 56px;
	height: 56px;
	min-width: 56px;
	border-radius: 16px;
	background: rgba(245,170,31,0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gold);
	font-size: 22px;
}

.quick-contact-body h4 {
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 15px;
	margin-bottom: 6px;
}

.quick-contact-body p {
	font-size: 14px;
	opacity: 0.75;
	line-height: 1.6;
}

.quick-contact-body a {
	color: var(--gold);
	font-weight: 600;
	transition: var(--transition);
}

.quick-contact-body a:hover {
	opacity: 0.8;
}

/* ===== MAP SECTION ===== */
.map-section {
	position: relative;
	height: 450px;
	overflow: hidden;
}

.map-section iframe {
	width: 100%;
	height: 100%;
	border: none;
	filter: grayscale(20%) contrast(1.1);
}

.map-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(23,56,29,0.1) 0%, transparent 30%, transparent 70%, rgba(23,56,29,0.1) 100%);
	pointer-events: none;
}

/* ===== FAQ SECTION ===== */
.faq-contact-section {
	padding: 100px 0;
	background: var(--white);
}

.faq-contact-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq-item {
	border: 1px solid rgba(23,56,29,0.08);
	border-radius: var(--radius-sm);
	overflow: hidden;
	transition: var(--transition);
}

.faq-item.active {
	border-color: var(--gold);
	box-shadow: var(--shadow-soft);
}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 24px;
	cursor: pointer;
	font-weight: 600;
	font-size: 15px;
	color: var(--forest);
	transition: var(--transition);
}

.faq-question:hover { color: var(--gold); }

.faq-question i {
	color: var(--gold);
	transition: var(--transition);
	font-size: 14px;
}

.faq-item.active .faq-question i { transform: rotate(180deg); }

.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 24px 20px;
	font-size: 14px;
	color: var(--gray);
	line-height: 1.8;
}

.contact-cta-card {
	background: var(--forest);
	border-radius: var(--radius);
	padding: 48px;
	color: var(--white);
	text-align: center;
	position: sticky;
	top: 100px;
}

.contact-cta-card h3 {
	font-size: 1.6rem;
	margin-bottom: 16px;
}

.contact-cta-card p {
	opacity: 0.8;
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 28px;
}

.contact-cta-phone {
	font-family: 'Playfair Display', serif;
	font-size: 1.8rem;
	color: var(--gold);
	margin-bottom: 8px;
}

.contact-cta-phone small {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	color: rgba(255,255,255,0.6);
	margin-top: 4px;
}

/* ===== FOOTER V2 ===== */
.footer-v2 {
  background: var(--white);
  border-top: 1px solid rgba(23,56,29,0.08);
}
.footer-v2-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 80px 0 60px;
}
.footer-v2-brand img {
  height: 64px;
  margin-bottom: 20px;
}
.footer-v2-brand p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-v2-social {
  display: flex;
  gap: 10px;
}
.footer-v2-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  font-size: 15px;
  transition: var(--transition);
}
.footer-v2-social a:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-v2-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--forest);
  margin-bottom: 24px;
}
.footer-v2-links { list-style: none; }
.footer-v2-links li { margin-bottom: 14px; }
.footer-v2-links a {
  font-size: 14px;
  color: var(--gray);
  transition: var(--transition);
  display: inline-block;
}
.footer-v2-links a:hover {
  color: var(--forest);
  transform: translateX(4px);
}
.footer-v2-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}
.footer-v2-contact-item i {
  color: var(--gold);
  margin-top: 3px;
  font-size: 16px;
}
.footer-v2-bottom {
  border-top: 1px solid rgba(23,56,29,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-v2-bottom p {
  font-size: 13px;
  color: var(--gray);
}

/* ===== FLOATING WA ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 25px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: waPulse 2.5s infinite;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 35px rgba(37,211,102,0.55);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 25px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 35px rgba(37,211,102,0.7); }
}

/* ===== MOBILE MENU V2 ===== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 340px;
  max-width: 90vw;
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  padding: 100px 36px 36px;
  transition: var(--transition);
  box-shadow: -20px 0 60px rgba(0,0,0,0.15);
}
.mobile-drawer.open { right: 0; }
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--forest);
  cursor: pointer;
}
.drawer-link {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--forest);
  padding: 16px 0;
  border-bottom: 1px solid rgba(23,56,29,0.08);
  transition: var(--transition);
}
.drawer-link:hover { color: var(--gold); padding-left: 8px; }

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   DROPDOWN MENU (Desktop - hover)
   ============================================================ */
.nav-item-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 8px 0;
  min-width: 240px;
  box-shadow: var(--shadow-heavy);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1001;
  border: 1px solid rgba(23,56,29,0.06);
}
.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-left: 1px solid rgba(23,56,29,0.06);
  border-top: 1px solid rgba(23,56,29,0.06);
}
.dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  transition: var(--transition);
  white-space: nowrap;
}
.dropdown-link:hover {
  background: var(--cream);
  color: var(--forest);
  padding-left: 24px;
}
.dropdown-link i {
  width: 20px;
  text-align: center;
  color: var(--gold);
  font-size: 13px;
}
.dropdown-divider {
  height: 1px;
  background: rgba(23,56,29,0.06);
  margin: 6px 16px;
}
.dropdown-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray);
  padding: 8px 20px 4px;
}
.navbar.scrolled .dropdown-menu { background: var(--white); }
.navbar.scrolled .dropdown-menu::before { background: var(--white); }
.nav-link-dropdown {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link-dropdown i {
  font-size: 10px;
  transition: transform 0.3s ease;
}
.nav-item-dropdown:hover .nav-link-dropdown i {
  transform: rotate(180deg);
}

/* ============================================================
   DRAWER DROPDOWN (Mobile - tap)
   ============================================================ */
.drawer-dropdown {
  border-bottom: 1px solid rgba(23,56,29,0.08);
}
.drawer-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--forest);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.drawer-dropdown-toggle:hover { color: var(--gold); }
.drawer-dropdown-toggle i {
  font-size: 12px;
  color: var(--gold);
  transition: transform 0.3s ease;
}
.drawer-dropdown.open .drawer-dropdown-toggle i {
  transform: rotate(180deg);
}
.drawer-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 16px;
  border-left: 2px solid rgba(23,56,29,0.06);
  margin-left: 8px;
}
.drawer-dropdown.open .drawer-dropdown-menu { max-height: 500px; }
.drawer-dropdown-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray);
  padding: 8px 0 4px;
}
.drawer-dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--gray);
  transition: var(--transition);
}
.drawer-dropdown-link:hover {
  color: var(--gold);
  padding-left: 4px;
}
.drawer-dropdown-link i {
  color: var(--gold);
  font-size: 12px;
  width: 18px;
  text-align: center;
}
.drawer-dropdown-divider {
  height: 1px;
  background: rgba(23,56,29,0.06);
  margin: 8px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content-v2 .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-left p { margin: 0 auto 36px; }
  .hero-right { display: none; }
  .why-split { grid-template-columns: 1fr; }
  .why-image { height: 300px; }
  .why-image::after { display: none; }
  .testimonials-v2-grid { grid-template-columns: 1fr; }
  .testimonial-v2-card.featured { transform: none; }
  .footer-v2-top { grid-template-columns: 1fr 1fr; }
  .destinos-asymmetric { grid-template-columns: 1fr; grid-template-rows: repeat(4, 280px); }
  .destino-item.large { grid-row: span 1; }
  .tours-grid-v2 { grid-template-columns: repeat(2, 1fr); }

  /* Tour Detail Responsive */
  .tour-layout { grid-template-columns: 1fr; }
  .tour-sidebar {
    position: static;
    order: -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .quick-info-grid { grid-template-columns: repeat(3, 1fr); }
  .quick-info-price { grid-column: span 3; text-align: left; margin-top: 12px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 180px); }
  .gallery-item.large { grid-row: span 1; }
  .includes-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-summary { grid-template-columns: 1fr; text-align: center; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .lightbox-close { top: 12px; right: 12px; width: 44px; height: 44px; }
  .lightbox-nav { width: 44px; height: 44px; font-size: 14px; }
  .lightbox-img { max-width: 95vw; max-height: 75vh; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta .btn-gold { display: none; }
  .hamburger { display: flex; }
  .section-header-v2 { grid-template-columns: 1fr; text-align: center; }
  .section-desc-v2 { justify-self: center; }
  .why-content { padding: 50px 28px; }
  .why-features { grid-template-columns: 1fr; }
  .footer-v2-top { grid-template-columns: 1fr; gap: 40px; }
  .section-v2 { padding: 70px 0; }
  .marquee-track { animation-duration: 15s; }
  .hero-actions { justify-content: center; }
  .tours-grid-v2 { grid-template-columns: 1fr; }

  /* Tour Detail Mobile */
  .tour-hero { height: 60vh; min-height: 400px; }
  .quick-info-grid { grid-template-columns: 1fr 1fr; }
  .quick-info-price { grid-column: span 2; }
  .tour-sidebar { grid-template-columns: 1fr; }
  .content-section { padding: 28px; }
  .itinerary-item { grid-template-columns: 1fr; gap: 8px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 200px); }
  .related-grid { grid-template-columns: 1fr; }
  .review-header { flex-direction: column; align-items: flex-start; gap: 4px; }
  .review-date { margin-left: 0; }
}
/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
	.story-grid { grid-template-columns: 1fr; }
	.story-image { order: -1; }
	.story-image img { min-height: 350px; }
	.story-image-badge { right: 20px; bottom: -20px; }
	.values-grid { grid-template-columns: repeat(2, 1fr); }
	.stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
	.team-grid { grid-template-columns: repeat(2, 1fr); }
	.why-grid { grid-template-columns: repeat(2, 1fr); }
	.cert-grid { grid-template-columns: repeat(3, 1fr); }
	.footer-v2-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
	.nav-links, .nav-cta .btn-gold { display: none; }
	.hamburger { display: flex; }
	.about-hero { height: 55vh; min-height: 400px; }
	.values-grid { grid-template-columns: 1fr; }
	.stats-grid { grid-template-columns: 1fr 1fr; }
	.team-grid { grid-template-columns: 1fr; }
	.why-grid { grid-template-columns: 1fr; }
	.cert-grid { grid-template-columns: repeat(2, 1fr); }
	.footer-v2-top { grid-template-columns: 1fr; gap: 40px; }
	.section-v2 { padding: 70px 0; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
	.contact-layout { grid-template-columns: 1fr; }
	.faq-contact-layout { grid-template-columns: 1fr; }
	.contact-cta-card { position: static; }
	.quick-contact-grid { grid-template-columns: 1fr; }
	.form-row { grid-template-columns: 1fr; }
	.footer-v2-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
	.nav-links, .nav-cta .btn-gold { display: none; }
	.hamburger { display: flex; }
	.contact-hero { height: 50vh; min-height: 350px; }
	.form-card { padding: 28px; }
	.contact-info-card { padding: 24px; }
	.quick-contact-item { flex-direction: column; text-align: center; }
	.footer-v2-top { grid-template-columns: 1fr; gap: 40px; }
	.contact-section { padding: 70px 0; }
	.faq-contact-section { padding: 70px 0; }
}

/* ===== FIX: Hero padding for mobile navbar ===== */
@media (max-width: 768px) {
    .about-hero,
    .contact-hero {
        padding-top: 76px;
        height: auto;
        min-height: 480px;
    }
    
    .about-hero-content,
    .contact-hero-content {
        padding-top: 40px;
        padding-bottom: 60px;
    }
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--forest); border-radius: 4px; }