/* ============================================
   VIOLA & ANDREY — Mountain Guides Uzbekistan
   Master Stylesheet
   ============================================ */

/* ----- CSS Variables ----- */
:root {
  --green-deep: #1a2a1f;
  --green-forest: #2a3a2f;
  --green-light: #3a4a3f;
  --gold: #c4a35a;
  --gold-light: #d4b36a;
  --gold-dark: #a08030;
  --cream: #f5f0e8;
  --cream-warm: #e8d5b7;
  --bark: #2c1810;
  --sand: #d0c8b0;
  --sand-dim: #8a7a5a;
  --text-light: #f0ece4;
  --text-muted: #a09070;
  --text-dim: #6a6a5a;
  --shadow: rgba(0,0,0,0.3);
  --shadow-heavy: rgba(0,0,0,0.6);
  --radius: 12px;
  --radius-sm: 8px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

/* ----- Reset & Base ----- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  background: var(--green-deep);
  color: var(--text-light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

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

.section { padding: 100px 0; }
.section-dark { background: #0f1a14; }
.section-medium { background: var(--green-forest); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto 40px; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--bark);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--bark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 163, 90, 0.3);
}

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

.btn-white {
  background: var(--cream);
  color: var(--bark);
}
.btn-white:hover {
  background: white;
  transform: translateY(-2px);
}

/* ----- Navigation ----- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(15, 26, 20, 0.95);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 20px var(--shadow);
}

.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--cream);
}

.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-logo span { color: var(--gold); }

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

.nav-links a {
  color: var(--sand);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
}

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

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

/* ----- Hero Section ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 26, 20, 0.85) 0%,
    rgba(26, 42, 31, 0.6) 50%,
    rgba(15, 26, 20, 0.4) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 120px 0 60px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--gold);
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 20px;
}

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

.hero-text {
  font-size: 1.15rem;
  color: var(--sand);
  max-width: 550px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--sand);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounceDown 2s infinite;
}

.hero-scroll .arrow { font-size: 1.2rem; }

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

/* ----- Stats Bar ----- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--green-forest);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: -50px;
  position: relative;
  z-index: 3;
  box-shadow: 0 8px 40px var(--shadow);
}

.stat-item {
  background: var(--green-deep);
  padding: 36px 20px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ----- Tour Cards ----- */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.tour-card {
  background: var(--green-forest);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.tour-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-dark);
  box-shadow: 0 12px 40px var(--shadow);
}

.tour-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

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

.tour-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.badge-easy { background: rgba(45, 106, 63, 0.9); color: #d0f0d0; }
.badge-moderate { background: rgba(196, 163, 90, 0.9); color: #1a2a1f; }
.badge-hard { background: rgba(180, 60, 60, 0.9); color: #f0d0d0; }
.badge-custom { background: rgba(60, 100, 180, 0.9); color: #d0d8f0; }

.tour-card-body { padding: 24px; }

.tour-card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.tour-card-meta span { display: flex; align-items: center; gap: 6px; }

.tour-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 10px;
}

.tour-card-desc {
  font-size: 0.9rem;
  color: var(--sand);
  margin-bottom: 18px;
  line-height: 1.6;
}

.tour-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--green-light);
}

.tour-card-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
}

.tour-card-price small {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}

.tour-card-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ----- Gallery Grid ----- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 50px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item:nth-child(3n+1) { aspect-ratio: 4/3; }
.gallery-item:nth-child(5n+2) { aspect-ratio: 3/4; }

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-item-overlay span {
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 40px;
}

.video-thumb {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/9;
  background: var(--bark);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.video-thumb:hover img { transform: scale(1.05); }

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(196, 163, 90, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 1.2rem;
  color: var(--bark);
}

.video-thumb:hover .video-play-btn {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.1);
}

/* ----- Lightbox ----- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  padding: 16px 12px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ----- Testimonials ----- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--green-forest);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--green-light);
  transition: all var(--transition);
}

.testimonial-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--sand);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
}

.testimonial-origin {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ----- Contact Form ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
  align-items: start;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sand);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--green-forest);
  border: 1px solid var(--green-light);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.15);
}

.form-control::placeholder { color: var(--text-dim); }

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

select.form-control { cursor: pointer; }
select.form-control option { background: var(--green-deep); }

.contact-info { padding-top: 20px; }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--green-forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid var(--green-light);
}

.contact-info-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.9rem;
  color: var(--sand);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-forest);
  border: 1px solid var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
  font-size: 1.2rem;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--gold);
  color: var(--bark);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* ----- Map ----- */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 60px;
  height: 350px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ----- Blog Cards ----- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.blog-card {
  background: var(--green-forest);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-dark);
}

.blog-card-image {
  height: 200px;
  overflow: hidden;
}

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

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

.blog-card-body { padding: 24px; }

.blog-card-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--sand);
  line-height: 1.6;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
}

/* ----- About Timeline ----- */
.timeline {
  position: relative;
  padding-left: 40px;
  margin-top: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--green-light);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--green-deep);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 6px;
}

.timeline-text {
  font-size: 0.9rem;
  color: var(--sand);
  line-height: 1.7;
}

/* ----- Footer ----- */
.footer {
  background: #0a120e;
  padding: 80px 0 40px;
  border-top: 1px solid var(--green-forest);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--green-forest);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--gold); }

/* ----- Animations ----- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.fade-in.visible { opacity: 1; }

/* ----- Page Hero (inner pages) ----- */
.page-hero {
  position: relative;
  padding: 140px 0 80px;
  text-align: center;
  background: linear-gradient(135deg, #0f1a14 0%, #1a2a1f 50%, #0f1a14 100%);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(196,163,90,0.08) 0%, transparent 70%);
}

.page-hero h1 {
  position: relative;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--cream);
  margin-bottom: 16px;
}

.page-hero p {
  position: relative;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ----- Tour Detail (single) ----- */
.tour-detail { margin-top: 50px; }

.tour-detail-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.tour-detail-image {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 400px;
}

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

.tour-detail-info h2 { font-family: var(--font-heading); font-size: 2rem; color: var(--cream); margin-bottom: 16px; }
.tour-detail-info p { color: var(--sand); line-height: 1.8; margin-bottom: 20px; }
.tour-detail-meta { display: flex; gap: 24px; margin-bottom: 24px; flex-wrap: wrap; }
.tour-detail-meta-item { text-align: center; padding: 16px 24px; background: var(--green-forest); border-radius: var(--radius-sm); }
.tour-detail-meta-item .num { font-family: var(--font-heading); font-size: 1.3rem; color: var(--gold); }
.tour-detail-meta-item .lbl { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

.tour-itinerary { margin-top: 40px; }
.tour-itinerary h3 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--cream); margin-bottom: 20px; }
.tour-itinerary-item { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--green-light); }
.tour-itinerary-day { font-weight: 700; color: var(--gold); font-size: 0.9rem; min-width: 70px; }
.tour-itinerary-text { color: var(--sand); font-size: 0.95rem; }

.tour-includes { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
.tour-includes-list h4 { color: var(--cream); margin-bottom: 12px; font-size: 1rem; }
.tour-includes-list ul li { padding: 6px 0; color: var(--sand); font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }
.tour-includes-list ul li::before { content: '✓'; color: var(--gold); font-weight: 700; }
.tour-includes-list.excludes ul li::before { content: '✗'; color: #b04040; }

/* ----- 404 Page ----- */
.page-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.page-404 h1 {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 15vw, 10rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.page-404 h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 16px;
}

.page-404 p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* ----- Blog Article ----- */
.blog-article { max-width: 750px; margin: 50px auto; }
.blog-article h1 { font-family: var(--font-heading); font-size: 2.2rem; color: var(--cream); margin-bottom: 12px; }
.blog-article .meta { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 32px; }
.blog-article .featured-image { border-radius: var(--radius); margin-bottom: 32px; width: 100%; }
.blog-article h2 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--cream); margin: 32px 0 16px; }
.blog-article h3 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--cream); margin: 24px 0 12px; }
.blog-article p { color: var(--sand); line-height: 1.9; margin-bottom: 18px; }
.blog-article ul, .blog-article ol { color: var(--sand); line-height: 1.9; margin-bottom: 18px; padding-left: 24px; }
.blog-article li { margin-bottom: 8px; }

/* ----- Responsive ----- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tour-detail-header { grid-template-columns: 1fr; }
}

/* ----- Glossary ----- */
.glossary-term {
  margin-bottom: 20px;
  padding: 16px 20px;
  background: var(--green-forest);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
}
.glossary-term dt {
  font-family: var(--font-heading);
  color: var(--cream);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.glossary-term dd {
  color: var(--sand);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 26, 20, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    font-size: 1.2rem;
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); margin-top: -30px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonials { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .tours-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-includes { grid-template-columns: 1fr; }

  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 16px; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ============================================
   POPUP CAROUSEL
   ============================================ */
.carousel-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.carousel-popup.active { display: flex; }

.carousel-popup-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 95vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carousel-container {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bark);
  box-shadow: 0 20px 60px var(--shadow-heavy);
}

.carousel-slide {
  display: flex;
  flex-direction: column;
}

.carousel-img {
  width: 100%;
  max-height: 65vh;
  object-fit: contain;
  background: #000;
}

.carousel-info {
  padding: 20px 24px;
  background: var(--green-deep);
}

.carousel-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 10px;
}

.carousel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.carousel-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--green-forest);
  border: 1px solid var(--green-light);
  border-radius: 50px;
  font-size: 0.72rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.carousel-hashtags {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.carousel-close {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--gold);
  border: none;
  color: var(--bark);
  font-size: 1.8rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.carousel-close:hover {
  background: var(--gold-light);
  transform: scale(1.1);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: var(--cream);
  font-size: 2.5rem;
  width: 50px;
  height: 60px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.carousel-nav:hover {
  background: rgba(196, 163, 90, 0.8);
  color: var(--bark);
}

.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

.carousel-actions {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.carousel-dots {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-light);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.carousel-dot:hover {
  background: var(--gold-dark);
}

@media (max-width: 768px) {
  .carousel-popup { padding: 10px; }
  .carousel-close { top: 4px; right: 4px; width: 36px; height: 36px; font-size: 1.4rem; }
  .carousel-nav { width: 36px; height: 48px; font-size: 1.8rem; }
  .carousel-prev { left: 4px; }
  .carousel-next { right: 4px; }
  .carousel-img { max-height: 50vh; }
  .carousel-info { padding: 14px 16px; }
  .carousel-title { font-size: 1rem; }
}
