/* ============================================================
   WHEELS NEPAL ADVENTURE - Main Stylesheet
   Design Tokens: Forest Green (#2D6A4F) + Amber/Gold (#F59E0B)
   Font: Poppins
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  --primary: #2D6A4F;
  --primary-dark: #1B4332;
  --primary-light: #40916C;
  --primary-lighter: #52B788;
  --primary-lightest: #D8F3DC;
  --accent: #F59E0B;
  --accent-dark: #D97706;
  --accent-light: #FCD34D;
  --bg-white: #FFFFFF;
  --bg-warm: #F8F7F4;
  --bg-light: #F0EFEA;
  --text-dark: #1A1A1A;
  --text-body: #4A4A4A;
  --text-muted: #767676;
  --text-light: #FFFFFF;
  --border: #E5E5E0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 15px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-primary: 'Poppins', sans-serif;
  --font-display: 'Playfair Display', serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --header-height: 130px;
}

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

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

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

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

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

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 700;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-dark);
}

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

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.4s;
}

.btn:hover::after { transform: translateX(0); }

.btn-primary {
  background: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 106, 79, 0.35);
}

.btn-accent {
  background: var(--accent);
  color: var(--text-dark);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--text-light);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--bg-white);
  color: var(--primary);
  border-color: var(--bg-white);
}
.btn-light:hover {
  background: var(--bg-warm);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ---- Section Spacing ---- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  margin-bottom: 50px;
}

/* ---- Cards ---- */
.card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}

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

.card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.card-body { padding: 24px; }
.card-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.card-text { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

/* Top Bar */
.header-topbar {
  background: var(--primary-dark);
  color: var(--text-light);
  font-size: 0.8rem;
  padding: 8px 0;
  transition: var(--transition);
}

.site-header.scrolled .header-topbar {
  padding: 4px 0;
  font-size: 0.75rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left { display: flex; gap: 20px; }
.topbar-left a { color: var(--text-light); opacity: 0.85; }
.topbar-left a:hover { opacity: 1; }
.topbar-left i { margin-right: 6px; }

.topbar-right { display: flex; align-items: center; gap: 16px; }

.social-links { display: flex; gap: 10px; }
.social-links a {
  color: var(--text-light);
  opacity: 0.7;
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-links a:hover { opacity: 1; color: var(--accent); }

.rating-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
}
.rating-badge .stars { color: var(--accent); font-size: 0.7rem; letter-spacing: 2px; }

/* Main Navigation */
.main-nav {
  padding: 12px 0;
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
  /* Do NOT use overflow:hidden here — it clips absolutely-positioned dropdowns */
}

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

.logo-mark svg { width: 48px; height: 48px; }

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-size: 1.2rem; font-weight: 800; color: var(--text-dark); letter-spacing: -0.5px; }
.logo-sub { font-size: 0.65rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.logo-text.text-light .logo-name { color: var(--text-light); }
.logo-text.text-light .logo-sub { color: rgba(255,255,255,0.7); }

/* Custom Logo Responsive */
.custom-logo-link.nav-logo img.custom-logo {
  max-height: 50px;
  width: auto;
  height: auto;
  display: block;
}

.nav-logo {
  max-width: 280px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .custom-logo-link.nav-logo img.custom-logo {
    max-height: 40px;
  }
  .nav-logo {
    max-width: 200px;
  }
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  flex-wrap: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.nav-item { position: relative; }

/*
  Bridge: an invisible strip below every dropdown-parent <li>.
  It fills the gap between the nav-link and the dropdown so the
  mouse doesn't enter dead-space and lose :hover.
  Height must match or exceed .dropdown-menu margin-top (6px).
*/
.has-dropdown::after {
  content: '';
  position: absolute;
  bottom: -6px;   /* hangs 6px below the <li> bottom edge */
  left: 0;
  right: 0;
  height: 6px;
  background: transparent;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link i { font-size: 0.7rem; transition: var(--transition); flex-shrink: 0; }

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

.nav-link.active { font-weight: 600; }

.has-dropdown:hover .nav-link i { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  margin-top: 6px;    /* visual gap — matched by .has-dropdown::after height */
  left: 0;
  min-width: 260px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* No translateY — that was creating an extra invisible dead-zone */
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 99999;
  border: 1px solid var(--border);
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  flex-wrap: wrap;
}

.dropdown-item i { color: var(--primary); font-size: 1rem; }
.dropdown-item small { width: 100%; color: var(--text-muted); font-size: 0.75rem; margin-left: 28px; }

.dropdown-item:hover {
  background: var(--bg-warm);
  color: var(--primary);
  transform: translateX(4px);
}

/* Mega Menu */
/*
  NOTE: The menu builder also adds the "mega-menu" class to the top-level
  <li> (that's how the walker knows to render a mega menu). All width/grid
  styles must therefore be scoped to the dropdown panel only
  (.dropdown-menu.mega-menu) — and the .nav-item.mega-menu reset below keeps
  the <li> itself a normal-width nav item. Without it, the top-level item
  becomes 700px wide + 20px padding and creates a visible gap between
  menu items.
*/
.dropdown-menu.mega-menu {
  width: 700px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding: 20px;
}

/* Reset: the "mega-menu" class also lands on the top-level <li> (set by the
   menu builder / demo content). The <li> must stay a compact nav item, not a
   700px grid — otherwise it pushes neighboring menu items apart. */
.nav-item.mega-menu {
  width: auto;
  display: block;
  grid-template-columns: none;
  gap: 0;
  padding: 0;
}

/* Each .mega-col is one vertical column of the mega menu (see WNA_Nav_Walker). */
.mega-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.mega-col.mega-cta-col {
  flex: 1;
}

.mega-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  padding: 8px 12px 4px;
  margin-bottom: 4px;
}

.mega-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mega-link i { color: var(--primary); font-size: 1rem; }
.mega-link span { line-height: 1.2; }
.mega-link strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }
.mega-link small { color: var(--text-muted); font-size: 0.7rem; }

.mega-link:hover {
  background: var(--bg-warm);
  transform: translateX(4px);
}

.mega-link:hover strong { color: var(--primary); }

.mega-col.mega-cta-col { display: flex; }
.mega-cta-col .mega-cta-card { flex: 1; }
.mega-cta-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-md);
  padding: 24px;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.mega-cta-icon { font-size: 2rem !important; color: var(--accent) !important; }
.mega-cta-card h4 { font-size: 1rem; color: var(--text-light); }
.mega-cta-card p { font-size: 0.8rem; opacity: 0.85; line-height: 1.5; }

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-plan-btn { display: flex; }
.nav-book-btn { display: flex; }

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

/* Visually-hidden checkbox that powers the mobile menu (pure CSS toggle).
   Kept focusable so keyboard users can open/close it (Tab + Space). */
.menu-toggle-check {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Mobile-menu footer CTA (hidden on desktop; shown inside the overlay) */
.nav-menu-footer {
  display: none;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 4px;
  transition: var(--transition);
}

/* Keyboard focus ring on the hamburger when the hidden checkbox is focused */
.menu-toggle-check:focus-visible ~ .nav-actions .mobile-menu-toggle {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  padding-top: var(--header-height);
  display: flex;
  flex-direction: column;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(27, 67, 50, 0.92) 0%, rgba(13, 43, 29, 0.85) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 720px;
  padding: 60px 0;
}

.hero-tag {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 6px 16px 6px 8px;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-tag .badge-pill {
  background: var(--accent);
  color: var(--text-dark);
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.2rem);
  font-weight: 900;
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero h1 .highlight {
  color: var(--accent);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 580px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-actions .btn { min-width: 180px; }

/* ---- Animations ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   FEATURED TOURS SECTION
   ============================================================ */

.featured-tours { background: var(--bg-warm); }

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.tour-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--bg-white);
  transition: var(--transition);
  border: 1px solid var(--border);
}

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

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

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

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

.tour-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: var(--text-dark);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tour-card-difficulty {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0,0,0,0.7);
  color: var(--text-light);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 500;
}

.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 i { color: var(--primary); margin-right: 4px; }

.tour-card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tour-card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.tour-card-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tour-card-highlights span {
  background: var(--primary-lightest);
  color: var(--primary-dark);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
}

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

.tour-card-price {
  display: flex;
  flex-direction: column;
}

.tour-card-price .price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}

.tour-card-price .price-label {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ============================================================
   DESTINATIONS SECTION (Home) — Interactive Explorer
   ============================================================ */

.destinations-explorer {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: stretch;
}

/* ---- Destination list (left) ---- */
.explorer-list {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.explorer-list-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  padding: 0 10px 12px;
}

.explorer-item {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 15px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  background: transparent;
  font-family: var(--font-primary);
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.explorer-item:hover {
  background: var(--bg-white);
  border-color: var(--border);
  transform: translateX(4px);
}

.explorer-item.active {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(45, 106, 79, 0.25);
}

.explorer-item-num {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  min-width: 28px;
}

.explorer-item.active .explorer-item-num {
  color: var(--accent-light);
}

.explorer-item-name {
  flex: 1;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
}

.explorer-item.active .explorer-item-name {
  color: var(--text-light);
}

.explorer-item-tag {
  background: var(--accent);
  color: var(--text-dark);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 50px;
  flex-shrink: 0;
}

.explorer-item-arrow {
  font-size: 0.9rem;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition);
}

.explorer-item:hover .explorer-item-arrow,
.explorer-item.active .explorer-item-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ---- Photo panel (right) ---- */
.explorer-photo {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 540px;
  background: var(--primary-dark);
  box-shadow: var(--shadow-lg);
}

.explorer-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.45s ease, transform 7s ease;
}

.explorer-photo:hover .explorer-photo-img {
  transform: scale(1.04);
}

.explorer-photo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.82) 100%);
  color: var(--text-light);
}

.explorer-photo-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.explorer-photo-tag i {
  color: var(--accent);
}

.explorer-photo-overlay h3 {
  color: var(--text-light);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 10px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.explorer-photo-overlay p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 22px;
}

.explorer-photo-overlay p:empty {
  display: none;
}

.explorer-photo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.explorer-photo-link i {
  transition: var(--transition);
}

.explorer-photo:hover .explorer-photo-link i {
  transform: translateX(6px);
}

@media (max-width: 1024px) {
  .destinations-explorer {
    grid-template-columns: 320px 1fr;
    gap: 24px;
  }

  .explorer-photo {
    min-height: 460px;
  }
}

@media (max-width: 900px) {
  .destinations-explorer {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Compact 2-col list on tablets */
  .explorer-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 20px 16px;
  }

  .explorer-list-title {
    grid-column: 1 / -1;
  }

  .explorer-item {
    padding: 12px 12px;
    gap: 10px;
  }

  .explorer-item-arrow {
    display: none;
  }

  .explorer-photo {
    min-height: 380px;
  }
}

@media (max-width: 600px) {
  .explorer-list {
    grid-template-columns: 1fr;
  }

  .explorer-photo {
    min-height: 320px;
  }

  .explorer-photo-overlay {
    padding: 24px;
  }
}

/* ============================================================
   CATEGORY TABS
   ============================================================ */

.category-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.category-tab {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--bg-white);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-primary);
}

.category-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.category-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-light);
}

/* ============================================================
   STATS SECTION
   ============================================================ */

.stats-section {
  background: var(--primary-dark);
  color: var(--text-light);
  padding: 80px 0;
}

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

.stat-item { padding: 20px; }

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  font-weight: 400;
}

.stat-item i {
  font-size: 2rem;
  color: var(--primary-lighter);
  margin-bottom: 16px;
  opacity: 0.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials-section { background: var(--bg-white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-warm);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

.testimonial-author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.testimonial-author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   ABOUT SECTION (Home)
   ============================================================ */

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

.about-preview-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 500px;
}

.about-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-preview-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), transparent);
  opacity: 0.2;
}

.about-preview-content h2 { margin-bottom: 20px; }
.about-preview-content p { color: var(--text-muted); margin-bottom: 16px; font-size: 1rem; }
.about-preview-content .btn { margin-top: 12px; }

/* ============================================================
   BLOG SECTION (Home)
   ============================================================ */

.blog-section { background: var(--bg-warm); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

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

.blog-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-body h3 a:hover { color: var(--primary); }

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

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 16px;
}

.blog-read-more:hover { gap: 10px; color: var(--primary-dark); }

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), #0D2B1D);
  padding: 80px 0;
  text-align: center;
  color: var(--text-light);
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--text-light);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   PAGE HEADER (Inner Pages)
   ============================================================ */

.page-header {
  padding: calc(var(--header-height) + 20px) 0 60px;
  background: linear-gradient(135deg, var(--primary-dark), #0D2B1D);
  text-align: center;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.page-header h1 {
  color: var(--text-light);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.page-header p {
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

.page-header .page-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.page-header .page-breadcrumb a { color: var(--accent); }
.page-header .page-breadcrumb a:hover { text-decoration: underline; }

/* ============================================================
   TOURS FILTER
   ============================================================ */

.tours-filter-section {
  background: var(--bg-warm);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.filter-inner {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.filter-inner label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.filter-select {
  padding: 10px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 0.85rem;
  background: var(--bg-white);
  cursor: pointer;
  transition: var(--transition);
  min-width: 180px;
}

.filter-select:focus {
  outline: none;
  border-color: var(--primary);
}

.tours-count {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: auto;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-info-card {
  padding: 24px;
  background: var(--bg-warm);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

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

.contact-info-card i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.contact-info-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-info-card a:hover { color: var(--primary); }

.contact-form-wrapper {
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}

.contact-form-wrapper h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group label .required {
  color: #EF4444;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  transition: var(--transition);
  background: var(--bg-white);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

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

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

/* ============================================================
   AWARDS SECTION
   ============================================================ */

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
}

.award-card {
  position: relative;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 36px 28px 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
  overflow: hidden;
}

.award-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  transition: var(--transition);
}

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

.award-card:hover::before {
  height: 6px;
}

.award-card:nth-child(2)::before { background: var(--primary); }
.award-card:nth-child(3)::before { background: #059669; }
.award-card:nth-child(4)::before { background: #2563EB; }

.award-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  transition: var(--transition);
}

.award-card:nth-child(1) .award-card-icon {
  background: var(--accent-light);
  color: var(--accent-dark);
}
.award-card:nth-child(2) .award-card-icon {
  background: var(--primary-lightest);
  color: var(--primary);
}
.award-card:nth-child(3) .award-card-icon {
  background: #D1FAE5;
  color: #059669;
}
.award-card:nth-child(4) .award-card-icon {
  background: #DBEAFE;
  color: #2563EB;
}

.award-card:hover .award-card-icon {
  transform: scale(1.1) rotate(-5deg);
}

.award-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.award-card-issuer {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.award-card-year {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-lightest);
  padding: 4px 14px;
  border-radius: 50px;
}

.award-card-year i {
  font-size: 0.7rem;
}

.award-card:nth-child(1) .award-card-year { color: var(--accent-dark); background: var(--accent-light); }
.award-card:nth-child(3) .award-card-year { color: #059669; background: #D1FAE5; }
.award-card:nth-child(4) .award-card-year { color: #2563EB; background: #DBEAFE; }

.award-card-hover-icon {
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: 5rem;
  color: var(--border);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.award-card:hover .award-card-hover-icon {
  opacity: 0.4;
  bottom: -10px;
  right: -10px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-hero-section {
  padding: 80px 0;
}

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

.about-layout-reverse .about-layout {
  direction: rtl;
}

.about-layout-reverse .about-layout > * {
  direction: ltr;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 450px;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-wrapper .about-experience-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--primary);
  color: var(--text-light);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-lg);
}

.about-content h2 {
  margin-bottom: 16px;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
}

.about-feature i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.team-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--primary-lightest);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 700;
}

.team-card h4 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card .role { font-size: 0.85rem; color: var(--primary); font-weight: 500; margin-bottom: 12px; }
.team-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================================
   WORKSHOP PAGE
   ============================================================ */

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.workshop-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.workshop-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.workshop-card-header {
  background: var(--primary);
  color: var(--text-light);
  padding: 24px;
  text-align: center;
}

.workshop-card-header i {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--accent);
}

.workshop-card-header h3 {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.workshop-card-header .duration {
  font-size: 0.85rem;
  opacity: 0.8;
}

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

.workshop-card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.workshop-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.workshop-topics span {
  background: var(--bg-warm);
  color: var(--text-body);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

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

.workshop-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}

/* ============================================================
   RENTAL PAGE
   ============================================================ */

.rental-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.rental-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.rental-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.rental-card-image {
  height: 240px;
  overflow: hidden;
}

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

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

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

.rental-card-body h3 { font-size: 1.2rem; margin-bottom: 8px; }

.rental-card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.rental-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.rental-specs span {
  background: var(--bg-warm);
  color: var(--text-body);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

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

.rental-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}

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

/* ============================================================
   BLOG LISTING
   ============================================================ */

.blog-list-page .blog-card-large {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 0;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  margin-bottom: 30px;
}

.blog-list-page .blog-card-large:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card-large .blog-card-image {
  height: 100%;
  min-height: 280px;
}

/* ============================================================
   TOUR MAP & VIDEO
   ============================================================ */
.tour-map-wrapper {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
}
.tour-map-wrapper:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.tour-map-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}
.tour-map-wrapper:hover img {
  transform: scale(1.02);
}

.tour-video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  background: #000;
}
.tour-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
}
@media (max-width: 768px) {
  .tour-map-wrapper,
  .tour-video-wrapper {
    border-radius: var(--radius-sm);
  }
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  position: relative;
}

.footer-wave {
  line-height: 0;
  overflow: hidden;
}

.footer-wave svg {
  width: 100%;
  height: 60px;
  display: block;
}

.footer-main { padding: 60px 0; }

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

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 16px 0;
  opacity: 0.8;
}

.footer-trust-badges {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  background: rgba(255,255,255,0.08);
  padding: 6px 14px;
  border-radius: 50px;
}

.trust-badge i { color: var(--accent); }

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

.social-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--text-light);
  font-size: 1rem;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--accent);
  color: var(--text-dark);
  transform: translateY(-3px);
}

.footer-col-title {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a i { font-size: 0.6rem; }

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
}

.contact-item i {
  color: var(--accent);
  margin-top: 3px;
  min-width: 16px;
}

.contact-item a { color: rgba(255,255,255,0.7); }
.contact-item a:hover { color: var(--accent); }

.footer-newsletter h5 {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  color: var(--text-light);
  font-family: var(--font-primary);
  font-size: 0.85rem;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent);
}

.footer-acknowledgment {
  background: rgba(0,0,0,0.15);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.footer-bottom-links { display: flex; gap: 20px; }

.footer-bottom-links a {
  color: rgba(255,255,255,0.6);
}

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

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  color: var(--text-light);
}

.whatsapp-tooltip {
  position: absolute;
  right: 64px;
  background: var(--text-dark);
  color: var(--text-light);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  right: 70px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dropdown-menu.mega-menu {
    width: 550px;
  }
}

@media (max-width: 1024px) {
  .tours-grid,
  .testimonials-grid,
  .blog-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 900px) {
  /* MOBILE MENU — full-screen overlay design.
     Open/close is pure CSS (hidden checkbox + label), so it works even if
     JavaScript fails. Submenus are always visible (no accordion needed). */
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* iOS: 100vh extends behind the browser chrome */
    max-height: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: linear-gradient(160deg, var(--primary-dark) 0%, #0D2B1D 100%);
    flex-direction: column;
    align-items: stretch;
    /* Keep items top-aligned — the base .nav-menu centers them, which would
       clip the top of a tall menu inside this 100vh scrollable panel. */
    justify-content: flex-start;
    padding: calc(var(--header-height) + 20px) 24px 180px;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(24px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1000;
  }

  /* Open state — driven by the hidden checkbox (no JS required) */
  .menu-toggle-check:checked ~ .nav-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* Hamburger → X animation (white bars over the dark overlay) */
  .menu-toggle-check:checked ~ .nav-actions .mobile-menu-toggle span {
    background: #ffffff;
  }

  .menu-toggle-check:checked ~ .nav-actions .mobile-menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle-check:checked ~ .nav-actions .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle-check:checked ~ .nav-actions .mobile-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Top-level links: large & light on the dark overlay */
  .nav-menu .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 4px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
  }

  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    color: var(--accent);
    background: transparent;
    font-weight: 700;
  }

  /* No accordion on mobile → hide the chevrons (submenus are always open) */
  .nav-menu .nav-link i.fa-chevron-down {
    display: none;
  }

  /* Submenus: always visible & indented, light text */
  .dropdown-menu {
    position: static;
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 4px 0 8px 16px;
    background: transparent;
  }

  .dropdown-menu.mega-menu {
    width: 100%;
    grid-template-columns: 1fr;
    padding: 4px 0 8px;
    gap: 2px;
  }

  .dropdown-item,
  .mega-link {
    padding: 10px 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
  }

  .dropdown-item:hover,
  .mega-link:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.06);
    transform: none;
  }

  .dropdown-item i,
  .mega-link i {
    color: var(--accent);
  }

  .dropdown-item small,
  .mega-link small {
    color: rgba(255, 255, 255, 0.5);
  }

  .mega-title {
    margin: 10px 0 4px;
    padding-left: 8px;
    color: var(--accent-light);
  }

  .mega-cta-card {
    margin-top: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15); /* separation on the dark overlay */
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-plan-btn,
  .nav-book-btn {
    display: none;
  }

  .nav-actions .mobile-menu-toggle {
    display: flex;
  }

  /* CTA buttons pinned to the bottom of the full-screen overlay */
  .nav-menu-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }

  .menu-toggle-check:checked ~ .nav-menu-footer {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu-footer .btn {
    width: 100%;
  }

  .hero {
    min-height: 80vh;
  }

  .tours-grid,
  .testimonials-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr)!important;
    gap: 16px !important;
  }

  .about-preview {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-preview-image {
    height: 300px;
  }

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

  .about-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image-wrapper {
    height: 300px;
  }

  .blog-list-page .blog-card-large {
    grid-template-columns: 1fr;
  }

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

  .hero-image-wrapper {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 110px;
  }

  .section {
    padding: 60px 0;
  }

  .header-topbar {
    font-size: 0.7rem;
  }

  .topbar-left a:first-child {
    display: none;
  }

  .rating-badge span {
    display: none;
  }

  .page-header {
    padding: calc(var(--header-height) + 20px) 0 40px;
  }

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

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

  .about-features {
    grid-template-columns: 1fr;
  }

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

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

  .footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .topbar-left {
    gap: 12px;
  }

  .tours-grid,
  .workshop-grid,
  .rental-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
}

/* ============================================================
   RESPONSIVE: Inline Style Overrides (Mobile & Tablet)
   These override inline styles from template files at smaller
   breakpoints where CSS specificity is needed.
   ============================================================ */

/* Tablet: 768px and below */
@media (max-width: 768px) {
  /* Force 2-column content grids to stack */
  [style*="grid-template-columns:2fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Force sidebar sticky to become static */
  [style*="position:sticky;top:100px"] {
    position: static !important;
  }

  /* Force 1fr 1fr grids to stack on very narrow screens */
  [style*="grid-template-columns:1fr 1fr;gap:10px"] {
    grid-template-columns: 1fr !important;
  }

  /* Includes/Excluded 2-col grid */
  [style*="grid-template-columns:1fr 1fr;gap:24px;margin-top:30px"] {
    grid-template-columns: 1fr !important;
  }

  /* Galler hero image height */
  .gallery-hero-link {
    height: 300px !important;
  }

  /* Thumbnail grid */
  .gallery-thumb-item {
    flex: 1 1 100px !important;
    height: 80px !important;
  }

  /* Page header min-height */
  .page-header[style*="min-height:350px"] {
    min-height: 250px !important;
  }

  .page-header[style*="min-height:300px"] {
    min-height: 220px !important;
  }

  .page-header[style*="min-height:50vh"] {
    min-height: 40vh !important;
  }

  /* Stats grid to 2 columns */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* About section 2-col */
  .about-preview {
    grid-template-columns: 1fr !important;
  }

  .about-layout {
    grid-template-columns: 1fr !important;
  }

  /* Contact form grid */
  .contact-grid {
    grid-template-columns: 1fr !important;
  }

  /* Gallery section spacing */
  .tour-gallery-section {
    padding: 12px 0 6px !important;
  }

  .gallery-hero {
    gap: 4px !important;
  }

  /* Sidebar card padding reduction */
  [style*="border-radius:var(--radius-lg)"][style*="padding:24px"] {
    padding: 16px !important;
  }

  /* Section padding reduction (no !important needed for class selectors) */
  .section {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 30px;
  }

  /* Awards grid */
  .awards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  /* Team grid */
  .team-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  /* Card grids 2 columns */
  .tours-grid,
  .testimonials-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
}

/* Mobile: 480px and below */
@media (max-width: 480px) {
  /* Further reduce gallery height */
  .gallery-hero-link {
    height: 220px !important;
  }

  .gallery-thumb-item {
    flex: 1 1 80px !important;
    height: 60px !important;
  }

  .gallery-hero-zoom {
    width: 36px !important;
    height: 36px !important;
    font-size: 0.9rem !important;
  }

  .gallery-hero-count {
    padding: 4px 12px !important;
    font-size: 0.75rem !important;
  }

  .gallery-hero-overlay {
    padding: 16px !important;
  }

  /* Stats to 2 columns */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  .stat-number {
    font-size: 2rem !important;
  }

  .stat-item {
    padding: 12px !important;
  }

  /* Awards to 2 columns */
  .awards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  /* Team to 2 columns */
  .team-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  /* Tour cards on home/archive */
  .tour-card-image {
    height: 180px !important;
  }

  .tour-card-body {
    padding: 16px !important;
  }

  /* Blog cards */
  .blog-card-image {
    height: 160px !important;
  }

  .blog-card-body {
    padding: 16px !important;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 20px !important;
  }

  /* About image */
  .about-preview-image {
    height: 220px !important;
  }

  .about-image-wrapper {
    height: 220px !important;
  }

  /* Lightbox nav buttons smaller on mobile */
  .wna-lightbox-nav {
    width: 40px !important;
    height: 40px !important;
    font-size: 1rem !important;
  }

  .wna-lightbox-prev {
    left: 10px !important;
  }

  .wna-lightbox-next {
    right: 10px !important;
  }

  .wna-lightbox-close {
    width: 36px !important;
    height: 36px !important;
    font-size: 1.3rem !important;
    top: 10px !important;
    right: 10px !important;
  }

  .wna-lightbox-counter {
    padding: 4px 12px !important;
    font-size: 0.8rem !important;
  }

  /* Container padding */
  .container {
    padding: 0 16px !important;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .footer-main {
    padding: 40px 0 !important;
  }
}

/* ============================================================
   FOOTER CUSTOM LOGO (mirrors the header logo)
   ============================================================ */

.footer-logo-image .custom-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  background: var(--bg-white);
  border-radius: 10px;
  padding: 8px 14px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  /* Neutralise the header's .nav-logo constraints that also land here */
  max-width: 100% !important;
  overflow: visible !important;
  flex-shrink: 0;
}

.footer-logo-image .custom-logo-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.footer-logo-image .custom-logo {
  max-height: 52px !important;
  width: auto;
  height: auto;
  display: block;
  max-width: 240px;
}

@media (max-width: 768px) {
  .footer-logo-image .custom-logo {
    max-height: 44px !important;
  }
}

/* ============================================================
   REELS FALLBACK (image tiles shown before reels are configured)
   ============================================================ */

.reels-fallback-tile {
  position: relative;
  display: block;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}

.reels-fallback-tile:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.reels-fallback-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(131, 58, 180, 0.5), rgba(253, 29, 29, 0.4) 50%, rgba(252, 175, 69, 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.5rem;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.reels-fallback-tile:hover .reels-fallback-overlay {
  opacity: 1;
}

.reels-fallback-tile .reels-fallback-overlay i {
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

@media (max-width: 480px) {
  .reels-fallback-tile {
    border-radius: var(--radius-sm);
  }
}

/* ============================================================
   PHOTO GALLERY (Frontend)
   ============================================================ */

.tour-gallery-section {
  padding: 20px 0 10px;
}

.gallery-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gallery-hero-link {
  position: relative;
  display: block;
  width: 100%;
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.gallery-hero-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-hero-link:hover img {
  transform: scale(1.05);
}

.gallery-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-hero-link:hover .gallery-hero-overlay {
  opacity: 1;
}

.gallery-hero-zoom {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform 0.3s;
  align-self: flex-start;
}

.gallery-hero-link:hover .gallery-hero-zoom {
  transform: scale(1.1);
}

.gallery-hero-count {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.gallery-thumbs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.gallery-thumb-item {
  flex: 1 1 130px;
  height: 120px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: block;
}

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

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

.gallery-thumb-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
}

.gallery-thumb-item:hover::after {
  background: rgba(0,0,0,0.2);
}

.gallery-thumb-more {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  z-index: 2;
}

/* ============================================================
   LIGHTBOX MODAL
   ============================================================ */

.wna-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.wna-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.wna-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(4px);
}

.wna-lightbox-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 95vw;
  height: 95vh;
}

.wna-lightbox-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 85vh;
}

.wna-lightbox-image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.3s ease;
}

.wna-lightbox.active .wna-lightbox-image.loaded {
  opacity: 1;
  transform: scale(1);
}

.wna-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}

.wna-lightbox-close:hover {
  background: #ef4444;
  transform: scale(1.1);
}

.wna-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}

.wna-lightbox-nav:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-50%) scale(1.1);
}

.wna-lightbox-prev { left: 20px; }
.wna-lightbox-next { right: 20px; }

.wna-lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  background: rgba(0,0,0,0.4);
  padding: 6px 16px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

/* ============================================================
   ADMIN GALLERY UI
   ============================================================ */

.wna-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
  min-height: 80px;
}

.wna-gallery-thumb {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #e0e0e0;
  cursor: grab;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.wna-gallery-thumb:hover {
  border-color: var(--primary);
  box-shadow: 0 2px 12px rgba(45, 106, 79, 0.2);
}

.wna-gallery-thumb.ui-sortable-helper {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(45, 106, 79, 0.3);
  transform: rotate(2deg);
}

.wna-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wna-gallery-thumb-placeholder {
  width: 90px;
  height: 90px;
  border: 2px dashed #bbb;
  border-radius: 8px;
  background: #f8f8f8;
}

.wna-gallery-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.2s;
}

.wna-gallery-thumb:hover .wna-gallery-remove {
  opacity: 1;
}

.wna-gallery-remove:hover {
  background: #dc2626;
  transform: scale(1.2);
}

.wna-gallery-actions {
  margin-top: 8px;
}

.wna-gallery-actions .button-primary {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ============================================================
   ITINERARY CARDS
   ============================================================ */

.itinerary-list {
  max-width: 760px;
  margin: 0 auto;
}

.itinerary-card {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
}

.itinerary-card-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 44px;
}

.itinerary-day-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(45, 106, 79, 0.25);
}

.itinerary-card-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--border) 100%);
  margin: 4px 0;
  min-height: 20px;
}

.itinerary-card-body {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.itinerary-card:hover .itinerary-card-body {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transform: translateX(4px);
}

.itinerary-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.itinerary-card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.itinerary-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.itinerary-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
}

.itinerary-card-badge.meals {
  background: var(--primary-lightest);
  color: var(--primary-dark);
}

.itinerary-card-badge.altitude {
  background: #FEF3C7;
  color: #92400E;
}

/* ============================================================
   SIDEBAR - INFO + GOOD TO KNOW
   ============================================================ */

.sidebar-info {
  display: grid;
  gap: 10px;
  margin: 16px 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.sidebar-info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-body);
}

.sidebar-info-row i {
  color: var(--primary);
  width: 18px;
  font-size: 0.9rem;
  text-align: center;
}

.sidebar-info-row span {
  font-weight: 500;
}

.sidebar-gtk {
  margin: 16px 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.sidebar-gtk-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.sidebar-gtk-list {
  display: grid;
  gap: 10px;
}

.sidebar-gtk-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-gtk-row i {
  width: 18px;
  font-size: 0.85rem;
  color: var(--primary);
  text-align: center;
  flex-shrink: 0;
}

.sidebar-gtk-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.3;
}

.sidebar-gtk-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.sidebar-gtk-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ============================================================
   FAQ LIST
   ============================================================ */

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

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
  border-color: var(--primary-light);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 2px 16px rgba(45, 106, 79, 0.1);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  line-height: 1.4;
  transition: color 0.3s;
}

.faq-trigger:hover {
  color: var(--primary);
}

.faq-item.active .faq-trigger {
  color: var(--primary);
}

.faq-q {
  flex: 1;
}

.faq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.faq-icon i {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  background: var(--primary-lightest);
}

.faq-item.active .faq-icon i {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-reveal {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.active .faq-reveal {
  max-height: 600px;
}

.faq-reveal-inner {
  padding: 0 20px 18px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-reveal-inner p {
  margin-bottom: 10px;
}

.faq-reveal-inner p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE: Tour/Trek sections
   ============================================================ */

@media (max-width: 768px) {
  .gallery-hero-link {
    height: 280px;
  }

  .gallery-thumbs-row {
    flex-wrap: wrap;
  }

  .gallery-thumb-item {
    height: 80px;
    min-width: calc(50% - 3px);
    max-width: calc(50% - 3px);
    flex: none;
  }

  .itinerary-card {
    gap: 12px;
  }

  .itinerary-card-left {
    width: 32px;
  }

  .itinerary-day-badge {
    width: 32px;
    height: 32px;
    font-size: 0.7rem;
  }

  .itinerary-card-body {
    padding: 14px 16px;
  }

  .itinerary-card-title {
    font-size: 0.95rem;
  }

  .faq-trigger {
    padding: 14px 16px;
    font-size: 0.9rem;
  }

  .faq-reveal-inner {
    padding: 0 16px 14px;
  }
}

@media (max-width: 480px) {
  .gallery-thumb-item {
    min-width: 100%;
    max-width: 100%;
    height: 100px;
  }

  .gallery-hero-link {
    height: 220px;
  }
}

/* ---- Scroll Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Staggered Reveal Delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* Slide In Animations */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Image Reveal */
.img-reveal {
  position: relative;
  overflow: hidden;
}
.img-reveal img {
  transform: scale(1.05);
  opacity: 0;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.img-reveal.revealed img {
  transform: scale(1);
  opacity: 1;
}

.img-reveal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  z-index: 2;
  transform: translateX(-100%);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.img-reveal.revealed::before {
  transform: translateX(100%);
}

/* ---- Back to Top Button ---- */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 998;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--text-light);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-4px);
  box-shadow: 0 6px 25px rgba(45, 106, 79, 0.4);
}

/* ============================================================
   INSTAGRAM REELS SECTION
   ============================================================ */

.reels-section {
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-white) 100%);
  overflow: hidden;
}

.reels-wrapper {
  position: relative;
  padding: 0 40px;
}

.reels-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 20px 4px 30px;
  scrollbar-width: none;
}

.reels-scroll::-webkit-scrollbar {
  display: none;
}

.reel-card {
  flex: 0 0 auto;
  width: 280px;
  scroll-snap-align: start;
  transition: var(--transition);
  transform-origin: center;
  cursor: pointer;
}

.reel-card:hover {
  transform: scale(1.02);
}

.reel-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #1a1a2e;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.reel-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-overlay-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 16px;
  display: flex;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
}

.reel-card:hover .reel-overlay-top,
.reel-card.playing .reel-overlay-top {
  opacity: 1;
}

.reel-mute-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.reel-mute-btn:hover {
  background: rgba(0,0,0,0.7);
  transform: scale(1.1);
}

.reel-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reel-user {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reel-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
}

.reel-username {
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
}

.reel-caption {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reel-like-btn {
  position: absolute;
  bottom: 20px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition);
}

.reel-like-btn:hover {
  color: #ff3040;
  transform: scale(1.2);
}

.reel-like-btn.liked i {
  font-weight: 900;
  color: #ff3040;
  animation: reelLikePop 0.3s ease;
}

/* View on Instagram button (for API-fetched reels) */
.reel-view-btn {
  position: absolute;
  bottom: 20px;
  right: 56px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  border: none;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  z-index: 5;
}

.reel-view-btn:hover {
  background: var(--accent);
  color: var(--text-dark);
  transform: scale(1.15);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

@keyframes reelLikePop {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

.reel-play-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  opacity: 0;
  transition: var(--transition);
  backdrop-filter: blur(4px);
  /* Button reset so it looks exactly like the old div */
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 5;
}

.reel-card:hover .reel-play-indicator {
  opacity: 1;
}


.reels-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 2px solid var(--border);
  color: var(--text-dark);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.reels-scroll-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-light);
  transform: translateY(-50%) scale(1.1);
}

.reels-scroll-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.reels-scroll-left { left: 0; }
.reels-scroll-right { right: 0; }

.reels-scrollbar {
  height: 4px;
  background: var(--border);
  border-radius: 4px;
  margin: 4px 40px 0;
  position: relative;
  overflow: hidden;
}

.reels-scrollbar-thumb {
  height: 100%;
  background: var(--primary);
  border-radius: 4px;
  transition: width 0.3s;
}

@media (max-width: 768px) {
  .reels-wrapper {
    padding: 0 20px;
  }

  .reel-card {
    width: 220px;
  }

  .reels-scroll-btn {
    display: none;
  }

  .reels-scrollbar {
    margin: 4px 20px 0;
  }

  .reel-overlay-top,
  .reel-play-indicator {
    opacity: 1;
  }
}

/* ---- Scroll Progress Bar ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  z-index: 1001;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

/* ---- Button Ripple ---- */
.btn {
  overflow: hidden;
}

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: rippleAnim 0.6s ease-out;
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ============================================================
   MOBILE POLISH (Phones ≤600px)
   Single-column card layouts + full-width controls so nothing
   is ever squeezed into 2 tiny columns on a phone screen.
   ============================================================ */

@media (max-width: 600px) {
  /* Card grids → one full-width column on phones. Earlier rules
     forced 2 columns all the way down to 320px, which shrank each
     card to ~150px on a 375px phone. */
  .tours-grid,
  .testimonials-grid,
  .blog-grid,
  .team-grid,
  .workshop-grid,
  .rental-grid,
  .awards-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Archive filter bar stacks full-width */
  .filter-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-select {
    width: 100%;
    min-width: 0;
  }

  .tours-count {
    margin-left: 0;
    text-align: center;
  }

  /* Hero buttons stack full-width */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  /* Newsletter input + button stack on very small screens */
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
}

@media (max-width: 600px) {
  /* Hero "Since XXXX" tag: once it wraps, give it a softer rounded
     rectangle instead of a pill so the two lines look intentional. */
  .hero-tag {
    border-radius: 14px;
    padding: 8px 14px;
    line-height: 1.5;
  }
}

/* (The mobile menu was redesigned as a checkbox-toggle top panel in the
   @media (max-width: 900px) block above — no padding-top hack needed.) */

@media (max-width: 768px) {
  /* Tour & Trek pages (mobile): the single-column layout should show the
     info sidebar (price, quick facts, "Good to Know", book buttons) FIRST,
     before "About This Tour". Swap the two columns via flex + order. */
  [style*="grid-template-columns:2fr 1fr"] {
    display: flex !important;
    flex-direction: column;
    gap: 24px !important; /* tighter than the desktop 40px when stacked */
  }

  [style*="grid-template-columns:2fr 1fr"] > div:first-child {
    order: 2;
  }

  [style*="grid-template-columns:2fr 1fr"] > div:last-child {
    order: 1;
  }
}

/* ---- Pulse Animation for WhatsApp ---- */
.whatsapp-float {
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  animation: none;
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* ---- Gradient Text Animation ---- */
.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark), var(--accent));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ---- Float Animation for Icons ---- */
.float-icon {
  animation: floatIcon 3s ease-in-out infinite;
}

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

/* ---- Shimmer Loading Effect ---- */
.shimmer {
  background: linear-gradient(90deg, var(--bg-warm) 25%, var(--bg-light) 50%, var(--bg-warm) 75%);
  background-size: 200% 100%;
  animation: shimmerAnim 1.5s ease-in-out infinite;
}

@keyframes shimmerAnim {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---- Page Loader ---- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---- WordPress Core Styles ---- */
.wp-caption { margin-bottom: 1.5em; max-width: 100%; }
.wp-caption img[class*="wp-image-"] { display: block; margin: 0 auto; }
.wp-caption-text { text-align: center; font-size: 0.85rem; color: var(--text-muted); }
.gallery { margin-bottom: 1.5em; display: grid; gap: 10px; }
.gallery-item { display: inline-block; text-align: center; width: 100%; }
.gallery-columns-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-columns-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-columns-4 { grid-template-columns: repeat(4, 1fr); }
.alignnone { margin: 5px 20px 20px 0; }
.aligncenter { display: block; margin: 5px auto; }
.alignright { float: right; margin: 5px 0 20px 20px; }
.alignleft { float: left; margin: 5px 20px 20px 0; }
.wp-block-image { margin-bottom: 1.5em; }
.wp-block-image img { max-width: 100%; height: auto; }
.sticky { display: block; }
.bypostauthor { display: block; }

/* ---- Page Navigation ---- */
.page-numbers {
  display: inline-flex;
  gap: 8px;
  margin-top: 40px;
}

.page-numbers a,
.page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.page-numbers a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.page-numbers .current {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-light);
}

/* ---- Search Form ---- */
.search-form {
  display: flex;
  gap: 8px;
  max-width: 500px;
  margin: 0 auto;
}

.search-form label { flex: 1; }

.search-field {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 0.9rem;
}

.search-submit {
  padding: 12px 20px;
  background: var(--primary);
  color: var(--text-light);
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-primary);
  font-weight: 600;
  transition: var(--transition);
}

.search-submit:hover {
  background: var(--primary-dark);
}

/* ---- Alert Messages ---- */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.alert-success {
  background: #D1FAE5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.alert-danger {
  background: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

/* ---- Comments ---- */
.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.comment-body {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.comment-author .avatar {
  border-radius: 50%;
}

.comment-author .fn { font-weight: 600; font-style: normal; }

.comment-metadata a {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.comment-content { margin-bottom: 12px; line-height: 1.7; }

.reply .comment-reply-link {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
}

.reply .comment-reply-link:hover { color: var(--primary-dark); }
