/* ===== ROOT VARIABLES ===== */
:root {
  --forest-dark: #071a0b;
  --forest-deep: #0d2b12;
  --forest-mid: #1a4d24;
  --forest-light: #2d7a3e;
  --forest-bright: #3daa54;
  --accent: #6fcf82;
  --accent-soft: #a8e6b4;
  --white: #ffffff;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-40: rgba(255, 255, 255, 0.4);
  --white-15: rgba(255, 255, 255, 0.15);
  --white-08: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-hover: rgba(255, 255, 255, 0.14);
  --text-main: #f0f9f2;
  --text-muted: rgba(240, 249, 242, 0.65);
  --text-faint: rgb(198, 195, 195);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --radius: 20px;
  --radius-lg: 32px;
  --radius-sm: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--forest-dark);
  color: var(--text-main);
  overflow-x: hidden;
  cursor: none;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ===== PARTICLES ===== */
#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: float-up var(--dur, 8s) var(--delay, 0s) infinite ease-in-out;
}

@keyframes float-up {
  0% {
    transform: translateY(100vh) translateX(0) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 0.4;
  }

  90% {
    opacity: 0.2;
  }

  100% {
    transform: translateY(-10vh) translateX(var(--drift, 20px)) scale(1);
    opacity: 0;
  }
}

/* ===== CURSOR ===== */
.cursor {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s;
}

.cursor-follower {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: left 0.15s ease, top 0.15s ease, width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.6;
}

.cursor.expanded {
  width: 20px;
  height: 20px;
}

.cursor-follower.expanded {
  width: 60px;
  height: 60px;
  opacity: 0.3;
}

/* ===== GLASS CARD ===== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-4px);
  background: var(--glass-hover);
  box-shadow: var(--shadow-lg);
}

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1400px;
  z-index: 1000;
  transition: top 0.4s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: rgba(7, 26, 11, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Header logo image */
.header-logo-img {
  height: 46px;
  border-radius: 70px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Footer logo image */
.footer-logo-img {
  height: 98px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

.logo-icon {
  font-size: 1.4rem;
}

.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--white);
}

.logo-accent {
  color: var(--accent);
}

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

.nav-link {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white-70);
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  background: var(--white-15);
  color: var(--white);
}

.nav-cta {
  padding: 10px 24px;
  background: var(--accent);
  color: var(--forest-dark);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--accent-soft);
  transform: scale(1.04);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}

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

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(7, 26, 11, 0.97);
  backdrop-filter: blur(24px);
  z-index: 999;
  padding: 100px 40px 40px;
  transform: translateY(-110%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu a {
  display: block;
  padding: 16px 20px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white-70);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  transition: 0.3s;
}

.mobile-menu a:hover {
  background: var(--glass-bg);
  color: var(--white);
}

/* ===== PAGE SYSTEM ===== */
#pageWrapper {
  position: relative;
}

.page {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  min-height: 100vh;
}

.page.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

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

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-ken-burns 20s ease-in-out infinite alternate;
}

@keyframes hero-ken-burns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(7, 26, 11, 0.85) 0%,
      rgba(13, 43, 18, 0.6) 50%,
      rgba(7, 26, 11, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--white-15);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent-soft);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.italic-text {
  font-style: italic;
  color: var(--accent-soft);
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--white-70);
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--white-40);
  font-size: 0.75rem;
  letter-spacing: 2px;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

/* ===== BUTTONS ===== */
.btn-primary {
  padding: 14px 32px;
  background: var(--accent);
  color: var(--forest-dark);
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(111, 207, 130, 0.3);
}

.btn-primary:hover {
  background: var(--accent-soft);
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(111, 207, 130, 0.5);
}

.btn-ghost {
  padding: 14px 32px;
  background: var(--white-15);
  color: var(--white);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  background: var(--white-40);
}

.full-width {
  width: 100%;
  margin-top: 8px;
}

/* ===== STATS BAR ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: -50px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

.stat {
  text-align: center;
  padding: 28px 20px;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--accent);
  line-height: 1;
}

.stat-sym {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--accent);
}

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

/* ===== SECTIONS ===== */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 24px;
}

.bg-tinted {
  max-width: 100%;
  background: rgba(13, 43, 18, 0.3);
  padding: 100px 0;
}

.bg-tinted .section {
  padding: 0 24px;
}

/* Trick: nested section inside bg-tinted handled differently */
section.section.bg-tinted>* {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 56px;
}

/* ===== DESTINATION CARDS ===== */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.dest-card {
  overflow: hidden;
}

.dest-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.dest-img-wrap img {
  height: 100%;
  transition: transform 0.6s ease;
}

.dest-card:hover .dest-img-wrap img {
  transform: scale(1.07);
}

.dest-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  backdrop-filter: blur(10px);
}

.dest-info {
  padding: 24px;
}

.dest-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.dest-info p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.read-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
  transition: 0.3s;
}

.read-link:hover {
  color: var(--accent-soft);
  letter-spacing: 0.5px;
}

/* ===== CATEGORIES ===== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.cat-card {
  padding: 32px 28px;
}

.cat-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.cat-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.cat-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ===== QUOTE BANNER ===== */
.quote-banner {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: 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: rgba(7, 26, 11, 0.82);
}

.quote-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 24px;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--accent);
  line-height: 0.5;
  margin-bottom: 20px;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 16px;
}

.quote-author {
  color: var(--accent-soft);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* ===== TIPS ===== */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.tip-card {
  padding: 36px 28px;
}

.tip-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 16px;
}

.tip-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.tip-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testi-card {
  padding: 32px;
}

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

.testi-card>p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testi-avatar {
  width: 42px;
  height: 42px;
  background: var(--forest-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--white);
  flex-shrink: 0;
}

.testi-author strong {
  font-size: 0.9rem;
}

.testi-author small {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 48px;
  text-align: center;
}

.nl-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.newsletter-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 12px;
}

.newsletter-section p {
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.nl-form {
  display: flex;
  gap: 12px;
}

.nl-input {
  flex: 1;
  padding: 14px 20px;
  background: var(--white-08);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: 0.3s;
}

.nl-input:focus {
  border-color: var(--accent);
  background: var(--white-15);
}

.nl-input::placeholder {
  color: var(--text-faint);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-ken-burns 20s ease-in-out infinite alternate;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 26, 11, 0.88) 0%, rgba(13, 43, 18, 0.65) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 24px;
  margin-top: 80px;
}

.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 20px 0 16px;
}

.page-hero-content p {
  color: var(--white-70);
  font-size: 1rem;
  line-height: 1.8;
}

/* ===== EXPLORE GRID ===== */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.explore-card {
  overflow: hidden;
}

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

.exp-img-wrap img {
  height: 100%;
  transition: transform 0.6s;
}

.explore-card:hover .exp-img-wrap img {
  transform: scale(1.06);
}

.exp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 26, 11, 0.7), transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.exp-tag {
  padding: 5px 14px;
  background: var(--accent);
  color: var(--forest-dark);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.exp-body {
  padding: 28px;
}

.exp-meta {
  display: flex;
  gap: 8px;
  color: var(--text-faint);
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.exp-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.exp-body>p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.exp-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.feature-tag {
  padding: 5px 12px;
  background: var(--white-08);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.exp-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.exp-difficulty {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.easy {
  background: rgba(111, 207, 130, 0.15);
  color: var(--accent);
}

.moderate {
  background: rgba(255, 196, 61, 0.15);
  color: #ffc43d;
}

.hard {
  background: rgba(239, 83, 80, 0.15);
  color: #ef5350;
}

.exp-season {
  color: var(--text-faint);
  font-size: 0.78rem;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 48px;
}

.faq-item {
  overflow: hidden;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
  font-size: 0.95rem;
}

.faq-q:hover {
  color: var(--accent);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.8;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 24px 20px;
}

/* ===== GALLERY ===== */
.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  margin-top: 16px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  transition: 0.3s;
  backdrop-filter: blur(10px);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--accent);
  color: var(--forest-dark);
  border-color: var(--accent);
}

.gallery-masonry {
  columns: 3;
  column-gap: 20px;
}

.gal-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gal-item.tall img {
  height: 420px;
}

.gal-item img {
  height: 250px;
  transition: transform 0.6s;
}

.gal-item:hover img {
  transform: scale(1.07);
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 26, 11, 0.85), transparent 60%);
  opacity: 0;
  transition: 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gal-overlay span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
}

.lightbox.open {
  display: flex;
}

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

.lb-close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 1.5rem;
  color: var(--white-70);
  transition: 0.3s;
}

.lb-close:hover {
  color: var(--accent);
}

.lb-caption {
  color: var(--white-70);
  font-size: 0.9rem;
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.blog-card {
  overflow: hidden;
}

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

.blog-img-wrap img {
  height: 100%;
  transition: transform 0.6s;
}

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

.blog-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 14px;
  background: var(--accent);
  color: var(--forest-dark);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-body {
  padding: 24px;
}

.blog-meta {
  display: flex;
  gap: 6px;
  color: var(--text-faint);
  font-size: 0.75rem;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.blog-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-excerpt {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.btn-read-more {
  padding: 10px 22px;
  border: 1.5px solid var(--accent);
  border-radius: 100px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  transition: 0.3s;
}

.btn-read-more:hover {
  background: var(--accent);
  color: var(--forest-dark);
}

/* ===== BLOG CARD — IMAGE GALLERY STRIP ===== */
.blog-img-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 14px 0 18px;
  border-radius: 10px;
  overflow: hidden;
}

.blog-img-gallery img {
  width: 100%;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

.blog-img-gallery img:hover {
  transform: scale(1.06);
}

/* ===== FEATURED BLOG CARD ===== */
.blog-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 340px 1fr;
  border: 1px solid rgba(111, 207, 130, 0.35) !important;
  box-shadow: 0 0 0 1px rgba(111, 207, 130, 0.15), var(--shadow) !important;
}

.blog-card-featured .blog-img-wrap {
  height: 100%;
  min-height: 280px;
}

.blog-card-featured .blog-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Pakistan badge */
.pakistan-cat {
  background: linear-gradient(135deg, #01411C, #00732F) !important;
  color: #fff !important;
}

/* Featured badge */
.blog-featured-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 14px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

@media (max-width: 768px) {
  .blog-card-featured {
    grid-template-columns: 1fr;
  }

  .blog-card-featured .blog-img-wrap {
    height: 220px;
  }
}

/* ===== BLOG MODAL ===== */
.blog-modal {
  position: fixed;
  inset: 0;
  z-index: 8000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.blog-modal.open {
  display: flex;
}

.bm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.bm-container {
  position: relative;
  z-index: 1;
  max-width: 760px;
  width: 100%;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  animation: modal-in 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.bm-scroll {
  overflow-y: auto;
}

.bm-hero-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.bm-content {
  padding: 36px;
}

.bm-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.bm-content .bm-meta {
  color: var(--text-faint);
  font-size: 0.8rem;
  margin-bottom: 24px;
}

.bm-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.bm-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--accent-soft);
  margin: 24px 0 12px;
}

.bm-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: 0.3s;
  backdrop-filter: blur(10px);
}

.bm-close:hover {
  background: rgba(239, 83, 80, 0.3);
}

/* ===== CONTACT ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  text-decoration: none;
  color: inherit;
}

.ci-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  margin-bottom: 4px;
}

.contact-item p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* WhatsApp card */
.contact-item-wa {
  border-color: rgba(37, 211, 102, 0.35) !important;
  cursor: pointer;
}

.contact-item-wa:hover {
  background: rgba(37, 211, 102, 0.1) !important;
  border-color: rgba(37, 211, 102, 0.6) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.2) !important;
}

.wa-number {
  color: #25d366 !important;
  font-weight: 600 !important;
  font-size: 0.95rem;
}

.wa-badge {
  display: inline-block;
  margin-top: 6px;
  padding: 3px 10px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #25d366;
  letter-spacing: 0.5px;
}

.contact-form {
  padding: 40px;
}

.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 28px;
}

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

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

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

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: var(--white-08);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: 0.3s;
}

.form-input:focus {
  border-color: var(--accent);
  background: var(--white-15);
}

.form-input::placeholder {
  color: var(--text-faint);
}

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

.form-input option {
  background: var(--forest-deep);
}

.form-success {
  display: none;
  text-align: center;
  padding: 14px;
  background: rgba(111, 207, 130, 0.1);
  border: 1px solid rgba(111, 207, 130, 0.3);
  border-radius: var(--radius-sm);
  color: var(--accent);
  font-size: 0.875rem;
  margin-top: 12px;
}

/* ===== MAP SECTION ===== */
.map-section {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.map-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 26, 11, 0.8);
}

.map-content {
  position: relative;
  z-index: 2;
  padding: 32px 48px;
  text-align: center;
  max-width: 500px;
}

.map-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.map-content p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer-cta {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.footer-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7, 26, 11, 0.75), rgba(7, 26, 11, 0.92));
}

.footer-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.footer-cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-cta-content p {
  color: var(--white-70);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

#footer {
  background: var(--forest-dark);
  border-top: 1px solid var(--glass-border);
}

.footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 280px;
}

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

.social-btn {
  width: 38px;
  height: 38px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: 0.3s;
}

.social-btn:hover {
  background: var(--accent);
  color: var(--forest-dark);
  border-color: var(--accent);
}

.footer-links h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-main);
  margin-bottom: 20px;
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  color: var(--text-faint);
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== BLOG MODAL — INNER IMAGES ===== */
.bm-img-strip {
  margin: 20px 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.bm-img-strip img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.bm-img-caption {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

/* ===== BLOG ADMIN PANEL ===== */
.blog-admin-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 40px auto 0;
  padding: 13px 28px;
  background: var(--white-15);
  border: 1.5px dashed var(--glass-border);
  border-radius: 100px;
  color: var(--accent-soft);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  letter-spacing: 0.5px;
}

.blog-admin-toggle:hover {
  background: var(--white-08);
  border-color: var(--accent);
  color: var(--accent);
}

.blog-admin-panel {
  max-width: 860px;
  margin: 24px auto 0;
  padding: 40px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease, padding 0.4s ease;
  padding-top: 0;
  padding-bottom: 0;
}

.blog-admin-panel.admin-open {
  max-height: 2000px;
  opacity: 1;
  padding: 40px;
}

.blog-admin-panel h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.admin-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 28px;
  line-height: 1.6;
  padding: 12px 16px;
  background: var(--white-08);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.admin-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.admin-field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.admin-field input,
.admin-field textarea,
.admin-field select {
  padding: 12px 16px;
  background: var(--white-08);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: 0.25s;
  resize: vertical;
}

.admin-field input:focus,
.admin-field textarea:focus {
  border-color: var(--accent);
  background: var(--white-15);
}

.admin-field input::placeholder,
.admin-field textarea::placeholder {
  color: var(--text-faint);
  font-size: 0.82rem;
}

.admin-field textarea {
  min-height: 90px;
}

.admin-big-textarea {
  min-height: 200px;
  font-size: 0.82rem;
  line-height: 1.6;
}

.admin-actions {
  display: flex;
  gap: 14px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.admin-cancel {
  background: var(--white-08) !important;
  border: 1px solid var(--glass-border) !important;
  color: var(--text-muted) !important;
}

.admin-success {
  display: none;
  padding: 14px 20px;
  background: rgba(111, 207, 130, 0.12);
  border: 1px solid rgba(111, 207, 130, 0.3);
  border-radius: var(--radius-sm);
  color: var(--accent);
  font-size: 0.875rem;
  text-align: center;
  margin-top: 8px;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--forest-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--forest-mid);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

  .explore-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .dest-grid {
    grid-template-columns: 1fr;
  }

  .cat-grid {
    grid-template-columns: 1fr;
  }

  .tips-grid {
    grid-template-columns: 1fr;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .gallery-masonry {
    columns: 2;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .nl-form {
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .newsletter-section {
    padding: 40px 24px;
  }

  #header {
    top: 12px;
    width: calc(100% - 24px);
  }
}

@media (max-width: 480px) {
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-masonry {
    columns: 1;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}