/* ============================================
   LOOKBACK TOURS — UGANDA SAFARI
   Complete Stylesheet (Tailwind Replacement)
   ============================================ */

:root {
  --forest-green: #2E7D32;
  --forest-green-hover: #1B5E20;
  --forest-green-light: rgba(46,125,50,0.15);
  --gold: #F9A825;
  --gold-hover: #F57F17;
  --gold-light: rgba(249,168,37,0.15);
  --gold-muted: rgba(249,168,37,0.4);
  --sky-blue: #42A5F5;
  --sky-blue-light: rgba(66,165,245,0.15);
  /* Logo glow palette (teal / cyan brand mark) */
  --logo-glow: #00C8C8;
  --logo-glow-core: #02A8A8;
  --logo-glow-bright: #00F0E0;
  --logo-glow-deep: #006B6B;
  --logo-glow-shadow: #003838;
  --logo-gold: #C9A227;
  --charcoal: #263238;
  --light-gray: #F5F5F5;
  --mid-gray: #E0E0E0;
  --danger: #EF5350;
  --danger-light: rgba(239,83,80,0.15);
  --success: #66BB6A;
  --success-light: rgba(102,187,106,0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
  --shadow-gold: 0 10px 30px rgba(249,168,37,0.2);
  --shadow-forest: 0 10px 30px rgba(46,125,50,0.2);
  --transition: all 0.3s ease;
}

[data-theme="dark"] {
  --bg-primary: #0a0f0c;
  --bg-secondary: #0e1711;
  --bg-card: #121a14;
  --bg-card-hover: #18231b;
  --bg-input: #1a1a1a;
  --bg-overlay: rgba(0,0,0,0.85);
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --border-color: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.15);
  --navbar-bg: rgba(14,23,17,0.92);
  --hero-overlay: rgba(0,0,0,0.55);
}

[data-theme="light"] {
  --bg-primary: #ffffff;
  --bg-secondary: #F5F5F5;
  --bg-card: #ffffff;
  --bg-card-hover: #F9FAFB;
  --bg-input: #ffffff;
  --bg-overlay: rgba(0,0,0,0.6);
  --text-primary: #1a1a1a;
  --text-secondary: #52525b;
  --text-muted: #a1a1aa;
  --border-color: rgba(0,0,0,0.08);
  --border-hover: rgba(0,0,0,0.15);
  --navbar-bg: rgba(255,255,255,0.92);
  --hero-overlay: rgba(0,0,0,0.35);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navbar-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between; height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  line-height: 0;
}
.nav-logo-img {
  height: 56px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  object-position: left center;
  display: block;
  /* Glow: #00B4FF @ 40%, soft rim #00D4FF @ 25% */
  filter:
    drop-shadow(0 0 6px color-mix(in srgb, var(--logo-glow) 40%, transparent))
    drop-shadow(0 0 14px color-mix(in srgb, var(--logo-glow-bright) 25%, transparent));
}
[data-theme="light"] .nav-logo-img {
  /* Depth #002850 @ 18%, glow #00B4FF @ 30%, core #04A8E5 @ 20% */
  filter:
    drop-shadow(0 1px 2px color-mix(in srgb, var(--logo-glow-shadow) 18%, transparent))
    drop-shadow(0 0 8px color-mix(in srgb, var(--logo-glow) 30%, transparent))
    drop-shadow(0 0 16px color-mix(in srgb, var(--logo-glow-core) 20%, transparent));
}
[data-theme="dark"] .nav-logo-img {
  /* Strong neon: #00D4FF @ 45%, #00B4FF @ 35%, #0077CC @ 25% */
  filter:
    drop-shadow(0 0 4px color-mix(in srgb, var(--logo-glow-bright) 45%, transparent))
    drop-shadow(0 0 12px color-mix(in srgb, var(--logo-glow) 35%, transparent))
    drop-shadow(0 0 22px color-mix(in srgb, var(--logo-glow-deep) 25%, transparent))
    brightness(1.05);
}
.nav-logo-icon { width: 28px; height: 28px; color: var(--gold); stroke-width: 2.5; }
.nav-logo-text { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--text-primary); }
.nav-logo-accent { color: var(--gold); }

.mobile-logo-img {
  height: 48px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  display: block;
  /* #00B4FF @ 35%, #00D4FF @ 22% */
  filter:
    drop-shadow(0 0 6px color-mix(in srgb, var(--logo-glow) 35%, transparent))
    drop-shadow(0 0 12px color-mix(in srgb, var(--logo-glow-bright) 22%, transparent));
}
.footer-logo {
  display: inline-block;
  line-height: 0;
  margin-bottom: 0.75rem;
}
.footer-logo-img {
  height: 88px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  /* #00B4FF @ 38%, #04A8E5 @ 28% */
  filter:
    drop-shadow(0 0 8px color-mix(in srgb, var(--logo-glow) 38%, transparent))
    drop-shadow(0 0 18px color-mix(in srgb, var(--logo-glow-core) 28%, transparent));
}
.auth-logo-img {
  height: 96px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  margin: 0 auto 0.35rem;
  display: block;
  /* #00D4FF @ 42%, #00B4FF @ 32% */
  filter:
    drop-shadow(0 0 8px color-mix(in srgb, var(--logo-glow-bright) 42%, transparent))
    drop-shadow(0 0 20px color-mix(in srgb, var(--logo-glow) 32%, transparent));
}

/* Fallback for browsers without color-mix */
@supports not (color: color-mix(in srgb, #00B4FF 40%, transparent)) {
  .nav-logo-img {
    filter: drop-shadow(0 0 10px #00C8C866);
  }
  [data-theme="light"] .nav-logo-img {
    filter: drop-shadow(0 1px 2px #0038382E) drop-shadow(0 0 8px #00C8C84D);
  }
  [data-theme="dark"] .nav-logo-img {
    filter: drop-shadow(0 0 12px #00F0E059) brightness(1.05);
  }
  .mobile-logo-img {
    filter: drop-shadow(0 0 8px #00C8C859);
  }
  .footer-logo-img {
    filter: drop-shadow(0 0 12px #00C8C84D);
  }
  .auth-logo-img {
    filter: drop-shadow(0 0 14px #00F0E059);
  }
}

@media (max-width: 420px) {
  .nav-logo-img {
    height: 46px;
    max-width: 100px;
  }
}
@media (min-width: 1025px) {
  .nav-logo-img {
    height: 60px;
    max-width: 130px;
  }
}

.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  padding: 0.5rem 0.75rem; font-size: 0.8rem; font-weight: 500;
  color: var(--text-secondary); border-radius: var(--radius-md);
  transition: var(--transition); text-transform: capitalize;
}
.nav-link:hover, .nav-link.active { color: var(--gold); background: var(--gold-light); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.75rem;
  flex-shrink: 0;
  z-index: 1001;
}
/* When actions sit beside #nav-links (desktop upper bar), keep them visible and clickable */
.nav-inner > .nav-actions {
  margin-left: 0.5rem;
}
.icon-btn {
  width: 36px; height: 36px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); background: transparent;
  border: 1px solid var(--border-color); transition: var(--transition);
}
.icon-btn:hover { background: var(--gold-light); color: var(--gold); border-color: var(--gold-muted); }
.icon-btn svg { width: 18px; height: 18px; }

.lang-btn { width: auto; padding: 0 0.6rem; gap: 0.3rem; font-size: 0.7rem; font-weight: 600; }
.lang-btn svg { width: 14px; height: 14px; }

.lang-dropdown { position: relative; }
.lang-menu {
  position: absolute; top: calc(100% + 0.5rem); right: 0;
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  width: 280px; max-height: 420px;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.2s ease; z-index: 1001;
  overflow: hidden;
}
.lang-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-search-wrap {
  padding: 0.65rem 0.75rem 0.5rem;
  border-bottom: 1px solid var(--border-color);
  position: sticky; top: 0;
  background: var(--bg-card);
  z-index: 2;
}
.lang-search {
  width: 100%;
  padding: 0.5rem 0.65rem 0.5rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-input);
  color: var(--text-primary);
  font-size: 0.8rem;
  outline: none;
}
.lang-search:focus { border-color: var(--gold); box-shadow: 0 0 0 2px var(--gold-light); }
.lang-search-icon {
  position: absolute; left: 1.15rem; top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px; color: var(--text-muted); pointer-events: none;
}
.lang-search-wrap { position: relative; }
.lang-list {
  overflow-y: auto;
  max-height: 340px;
  padding: 0.35rem 0;
}
.lang-section-label {
  padding: 0.4rem 0.85rem 0.25rem;
  font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-muted);
}
.lang-item {
  display: flex; align-items: center; gap: 0.55rem;
  padding: 0.5rem 0.85rem; font-size: 0.8rem; cursor: pointer;
  color: var(--text-secondary); transition: var(--transition);
}
.lang-item:hover { background: var(--gold-light); color: var(--gold); }
.lang-item.active { color: var(--gold); font-weight: 600; background: var(--gold-light); }
.lang-flag { font-size: 1.15rem; line-height: 1; flex-shrink: 0; }
.lang-item-name { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lang-empty {
  padding: 1.25rem 1rem; text-align: center;
  font-size: 0.8rem; color: var(--text-muted);
}

/* Contact Us vertical submenu */
.nav-dropdown {
  position: relative;
  display: flex; align-items: center;
}
.nav-dropdown-trigger {
  display: inline-flex; align-items: center; gap: 0.25rem;
}
.nav-dropdown-chevron {
  width: 12px; height: 12px;
  transition: transform 0.25s ease;
  opacity: 0.7;
}
.nav-dropdown:hover .nav-dropdown-chevron,
.nav-dropdown:focus-within .nav-dropdown-chevron {
  transform: rotate(180deg);
}
.nav-submenu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 260px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.4rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1002;
}
.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-submenu-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.55rem 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition);
  text-decoration: none;
}
.nav-submenu-item:hover {
  background: var(--gold-light);
  color: var(--text-primary);
}
.nav-submenu-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--gold-light);
  color: var(--gold);
  border: 1px solid var(--gold-muted);
}
.nav-submenu-svg {
  width: 18px;
  height: 18px;
  display: block;
}
.nav-submenu-item:hover .nav-submenu-icon {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
}
.nav-submenu-icon--social {
  background: var(--bg-secondary);
  border-color: var(--border-color);
  color: var(--text-secondary);
}
.nav-submenu-item:hover .nav-submenu-icon--social {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
}
.mobile-contact a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.mobile-contact-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--gold-light);
  color: var(--gold);
  border: 1px solid var(--gold-muted);
}
.mobile-contact-icon .nav-submenu-svg {
  width: 16px;
  height: 16px;
}
.nav-submenu-item strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 0.1rem;
}
.nav-submenu-item span:not(.nav-submenu-icon) {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.35;
}
.nav-submenu-item:hover span:not(.nav-submenu-icon) {
  color: var(--text-primary);
}

.mobile-contact {
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.mobile-contact-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.mobile-contact a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0.35rem 0;
}
.mobile-contact a:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  background: transparent;
  z-index: 1002;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.nav-toggle:hover {
  background: var(--gold-light);
  border-color: var(--gold-muted);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transform-origin: center;
  transition:
    transform 0.35s cubic-bezier(0.68, -0.4, 0.32, 1.4),
    opacity 0.25s ease,
    width 0.25s ease,
    background 0.25s ease;
}
/* Hamburger → X when menu is open */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--gold);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  width: 0;
  transform: scaleX(0);
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--gold);
}

/* Dim backdrop behind the drawer */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1090;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.35s;
}
.mobile-menu-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Portable slide-over drawer */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: min(100vw - 2.5rem, 380px);
  max-width: 100%;
  height: 100%;
  height: 100dvh;
  background: var(--bg-card);
  z-index: 1100;
  display: none;
  flex-direction: column;
  overflow: hidden;
  border-left: 1px solid var(--border-color);
  box-shadow: -16px 0 48px rgba(0, 0, 0, 0.22);
  transform: translateX(105%);
  opacity: 1;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  padding-top: env(safe-area-inset-top, 0);
  padding-bottom: env(safe-area-inset-bottom, 0);
  padding-right: env(safe-area-inset-right, 0);
}
.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-card);
  flex-shrink: 0;
}
.mobile-menu-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}
.mobile-menu-brand .nav-logo-text {
  font-size: 1.1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-menu-close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  color: var(--text-secondary);
}
.mobile-menu-close:hover {
  background: var(--danger-light);
  color: var(--danger);
  border-color: var(--danger);
}

.mobile-menu-scroll {
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 0.75rem 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-muted) transparent;
}
.mobile-menu-scroll::-webkit-scrollbar { width: 5px; }
.mobile-menu-scroll::-webkit-scrollbar-thumb {
  background: var(--gold-muted);
  border-radius: 4px;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  background: transparent;
  opacity: 0;
  transform: translateX(16px);
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-menu.open .mobile-link {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.08s; }
.mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.11s; }
.mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.14s; }
.mobile-menu.open .mobile-link:nth-child(5) { transition-delay: 0.17s; }
.mobile-menu.open .mobile-link:nth-child(6) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-link:nth-child(7) { transition-delay: 0.23s; }

.mobile-link-chevron {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}
.mobile-link:hover,
.mobile-link.active {
  color: var(--gold);
  background: var(--gold-light);
  border-color: var(--gold-muted);
}
.mobile-link:hover .mobile-link-chevron,
.mobile-link.active .mobile-link-chevron {
  color: var(--gold);
  transform: translateX(3px);
}

.mobile-link--cta {
  margin-top: 0.35rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-hover, #c9a227));
  color: #111 !important;
  border-color: transparent;
  font-weight: 700;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(201, 162, 39, 0.28);
}
.mobile-link--cta .mobile-link-chevron { color: #111; }
.mobile-link--cta:hover,
.mobile-link--cta.active {
  filter: brightness(1.05);
  background: linear-gradient(135deg, var(--gold), var(--gold-hover, #c9a227));
  color: #111 !important;
  border-color: transparent;
}

.mobile-contact {
  margin-top: auto;
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.mobile-contact-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.15rem;
}
.mobile-contact a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.35rem 0;
  transition: color 0.2s ease;
  word-break: break-word;
}
.mobile-contact a:hover { color: var(--gold); }

.mobile-menu .mobile-contact {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.2s,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}
.mobile-menu.open .mobile-contact {
  opacity: 1;
  transform: translateY(0);
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu,
  .mobile-menu-backdrop,
  .mobile-link,
  .mobile-menu .mobile-contact {
    transition: none !important;
  }
  .mobile-menu { transform: none; }
  .mobile-menu:not(.open) { visibility: hidden; pointer-events: none; }
  .mobile-link { opacity: 1; transform: none; }
}

/* Tablets & phones: show drawer trigger, hide desktop links */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .nav-actions { margin-left: 0.35rem; gap: 0.35rem; }
  .nav-inner { padding: 0 1rem; }
}

/* Narrow phones — full-width drawer */
@media (max-width: 420px) {
  .mobile-menu {
    width: 100%;
    border-left: none;
  }
  .nav-logo-text { font-size: 1.05rem; }
  .lang-btn span { max-width: 2.5rem; overflow: hidden; text-overflow: ellipsis; }
}

/* Tablets: slightly wider drawer */
@media (min-width: 600px) and (max-width: 1024px) {
  .mobile-menu {
    width: min(400px, 72vw);
    border-radius: 16px 0 0 16px;
  }
  .mobile-menu-scroll { padding: 1rem 1.25rem 1.75rem; }
  .mobile-link { font-size: 1.05rem; padding: 0.95rem 1.1rem; }
}

/* General responsive polish */
@media (max-width: 768px) {
  .hero { min-height: 520px; height: 85vh; }
  .section { padding: 3rem 0; }
  .container { padding-left: 1rem; padding-right: 1rem; }
  .page-header { padding: 2rem 1rem 1.5rem; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero { min-height: 560px; }
}


/* Theme icons */
.sun-icon, .moon-icon { display: none; }
[data-theme="light"] .sun-icon { display: block; }
[data-theme="dark"] .moon-icon { display: block; }

/* ============================================
   HERO CAROUSEL
   ============================================ */
.hero { position: relative; height: 100vh; min-height: 600px; overflow: visible; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease;
  background-size: cover; background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.5) 100%);
}
.hero-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15); color: var(--gold);
  padding: 0.4rem 0.9rem; border-radius: var(--radius-full);
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 1.5rem; width: fit-content;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem); color: #fff;
  font-weight: 800; line-height: 1.05; max-width: 800px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-title .accent { color: var(--gold); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255,255,255,0.85);
  max-width: 600px; margin-top: 1.25rem; line-height: 1.7;
  font-weight: 300;
}
.hero-buttons { display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; }
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 2rem; border-radius: var(--radius-full);
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  transition: var(--transition);
}
.hero-cta-primary { background: var(--gold); color: #000; box-shadow: var(--shadow-gold); }
.hero-cta-primary:hover { background: var(--gold-hover); transform: translateY(-2px); }
.hero-cta-secondary { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(8px); }
.hero-cta-secondary:hover { background: rgba(255,255,255,0.2); }

.hero-dots {
  position: absolute; bottom: 5.5rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem; z-index: 3;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.3); cursor: pointer; transition: var(--transition);
}
.hero-dot.active { background: var(--gold); width: 28px; border-radius: 5px; }

.hero-progress {
  position: absolute; bottom: 0; left: 0; height: 3px; background: var(--gold);
  transition: width 0.1s linear; z-index: 3;
}

/* ============================================
   SECTIONS & TYPOGRAPHY
   ============================================ */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-secondary); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.section-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--forest-green); font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.75rem;
}
.section-title { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.section-subtitle { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; font-weight: 300; }

[data-theme="dark"] .section-badge { color: var(--gold); }
[data-theme="light"] .section-badge { color: var(--forest-green); }

/* ============================================
   CARDS
   ============================================ */
.card-grid { display: grid; gap: 1.5rem; }
.card-grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.card-grid-4 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
}
[data-theme="dark"] .card:hover { box-shadow: 0 10px 30px rgba(46,125,50,0.15); border-color: rgba(46,125,50,0.3); }
[data-theme="light"] .card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

.card-image { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.card:hover .card-image img { transform: scale(1.08); }
.card-badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
  color: #fff; font-size: 0.65rem; font-weight: 600;
  padding: 0.3rem 0.7rem; border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.15); text-transform: uppercase; letter-spacing: 0.05em;
}
.card-rating {
  position: absolute; top: 0.75rem; right: 0.75rem;
  background: var(--gold); color: #000;
  font-size: 0.7rem; font-weight: 700;
  padding: 0.25rem 0.6rem; border-radius: var(--radius-full);
  display: flex; align-items: center; gap: 0.2rem;
}
.card-body { padding: 1.25rem; }
.card-title { font-size: 1.15rem; margin-bottom: 0.5rem; }
.card-text { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.card-meta { display: flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.card-meta svg { width: 14px; height: 14px; }
.card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.card-price { font-size: 0.75rem; color: var(--text-muted); }
.card-price strong { color: var(--gold); font-size: 1rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.6rem 1.2rem; border-radius: var(--radius-md);
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  transition: var(--transition); border: none; cursor: pointer;
}
.btn-primary { background: var(--forest-green); color: #fff; }
.btn-primary:hover { background: var(--forest-green-hover); }
.btn-gold { background: var(--gold); color: #000; }
.btn-gold:hover { background: var(--gold-hover); }
.btn-outline { background: transparent; border: 1px solid var(--border-color); color: var(--text-secondary); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 0.4rem 0.8rem; font-size: 0.7rem; }
.btn-lg { padding: 1rem 2rem; font-size: 0.85rem; }

/* ============================================
   DESTINATION CARDS (SPECIAL)
   ============================================ */
.dest-card { display: flex; flex-direction: column; }
.dest-card .card-body { flex: 1; display: flex; flex-direction: column; }
.dest-highlights { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.dest-highlights span {
  font-size: 0.65rem; padding: 0.25rem 0.5rem;
  border-radius: var(--radius-full); border: 1px solid var(--border-color);
  color: var(--text-secondary); background: var(--bg-secondary);
}

/* ============================================
   GUIDE CARDS
   ============================================ */
.guide-card { text-align: center; padding: 2rem 1.5rem; }
.guide-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  margin: 0 auto 1rem; object-fit: cover;
  border: 3px solid var(--gold); padding: 3px;
}
.guide-name { font-size: 1.1rem; margin-bottom: 0.25rem; }
.guide-role { font-size: 0.75rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.guide-bio { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.guide-languages { display: flex; justify-content: center; gap: 0.3rem; flex-wrap: wrap; }
.guide-lang {
  font-size: 0.65rem; padding: 0.2rem 0.5rem;
  background: var(--gold-light); color: var(--gold);
  border-radius: var(--radius-full); font-weight: 500;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 1.5rem;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 0.75rem; }
.testimonial-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.testimonial-name { font-size: 0.85rem; font-weight: 600; }
.testimonial-detail { font-size: 0.7rem; color: var(--text-muted); }

/* ============================================
   SERVICES
   ============================================ */
.service-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 2rem 1.5rem; text-align: center;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--forest-green); }
.service-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--forest-green-light); color: var(--forest-green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.service-icon svg { width: 26px; height: 26px; }
.service-title { font-size: 1.1rem; margin-bottom: 0.5rem; }
.service-text { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.6; }

/* ============================================
   FAQ
   ============================================ */
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-md); margin-bottom: 0.75rem; overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.25rem; cursor: pointer; font-weight: 600; font-size: 0.9rem;
}
.faq-question svg { width: 18px; height: 18px; color: var(--gold); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.25rem;
}
.faq-item.open .faq-answer { max-height: 500px; padding: 0 1.25rem 1.25rem; }
.faq-answer p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; }

/* ============================================
   FORMS
   ============================================ */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block; font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-secondary); margin-bottom: 0.4rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.75rem 1rem;
  background: var(--bg-input); color: var(--text-primary);
  border: 1px solid var(--border-color); border-radius: var(--radius-md);
  font-size: 0.9rem; font-family: inherit; transition: var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-light);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.form-check {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.8rem; color: var(--text-secondary); cursor: pointer;
}
.form-check input { margin-top: 3px; accent-color: var(--forest-green); }

/* ============================================
   BOOKING FORM
   ============================================ */
.booking-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
@media (max-width: 900px) { .booking-layout { grid-template-columns: 1fr; } }
.booking-info { padding: 2rem; border-radius: var(--radius-lg); background: var(--bg-secondary); }
.booking-info h3 { font-size: 1.25rem; margin-bottom: 1rem; }
.booking-info p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.5rem; }
.info-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.info-item svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.info-item div strong { font-size: 0.85rem; display: block; margin-bottom: 0.15rem; }
.info-item div span { font-size: 0.75rem; color: var(--text-muted); }

/* ============================================
   AI PLANNER
   ============================================ */
.planner-container { max-width: 1000px; margin: 0 auto; }
.planner-tabs { display: flex; gap: 0.5rem; margin-bottom: 2rem; border-bottom: 1px solid var(--border-color); padding-bottom: 0.5rem; }
.planner-tab {
  padding: 0.6rem 1.2rem; font-size: 0.8rem; font-weight: 600;
  border-radius: var(--radius-md); cursor: pointer; transition: var(--transition);
  color: var(--text-muted); background: transparent; border: none;
}
.planner-tab.active { background: var(--gold-light); color: var(--gold); }
.planner-tab:hover:not(.active) { color: var(--text-primary); background: var(--bg-secondary); }

.planner-form { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 2rem; }
.form-section { margin-bottom: 1.5rem; }
.form-section-title { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.75rem; }

.interest-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.interest-chip {
  padding: 0.5rem 1rem; border-radius: var(--radius-full);
  font-size: 0.8rem; font-weight: 500; cursor: pointer; transition: var(--transition);
  border: 1px solid var(--border-color); background: var(--bg-input); color: var(--text-secondary);
}
.interest-chip:hover { border-color: var(--gold); color: var(--gold); }
.interest-chip.selected { background: var(--gold); color: #000; border-color: var(--gold); }

.range-labels { display: flex; justify-content: space-between; font-size: 0.7rem; color: var(--text-muted); margin-top: 0.3rem; }
input[type="range"] {
  width: 100%; height: 6px; border-radius: 3px; background: var(--border-color);
  outline: none; -webkit-appearance: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold); cursor: pointer; border: 3px solid var(--bg-primary); box-shadow: var(--shadow-sm);
}

.planner-loading {
  text-align: center; padding: 4rem 2rem;
}
.loading-spinner {
  width: 48px; height: 48px; border: 3px solid var(--border-color);
  border-top-color: var(--gold); border-radius: 50%;
  animation: spin 1s linear infinite; margin: 0 auto 1.5rem;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-logs { max-width: 500px; margin: 0 auto; }
.loading-log {
  font-size: 0.8rem; color: var(--text-secondary); padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color); opacity: 0.5;
  transition: opacity 0.3s;
}
.loading-log.active { opacity: 1; color: var(--gold); }

.itinerary-result { animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

.itinerary-header { text-align: center; margin-bottom: 2rem; }
.itinerary-header h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.itinerary-header p { font-size: 0.85rem; color: var(--text-secondary); }

.day-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-md); margin-bottom: 0.75rem; overflow: hidden;
}
.day-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; cursor: pointer; background: var(--bg-secondary);
}
.day-header h4 { font-size: 0.9rem; display: flex; align-items: center; gap: 0.5rem; }
.day-header h4 span { color: var(--gold); font-weight: 800; }
.day-header svg { width: 18px; height: 18px; color: var(--gold); transition: transform 0.3s; }
.day-card.open .day-header svg { transform: rotate(180deg); }
.day-content {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
}
.day-card.open .day-content { max-height: 600px; padding: 1rem 1.25rem; }
.day-content p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 0.75rem; }
.day-content ul { padding-left: 1.25rem; }
.day-content ul li { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 0.4rem; list-style: disc; }
.day-lodging {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg-input); padding: 0.75rem 1rem; border-radius: var(--radius-sm);
  border: 1px solid var(--border-color); margin-top: 0.75rem;
}
.day-lodging span:first-child { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); font-weight: 700; background: var(--gold-light); padding: 0.2rem 0.5rem; border-radius: var(--radius-sm); }
.day-lodging span:last-child { font-size: 0.8rem; color: var(--text-secondary); }

.sidebar-panel {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-md); padding: 1.25rem; margin-bottom: 1rem;
}
.sidebar-panel h4 {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--gold); border-bottom: 1px solid var(--border-color); padding-bottom: 0.5rem; margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.4rem;
}
.sidebar-panel h4 svg { width: 16px; height: 16px; }
.sidebar-list li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 0.6rem;
}
.sidebar-list li .num {
  width: 20px; height: 20px; border-radius: 50%; background: var(--gold-light);
  color: var(--gold); font-size: 0.65rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.sidebar-list li .check { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.sidebar-list li .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); flex-shrink: 0; margin-top: 7px; }

.saved-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-md); padding: 1.25rem; cursor: pointer;
  transition: var(--transition); position: relative;
}
.saved-card:hover { border-color: var(--gold-muted); box-shadow: var(--shadow-gold); }
.saved-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.5rem; }
.saved-card-date { font-size: 0.65rem; color: var(--text-muted); font-family: monospace; }
.saved-card-delete { color: var(--text-muted); padding: 0.25rem; border-radius: var(--radius-sm); }
.saved-card-delete:hover { color: var(--danger); background: var(--danger-light); }
.saved-card h4 { font-size: 1.1rem; margin-bottom: 0.5rem; transition: color 0.3s; }
.saved-card:hover h4 { color: var(--gold); }
.saved-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.saved-tag {
  font-size: 0.65rem; padding: 0.2rem 0.5rem; border-radius: var(--radius-full);
  font-family: monospace; text-transform: uppercase;
}
.saved-tag.gold { background: var(--gold-light); color: var(--gold); border: 1px solid var(--gold-muted); }
.saved-tag.neutral { background: var(--bg-input); color: var(--text-secondary); border: 1px solid var(--border-color); }
.saved-interests { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.saved-interest { font-size: 0.65rem; color: var(--text-muted); background: rgba(0,0,0,0.2); padding: 0.15rem 0.4rem; border-radius: var(--radius-sm); border: 1px solid var(--border-color); }
.saved-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 1rem; padding-top: 0.75rem; border-top: 1px solid var(--border-color); }
.saved-card-footer span:first-child { font-size: 0.75rem; color: var(--text-muted); max-width: 70%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.saved-card-footer span:last-child { font-size: 0.65rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; display: flex; align-items: center; gap: 0.2rem; }

/* ============================================
   GALLERY
   ============================================ */
.gallery-filters { display: flex; justify-content: center; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.gallery-filter {
  padding: 0.5rem 1rem; border-radius: var(--radius-full);
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  cursor: pointer; transition: var(--transition); border: 1px solid var(--border-color);
  background: var(--bg-card); color: var(--text-secondary); font-family: 'Playfair Display', serif;
}
.gallery-filter.active { background: var(--forest-green); color: #fff; box-shadow: var(--shadow-forest); transform: scale(1.05); }
.gallery-filter:hover:not(.active) { background: var(--bg-secondary); }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.gallery-item { cursor: pointer; }
.gallery-item .card-image { aspect-ratio: 4/3; }
.gallery-item .card-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0.8; transition: opacity 0.3s;
}
.gallery-item:hover .card-image::after { opacity: 0.95; }
.gallery-zoom {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-zoom { opacity: 1; }
.gallery-zoom-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--forest-green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transform: scale(0.8); transition: transform 0.3s;
}
.gallery-item:hover .gallery-zoom-icon { transform: scale(1); }
.gallery-zoom-icon svg { width: 20px; height: 20px; }

.gallery-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 0.75rem; margin-top: 0.5rem; border-top: 1px solid var(--border-color); font-size: 0.75rem; }
.gallery-bottom span:first-child { display: flex; align-items: center; gap: 0.3rem; color: var(--gold); font-weight: 500; }
.gallery-bottom span:last-child { color: var(--text-muted); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; font-family: monospace; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.9); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem; animation: fadeIn 0.3s ease;
}
.lightbox-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 2001;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); z-index: 2001;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav.prev { left: 1rem; }
.lightbox-nav.next { right: 1rem; }
.lightbox-content {
  display: grid; grid-template-columns: 1fr; max-width: 1100px; width: 100%;
  max-height: 90vh; background: var(--bg-card); border-radius: var(--radius-xl);
  overflow: hidden; border: 1px solid var(--border-color); box-shadow: var(--shadow-lg);
}
@media (min-width: 900px) { .lightbox-content { grid-template-columns: 7fr 5fr; } }
.lightbox-image { position: relative; background: #000; min-height: 300px; display: flex; align-items: center; justify-content: center; }
.lightbox-image img { width: 100%; height: 100%; object-fit: cover; max-height: 70vh; }
.lightbox-counter {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
  color: #fff; font-size: 0.75rem; font-family: monospace;
  padding: 0.3rem 0.7rem; border-radius: var(--radius-full);
}
.lightbox-details { padding: 1.5rem; overflow-y: auto; max-height: 50vh; }
@media (min-width: 900px) { .lightbox-details { max-height: 80vh; } }
.lightbox-badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: var(--forest-green-light); color: var(--forest-green);
  padding: 0.3rem 0.7rem; border-radius: var(--radius-full);
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
}
.lightbox-details h3 { font-size: 1.5rem; margin: 0.75rem 0; }
.lightbox-location { display: flex; align-items: center; gap: 0.4rem; color: var(--gold); font-size: 0.85rem; font-weight: 500; margin-bottom: 0.75rem; }
.lightbox-location svg { width: 16px; height: 16px; }
.lightbox-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1rem; }
.lightbox-highlights-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.5rem; }
.lightbox-highlights { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.5rem; }
.lightbox-highlight {
  font-size: 0.75rem; padding: 0.4rem 0.75rem;
  border-radius: var(--radius-full); border: 1px solid var(--border-color);
  background: var(--bg-input); color: var(--text-secondary);
}
.lightbox-cta { width: 100%; margin-bottom: 0.5rem; }
.lightbox-hints { display: flex; justify-content: space-between; font-size: 0.65rem; color: var(--text-muted); padding: 0 0.25rem; }

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
  padding: 8rem 0 4rem; text-align: center;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-bottom: 1px solid var(--border-color);
}
.page-header-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--gold-light); color: var(--gold);
  padding: 0.4rem 0.9rem; border-radius: var(--radius-full);
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.page-header h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.75rem; }
.page-header p { font-size: 1rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal); color: rgba(255,255,255,0.7);
  padding: 4rem 0 0; border-top: none;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.footer-brand span { color: var(--gold); }
.footer-text { font-size: 0.8rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.5rem; }
.footer-social {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social:hover { background: var(--gold); color: #000; }
.footer-social svg { width: 16px; height: 16px; }
.footer-title { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 1rem; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.6); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.8rem; margin-bottom: 0.75rem; }
.footer-contact svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-newsletter { display: flex; gap: 0.5rem; margin-top: 0.5rem; }
.footer-newsletter input {
  flex: 1; padding: 0.6rem 1rem; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  color: #fff; font-size: 0.8rem;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter input:focus { outline: none; border-color: var(--gold); }
.footer-newsletter button {
  padding: 0.6rem 1rem; border-radius: var(--radius-md);
  background: var(--gold); color: #000; font-size: 0.75rem; font-weight: 600;
}
.footer-bottom {
  margin-top: 3rem; padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.75rem; color: rgba(255,255,255,0.4); transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
#toast-container {
  position: fixed; top: 80px; right: 1rem; z-index: 3000;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.toast {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-md); padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg); min-width: 280px; max-width: 380px;
  display: flex; align-items: flex-start; gap: 0.75rem;
  animation: toastIn 0.4s ease, toastOut 0.4s ease 4s forwards;
}
@keyframes toastIn { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes toastOut { to { opacity: 0; transform: translateX(30px); pointer-events: none; } }
.toast-icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.toast-success .toast-icon { color: var(--success); }
.toast-error .toast-icon { color: var(--danger); }
.toast-info .toast-icon { color: var(--sky-blue); }
.toast-title { font-size: 0.85rem; font-weight: 600; margin-bottom: 0.15rem; }
.toast-message { font-size: 0.75rem; color: var(--text-secondary); }

/* ============================================
   WHATSAPP WIDGET
   ============================================ */
#whatsapp-widget { position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 1500; }
.whatsapp-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(37,211,102,0.4);
  transition: var(--transition); position: relative;
}
.whatsapp-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
.whatsapp-btn::before {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  background: #25D366; opacity: 0.3; animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 0.3; } 50% { transform: scale(1.1); opacity: 0.1; } }
.whatsapp-btn svg { width: 28px; height: 28px; fill: currentColor; position: relative; z-index: 1; }

.whatsapp-bubble {
  position: absolute; bottom: calc(100% + 0.75rem); left: 0;
  width: 280px; background: #141414; border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); padding: 1rem; box-shadow: var(--shadow-lg);
  animation: bubbleIn 0.4s ease;
}
@keyframes bubbleIn { from { opacity: 0; transform: scale(0.9) translateY(10px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.whatsapp-bubble-close { position: absolute; top: 0.5rem; right: 0.5rem; color: var(--text-muted); }
.whatsapp-bubble-close:hover { color: #fff; }
.whatsapp-bubble-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.whatsapp-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gold); color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 0.75rem;
  position: relative;
}
.whatsapp-avatar::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  border: 2px solid #141414;
}
.whatsapp-bubble-header div p:first-child { font-size: 0.75rem; font-weight: 700; color: #fff; }
.whatsapp-bubble-header div p:last-child { font-size: 0.65rem; color: #22c55e; }
.whatsapp-bubble-text { font-size: 0.75rem; color: rgba(255,255,255,0.7); line-height: 1.5; margin-bottom: 0.75rem; }
.whatsapp-bubble-link { font-size: 0.65rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; display: flex; align-items: center; gap: 0.3rem; }
.whatsapp-bubble-link:hover { color: var(--gold-hover); }

.whatsapp-tooltip {
  position: absolute; left: calc(100% + 0.75rem); top: 50%; transform: translateY(-50%);
  white-space: nowrap; background: var(--charcoal); border: 1px solid var(--border-color);
  padding: 0.4rem 0.75rem; border-radius: var(--radius-sm);
  font-size: 0.7rem; font-weight: 600; color: rgba(255,255,255,0.8); letter-spacing: 0.05em;
  display: flex; align-items: center; gap: 0.4rem; pointer-events: none;
  animation: tooltipIn 0.3s ease;
}
@keyframes tooltipIn { from { opacity: 0; transform: translateY(-50%) translateX(-10px); } to { opacity: 1; transform: translateY(-50%) translateX(0); } }
.whatsapp-tooltip::before {
  content: ''; position: absolute; right: 100%; top: 50%; transform: translateY(-50%);
  border: 5px solid transparent; border-right-color: var(--charcoal);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 1400;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: #000;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: var(--transition);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--gold-hover); transform: translateY(-2px); }

/* ============================================
   MISSION & VISION
   ============================================ */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 900px) { .mission-grid { grid-template-columns: 1fr; } }
.mission-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.mission-image img { width: 100%; height: auto; border-radius: var(--radius-lg); }
.mission-image::after {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gold); opacity: 0.3; transform: translate(12px, 12px);
  pointer-events: none;
}
.mission-content h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.mission-content p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 1.5rem; }
.mission-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.mission-stat { text-align: center; padding: 1rem; border-radius: var(--radius-md); background: var(--bg-secondary); border: 1px solid var(--border-color); }
.mission-stat-num { font-size: 1.5rem; font-weight: 800; color: var(--gold); font-family: 'Playfair Display', serif; }
.mission-stat-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.25rem; }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  padding: 3rem 0; text-align: center;
}
@media (max-width: 768px) { .stats-bar { grid-template-columns: repeat(2, 1fr); } }
.stat-item h3 { font-size: 2rem; color: var(--gold); font-family: 'Playfair Display', serif; }
.stat-item p { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.25rem; }

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-section {
  padding: 4rem 0; text-align: center;
}
.cta-section h3 { font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 1rem; }
.cta-section p { font-size: 0.9rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto 1.5rem; line-height: 1.7; }
.cta-section-light { background: var(--forest-green); color: #fff; }
.cta-section-light p { color: rgba(255,255,255,0.8); }
.cta-section-dark { background: var(--bg-secondary); border-top: 1px solid var(--border-color); }

/* ============================================
   REVIEWS / TRUST
   ============================================ */
.trust-bar {
  display: flex; justify-content: center; align-items: center; gap: 3rem;
  padding: 2rem 0; flex-wrap: wrap;
}
.trust-item { text-align: center; }
.trust-item strong { display: block; font-size: 1.25rem; color: var(--gold); font-family: 'Playfair Display', serif; }
.trust-item span { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* ============================================
   MISSION VISION CARDS
   ============================================ */
.mv-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 2rem; transition: var(--transition);
}
.mv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mv-card-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--forest-green-light); color: var(--forest-green);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.mv-card-icon svg { width: 22px; height: 22px; }
.mv-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.mv-card p { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.7; }

/* ============================================
   INTERACTIVE MAP
   ============================================ */
.map-container {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 2rem; text-align: center;
}
.map-container h3 { margin-bottom: 1rem; }
.map-svg { max-width: 600px; margin: 0 auto; }
.map-svg path { fill: var(--forest-green-light); stroke: var(--forest-green); stroke-width: 1; transition: var(--transition); }
.map-svg path:hover { fill: var(--forest-green); }
.map-legend { display: flex; justify-content: center; gap: 1.5rem; margin-top: 1rem; flex-wrap: wrap; }
.map-legend-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; color: var(--text-secondary); }
.map-legend-dot { width: 10px; height: 10px; border-radius: 50%; }

/* ============================================
   LOADING STATES
   ============================================ */
.skeleton { background: linear-gradient(90deg, var(--bg-secondary) 25%, var(--border-color) 50%, var(--bg-secondary) 75%); background-size: 200% 100%; animation: skeleton 1.5s infinite; border-radius: var(--radius-md); }
@keyframes skeleton { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ============================================
   ANIMATIONS & SCROLL REVEALS
   ============================================ */
.fade-in { animation: fadeIn 0.6s ease both; }
.slide-up { animation: slideUp 0.6s ease both; }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Base reveal (hidden until scrolled into view) */
.reveal {
  --reveal-delay: 0s;
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay);
  will-change: opacity, transform;
}
.reveal.from-bottom {
  transform: translateY(48px);
}
.reveal.from-left {
  transform: translateX(-56px);
}
.reveal.from-right {
  transform: translateX(56px);
}
.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* CSS fallback stagger (JS also sets --reveal-delay inline for any length) */
.reveal-stagger > .reveal:nth-child(1)  { --reveal-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2)  { --reveal-delay: 0.08s; }
.reveal-stagger > .reveal:nth-child(3)  { --reveal-delay: 0.16s; }
.reveal-stagger > .reveal:nth-child(4)  { --reveal-delay: 0.24s; }
.reveal-stagger > .reveal:nth-child(5)  { --reveal-delay: 0.32s; }
.reveal-stagger > .reveal:nth-child(6)  { --reveal-delay: 0.4s; }
.reveal-stagger > .reveal:nth-child(7)  { --reveal-delay: 0.48s; }
.reveal-stagger > .reveal:nth-child(8)  { --reveal-delay: 0.56s; }
.reveal-stagger > .reveal:nth-child(9)  { --reveal-delay: 0.64s; }
.reveal-stagger > .reveal:nth-child(10) { --reveal-delay: 0.72s; }
.reveal-stagger > .reveal:nth-child(11) { --reveal-delay: 0.8s; }
.reveal-stagger > .reveal:nth-child(12) { --reveal-delay: 0.88s; }

/* Legacy stagger (CSS animation delays) */
.stagger > *:nth-child(1) { animation-delay: 0.05s; }
.stagger > *:nth-child(2) { animation-delay: 0.1s; }
.stagger > *:nth-child(3) { animation-delay: 0.15s; }
.stagger > *:nth-child(4) { animation-delay: 0.2s; }
.stagger > *:nth-child(5) { animation-delay: 0.25s; }
.stagger > *:nth-child(6) { animation-delay: 0.3s; }

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.from-bottom,
  .reveal.from-left,
  .reveal.from-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================
   ADMIN PANEL
   ============================================ */
.admin-body { background: var(--bg-secondary); min-height: 100vh; }
.admin-header {
  background: var(--charcoal); color: #fff; padding: 1rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
}
.admin-header h1 { font-size: 1.25rem; }
.admin-header a { color: var(--gold); font-size: 0.8rem; }
.admin-container { max-width: 1200px; margin: 0 auto; padding: 2rem 1.5rem; }
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2rem; }
@media (max-width: 768px) { .admin-stats { grid-template-columns: repeat(2, 1fr); } }
.admin-stat { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 1.25rem; }
.admin-stat h3 { font-size: 2rem; color: var(--gold); font-family: 'Playfair Display', serif; }
.admin-stat p { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.admin-table-wrap { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); overflow: hidden; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { background: var(--bg-secondary); padding: 0.75rem 1rem; text-align: left; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); border-bottom: 1px solid var(--border-color); }
.admin-table td { padding: 0.75rem 1rem; font-size: 0.8rem; color: var(--text-secondary); border-bottom: 1px solid var(--border-color); }
.admin-table tr:hover td { background: var(--bg-secondary); }
.admin-table tr:last-child td { border-bottom: none; }
.admin-badge { display: inline-block; padding: 0.15rem 0.5rem; border-radius: var(--radius-full); font-size: 0.65rem; font-weight: 600; text-transform: uppercase; }
.admin-badge-new { background: var(--sky-blue-light); color: var(--sky-blue); }
.admin-badge-read { background: var(--success-light); color: var(--success); }
.admin-empty { text-align: center; padding: 3rem; color: var(--text-muted); font-size: 0.9rem; }

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 768px) {
  .section { padding: 3rem 0; }
  .hero-buttons { flex-direction: column; }
  .hero-cta { width: 100%; justify-content: center; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .mission-stats { grid-template-columns: 1fr; }
  .planner-tabs { overflow-x: auto; flex-wrap: nowrap; }
  .lightbox-nav { display: none; }
  .lightbox-content { max-height: 95vh; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* Selection */
::selection { background: var(--gold); color: #000; }

/* ============================================
   HERO OVERLAPPING STATS COUNTERS
   ============================================ */
.hero { position: relative; padding-bottom: 0; }
.hero-stats-wrap {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  transform: translateY(50%);
  z-index: 10;
  pointer-events: none;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem 1rem;
  pointer-events: auto;
}
.hero-stat {
  text-align: center;
  padding: 0.5rem;
  border-right: 1px solid var(--border-color);
}
.hero-stat:last-child { border-right: none; }
.hero-stat h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.hero-stat p {
  font-size: 0.7rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
@media (max-width: 768px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; padding: 1rem; }
  .hero-stat:nth-child(2) { border-right: none; }
  .hero-stat:nth-child(1),
  .hero-stat:nth-child(2) { border-bottom: 1px solid var(--border-color); padding-bottom: 0.75rem; }
  .hero-stats-wrap { transform: translateY(40%); }
}
/* Space after hero so content isn't hidden under overlapping stats */
.hero + .section,
.hero + .mv-section { padding-top: 6rem; }
@media (max-width: 768px) {
  .hero + .section,
  .hero + .mv-section { padding-top: 7.5rem; }
}

/* ============================================
   MISSION & VISION SECTIONS
   ============================================ */
.mv-section { overflow: hidden; }
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.mv-grid-reverse .mv-image { order: 2; }
.mv-grid-reverse .mv-content { order: 1; }
@media (max-width: 900px) {
  .mv-grid { grid-template-columns: 1fr; gap: 2rem; }
  .mv-grid-reverse .mv-image { order: 0; }
  .mv-grid-reverse .mv-content { order: 0; }
}
.mv-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.mv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.mv-image:hover img { transform: scale(1.05); }
.mv-image-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.15);
}
.mv-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  margin-bottom: 1rem;
}
.mv-content > p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.mv-list { display: flex; flex-direction: column; gap: 0.75rem; }
.mv-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
}
.mv-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   FOOTER — THEME AWARE
   ============================================ */
.footer {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  padding: 0;
  border-top: none;
  margin-top: 0;
  position: relative;
}
/* Visible divider line between page body and footer */
.footer::before {
  content: '';
  display: block;
  height: 3px;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold-muted) 12%,
    var(--gold) 50%,
    var(--gold-muted) 88%,
    transparent 100%
  );
  box-shadow: 0 0 12px rgba(249, 168, 37, 0.35);
}
.footer-body-divider {
  height: 3px;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold-muted) 12%,
    var(--gold) 50%,
    var(--gold-muted) 88%,
    transparent 100%
  );
  box-shadow: 0 0 12px rgba(249, 168, 37, 0.35);
}
.footer-inner { padding: 3.5rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
}
.footer-brand span { color: var(--gold); }
.footer-text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}
.footer-newsletter-blurb { font-size: 0.8rem; margin-bottom: 0.75rem; }

.footer-socials { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.footer-social {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  transform: translateY(-2px);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color 0.25s, padding-left 0.25s;
  display: inline-block;
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.footer-contact svg {
  width: 16px; height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-newsletter {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.25rem;
}
.footer-newsletter input {
  flex: 1;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-md);
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 0.85rem;
}
.footer-newsletter input::placeholder { color: var(--text-muted); }
.footer-newsletter input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-light);
}
.footer-newsletter button {
  padding: 0.7rem 1.15rem;
  border-radius: var(--radius-md);
  background: var(--gold);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: var(--transition);
  white-space: nowrap;
}
.footer-newsletter button:hover { background: var(--gold-hover); }

.footer-bottom {
  margin-top: 0;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-bottom-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-bottom-links a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color 0.25s;
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================
   AUTH MODAL
   ============================================ */
#auth-root:empty { display: none; }
#auth-root {
  position: fixed;
  inset: 0;
  z-index: 4000;
  pointer-events: none;
}
#auth-root:not(:empty) {
  pointer-events: auto;
}

.auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 4000;
  width: 100%;
  min-height: 100%;
  min-height: 100dvh;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  animation: fadeIn 0.3s ease;
}

.auth-modal {
  width: min(100%, 400px);
  max-width: 400px;
  max-height: min(90vh, 640px);
  margin: auto;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  animation: authModalIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

@keyframes authModalIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 420px) {
  .auth-overlay {
    padding: 0.75rem;
    align-items: center;
  }
  .auth-modal {
    width: calc(100% - 0.5rem);
    max-width: none;
    max-height: 92dvh;
  }
}
.auth-modal-header {
  padding: 1.5rem 1.5rem 0.75rem;
  text-align: center;
}
.auth-modal-header .auth-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}
.auth-modal-header .auth-logo span { color: var(--gold); }
.auth-modal-header p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.auth-tabs {
  display: flex;
  gap: 0.35rem;
  padding: 1rem 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
}
.auth-tab {
  flex: 1;
  padding: 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: var(--transition);
}
.auth-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.auth-tab:hover:not(.active) { color: var(--text-primary); }
.auth-body { padding: 1.5rem; }
.auth-error {
  background: var(--danger-light);
  color: var(--danger);
  font-size: 0.8rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  display: none;
}
.auth-error.show { display: block; }
.auth-body .form-group { margin-bottom: 1rem; }
.auth-submit {
  width: 100%;
  margin-top: 0.5rem;
}
.auth-hint {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
}
.auth-hint button {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
}
.nav-auth-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--gold);
  color: #000;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-auth-btn:hover { background: var(--gold-hover); }
.nav-auth-btn.logged-in {
  background: var(--forest-green-light);
  color: var(--forest-green);
  border: 1px solid var(--forest-green);
}
[data-theme="dark"] .nav-auth-btn.logged-in {
  color: var(--gold);
  background: var(--gold-light);
  border-color: var(--gold-muted);
}
.nav-user-menu {
  position: relative;
}
.nav-user-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 160px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  z-index: 1002;
  overflow: hidden;
}
.nav-user-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-user-dropdown button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: var(--transition);
}
.nav-user-dropdown button:hover {
  background: var(--gold-light);
  color: var(--gold);
}

/* ============================================
   ABOUT US + EXPERIENCE BARS
   ============================================ */
/* ============================================
   ABOUT US (redesigned)
   ============================================ */
.about-section {
  padding: 5.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(249, 168, 37, 0.08), transparent 60%),
    radial-gradient(ellipse 40% 50% at 0% 80%, rgba(45, 90, 61, 0.07), transparent 55%);
  pointer-events: none;
}
.about-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; gap: 2.25rem; }
  .about-visual { order: -1; max-width: 420px; margin: 0 auto; width: 100%; }
}
.about-copy .section-badge { margin-bottom: 0.85rem; }
.about-copy h2 {
  font-size: clamp(1.85rem, 3.8vw, 2.55rem);
  line-height: 1.2;
  margin-bottom: 1.1rem;
  letter-spacing: -0.02em;
}
.about-lead {
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.75;
  margin-bottom: 0.85rem;
  font-weight: 500;
}
.about-body-secondary {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.75rem !important;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}
@media (max-width: 520px) {
  .about-highlights { grid-template-columns: 1fr; }
}
.about-highlight {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.about-highlight:hover {
  border-color: var(--gold-muted);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.about-highlight-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(45, 90, 61, 0.12), rgba(249, 168, 37, 0.15));
  color: var(--gold);
}
.about-highlight-icon svg { width: 20px; height: 20px; }
.about-highlight-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}
.about-highlight-text span {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.4;
}
.about-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-image-frame {
  position: relative;
  border-radius: calc(var(--radius-xl) + 4px);
  padding: 0.65rem;
  background: linear-gradient(145deg, rgba(249, 168, 37, 0.35), rgba(45, 90, 61, 0.25));
  box-shadow: var(--shadow-lg);
}
.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 540px;
  background: var(--bg-secondary);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-image-card {
  position: absolute;
  bottom: 1.15rem;
  left: 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 0.9rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
  max-width: calc(100% - 2.3rem);
}
.about-image-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.about-image-card-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.3;
}
.about-float-stat {
  position: absolute;
  top: 1.25rem;
  right: -0.35rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 88px;
  z-index: 2;
}
@media (max-width: 900px) {
  .about-float-stat { right: 0.5rem; top: 0.75rem; }
}
.about-float-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--forest-green);
  line-height: 1.1;
}
.about-float-stat span {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.experience-bars { display: none; } /* legacy bars replaced by highlights */
/* Auth modal close + Google */
.auth-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: var(--transition);
}
.auth-close:hover {
  background: var(--danger-light);
  color: var(--danger);
  border-color: var(--danger);
}
.auth-close svg { width: 16px; height: 16px; }
.auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.15rem 0 1rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-color);
}
.auth-google-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-input);
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  margin-bottom: 0.25rem;
}
.auth-google-btn:hover {
  border-color: var(--gold-muted);
  background: var(--bg-secondary);
}
.auth-google-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
#google-btn-wrapper {
  display: flex;
  justify-content: center;
  min-height: 44px;
  margin-bottom: 0.25rem;
}
.auth-google-fallback {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.35rem;
}


/* ============================================
   DESTINATION WEATHER TOOL
   ============================================ */
.weather-tool {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.75rem 1.25rem;
  box-shadow: var(--shadow-md);
}
.weather-tool-header {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.25rem;
}
.weather-tool-title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin: 0.35rem 0 0.4rem;
}
.weather-tool-sub {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.55;
}
.weather-tool-controls {
  min-width: 220px;
  flex: 0 1 260px;
}
.weather-tool-controls .form-label {
  margin-bottom: 0.35rem;
  display: block;
}
.weather-panel { min-height: 140px; }
.weather-loading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  justify-content: center;
}
.weather-spinner {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border-color);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.weather-error {
  padding: 1.5rem;
  text-align: center;
  color: var(--danger);
  font-size: 0.9rem;
}
.weather-current {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.15rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  margin-bottom: 1rem;
}
.weather-current-main {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.weather-current-icon { font-size: 2.75rem; line-height: 1; }
.weather-current-temp {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  line-height: 1.1;
  color: var(--text-primary);
}
.weather-current-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.weather-current-place {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 0.15rem;
}
.weather-current-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.weather-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 72px;
}
.weather-stat span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.weather-stat strong {
  font-size: 0.95rem;
  color: var(--text-primary);
}
.weather-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.5rem;
}
@media (max-width: 900px) {
  .weather-days { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .weather-days { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .weather-tool { padding: 1.15rem; }
}
.weather-day {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.5rem;
  text-align: center;
  transition: var(--transition);
}
.weather-day:hover {
  border-color: var(--gold-muted);
  background: var(--bg-card-hover);
}
.weather-day-date {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-bottom: 0.35rem;
}
.weather-day-date strong {
  font-size: 0.8rem;
  color: var(--text-primary);
}
.weather-day-date span {
  font-size: 0.7rem;
  color: var(--text-muted);
}
.weather-day-icon { font-size: 1.5rem; margin: 0.2rem 0; }
.weather-day-temps {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}
.weather-day-temps .hi { font-weight: 700; color: var(--text-primary); }
.weather-day-temps .lo { color: var(--text-muted); }
.weather-day-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.65rem;
  color: var(--text-secondary);
}
.weather-attribution {
  margin-top: 0.85rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: right;
}
.weather-attribution a { color: var(--gold); text-decoration: underline; }
.weather-fallback-note {
  margin: 0.75rem 0 0.35rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
.weather-fallback-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================
   ADMIN DASHBOARD
   ============================================ */
/* Clear fixed site navbar so admin content is not covered */
body.page-admin #main-content {
  padding-top: 72px;
}
body.page-admin #footer,
body.page-admin #whatsapp-widget {
  display: none;
}
.admin-shell {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 240px 1fr;
  background: var(--bg-secondary);
}
@media (max-width: 900px) {
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { position: sticky; top: 72px; z-index: 20; max-height: calc(100vh - 72px); overflow-y: auto; }
}
.admin-login-wrap {
  padding-top: 0.5rem;
}
.admin-sidebar {
  background: var(--bg-card);
  border-right: 1px solid var(--border-color);
  padding: 1.25rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.admin-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.5rem 0.75rem 1rem;
  color: var(--gold);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 0.75rem;
}
.admin-nav-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  text-align: left;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
}
.admin-nav-btn:hover { background: var(--gold-light); color: var(--gold); }
.admin-nav-btn.active { background: var(--gold-light); color: var(--gold); font-weight: 600; }
.admin-nav-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.admin-main {
  padding: 1.5rem 1.75rem 3rem;
  max-width: 1100px;
}
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.admin-header h1 {
  font-size: 1.6rem;
  margin: 0;
}
.admin-header p { color: var(--text-secondary); font-size: 0.9rem; margin: 0.25rem 0 0; }
.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.admin-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem;
}
.admin-stat-card .label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.admin-stat-card .value { font-size: 1.75rem; font-weight: 700; color: var(--gold); margin-top: 0.25rem; font-family: 'Playfair Display', serif; }
.admin-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.25rem;
}
.admin-panel h2 {
  font-size: 1.15rem;
  margin: 0 0 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border-color);
}
.admin-panel h3 {
  font-size: 0.95rem;
  margin: 1rem 0 0.5rem;
  color: var(--text-secondary);
}
.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem 1rem;
}
.admin-form-grid label,
.admin-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
}
.admin-form-grid input,
.admin-form-grid textarea,
.admin-form-grid select,
.admin-field input,
.admin-field textarea,
.admin-field select {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-input);
  color: var(--text-primary);
  font-size: 0.875rem;
  font-family: inherit;
}
.admin-form-grid textarea,
.admin-field textarea { min-height: 80px; resize: vertical; }
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.1rem;
}
.admin-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid transparent;
}
.admin-btn-primary {
  background: var(--gold);
  color: #1a1a1a;
}
.admin-btn-primary:hover { background: var(--gold-hover); }
.admin-btn-secondary {
  background: transparent;
  border-color: var(--border-color);
  color: var(--text-primary);
}
.admin-btn-secondary:hover { border-color: var(--gold-muted); color: var(--gold); }
.admin-btn-danger {
  background: var(--danger-light);
  color: var(--danger);
  border-color: transparent;
}
.admin-btn-danger:hover { background: var(--danger); color: #fff; }
.admin-table-wrap { overflow-x: auto; }
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.admin-table th,
.admin-table td {
  text-align: left;
  padding: 0.55rem 0.65rem;
  border-bottom: 1px solid var(--border-color);
  vertical-align: top;
}
.admin-table th {
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.03em;
}
.admin-table tr:hover td { background: var(--bg-card-hover); }
.admin-asset-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.admin-asset-card {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-secondary);
}
.admin-asset-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  background: #111;
}
.admin-asset-card .meta {
  padding: 0.55rem 0.65rem;
  font-size: 0.72rem;
  color: var(--text-secondary);
  word-break: break-all;
}
.admin-asset-card .meta strong {
  display: block;
  color: var(--gold);
  font-size: 0.7rem;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}
.admin-asset-card .actions {
  display: flex;
  gap: 0.35rem;
  padding: 0 0.55rem 0.55rem;
  flex-wrap: wrap;
}
.admin-login-wrap {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}
.admin-login-card {
  width: 100%;
  max-width: 400px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-lg);
}
.admin-login-card h1 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0.35rem;
}
.admin-login-card .sub {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.admin-login-card .form-group { margin-bottom: 0.9rem; }
.admin-login-card .form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text-secondary);
}
.admin-login-card .form-input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-input);
  color: var(--text-primary);
  font-size: 0.9rem;
}
.admin-login-card .admin-btn { width: 100%; justify-content: center; margin-top: 0.5rem; padding: 0.7rem; }
.admin-error {
  background: var(--danger-light);
  color: var(--danger);
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
  display: none;
}
.admin-error.show { display: block; }
.admin-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}
.admin-color-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.admin-color-row input[type="color"] {
  width: 42px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
}
.admin-color-row input[type="text"] { flex: 1; }
.admin-tabs {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.admin-tab {
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}
.admin-tab.active {
  background: var(--gold-light);
  color: var(--gold);
  border-color: var(--gold-muted);
}
.admin-wording-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-height: 480px;
  overflow-y: auto;
  padding-right: 0.25rem;
}
.admin-wording-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0.5rem;
  align-items: start;
}
@media (max-width: 600px) {
  .admin-wording-row { grid-template-columns: 1fr; }
}
.admin-wording-row .key {
  font-size: 0.72rem;
  font-family: ui-monospace, monospace;
  color: var(--text-muted);
  padding-top: 0.55rem;
  word-break: break-all;
}
.admin-slot-badge {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}
.admin-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 2rem 1rem;
  font-size: 0.9rem;
}
.admin-upload-zone {
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  margin-bottom: 1rem;
  transition: var(--transition);
}
.admin-upload-zone:hover { border-color: var(--gold-muted); }
.admin-upload-zone input[type="file"] { margin: 0.75rem auto; display: block; max-width: 100%; }

/* Traffic tracker */
.traffic-chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 180px;
  padding: 0.5rem 0 1.5rem;
  overflow-x: auto;
}
.traffic-bar-col {
  flex: 1 0 18px;
  min-width: 14px;
  max-width: 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
.traffic-bar {
  width: 70%;
  min-height: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--forest-green) 100%);
  border-radius: 3px 3px 0 0;
  transition: height 0.3s ease;
}
.traffic-bar-label {
  position: absolute;
  bottom: -1.25rem;
  font-size: 0.55rem;
  color: var(--text-muted);
  transform: rotate(-45deg);
  transform-origin: top left;
  white-space: nowrap;
}
.traffic-mini-bar {
  height: 8px;
  background: var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  min-width: 80px;
}
.traffic-mini-bar span {
  display: block;
  height: 100%;
  background: var(--gold);
  border-radius: 4px;
}


/* Guest story submission */
.story-submit-section { padding: 4rem 0; }
.story-submit-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-md);
}
.story-rating-row {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  flex-wrap: wrap;
}
.story-rating-row button {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: var(--transition);
}
.story-rating-row button.active,
.story-rating-row button:hover {
  color: var(--gold);
  border-color: var(--gold-muted);
  background: var(--gold-light);
}
.admin-story-status {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-sm);
}
.admin-story-status.pending { background: var(--gold-light); color: var(--gold); }
.admin-story-status.published { background: var(--success-light); color: var(--success); }
.admin-story-status.rejected { background: var(--danger-light); color: var(--danger); }


/* Guest stories carousel */
.stories-header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 1.15rem;
}
.stories-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.stories-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0.35rem 0.25rem 0.5rem;
  flex: 1;
  /* Hide scrollbars — navigation is via side buttons only */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.stories-carousel::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.stories-carousel .testimonial-card {
  flex: 0 0 min(320px, 85%);
  scroll-snap-align: start;
  max-width: 360px;
}
@media (min-width: 900px) {
  .stories-carousel .testimonial-card {
    flex: 0 0 calc(33.333% - 0.7rem);
    max-width: none;
  }
}
.stories-scroll-btn {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  z-index: 2;
}
.stories-scroll-btn:hover {
  border-color: var(--gold-muted);
  color: var(--gold);
  background: var(--gold-light);
}
@media (max-width: 600px) {
  .stories-scroll-btn {
    width: 36px;
    height: 36px;
  }
}

/* Story submission modal */
body.modal-open {
  overflow: hidden;
}
.story-overlay {
  position: fixed;
  inset: 0;
  z-index: 4500;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  animation: fadeIn 0.25s ease;
}
.story-modal {
  width: min(100%, 520px);
  max-height: min(92vh, 720px);
  margin: auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  padding: 1.75rem 1.5rem 1.5rem;
  position: relative;
  overflow-y: auto;
  animation: authModalIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.story-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-secondary);
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.story-modal-close:hover {
  color: var(--text-primary);
  border-color: var(--gold-muted);
}
.story-modal-header {
  text-align: center;
  margin-bottom: 1.25rem;
  padding-right: 1.5rem;
}
.story-modal-header h2 {
  font-size: 1.45rem;
  margin: 0.35rem 0;
}
.story-modal-header p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}


/* Admin section image assignment cards */
.admin-section-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.admin-section-slot-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
}
.admin-section-slot-preview {
  height: 140px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-section-slot-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.admin-section-slot-empty {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.admin-section-slot-meta {
  padding: 0.85rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.admin-section-slot-meta strong { font-size: 0.9rem; }
.admin-section-slot-meta p {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin: 0 0 0.35rem;
}
.admin-section-slot-path {
  width: 100%;
  font-size: 0.8rem;
  padding: 0.4rem 0.55rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  color: var(--text-primary);
}
.admin-section-slot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.45rem;
}


.footer-contact-link {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}
.footer-contact-link:hover {
  color: var(--gold);
  text-decoration: underline;
}


/* ============================================
   SPLASH SCREEN
   ============================================ */
body.splash-active { overflow: hidden; }
.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 18, 12, 0.55);
  backdrop-filter: blur(20px) saturate(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
.splash-screen.splash-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.splash-inner {
  position: relative;
  width: 132px;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.splash-logo {
  width: 84px;
  height: 84px;
  object-fit: contain;
  border-radius: 50%;
  z-index: 2;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.splash-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #f9a825;
  border-right-color: rgba(249, 168, 37, 0.4);
  border-bottom-color: rgba(45, 90, 61, 0.35);
  animation: splash-spin 1.1s linear infinite;
  z-index: 1;
}
@keyframes splash-spin {
  to { transform: rotate(360deg); }
}

/* Guide admin image editor */
.admin-guide-image-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  align-items: start;
}
@media (max-width: 600px) {
  .admin-guide-image-row { grid-template-columns: 1fr; }
}
.admin-guide-preview-wrap {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-guide-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.admin-guide-preview-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  position: absolute;
  inset: 0;
}
.admin-guide-image-fields { display: flex; flex-direction: column; gap: 0.5rem; }

/* Contact links must be clearly interactive */
.footer-contact-link,
a[href^="mailto:"],
a[href^="tel:"],
a[href*="wa.me"] {
  cursor: pointer !important;
  pointer-events: auto !important;
  position: relative;
  z-index: 1;
}
.footer-contact-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-contact-link:hover { color: var(--gold); }


.admin-hero-slide-layout {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
.admin-hero-slide-preview {
  width: 160px;
  height: 100px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-hero-slide-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Security monitor */
.sec-overview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.85rem;
}
.sec-score, .sec-stat {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1rem 0.75rem;
  text-align: center;
}
.sec-score strong, .sec-stat strong {
  display: block;
  font-size: 1.6rem;
  font-family: 'Playfair Display', serif;
  line-height: 1.1;
}
.sec-score span, .sec-stat span {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sec-score-ok strong { color: #2d5a3d; }
.sec-score-warn strong { color: #c4920a; }
.sec-score-bad strong { color: #b33a3a; }
.sec-sev {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  text-transform: uppercase;
}
.sec-sev-info { background: rgba(45,90,61,0.12); color: var(--forest-green); }
.sec-sev-warning { background: rgba(196,146,10,0.15); color: #a67c00; }
.sec-sev-critical { background: rgba(179,58,58,0.15); color: #b33a3a; }
.sec-checklist {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}


.sec-toggle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.65rem;
}
.sec-toggle {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  cursor: pointer;
}
.sec-toggle input { margin-top: 0.2rem; accent-color: var(--forest-green); }
.sec-toggle strong { display: block; font-size: 0.85rem; }
.sec-toggle small { display: block; font-size: 0.72rem; color: var(--text-muted); line-height: 1.35; margin-top: 0.15rem; }


.custom-page-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
}
.custom-page-body h2, .custom-page-body h3 {
  color: var(--text-primary);
  margin: 1.25rem 0 0.65rem;
}
.custom-page-body img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  margin: 1rem 0;
}
.custom-page-body a { color: var(--gold); }
.page-hero-mini { padding-bottom: 1rem; }


/* Mobile / tablet preferences (theme + language) inside drawer */
.mobile-prefs {
  margin: 0 0 1rem;
  padding: 0.85rem 0.9rem 1rem;
  border-radius: 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
}
.mobile-prefs-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}
.mobile-prefs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}
.mobile-pref-btn {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  text-align: left;
  padding: 0.7rem 0.75rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-primary);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.mobile-pref-btn:hover,
.mobile-pref-btn:focus-visible {
  border-color: var(--gold);
  background: var(--gold-light);
}
.mobile-pref-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.mobile-pref-icon svg {
  width: 20px;
  height: 20px;
}
.mobile-pref-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.mobile-pref-text strong {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
}
.mobile-pref-text small {
  font-size: 0.7rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-lang-dropdown {
  position: relative;
}
.mobile-lang-menu.lang-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 30;
  min-width: 100%;
  width: max(100%, 260px);
  max-height: min(50vh, 320px);
}
@media (max-width: 1024px) {
  /* Keep header theme/lang available but compact; drawer has full controls */
  .nav-actions .lang-btn span {
    max-width: 2.2rem;
  }
}


/* ---------- Image loading performance ---------- */
.img-fade {
  opacity: 0;
  transition: opacity 0.45s ease;
  background: linear-gradient(110deg, var(--bg-secondary) 25%, var(--bg-primary) 40%, var(--bg-secondary) 55%);
  background-size: 200% 100%;
}
.img-fade.is-loaded {
  opacity: 1;
  background: none;
  animation: none;
}
.img-fade.is-error {
  opacity: 0.35;
  background: var(--bg-secondary);
  object-fit: contain;
}
/* Shimmer while waiting for first paint (before onload) */
img.img-fade:not(.is-loaded):not(.is-error) {
  animation: img-shimmer 1.2s ease-in-out infinite;
}
@keyframes img-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.card-image {
  background: var(--bg-secondary);
  content-visibility: auto;
  contain-intrinsic-size: 300px;
}
.card-image img.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero: only paint ready slides; soft fill while loading next */
.hero-slide {
  background-color: #0b1a12;
  background-size: cover;
  background-position: center;
  will-change: opacity;
}
.hero-slide:not(.is-bg-ready) {
  background-image: none !important;
}
.hero-slide.is-bg-ready {
  transition: opacity 1s ease, filter 0.6s ease;
}

/* Prefer content-visibility for heavy grids */
.gallery-item,
.dest-card,
.guide-card {
  content-visibility: auto;
  contain-intrinsic-size: 360px;
}

/* Reduce layout shift for logos */
.nav-logo-img,
.mobile-logo-img,
.splash-logo {
  content-visibility: auto;
}

@media (prefers-reduced-motion: reduce) {
  .img-fade { transition: none; opacity: 1; }
  img.img-fade:not(.is-loaded) { animation: none; }
}


/* ---------- Under construction mode ---------- */
.uc-cover {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(45, 90, 61, 0.35), transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(196, 146, 10, 0.12), transparent 50%),
    rgba(8, 16, 12, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #f5f7f5;
  text-align: center;
}
.uc-cover-inner {
  max-width: 520px;
  width: 100%;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.uc-cover-logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 0 18px rgba(196, 146, 10, 0.35));
}
.uc-cover-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold, #c4920a);
  background: rgba(196, 146, 10, 0.12);
  border: 1px solid rgba(196, 146, 10, 0.35);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.uc-cover-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin: 0 0 0.85rem;
  line-height: 1.2;
  color: #fff;
}
.uc-cover-message {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  margin: 0 0 1rem;
}
.uc-cover-eta {
  font-size: 0.9rem;
  color: var(--gold, #c4920a);
  margin: 0 0 1rem;
}
.uc-cover-contact {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}
.uc-cover-contact a {
  color: var(--gold, #c4920a);
  text-decoration: underline;
}
body.uc-locked {
  overflow: hidden;
}
/* Hide public chrome only — never hide admin dashboard */
body.uc-locked:not(.page-admin) #main-content,
body.uc-locked:not(.page-admin) #footer,
body.uc-locked:not(.page-admin) #whatsapp-widget,
body.uc-locked:not(.page-admin) .mobile-menu,
body.uc-locked:not(.page-admin) nav.navbar {
  visibility: hidden !important;
  pointer-events: none !important;
}
body.page-admin.uc-locked #main-content,
body.page-admin #main-content {
  visibility: visible !important;
  pointer-events: auto !important;
}
body.page-admin #uc-cover {
  display: none !important;
}
.uc-cover-admin {
  margin-top: 1.5rem;
}
.uc-admin-link {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.uc-admin-link:hover {
  color: var(--gold, #c4920a);
  border-color: var(--gold, #c4920a);
}

.uc-admin-panel {
  border: 1px solid var(--border-color);
}
.uc-admin-panel--on {
  border-color: rgba(196, 146, 10, 0.55);
  box-shadow: 0 0 0 1px rgba(196, 146, 10, 0.15);
}
.uc-admin-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}
.uc-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  user-select: none;
}
.uc-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.uc-switch-slider {
  width: 48px;
  height: 28px;
  border-radius: 999px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  position: relative;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.uc-switch-slider::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
  transition: transform 0.2s;
}
.uc-switch input:checked + .uc-switch-slider {
  background: var(--gold, #c4920a);
  border-color: var(--gold, #c4920a);
}
.uc-switch input:checked + .uc-switch-slider::after {
  transform: translateX(20px);
}
.uc-switch-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}


/* Preview mode banner (admin viewing live site during under construction) */
.uc-preview-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100000;
  background: linear-gradient(90deg, #1a3d2a, #2d5a3d 40%, #3d4a1a);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  border-bottom: 2px solid var(--gold, #c4920a);
}
.uc-preview-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.65rem 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  font-size: 0.85rem;
}
.uc-preview-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--gold, #c4920a);
  color: #111;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}
.uc-preview-text {
  flex: 1;
  min-width: 180px;
  opacity: 0.92;
  line-height: 1.35;
}
.uc-preview-actions {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}
.uc-preview-btn {
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.uc-preview-btn:hover {
  background: rgba(255,255,255,0.2);
  border-color: var(--gold, #c4920a);
}
.uc-preview-btn-exit {
  border-color: rgba(255,180,180,0.45);
}
body.uc-preview-active {
  padding-top: 52px;
}
body.uc-preview-active nav.navbar {
  top: 52px;
}
.uc-preview-enter-btn {
  display: inline-block;
  margin: 0 0.5rem 0.5rem 0;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: none;
  background: var(--gold, #c4920a);
  color: #111;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(196,146,10,0.35);
}
.uc-preview-enter-btn:hover {
  filter: brightness(1.08);
}
.uc-cover-admin {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
@media (max-width: 600px) {
  body.uc-preview-active { padding-top: 72px; }
  body.uc-preview-active nav.navbar { top: 72px; }
}
