/* ================================================================
   NAZARENO TRAVELS — Premium Tourism Website
   Paleta: verde naturaleza + negro cinematográfico + dorado
   ================================================================ */

/* ===== VARIABLES ===== */
:root {
  --bg-primary: #050d07;
  --bg-secondary: #0a1a0e;
  --bg-card: #0f2317;
  --green-dark: #1b4332;
  --green: #2d6a4f;
  --green-mid: #40916c;
  --green-light: #52b788;
  --green-neon: #4ade80;
  --green-neon-dim: rgba(74, 222, 128, 0.15);
  --gold: #e8a020;
  --gold-dim: rgba(232, 160, 32, 0.2);
  --white: #f0f4f0;
  --white-dim: rgba(240, 244, 240, 0.7);
  --gray: #6b7d72;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --shadow-green: 0 0 40px rgba(74, 222, 128, 0.15);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.5);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-accent: 'Montserrat', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; height: 100%; object-fit: cover; display: block; }

a { text-decoration: none; color: inherit; transition: var(--transition); }

ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-neon-dim);
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: var(--green-neon);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-badge.light {
  color: #fff;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

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

.section-title.light { color: #fff; }
.section-title.light em { color: var(--gold); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--white-dim);
  max-width: 600px;
  line-height: 1.8;
}

.section-subtitle.light { color: rgba(255,255,255,0.8); }

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

.section-header .section-subtitle { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  color: #fff;
  box-shadow: 0 4px 20px rgba(45, 106, 79, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(45, 106, 79, 0.6);
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}

.btn-green {
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  color: #fff;
  box-shadow: 0 4px 16px rgba(45, 106, 79, 0.35);
}
.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 106, 79, 0.5);
}

.btn-outline-green {
  background: transparent;
  color: var(--green-neon);
  border: 1.5px solid var(--green-neon);
}
.btn-outline-green:hover {
  background: var(--green-neon-dim);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-large { padding: 18px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; margin-top: 20px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(5, 13, 7, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  transition: var(--transition);
}

.nav-logo-img:hover { transform: scale(1.04); }

.footer-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 10px;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-accent);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

.logo-sub {
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 0.6rem;
  color: var(--green-neon);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(240,244,240,0.75);
  padding: 8px 14px;
  border-radius: 8px;
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  color: var(--green-neon);
  background: var(--green-neon-dim);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  padding: 10px 20px;
  border-radius: 100px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.nav-cta:hover {
  transform: 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;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero:hover .hero-img { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 13, 7, 0.3) 0%,
    rgba(5, 13, 7, 0.55) 40%,
    rgba(5, 13, 7, 0.85) 80%,
    rgba(5, 13, 7, 1) 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--green-neon);
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-10vh) translateX(40px); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  padding: 120px 24px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  color: var(--green-neon);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 20px 40px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-family: var(--font-accent);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--green-neon);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-indicator {
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  animation: bounce 2s ease infinite;
  transition: var(--transition);
}

.scroll-indicator:hover { border-color: var(--green-neon); color: var(--green-neon); }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ===== ABOUT ===== */
.about {
  padding: 120px 0;
  background: var(--bg-primary);
}

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

.about-lead {
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 400;
}

.about-body {
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 36px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.about-feature:hover {
  background: var(--green-neon-dim);
  border-color: rgba(74, 222, 128, 0.2);
  transform: translateX(4px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--green-neon-dim);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-neon);
  font-size: 0.9rem;
}

.about-feature strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.about-feature span {
  font-size: 0.82rem;
  color: var(--gray);
}

.about-visual { position: relative; }

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-card);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-wrapper:hover .about-img { transform: scale(1.05); }

.about-img-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
}

.about-img-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(5, 13, 7, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-neon);
}

.about-img-card i { font-size: 1rem; color: var(--gold); }

.about-accent-card {
  position: absolute;
  top: 32px;
  right: -24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  max-width: 200px;
}

.accent-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--gold-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.about-accent-card strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

.about-accent-card span {
  font-size: 0.72rem;
  color: var(--gray);
}

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 80px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

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

.stat-item {
  text-align: center;
  padding: 40px 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-neon), transparent);
  opacity: 0;
  transition: var(--transition);
}

.stat-item:hover { transform: translateY(-6px); border-color: rgba(74, 222, 128, 0.25); }
.stat-item:hover::before { opacity: 1; }

.stat-icon {
  font-size: 1.5rem;
  color: var(--green-neon);
  margin-bottom: 16px;
  opacity: 0.8;
}

.stat-value {
  font-family: var(--font-accent);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stat-unit {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-neon);
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 0.82rem;
  color: var(--gray);
}

/* ===== EXPERIENCES ===== */
.experiences {
  padding: 120px 0;
  background: var(--bg-primary);
}

.experiences-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 28px;
  align-items: start;
}

.exp-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.exp-card:hover { transform: translateY(-8px); box-shadow: 0 30px 80px rgba(0,0,0,0.6); }

.exp-card.featured { border-color: rgba(74, 222, 128, 0.25); }

.exp-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.exp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.exp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 35, 23, 0.9) 100%);
}

.exp-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: #000;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}

.exp-difficulty {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
}

.exp-difficulty.moderate {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

.exp-difficulty.easy {
  background: var(--green-neon-dim);
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: var(--green-neon);
}

.exp-card-body { padding: 28px; }

.exp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.exp-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--green-neon);
  background: var(--green-neon-dim);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.exp-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.exp-desc {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.7;
  margin-bottom: 24px;
}

.exp-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}

.include-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--white-dim);
}

.include-item i { color: var(--green-neon); font-size: 0.7rem; }

.exp-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--white-dim);
  padding: 8px 12px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
}

.highlight i { color: var(--green-neon); font-size: 0.8rem; }

.exp-route {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--white-dim);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.exp-route strong { color: var(--white); }
.exp-route i.fa-arrow-right { color: var(--green-neon); }

.exp-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== TREKKING DETAIL ===== */
.detail-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.detail-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.detail-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,13,7,0.97) 0%, rgba(10,26,14,0.92) 60%, rgba(5,13,7,0.97) 100%);
}

.detail-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 60px;
}

.detail-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.info-cards {
  display: grid;
  gap: 12px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.info-card:hover {
  background: var(--green-neon-dim);
  border-color: rgba(74, 222, 128, 0.25);
  transform: translateX(4px);
}

.info-card i {
  width: 36px;
  min-width: 36px;
  text-align: center;
  font-size: 1.1rem;
  color: var(--green-neon);
}

.info-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 600;
}

.info-card span {
  font-size: 0.78rem;
  color: var(--gray);
}

/* Itinerary */
.itinerary {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.itinerary-title {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-neon);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.itinerary-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.itin-item {
  display: flex;
  gap: 20px;
  padding-bottom: 24px;
}

.itin-item.last { padding-bottom: 0; }

.itin-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.day-num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 0 16px rgba(45, 106, 79, 0.4);
}

.itin-line {
  width: 2px;
  flex: 1;
  min-height: 20px;
  background: linear-gradient(180deg, var(--green), transparent);
  margin-top: 8px;
}

.itin-content { padding-top: 8px; }

.itin-content h4 {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.itin-content p {
  font-size: 0.84rem;
  color: var(--white-dim);
  line-height: 1.6;
}

/* ===== CORREDOR DE VALLES ===== */
.corredor-section {
  padding: 120px 0;
  background: var(--bg-secondary);
}

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

.corredor-stops {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stop-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.stop-card:hover {
  background: var(--green-neon-dim);
  border-color: rgba(74, 222, 128, 0.25);
  transform: translateX(6px);
}

.stop-num {
  font-family: var(--font-accent);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--green-neon);
  opacity: 0.3;
  line-height: 1;
  min-width: 40px;
}

.stop-info h4 {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.stop-info h4 i { color: var(--green-neon); font-size: 0.9rem; }

.stop-info p {
  font-size: 0.84rem;
  color: var(--white-dim);
  line-height: 1.6;
}

.corredor-img-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
}

.corredor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.corredor-img-wrapper:hover .corredor-img { transform: scale(1.05); }

.corredor-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.corredor-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(5, 13, 7, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-neon);
}

/* Qué llevar */
.que-llevar {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px;
}

.que-llevar h4 {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.que-llevar h4 i { color: var(--green-neon); }

.llevar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.llevar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--white-dim);
}

.llevar-item i { color: var(--green-neon); font-size: 0.75rem; }

/* ===== GALLERY ===== */
.gallery {
  padding: 120px 0;
  background: var(--bg-primary);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 220px);
  gap: 12px;
  margin-bottom: 40px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
}

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5,13,7,0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
}

.gallery-cta { text-align: center; }

/* Gallery placeholder for empty images */
.gallery-item:not(:has(img[src$="gallery-1.jpg"]:not([src$=""]))) {
  background: linear-gradient(135deg, #0f2317, #1b4332);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 120px 0;
  background: var(--bg-secondary);
}

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

.testi-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
}

.testi-card:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 222, 128, 0.2);
  box-shadow: var(--shadow-green);
}

.testi-card.featured-testi {
  background: var(--green-neon-dim);
  border-color: rgba(74, 222, 128, 0.3);
  transform: scale(1.02);
}

.testi-card.featured-testi:hover {
  transform: scale(1.02) translateY(-6px);
}

.testi-quote {
  font-size: 2rem;
  color: var(--green-neon);
  opacity: 0.4;
  margin-bottom: 16px;
  line-height: 1;
}

.testi-text {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 600;
}

.testi-author span {
  font-size: 0.78rem;
  color: var(--gray);
}

.testi-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; }

/* ===== QUOTE SECTION ===== */
.quote-section {
  position: relative;
  padding: 140px 0;
  text-align: center;
  overflow: hidden;
}

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

.quote-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,13,7,0.92), rgba(27,67,50,0.88), rgba(5,13,7,0.92));
}

.quote-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.quote-icon {
  font-size: 2rem;
  color: var(--green-neon);
  opacity: 0.6;
  margin-bottom: 32px;
}

blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 24px;
}

blockquote em {
  color: var(--gold);
  font-style: italic;
}

.quote-sub {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}

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

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,13,7,0.85) 0%, rgba(5,13,7,0.95) 100%);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-title em {
  font-style: italic;
  color: var(--gold);
}

.cta-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-contacts {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.cta-contact:hover { color: var(--green-neon); }

/* ===== FOOTER ===== */
.footer { background: #030806; }

.footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--green-neon);
  margin-bottom: 12px;
  opacity: 0.8;
}

.footer-desc {
  font-size: 0.84rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  color: var(--green-neon);
  border-color: rgba(74, 222, 128, 0.4);
  background: var(--green-neon-dim);
  transform: translateY(-3px);
}

.footer-nav h4, .footer-contact h4 {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav ul a {
  font-size: 0.85rem;
  color: var(--gray);
  transition: var(--transition);
}

.footer-nav ul a:hover {
  color: var(--green-neon);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer-contact-item i { color: var(--green-neon); width: 16px; }

.footer-contact-item a {
  color: var(--gray);
  transition: var(--transition);
}

.footer-contact-item a:hover { color: var(--green-neon); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  transform: scale(0);
  animation: float-appear 0.5s ease 2s forwards;
}

@keyframes float-appear {
  to { transform: scale(1); }
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.65);
}

.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: pulse-ring 2.5s ease-out infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-top:hover {
  background: var(--green-neon-dim);
  border-color: rgba(74, 222, 128, 0.4);
  color: var(--green-neon);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 13, 7, 0.96);
  backdrop-filter: blur(20px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
}

#lightboxCaption {
  margin-top: 16px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--white-dim);
  letter-spacing: 0.05em;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: 1px solid var(--glass-border);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover { background: rgba(255,255,255,0.1); }

/* ===== IMAGE FALLBACK (when no image file) ===== */
img[src="images/hero-bg.jpg"] { background: linear-gradient(135deg, #050d07, #1b4332, #2d6a4f); }
img[src="images/about-trekking.jpg"] { background: linear-gradient(135deg, #0a1a0e, #1b4332); }
img[src="images/trekking-iruya.jpg"] { background: linear-gradient(135deg, #0f2317, #2d6a4f); }
img[src="images/corredor-valles.jpg"] { background: linear-gradient(135deg, #0a1a0e, #40916c); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-accent-card { position: static; max-width: 100%; margin-top: 16px; }
  .about-img-wrapper { aspect-ratio: 16/9; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .experiences-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .corredor-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 4px; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(5, 13, 7, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid var(--glass-border);
    z-index: 999;
  }
  .nav-links.open a { padding: 12px 16px; border-radius: 8px; width: 100%; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding: 100px 24px 60px; }
  .hero-stats { gap: 20px; padding: 16px 24px; }
  .stat-num { font-size: 1.4rem; }
  .stat-divider { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testi-card.featured-testi { transform: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .cta-buttons { flex-direction: column; align-items: center; }
  .hero-buttons { flex-direction: column; align-items: center; }

  .exp-includes { grid-template-columns: 1fr; }
  .exp-highlights { grid-template-columns: 1fr; }

  .itin-item { gap: 14px; }

  .corredor-stops { gap: 12px; }
  .llevar-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.8rem; }
  .hero-title { font-size: 2.4rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { display: none; }
  .itinerary { padding: 24px 20px; }
}

/* ===== 7-EXCURSIONES GRID ===== */
.experiences-grid-7 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.experiences-grid-7 .exp-card-img { aspect-ratio: unset; overflow: hidden; }
.experiences-grid-7 .exp-card-img img { height: auto !important; object-fit: contain !important; }

@media (max-width: 1024px) {
  .experiences-grid-7 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .experiences-grid-7 { grid-template-columns: 1fr; }
}

/* ===== MODALES ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-backdrop-bg {
  position: absolute;
  inset: 0;
  background: rgba(5, 13, 7, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.modal-box {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: var(--radius);
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
  animation: modal-slide-in 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modal-slide-in {
  from { transform: translateY(24px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

.modal-box::-webkit-scrollbar { width: 4px; }
.modal-box::-webkit-scrollbar-thumb { background: var(--green-dark); border-radius: 2px; }

.modal-header-img {
  position: relative;
  aspect-ratio: 16/6;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.modal-header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-header-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--bg-card) 100%);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(5, 13, 7, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
}

.modal-close-btn:hover {
  background: rgba(74, 222, 128, 0.2);
  border-color: rgba(74, 222, 128, 0.4);
  color: var(--green-neon);
}

.modal-body-content { padding: 32px; }

.modal-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.modal-subtitle {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  color: var(--green-neon);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.modal-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.modal-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--green-neon);
  background: var(--green-neon-dim);
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.modal-description {
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 28px;
}

.modal-section-title {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-section-title i { color: var(--green-neon); }

.modal-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

.modal-highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--white-dim);
  padding: 10px 14px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
}

.modal-highlight-item i { color: var(--green-neon); font-size: 0.78rem; flex-shrink: 0; }

.modal-itinerary { margin-bottom: 28px; }

.modal-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.modal-photo {
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}

.modal-photo img { width: 100%; height: 100%; object-fit: cover; }

.photo-pending {
  background: linear-gradient(135deg, #0a1a0e, #1b4332);
  border: 1px dashed rgba(74, 222, 128, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-pending-inner {
  text-align: center;
  color: rgba(74, 222, 128, 0.35);
}

.photo-pending-inner i { font-size: 1.4rem; margin-bottom: 6px; display: block; }
.photo-pending-inner span { font-size: 0.68rem; font-family: var(--font-accent); letter-spacing: 0.05em; }

/* ===== CHATBOT ===== */
.chatbot-widget {
  position: fixed;
  bottom: 172px;
  right: 28px;
  z-index: 998;
}

.chatbot-toggle {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  border-radius: 50%;
  border: none;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(45, 106, 79, 0.5);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.chatbot-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(45, 106, 79, 0.65);
}

.chatbot-notification {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  color: #000;
  display: none;
  align-items: center;
  justify-content: center;
}

.chatbot-window {
  position: absolute;
  bottom: 68px;
  right: 0;
  width: 340px;
  background: var(--bg-card);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.chatbot-window.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.chatbot-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-bottom: 1px solid rgba(74, 222, 128, 0.15);
}

.chatbot-avatar {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
}

.chatbot-info { flex: 1; }

.chatbot-info strong {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
}

.chatbot-info span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
}

.chatbot-dot {
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.chatbot-minimize {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-size: 1rem;
  padding: 4px;
  transition: var(--transition);
}

.chatbot-minimize:hover { color: #fff; }

.chatbot-messages {
  flex: 1;
  max-height: 280px;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
}

.chatbot-messages::-webkit-scrollbar { width: 3px; }
.chatbot-messages::-webkit-scrollbar-thumb { background: var(--green-dark); }

.chat-msg {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.chat-msg.user { flex-direction: row-reverse; }

.chat-avatar {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--green-neon-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--green-neon);
  flex-shrink: 0;
}

.chat-bubble {
  max-width: 220px;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.83rem;
  line-height: 1.5;
  color: var(--white);
}

.chat-msg.bot .chat-bubble {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  border-bottom-left-radius: 4px;
}

.chat-msg.user .chat-bubble {
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  border-bottom-right-radius: 4px;
}

.chat-bubble a { color: var(--green-neon); text-decoration: underline; }

/* Typing indicator */
.typing-indicator .chat-bubble {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 12px 16px;
}

.typing-indicator .chat-bubble span {
  width: 6px;
  height: 6px;
  background: var(--green-neon);
  border-radius: 50%;
  animation: typing-bounce 1.2s ease infinite;
}

.typing-indicator .chat-bubble span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator .chat-bubble span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

.chatbot-input-area {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--glass-border);
  background: var(--bg-primary);
}

.chatbot-input-area input {
  flex: 1;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 10px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.83rem;
  outline: none;
  transition: var(--transition);
}

.chatbot-input-area input:focus {
  border-color: rgba(74, 222, 128, 0.4);
  background: rgba(255,255,255,0.06);
}

.chatbot-input-area input::placeholder { color: var(--gray); }

.chatbot-input-area button {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.chatbot-input-area button:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(45, 106, 79, 0.5);
}

@media (max-width: 480px) {
  .chatbot-widget { right: 16px; bottom: 90px; }
  .chatbot-window { width: calc(100vw - 48px); right: -16px; }
  .modal-highlights { grid-template-columns: 1fr; }
  .modal-photos { grid-template-columns: 1fr; }
  .modal-title { font-size: 1.6rem; }
}

/* ===== SMOOTH TRANSITIONS ===== */
section { transition: opacity 0.3s ease; }

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--green-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--green); }

/* ===== SELECTION ===== */
::selection { background: rgba(74, 222, 128, 0.2); color: var(--green-neon); }
