@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@700;800;900&display=swap");

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brand-900: #0b3f24;
  --brand-800: #0f5a32;
  --brand-700: #137542;
  --brand-600: #179452;
  --brand-500: #1fa85f;
  --brand-300: #8fd0a8;
  --brand-200: #c6e7d2;
  --brand-100: #e9f6ee;
  --brand-glow: rgba(31, 168, 95, 0.24);
  --surface-tint: rgba(236, 248, 240, 0.72);
  --surface-deep: rgba(255, 255, 255, 0.16);
  --surface-border: rgba(148, 197, 166, 0.32);
  --hero-glass: rgba(235, 248, 239, 0.12);
  --hero-border: rgba(220, 245, 229, 0.22);
  --glass-shadow: 0 22px 54px rgba(8, 41, 22, 0.18);
  --text-strong: #163222;
  --text-body: #355444;
  --text-soft: #5d7668;
  --font-display: "League Spartan", "Arial Black", sans-serif;
  --site-shell: 104rem;
  --site-content-shell: 108rem;
  --site-gutter: clamp(1rem, 2vw, 2rem);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-strong);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(169, 220, 186, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(96, 159, 118, 0.12), transparent 24%),
    #f4fbf6;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  backdrop-filter: blur(14px);
  background: linear-gradient(135deg, rgba(7, 44, 24, 0.34), rgba(15, 90, 50, 0.22));
  border-bottom: 1px solid var(--hero-border);
  box-shadow: 0 12px 36px rgba(7, 30, 18, 0.16);
}

.lodges-nav {
  backdrop-filter: blur(14px);
  background: linear-gradient(135deg, rgba(7, 44, 24, 0.34), rgba(15, 90, 50, 0.22));
  border-bottom: 1px solid var(--hero-border);
  box-shadow: 0 12px 36px rgba(7, 30, 18, 0.16);
}

.nav-container {
  width: min(calc(100% - 2rem), var(--site-shell));
  max-width: var(--site-shell);
  margin: 0 auto;
  padding: 0 var(--site-gutter);
  display: grid;
  grid-template-columns: minmax(11rem, 0.8fr) minmax(0, 1.8fr) minmax(8rem, 0.6fr);
  align-items: center;
  gap: clamp(0.75rem, 1.6vw, 1.75rem);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-self: start;
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.lodges-nav .logo-text {
  color: white;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.25rem, 0.65vw, 0.65rem);
  margin-left: 0;
  justify-self: center;
  min-width: 0;
}

.nav-divider {
  color: rgba(255, 255, 255, 0.42);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 clamp(0.25rem, 0.7vw, 0.7rem);
  padding: 0 clamp(0.15rem, 0.5vw, 0.45rem);
  user-select: none;
}

.desktop-only {
  margin-left: 0;
  border-radius: 999px;
  padding: 0.8rem 1.35rem;
  justify-self: end;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  font-weight: 600;
  padding: 0.78rem clamp(0.78rem, 1vw, 1.15rem);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.lodges-nav .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

.lodges-nav .nav-link:hover,
.lodges-nav .nav-link.active {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.lodges-nav .nav-divider {
  color: rgba(255, 255, 255, 0.42);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}

.hamburger {
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-btn.active .hamburger:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.lodges-nav .hamburger {
  background: white;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 1rem;
  right: 1rem;
  background:
    linear-gradient(145deg, rgba(4, 22, 13, 0.9), rgba(2, 10, 7, 0.86)),
    rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.34);
  padding: 0.85rem;
  margin-top: 0.55rem;
  flex-direction: column;
  gap: 0.45rem;
}

.lodges-nav .mobile-menu {
  background:
    linear-gradient(145deg, rgba(4, 22, 13, 0.9), rgba(2, 10, 7, 0.86)),
    rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  border-top: none;
}

.mobile-nav-link {
  color: white;
  text-decoration: none;
  padding: 0.58rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.7rem;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.lodges-nav .mobile-nav-link {
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.mobile-book-btn {
  margin-top: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.75rem;
}

.btn-primary {
  background: linear-gradient(135deg, #18a85f, #139554);
  color: white;
  border: none;
  box-shadow: 0 12px 28px rgba(19, 149, 84, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #20bd70, #15995a);
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(19, 149, 84, 0.34);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(227, 244, 234, 0.22);
  border-color: rgba(218, 245, 228, 0.4);
}

.lodges-page .btn-outline {
  background: var(--surface-tint);
  color: var(--text-strong);
  border: 1px solid var(--surface-border);
}

.btn-full {
  width: 100%;
}

/* Hero Section */
.hero-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: -1;
  overflow: hidden;
}

.bg-image {
  width: 112%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  transform: translateX(0);
  animation: dronePanLeft 24s ease-in-out infinite alternate;
}

@keyframes dronePanLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-10%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bg-image {
    animation: none;
    transform: translateX(-5%);
  }
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
}

.hero-container {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6rem var(--site-gutter) 2rem;
  width: min(100%, var(--site-shell));
  max-width: var(--site-shell);
  margin: 0 auto;
  gap: 3rem;
}

.hero-content {
  flex: 2;
  max-width: min(100%, 54rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  transform: none;
}

@media (min-width: 1025px) {
  .hero-content {
    margin-left: 15%;
  }

  .booking-form-container {
    margin-right: 15%;
  }
}

.hero-title {
  font-size: 4.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0.25rem;
  line-height: 0.95;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.gradient-text {
  background: linear-gradient(135deg, #9fe0b5, var(--brand-500), var(--brand-800));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-flex;
  align-items: center;
}

.typed-explore-word {
  display: inline-block;
  min-width: 12ch;
  margin-left: 0.16em;
  white-space: nowrap;
  color: var(--brand-500);
  -webkit-text-fill-color: var(--brand-500);
  text-shadow: 0 10px 28px rgba(15, 90, 50, 0.32);
}

.typed-explore-word::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.9em;
  margin-left: 0.1em;
  background: var(--brand-300);
  vertical-align: -0.08em;
  animation: caretBlink 0.9s steps(1) infinite;
}

@keyframes caretBlink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

.hero-subtitle {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.2;
  max-width: 28rem;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Search Bar */
.search-bar {
  background: var(--hero-glass);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 3rem;
  border: 1px solid var(--hero-border);
}

.search-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1rem;
}

.search-input,
.search-select {
  background: rgba(244, 252, 247, 0.12);
  border: 1px solid rgba(225, 247, 233, 0.2);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  color: white;
  backdrop-filter: blur(5px);
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.search-select option {
  background: #1f2937;
  color: white;
}

.search-btn {
  padding: 0.75rem 2rem;
  white-space: nowrap;
}

/* Category Buttons */
.category-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.hero-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: white;
  border: 1px solid rgba(225, 247, 233, 0.2);
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}

.hero-action-btn:hover {
  transform: translateY(-2px);
}

.hero-action-primary {
  min-width: 126px;
  background: linear-gradient(135deg, #18a85f, #139554);
  border-color: rgba(132, 255, 184, 0.45);
  box-shadow: 0 16px 34px rgba(19, 149, 84, 0.34);
}

.hero-action-primary:hover {
  background: linear-gradient(135deg, #20bd70, #15995a);
  border-color: rgba(181, 255, 211, 0.62);
  box-shadow: 0 20px 42px rgba(19, 149, 84, 0.42);
}

.hero-action-label-mobile {
  display: none;
}

.hero-action-secondary {
  min-width: 170px;
  background: rgba(239, 249, 242, 0.22);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 16px 34px rgba(8, 31, 19, 0.2);
  backdrop-filter: blur(18px) saturate(150%);
}

.hero-action-secondary:hover {
  background: rgba(239, 249, 242, 0.3);
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 20px 42px rgba(8, 31, 19, 0.24);
}

.hero-action-primary:hover,
.hero-action-secondary:hover {
  background: rgba(214, 243, 224, 0.18);
  border-color: rgba(225, 247, 233, 0.28);
}

.hero-play-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-800);
  box-shadow: 0 8px 18px rgba(8, 31, 19, 0.16);
}

.hero-play-icon i {
  font-size: 0.58rem;
  margin-left: 0.08rem;
}

.hero-video-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.hero-video-modal[hidden] {
  display: none;
}

.hero-video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 18, 11, 0.78);
  backdrop-filter: blur(10px);
}

.hero-video-dialog {
  position: relative;
  width: min(1100px, 94vw);
  border-radius: 1.75rem;
  background: rgba(245, 251, 247, 0.96);
  border: 1px solid rgba(198, 231, 210, 0.8);
  box-shadow: 0 28px 80px rgba(7, 30, 18, 0.32);
  overflow: hidden;
}

.hero-video-header {
  padding: 1.2rem 1.4rem 0.5rem;
}

.hero-video-header h3 {
  margin: 0;
  font-size: 1.4rem;
  color: var(--text-strong);
}

.hero-video-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 2.6rem;
  height: 2.6rem;
  border: none;
  border-radius: 999px;
  background: rgba(15, 90, 50, 0.12);
  color: var(--brand-900);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
}

.hero-video-frame-wrap {
  padding: 0.8rem 1.2rem 1.2rem;
}

.hero-video-frame-wrap iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: min(70vh, 640px);
  border: none;
  border-radius: 1.2rem;
  background: #000;
}

.category-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(239, 249, 242, 0.12);
  border: 1px solid rgba(225, 247, 233, 0.2);
  border-radius: 0.5rem;
  color: white;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.category-btn:hover {
  background: rgba(214, 243, 224, 0.22);
  transform: translateY(-1px);
}

.category-icon {
  font-size: 1rem;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 500px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.hero-visit {
  display: none;
}

/* Booking Form */
.booking-form-container {
  flex: 1;
  max-width: min(100%, 25rem);
  transform: none;
}

.booking-form {
  background: var(--hero-glass);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid var(--hero-border);
}

.form-header {
  text-align: center;
  margin-bottom: 1rem;
}

.form-header h2 {
  color: white;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
}

.booking-form-content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(244, 252, 247, 0.12);
  border: 1px solid rgba(225, 247, 233, 0.2);
  border-radius: 0.5rem;
  padding: 0.6rem;
  color: white;
  backdrop-filter: blur(5px);
  font-size: 0.75rem;
  transition: all 0.3s ease;
  height: auto;
  min-height: 38px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(31, 168, 95, 0.55);
  box-shadow: 0 0 0 3px var(--brand-glow);
  background: rgba(247, 253, 249, 0.18);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

.form-select option {
  background: #1f2937;
  color: white;
}

.form-textarea {
  resize: none;
  height: 60px;
  min-height: 60px;
}

.room-category-popup {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(212, 244, 223, 0.06));
  border: 1px solid rgba(225, 247, 233, 0.22);
  border-radius: 0.85rem;
  padding: 0.85rem;
  box-shadow: 0 18px 40px rgba(3, 20, 11, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: roomCategoryReveal 0.24s ease;
}

.room-category-popup[hidden] {
  display: none;
}

.room-category-popup .form-group {
  gap: 0.2rem;
}

@keyframes roomCategoryReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-footer {
  text-align: center;
  margin-top: 0.8rem;
}

.form-footer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  margin: 0;
}

.home-booking-message {
  margin-top: 0.85rem;
  padding: 0.8rem 0.95rem;
  border-radius: 0.8rem;
  font-size: 0.88rem;
  line-height: 1.45;
}

.home-booking-message.is-success {
  background: rgba(35, 190, 105, 0.18);
  border: 1px solid rgba(181, 255, 211, 0.35);
  color: #f0fff5;
}

.home-booking-message.is-error {
  background: rgba(220, 38, 38, 0.18);
  border: 1px solid rgba(254, 202, 202, 0.28);
  color: #fff1f2;
}

.help-link-text {
  color: rgba(218, 247, 228, 0.96);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.help-link-text:hover,
.help-link-text:focus-visible {
  color: #ffffff;
  text-shadow: 0 0 18px rgba(196, 244, 214, 0.24);
}

.help-link-text:focus-visible {
  outline: none;
}

.booking-submit-btn {
  min-height: 3rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, rgba(31, 168, 95, 0.92), rgba(14, 106, 60, 0.92));
  border: 1px solid rgba(207, 245, 222, 0.28);
  box-shadow: 0 12px 30px rgba(4, 32, 18, 0.26);
}

.booking-submit-btn:hover,
.booking-submit-btn:focus-visible {
  background: linear-gradient(135deg, rgba(42, 188, 110, 0.96), rgba(18, 125, 71, 0.96));
  box-shadow: 0 16px 36px rgba(4, 32, 18, 0.32);
  transform: translateY(-1px);
}

.booking-submit-btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(181, 238, 205, 0.28),
    0 16px 36px rgba(4, 32, 18, 0.32);
}

/* Form validation styles */
/* Improve mobile form layout */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .booking-form {
    padding: 1.5rem;
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 1rem;
    font-size: 1rem;
  }

  /* Hide booking form container on mobile devices */
  .booking-form-container {
    display: none;
  }
}

/* Contact Info */
.contact-info {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 100;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 0.5rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
}

.contact-icon {
  font-size: 1rem;
}

/* Lodges Page Styles */
.lodges-page {
  position: relative;
  background: transparent;
  min-height: 100vh;
  isolation: isolate;
}

.lodges-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.08)),
    url("images/bg image.png") center top / cover no-repeat;
  filter: blur(18px);
  transform: scale(1.06);
  z-index: -2;
  pointer-events: none;
}

.conference-events-page::before {
  display: block;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.12)),
    url("images/bg image.png") center top / cover no-repeat;
  filter: blur(18px);
  transform: scale(1.06);
}

.conference-events-page .hero-overlay {
  display: none;
}

.lodges-hero {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8.5rem 2rem 3rem;
  isolation: isolate;
  background: transparent;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transform: scale(1.08);
  filter: blur(10px);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: -1;
}

.hero-content-center {
  text-align: center;
  color: white;
  width: min(820px, 100%);
  padding: 2.25rem 2.5rem;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  background: var(--hero-glass);
  border: 1px solid var(--hero-border);
  border-radius: 2rem;
  backdrop-filter: blur(18px);
  box-shadow: var(--glass-shadow);
}

.back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: white;
}

.back-arrow {
  font-size: 1.2rem;
}

.page-title {
  font-size: clamp(3.1rem, 7vw, 4.8rem);
  font-weight: bold;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  line-height: 0.92;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.lodges-hero .gradient-text {
  background: none;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: #fff;
  background-clip: border-box;
  color: #fff;
}

.page-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 38rem;
  margin: 0 auto;
}

.destination-hero-pills {
  margin-top: 1rem;
}

/* Main Content */
.main-content {
  width: min(calc(100% - 2rem), var(--site-content-shell));
  max-width: var(--site-content-shell);
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) var(--site-gutter);
}

.kariba-page .main-content {
  width: min(calc(100% - 2rem), var(--site-content-shell));
  max-width: var(--site-content-shell);
  padding: clamp(2rem, 4vw, 3rem) var(--site-gutter);
}

.conference-events-page .main-content {
  width: min(calc(100% - 2rem), var(--site-content-shell));
  max-width: var(--site-content-shell);
  padding: clamp(2rem, 3.5vw, 2.5rem) var(--site-gutter);
}

.activities-page .main-content {
  width: min(calc(100% - 2rem), var(--site-content-shell));
  max-width: var(--site-content-shell);
  padding: clamp(2rem, 3.5vw, 2.5rem) var(--site-gutter) 4rem;
}

/* Filters */
.filters-section {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 3rem;
  border: 0;
  box-shadow: none;
}

.search-toolbar {
  --search-control-height: 3.7rem;
  width: min(100%, 920px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: stretch;
  gap: 0.9rem;
}

.search-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  align-self: stretch;
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  height: var(--search-control-height);
  gap: 0.65rem;
  min-height: var(--search-control-height);
  padding: 0.3rem 0.3rem 0.3rem 0.95rem;
  border-radius: 999px;
  background: rgba(245, 255, 248, 0.9);
  border: 1px solid rgba(31, 168, 95, 0.22);
  box-shadow: 0 10px 24px rgba(8, 41, 22, 0.08);
}

.search-bar-icon {
  width: 1.15rem;
  height: 1.15rem;
  color: rgba(31, 168, 95, 0.72);
  display: inline-flex;
}

.search-bar-icon svg,
.filter-toggle-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.search-input {
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text-strong);
  font-size: 1rem;
  font-weight: 500;
}

.search-input::placeholder {
  color: rgba(53, 84, 68, 0.55);
}

.search-submit-btn {
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  height: calc(var(--search-control-height) - 0.7rem);
  min-height: 0;
  margin: 0;
  padding: 0 1.3rem;
  border: none;
  border-radius: 999px;
  background: var(--brand-500);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(31, 168, 95, 0.22);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.search-submit-btn:hover,
.search-submit-btn:focus-visible {
  background: var(--brand-600);
  box-shadow: 0 10px 22px rgba(31, 168, 95, 0.24);
}

.filter-toggle-btn {
  appearance: none;
  -webkit-appearance: none;
  align-self: stretch;
  box-sizing: border-box;
  height: var(--search-control-height);
  min-height: var(--search-control-height);
  margin: 0;
  padding: 0 1.1rem;
  border: 1px solid rgba(31, 168, 95, 0.18);
  border-radius: 999px;
  background: rgba(245, 255, 248, 0.76);
  color: var(--brand-800);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.filter-toggle-btn:hover,
.filter-toggle-btn:focus-visible,
.filter-toggle-btn[aria-expanded="true"] {
  background: rgba(245, 255, 248, 0.94);
  border-color: rgba(31, 168, 95, 0.26);
}

.filter-toggle-icon {
  width: 1rem;
  height: 1rem;
  color: var(--brand-500);
  display: inline-flex;
}

.filters-panel {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(31, 168, 95, 0.14);
}

.search-pills-wrap {
  width: min(100%, 920px);
  margin: 0.9rem auto 0;
  padding: 0.95rem 1rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.4rem;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.08)),
    radial-gradient(circle at top right, rgba(31, 168, 95, 0.08), transparent 45%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 38px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.search-pills-label {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.search-pills {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.search-pill {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.68rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.search-pill:hover,
.search-pill:focus-visible {
  background: rgba(0, 0, 0, 0.22);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.search-pill.is-active {
  background: linear-gradient(135deg, var(--brand-500), #1e8e58);
  border-color: rgba(18, 121, 73, 0.95);
  color: #fff;
  box-shadow: 0 12px 24px rgba(31, 168, 95, 0.26);
}

.filters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.destination-editorial-page {
  display: grid;
  gap: 2.4rem;
  justify-items: center;
}

.destination-switcher {
  margin-bottom: 0.3rem;
}

.destination-switcher-wrap {
  width: min(100%, 760px);
}

.destination-switcher-pills .search-pill {
  min-width: 140px;
  text-decoration: none;
}

.destination-story-section {
  display: grid;
  gap: 0.8rem;
  justify-items: center;
  width: 100%;
}

.destination-story-hero,
.destination-content-block {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.08)),
    radial-gradient(circle at top right, rgba(31, 168, 95, 0.08), transparent 42%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.8rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 22px 46px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
}

.destination-story-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  align-items: start;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.destination-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  text-align: center;
}

.destination-story-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.8rem;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(172, 234, 193, 0.96);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.destination-story-copy h2 {
  margin: 0 0 0.85rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.destination-story-copy p {
  margin: 0;
  color: rgba(245, 250, 247, 0.88);
  font-size: clamp(1.16rem, 1.8vw, 1.34rem);
  line-height: 1.65;
  max-width: 78ch;
  margin-left: auto;
  margin-right: auto;
}

.destination-content-block {
  width: 100%;
  padding: 1.5rem;
  text-align: center;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.destination-block-heading {
  max-width: 760px;
  margin-bottom: 1.2rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.destination-block-heading h3 {
  margin: 0.3rem 0 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.destination-block-heading .destination-heading-compact {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  text-align: left;
}

.destination-article-grid,
.destination-video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.destination-article-card,
.destination-video-card {
  border-radius: 1.3rem;
  border: 1px solid rgba(226, 245, 233, 0.28);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(222, 243, 231, 0.1));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 14px 30px rgba(8, 41, 22, 0.12);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.destination-article-card {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(12, 74, 44, 0.96), rgba(31, 136, 84, 0.94));
  color: #fff;
  box-shadow: 0 18px 38px rgba(8, 41, 22, 0.28);
}

.destination-article-media {
  position: relative;
  aspect-ratio: 16 / 8.5;
  overflow: hidden;
  background: rgba(16, 108, 63, 0.24);
}

.destination-article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.destination-article-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 38, 22, 0.04), rgba(7, 38, 22, 0.34));
}

.destination-article-topbar {
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 1;
  width: 100%;
  padding: 0.75rem 0.8rem 0;
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  align-items: flex-start;
}

.destination-article-body {
  padding: 1rem 1rem 1.05rem;
  text-align: left;
}

.destination-article-tag {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6f61, #ff9f68);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(255, 111, 97, 0.22);
}

.article-tag-gold {
  background: linear-gradient(135deg, #ffb020, #ffd76a);
  color: #244255;
  box-shadow: 0 10px 20px rgba(255, 176, 32, 0.22);
}

.article-tag-teal {
  background: linear-gradient(135deg, #1fb89d, #58d5be);
  box-shadow: 0 10px 20px rgba(31, 184, 157, 0.22);
}

.article-tag-rose {
  background: linear-gradient(135deg, #f05ac8, #ff8fb0);
  box-shadow: 0 10px 20px rgba(240, 90, 200, 0.22);
}

.destination-article-date {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  padding: 0.32rem 0.68rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand-800);
  font-size: 0.69rem;
  font-weight: 800;
  white-space: nowrap;
}

.destination-article-card h4,
.destination-video-body h4 {
  margin: 0 0 0.7rem;
  color: inherit;
  font-size: 1.02rem;
  line-height: 1.35;
}

.destination-article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.8rem;
  color: rgba(220, 242, 229, 0.88);
  font-size: 0.78rem;
  font-weight: 600;
}

.destination-article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.destination-article-meta span::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border: 1.6px solid currentColor;
  border-radius: 999px;
  opacity: 0.72;
}

.destination-article-card p,
.destination-video-body p {
  margin: 0;
  color: inherit;
  line-height: 1.65;
  font-size: 0.94rem;
}

.destination-article-card p {
  color: rgba(239, 249, 243, 0.92);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.destination-article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.destination-article-views {
  color: rgba(220, 242, 229, 0.9);
  font-size: 0.8rem;
  font-weight: 700;
}

.destination-article-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.1rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  background: rgba(8, 58, 33, 0.72);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
}

.destination-video-card {
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(145deg, rgba(20, 124, 71, 0.92), rgba(8, 69, 39, 0.9));
  box-shadow: 0 18px 38px rgba(5, 43, 25, 0.24);
  transition: transform 0.22s ease;
}

.destination-video-card:hover,
.destination-video-card:focus-visible {
  transform: translateY(-4px);
}

.destination-video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(16, 108, 63, 0.18);
  border-radius: 1.35rem;
  box-shadow: 0 18px 34px rgba(12, 32, 20, 0.12);
}

.destination-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.destination-video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #081c12;
}

.destination-video-card:hover .destination-video-thumb img,
.destination-video-card:focus-visible .destination-video-thumb img {
  transform: scale(1.03);
  filter: saturate(1.05);
}

.destination-video-card.has-uploaded-video:hover,
.destination-video-card.has-uploaded-video:focus-visible {
  transform: none;
}

.destination-video-card.has-uploaded-video .destination-video-play {
  display: none;
}

.destination-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4.5rem;
  height: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, #20bd70, #139554);
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: white;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 0 0 0.45rem rgba(0, 0, 0, 0.2),
    0 16px 32px rgba(6, 80, 43, 0.38);
  transform: translate(-50%, -50%);
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.destination-video-play-icon {
  width: 0;
  height: 0;
  margin-left: 0.22rem;
  border-top: 0.56rem solid transparent;
  border-bottom: 0.56rem solid transparent;
  border-left: 0.9rem solid #fff;
  filter: drop-shadow(0 2px 2px rgba(70, 0, 10, 0.3));
}

.destination-video-card:hover .destination-video-play,
.destination-video-card:focus-visible .destination-video-play {
  transform: translate(-50%, -50%) scale(1.09);
  background: linear-gradient(135deg, #35d782, #16a762);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 0 0 0.55rem rgba(255, 255, 255, 0.2),
    0 20px 40px rgba(6, 92, 48, 0.46);
}

.destination-video-card:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.destination-video-duration {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  padding: 0.22rem 0.45rem;
  border-radius: 0.5rem;
  background: rgba(10, 10, 10, 0.84);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.destination-video-body {
  padding: 1rem 1rem 1.1rem;
  text-align: left;
  color: #fff;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.destination-video-body h4 {
  color: #fff;
  font-size: 1.02rem;
  line-height: 1.35;
  margin-bottom: 0.35rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.destination-video-body p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.5;
}

.destination-video-footer {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.35rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.82);
}

.destination-video-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.destination-video-channel,
.destination-video-views {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 500;
}

.destination-video-age {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 500;
}

.destination-video-views::after,
.destination-video-channel::after {
  content: "\2022";
  margin-left: 0.45rem;
  color: rgba(255, 255, 255, 0.58);
}

.destination-video-more {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.25rem;
  line-height: 1;
  padding-top: 0.05rem;
}

.destination-section-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.4rem;
}

.destination-section-actions .btn {
  min-width: 210px;
}

@media (max-width: 1100px) {
  .destination-article-grid,
  .destination-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .destination-story-hero,
  .destination-content-block {
    border-radius: 1.35rem;
  }

  .destination-story-hero {
    gap: 1rem;
  }

  .destination-story-copy {
    padding: 0;
  }

  .destination-story-copy h2,
  .destination-block-heading h3 {
    text-align: center;
  }

  .destination-story-kicker {
    margin-left: auto;
    margin-right: auto;
  }

  .destination-story-copy p,
  .destination-block-heading {
    text-align: center;
  }

  .destination-content-block {
    padding: 1rem;
  }

  .destination-article-grid,
  .destination-video-grid {
    grid-template-columns: 1fr;
  }

  .destination-switcher-pills .search-pill {
    min-width: 132px;
  }
}

.filter-group {
  display: flex;
  flex-direction: column;
}

.filter-group label {
  color: var(--text-body);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.filter-select {
  background: rgba(245, 255, 248, 0.92);
  border: 1px solid rgba(198, 231, 210, 0.42);
  border-radius: 0.9rem;
  padding: 0.75rem;
  color: var(--text-strong);
  font-size: 0.875rem;
  backdrop-filter: blur(10px);
}

/* Lodge Grid - COMPACT VERSION */
.lodges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

/* Responsive adjustments for the 4-column grid */
@media (max-width: 1200px) {
  .lodges-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

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

.lodge-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(236, 248, 240, 0.6));
  backdrop-filter: blur(18px);
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--surface-border);
  transition: all 0.3s ease;
  box-shadow: 0 18px 42px rgba(8, 41, 22, 0.1);
}

.lodge-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(18, 72, 42, 0.16);
  border-color: rgba(31, 168, 95, 0.24);
}

.lodge-image {
  position: relative;
  height: 160px;
  overflow: hidden;
  cursor: pointer;
}

.card-gallery-trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.lodge-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.lodges-grid.activities-grid .lodge-card {
  display: flex;
  flex-direction: column;
}

.lodges-grid.activities-grid .lodge-content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.lodges-grid.activities-grid .lodge-location {
  margin-left: 0;
}

.lodges-grid.activities-grid .lodge-amenities {
  margin-top: auto;
}

.conference-page-section {
  max-width: min(1620px, 100%);
  margin: 0 auto 2.5rem;
  text-align: center;
}

.conference-events-page .conference-page-section + .conference-page-section {
  margin-top: clamp(4rem, 7vw, 7rem);
}

.conference-page-heading {
  max-width: 760px;
  margin: 0 auto 1.5rem;
}

.conference-page-heading h2 {
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  margin: 0.35rem 0 0.6rem;
}

.conference-page-heading p {
  color: var(--text-body);
  line-height: 1.7;
}

.conference-events-page .conference-page-heading h2 {
  color: #fff;
}

.conference-events-page .conference-page-heading p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.2rem;
  font-weight: 600;
}

.conference-room-grid,
.previous-conference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  justify-content: center;
}

.conference-page-section > .lodges-grid {
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  justify-content: center;
  align-items: stretch;
  max-width: min(1500px, 100%);
  gap: 1rem;
  margin-left: auto;
  margin-right: auto;
}

.conference-page-section > .lodges-grid .lodge-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  border-radius: 1.45rem;
}

.conference-page-section > .lodges-grid .lodge-image {
  height: 165px;
}

.conference-page-section > .lodges-grid .lodge-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 195px;
  padding: 1.1rem;
  text-align: left;
}

.conference-page-section > .lodges-grid .lodge-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: start;
  min-height: 2.55rem;
  margin-bottom: 0.55rem;
}

.conference-page-section > .lodges-grid .lodge-name {
  font-size: 1rem;
  line-height: 1.2;
}

.conference-page-section > .lodges-grid .lodge-price {
  min-width: 3.4rem;
}

.conference-events-page .conference-page-section > .lodges-grid .lodge-price {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 4.25rem;
  padding: 0;
  border-radius: 0;
  line-height: 1.05;
  text-align: center;
}

.conference-events-page .conference-page-section > .lodges-grid .price-amount {
  font-size: 1.05rem;
  line-height: 1;
}

.conference-events-page .conference-page-section > .lodges-grid .price-unit {
  margin-top: 0.15rem;
  font-size: 0.64rem;
  line-height: 1;
  white-space: nowrap;
}

.conference-page-section > .lodges-grid .lodge-location,
.conference-page-section > .lodges-grid .lodge-description {
  font-size: 0.86rem;
}

.conference-page-section > .lodges-grid .lodge-location {
  justify-content: flex-start;
  text-align: left;
  width: 100%;
  margin-left: 0;
  margin-bottom: 0.6rem;
  gap: 0.35rem;
}

.conference-page-section > .lodges-grid .lodge-description {
  -webkit-line-clamp: 3;
  text-align: left;
  min-height: 3rem;
  margin-bottom: 0.6rem;
}

.conference-page-section > .lodges-grid .lodge-amenities {
  margin-top: auto;
  min-height: 2rem;
  align-content: flex-start;
}

.conference-page-section > .lodges-grid .lodge-footer {
  margin-top: 0.5rem;
  align-items: flex-end;
}

.conference-room-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: min(1500px, 100%);
  margin: 0 auto;
}

.previous-conference-grid {
  max-width: 1160px;
  margin: 0 auto;
}

.conference-room-card,
.previous-conference-card {
  text-align: left;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(236, 248, 240, 0.6));
  border: 1px solid var(--surface-border);
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(8, 41, 22, 0.1);
}

.conference-room-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  border-radius: 1.45rem;
}

.conference-room-card-media {
  position: relative;
  min-height: 165px;
  background: rgba(31, 168, 95, 0.12);
}

.conference-room-card-media .card-gallery-trigger {
  height: 165px;
}

.conference-room-card-media img {
  width: 100%;
  height: 165px;
  object-fit: cover;
  display: block;
}

.conference-room-card-media span {
  position: absolute;
  left: 0.8rem;
  top: 0.8rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(7, 63, 35, 0.9);
  color: white;
  font-size: 0.78rem;
  font-weight: 800;
}

.conference-room-card-body,
.previous-conference-card {
  padding: 0.9rem;
}

.conference-room-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 195px;
}

.conference-room-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.conference-room-card-heading h3,
.previous-conference-card h3 {
  color: var(--text-strong);
  margin: 0;
}

.conference-room-card-heading strong {
  color: var(--brand-800);
  font-size: 1.25rem;
  white-space: nowrap;
}

.conference-room-card-heading strong span {
  display: block;
  color: var(--text-soft);
  font-size: 0.72rem;
  text-align: right;
}

.conference-room-card-body p,
.previous-conference-card p {
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 0.65rem;
}

.conference-room-card-body p {
  min-height: 4.8rem;
}

.conference-room-card-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
  padding-top: 0.65rem;
}

.conference-room-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.55rem 1rem;
  border-radius: 0.55rem;
  background: linear-gradient(135deg, var(--brand-700), var(--brand-500));
  color: white;
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(10, 107, 61, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.conference-room-card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(10, 107, 61, 0.26);
}

.conference-events-page .conference-page-section > .lodges-grid .lodge-card,
.conference-events-page .conference-room-card,
.conference-events-page .previous-conference-card {
  background: linear-gradient(180deg, rgba(12, 74, 44, 0.96), rgba(31, 136, 84, 0.94));
  border-color: rgba(226, 245, 233, 0.28);
  color: #fff;
  box-shadow: 0 18px 38px rgba(8, 41, 22, 0.28);
}

.conference-events-page .conference-page-section > .lodges-grid .lodge-card *,
.conference-events-page .conference-room-card *,
.conference-events-page .previous-conference-card * {
  color: #fff;
}

.conference-events-page .conference-page-section > .lodges-grid .lodge-card svg,
.conference-events-page .conference-room-card svg,
.conference-events-page .previous-conference-card svg {
  fill: currentColor;
}

.conference-events-page .conference-page-section > .lodges-grid .lodge-rating,
.conference-events-page .conference-page-section > .lodges-grid .amenity-tag,
.conference-events-page .conference-room-card-media span {
  background: var(--brand-500);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.conference-events-page .conference-page-section > .lodges-grid .lodge-price {
  background: transparent;
  border: 0;
}

.conference-events-page .conference-page-section > .lodges-grid .lodge-type {
  background: linear-gradient(135deg, #ff8f66, #f15d3a);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}

.conference-events-page .conference-room-card-cta,
.conference-events-page .conference-page-section > .lodges-grid .btn-primary {
  background: var(--brand-500);
  color: #fff;
  box-shadow: 0 12px 26px rgba(31, 168, 95, 0.24);
}

.conference-events-page .conference-room-card-cta:hover,
.conference-events-page .conference-page-section > .lodges-grid .btn-primary:hover {
  background: var(--brand-600);
  box-shadow: 0 16px 34px rgba(31, 168, 95, 0.32);
}

.previous-conference-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 360px;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(17, 72, 38, 0.82), rgba(30, 77, 33, 0.72)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.35rem;
  box-shadow: 0 24px 52px rgba(5, 35, 17, 0.2);
  backdrop-filter: blur(18px);
}

.previous-conference-media {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.previous-conference-image-btn,
.previous-conference-thumb-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.previous-conference-image-btn {
  height: 100%;
}

.previous-conference-image-btn img,
.previous-conference-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.previous-conference-card:hover .previous-conference-media img {
  transform: scale(1.04);
}

.previous-conference-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(7, 63, 35, 0.35);
}

.previous-conference-placeholder span {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  box-shadow:
    -3.8rem -1.7rem 0 -2.2rem rgba(255, 255, 255, 0.34),
    3.8rem -1.7rem 0 -2.2rem rgba(255, 255, 255, 0.22);
}

.previous-conference-placeholder strong,
.previous-conference-placeholder em {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.previous-conference-placeholder strong {
  bottom: 3.6rem;
  width: 6.5rem;
  height: 0.55rem;
}

.previous-conference-placeholder em {
  bottom: 2.4rem;
  width: 8.5rem;
  height: 0.55rem;
}

.previous-conference-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
  padding: 0 1.15rem;
  margin-top: -0.35rem;
}

.previous-conference-thumb-btn {
  border-radius: 0.65rem;
  overflow: hidden;
}

.previous-conference-thumbs img {
  width: 100%;
  height: 54px;
  object-fit: cover;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.conference-gallery-modal[hidden] {
  display: none;
}

.conference-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.conference-gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 20, 10, 0.78);
  backdrop-filter: blur(10px);
}

.conference-gallery-dialog {
  position: relative;
  width: var(--universal-popup-width);
  min-height: var(--universal-popup-height);
  max-height: var(--universal-popup-height);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--universal-popup-radius);
  background: linear-gradient(180deg, rgba(14, 48, 28, 0.96), rgba(8, 31, 19, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.conference-gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  color: white;
}

.conference-gallery-header h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.conference-gallery-close {
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  cursor: pointer;
  font-size: 1.45rem;
}

.conference-gallery-stage {
  position: relative;
  min-height: 360px;
  background: rgba(0, 0, 0, 0.28);
}

.conference-gallery-stage img {
  width: 100%;
  height: min(58vh, 560px);
  object-fit: contain;
  display: block;
}

.conference-gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(4, 31, 17, 0.62);
  color: white;
  cursor: pointer;
  font-size: 2rem;
}

.conference-gallery-prev {
  left: 1rem;
}

.conference-gallery-next {
  right: 1rem;
}

.conference-gallery-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 104px;
  gap: 0.7rem;
  overflow-x: auto;
  padding: 1rem 1.2rem 1.2rem;
}

.conference-gallery-strip button {
  height: 72px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 0.75rem;
  background: transparent;
  cursor: pointer;
  opacity: 0.72;
}

.conference-gallery-strip button.is-active {
  border-color: var(--brand-400);
  opacity: 1;
}

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

.previous-conference-body {
  padding: 0 1.35rem 1.35rem;
}

.previous-conference-card h3 {
  color: white;
  font-size: 1.18rem;
  line-height: 1.35;
}

.previous-conference-card p {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
  margin-bottom: 0;
}

.previous-conference-count {
  position: absolute;
  left: 0.85rem;
  top: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.7rem 1rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  color: white;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

@media (max-width: 1200px) {
  .conference-page-section > .lodges-grid,
  .conference-room-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 900px;
  }
}

@media (max-width: 900px) {
  .conference-page-section > .lodges-grid,
  .conference-room-grid,
  .previous-conference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .conference-gallery-modal {
    padding: 0.8rem;
  }

  .conference-gallery-stage {
    min-height: 260px;
  }

  .conference-gallery-stage img {
    height: 46vh;
  }

  .conference-gallery-strip {
    grid-auto-columns: 82px;
  }

  .conference-gallery-strip button {
    height: 58px;
  }

  .conference-page-section > .lodges-grid,
  .conference-room-grid,
  .previous-conference-grid,
  .previous-conference-card {
    grid-template-columns: 1fr;
  }
}

.lodge-type {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-800));
  color: white;
  padding: 0.125rem 0.5rem;
  border-radius: 0.75rem;
  font-size: 0.625rem;
  font-weight: 500;
}

.lodge-rating {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  border-radius: 0.375rem;
  padding: 0.25rem 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.star-icon {
  color: var(--brand-600);
  font-size: 0.75rem;
}

.rating-text {
  font-size: 0.75rem;
  font-weight: 500;
}

.lodge-content {
  padding: 1rem;
}

.lodge-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.lodge-name {
  font-size: 1rem;
  font-weight: bold;
  color: var(--text-strong);
  margin: 0;
  line-height: 1.2;
}

.lodge-price {
  text-align: right;
}

.price-amount {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--brand-700);
  line-height: 1;
}

.price-unit {
  font-size: 0.625rem;
  color: #6b7280;
}

.lodge-location {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--text-strong);
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.lodge-location span {
  color: var(--text-strong);
}

.lodge-location .meta-icon {
  color: var(--brand-700);
}

.meta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.95rem;
  height: 0.95rem;
  color: var(--brand-700);
  flex: 0 0 auto;
}

.meta-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.meta-separator {
  color: rgba(22, 50, 34, 0.5);
  margin: 0 0.15rem;
}

.location-icon,
.guests-icon {
  font-size: 0.75rem;
}

.lodge-description {
  color: var(--text-body);
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lodge-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.amenity-tag {
  background: rgba(31, 168, 95, 0.1);
  color: var(--text-body);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-size: 0.625rem;
}

.lodge-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.lodge-reviews {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  color: var(--text-soft);
  font-size: 0.625rem;
  flex: 1;
}

.lodge-footer .btn-primary {
  padding: 0.375rem 0.75rem;
  font-size: 0.625rem;
  border-radius: 0.25rem;
  white-space: nowrap;
}

.load-more {
  text-align: center;
}

/* Footer */
.footer {
  background:
    linear-gradient(135deg, rgba(8, 34, 19, 0.96), rgba(11, 63, 36, 0.94)),
    radial-gradient(circle at top left, rgba(31, 168, 95, 0.18), transparent 26%);
  color: white;
  padding: 2.5rem 0;
  margin-top: 4rem;
  border-top: 1px solid rgba(198, 231, 210, 0.14);
}

.footer-content {
  width: min(calc(100% - 2rem), var(--site-content-shell));
  max-width: var(--site-content-shell);
  margin: 0 auto;
  padding: 0 var(--site-gutter);
  display: grid;
  grid-template-columns: repeat(3, minmax(min(100%, 16rem), 1fr));
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.footer-section:nth-child(2) h3 {
  text-align: center;
}

.footer-section:nth-child(3) {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-self: end;
  text-align: left;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer-logo-text {
  font-size: 1.125rem;
  font-weight: bold;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

.footer-section p {
  color: #d1d5db;
  font-size: 0.875rem;
  line-height: 1.5;
  max-width: 34ch;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2.5rem;
  align-items: start;
}

.contact-location {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: #d1d5db;
  font-size: 0.875rem;
  line-height: 1.5;
  position: relative;
}

.contact-location + .contact-location {
  padding-left: 0;
}

.contact-location strong {
  color: white;
  font-size: 0.95rem;
}

.contact-location a {
  color: #baf1c8;
  text-decoration: none;
}

.contact-location a:hover {
  color: #e0f9e7;
}

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

  .contact-location + .contact-location {
    padding-left: 0;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(224, 249, 231, 0.14);
  }

}

.footer-admin-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin-top: 1rem;
  padding: 0.7rem 1.45rem;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.footer-admin-login:hover,
.footer-admin-login:focus-visible {
  background: white;
  border-color: white;
  color: #06475d;
  transform: translateY(-2px);
}

.footer-developer-credit {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  min-width: 160px;
}

.footer-developer-credit {
  display: none;
}

.link-tech-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: white;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
}

.link-tech-mark {
  width: 1.15rem;
  height: 1.15rem;
  background: white;
  display: inline-block;
  flex: 0 0 auto;
}

.developer-contact-block {
  display: grid;
  grid-template-columns: max-content;
  align-items: center;
  gap: 0.45rem 0.6rem;
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  line-height: 1.35;
}

.developer-contact-block strong {
  color: white;
  font-size: 0.88rem;
  grid-column: 1 / -1;
}

.developer-contact-block a[aria-label="Email Link Tech"] {
  text-transform: lowercase;
}

.developer-contact-block a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #d9fbe2;
  text-decoration: none;
  width: fit-content;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.developer-contact-block a:hover {
  color: white;
  opacity: 0.86;
}

.developer-contact-block .developer-contact-icon,
.developer-contact-block a[aria-label="Link Tech Facebook"],
.developer-contact-block a[aria-label="Link Tech Instagram"],
.developer-contact-block a[aria-label="Link Tech X"] {
  display: none;
}

.developer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  color: white;
  line-height: 1;
}

.developer-contact-icon svg {
  width: 1.28rem;
  height: 1.28rem;
  display: block;
  fill: currentColor;
}

@media (max-width: 980px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 2rem;
  }

  .footer-section:nth-child(2) h3 {
    text-align: left;
  }

  .footer-section:nth-child(3) {
    align-items: flex-start;
    justify-self: start;
  }

  .contact-list {
    max-width: 620px;
  }
}

/* Booking Page Styles */
.booking-page {
  background:
    radial-gradient(circle at top left, rgba(169, 220, 186, 0.2), transparent 25%),
    radial-gradient(circle at 82% 10%, rgba(21, 116, 66, 0.12), transparent 24%),
    linear-gradient(135deg, #eef8f1, #dcefe2 52%, #f4fbf6);
  min-height: 100vh;
}

.booking-header {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 8.5rem 2rem 4rem;
  text-align: center;
  min-height: 360px;
}

.booking-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/bg image.png") center/cover no-repeat;
  transform: scale(1.04);
  z-index: -2;
}

.booking-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(4, 28, 14, 0.76), rgba(12, 70, 38, 0.44)),
    radial-gradient(circle at center, rgba(31, 168, 95, 0.18), transparent 50%);
  z-index: -1;
}

.header-content {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 2.35rem 2.6rem;
  background: var(--hero-glass);
  border: 1px solid var(--hero-border);
  border-radius: 2rem;
  backdrop-filter: blur(18px);
  box-shadow: var(--glass-shadow);
}

.booking-header h1 {
  font-size: clamp(3rem, 6vw, 4.4rem);
  font-weight: bold;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.booking-header p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

.booking-main {
  width: min(calc(100% - 2rem), var(--site-content-shell));
  max-width: 75rem;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) var(--site-gutter);
}

.contact-page .booking-main {
  width: min(calc(100% - 2rem), var(--site-content-shell));
  max-width: var(--site-content-shell);
  padding: clamp(2rem, 4vw, 3rem) var(--site-gutter);
}

.booking-form-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
  gap: 3rem;
}

.contact-page .booking-form-layout {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 24rem), 1fr));
  gap: 2rem;
}

.form-sections {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(236, 248, 240, 0.56));
  backdrop-filter: blur(18px);
  border-radius: 1.5rem;
  border: 1px solid var(--surface-border);
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(8, 41, 22, 0.1);
}

.section-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.section-header h2 {
  color: var(--text-strong);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-soft);
}

.section-content {
  padding: 2rem;
}

.booking-page .form-group label {
  color: var(--text-body);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.booking-page .form-input,
.booking-page .form-select,
.booking-page .form-textarea {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(148, 197, 166, 0.26);
  color: var(--text-strong);
  border-radius: 0.9rem;
  backdrop-filter: blur(10px);
}

.booking-page .form-input::placeholder,
.booking-page .form-textarea::placeholder {
  color: #9ca3af;
}

.guest-counter {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.counter-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(148, 197, 166, 0.26);
  background: rgba(255, 255, 255, 0.56);
  color: var(--text-strong);
  font-size: 1.25rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.counter-btn:hover {
  background: rgba(216, 242, 225, 0.88);
}

.guest-number {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-strong);
  min-width: 3rem;
  text-align: center;
}

.nights-info {
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(148, 197, 166, 0.24);
  border-radius: 1rem;
  padding: 1rem;
  margin-top: 1rem;
  backdrop-filter: blur(10px);
}

.nights-info p {
  color: var(--brand-800);
  font-size: 0.875rem;
  margin: 0;
}

.conference-request-panel {
  display: grid;
  gap: 1.25rem;
  margin-top: 1rem;
  padding: 1.25rem;
  border-radius: 1.1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(240, 249, 243, 0.82));
  border: 1px solid rgba(148, 197, 166, 0.26);
}

.conference-request-panel[hidden] {
  display: none;
}

.conference-request-note {
  display: grid;
  gap: 0.35rem;
}

.conference-request-note strong {
  color: var(--text-strong);
  font-size: 1rem;
  font-weight: 700;
}

.conference-request-note p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.5;
}

.help-info {
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(148, 197, 166, 0.24);
  border-radius: 1rem;
  padding: 1rem;
  margin-top: 1rem;
  backdrop-filter: blur(10px);
}

.help-info h4 {
  color: var(--brand-800);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.help-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.help-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-800);
  font-size: 0.875rem;
}

.help-icon {
  font-size: 1rem;
}

/* Activities */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
}

.activity-item {
  position: relative;
}

.lodges-grid.activities-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.activities-page .lodges-grid.activities-grid .lodge-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  background: linear-gradient(180deg, rgba(12, 74, 44, 0.96), rgba(31, 136, 84, 0.94));
  border-color: rgba(226, 245, 233, 0.28);
  color: #fff;
  box-shadow: 0 18px 38px rgba(8, 41, 22, 0.28);
}

.activities-page .lodges-grid.activities-grid .lodge-card * {
  color: #fff;
}

.activities-page .lodges-grid.activities-grid .lodge-card svg {
  fill: currentColor;
}

.activities-page .lodges-grid.activities-grid .lodge-image {
  height: 190px;
}

.activities-page .lodges-grid.activities-grid .lodge-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.1rem;
}

.activities-page .lodges-grid.activities-grid .lodge-type {
  background: linear-gradient(135deg, #ff8f66, #f15d3a);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.activities-page .lodges-grid.activities-grid .lodge-rating,
.activities-page .lodges-grid.activities-grid .amenity-tag {
  background: var(--brand-500);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.activities-page .lodges-grid.activities-grid .lodge-price {
  background: transparent;
  border: 0;
}

.activities-page .lodges-grid.activities-grid .price-amount {
  font-size: 1.05rem;
  line-height: 1;
}

.activities-page .lodges-grid.activities-grid .price-unit {
  margin-top: 0.15rem;
  font-size: 0.64rem;
  line-height: 1;
  white-space: nowrap;
}

.activities-page .lodges-grid.activities-grid .btn-primary {
  background: var(--brand-500);
  color: #fff;
  box-shadow: 0 12px 26px rgba(31, 168, 95, 0.24);
}

.activities-page .lodges-grid.activities-grid .btn-primary:hover {
  background: var(--brand-600);
  box-shadow: 0 16px 34px rgba(31, 168, 95, 0.32);
}

.activities-video-section {
  margin-top: clamp(4rem, 7vw, 7rem);
}

.activities-video-grid {
  max-width: min(1500px, 100%);
  margin: 0 auto;
  align-items: stretch;
}

.activities-video-grid .destination-video-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.activities-video-grid .destination-video-thumb {
  aspect-ratio: 16 / 9;
  height: auto;
  flex: 0 0 auto;
}

.activities-video-grid .destination-video-body {
  flex: 1;
}

.activities-video-grid .destination-video-body p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 680px) {
  .destination-video-body {
    gap: 0.65rem;
  }

  .destination-video-play {
    width: 4rem;
    height: 2.85rem;
    border-radius: 0.85rem;
  }

  .destination-video-body h4 {
    font-size: 0.98rem;
  }

  .destination-video-body p,
  .destination-video-channel,
  .destination-video-views,
  .destination-video-age {
    font-size: 0.82rem;
  }
}

@media (max-width: 1200px) {
  .lodges-grid.activities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .lodges-grid.activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.activity-checkbox {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 10;
  width: 1.05rem;
  height: 1.05rem;
  cursor: pointer;
}

.activity-label {
  display: block;
  background: rgba(255, 255, 255, 0.44);
  border-radius: 1rem;
  padding: 0.85rem;
  padding-left: 2.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
}

.activity-checkbox:checked + .activity-label {
  background: rgba(31, 168, 95, 0.1);
  border-color: var(--brand-500);
}

.activity-name {
  font-weight: 600;
  color: var(--text-strong);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.activity-description {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-bottom: 0.35rem;
}

.activity-price {
  font-weight: 600;
  color: var(--brand-700);
  font-size: 0.8rem;
}

/* Booking Summary */
.booking-summary {
  position: sticky;
  top: 6rem;
  height: fit-content;
}

.summary-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(236, 248, 240, 0.58));
  backdrop-filter: blur(18px);
  border-radius: 1.5rem;
  border: 1px solid var(--surface-border);
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(8, 41, 22, 0.1);
}

.summary-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.summary-header h2 {
  color: var(--text-strong);
  font-size: 1.5rem;
}

.summary-content {
  padding: 2rem;
}

.summary-section {
  margin-bottom: 1.5rem;
}

.summary-section h4 {
  color: var(--text-strong);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--text-body);
}

.summary-divider {
  height: 1px;
  background: rgba(19, 117, 66, 0.12);
  margin: 1rem 0;
}

.selected-lodge-info,
.lodge-selection-info {
  margin-top: 1.25rem;
}

.lodge-badge,
.lodge-selection-info {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  backdrop-filter: blur(12px);
}

.lodge-selection-info p,
.lodge-note {
  color: var(--text-soft);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-destination-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.destination-preview-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(236, 248, 240, 0.32));
  border: 1px solid rgba(148, 197, 166, 0.22);
  border-radius: 1.2rem;
  padding: 1.35rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 30px rgba(8, 41, 22, 0.08);
}

.destination-preview-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(31, 168, 95, 0.12);
  color: var(--brand-700);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}

.destination-preview-card h3 {
  color: var(--text-strong);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.destination-preview-card p {
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.destination-preview-lines {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--text-soft);
  font-size: 0.86rem;
}

.destination-preview-lines a {
  color: var(--brand-700);
  text-decoration: none;
  font-weight: 600;
}

.contact-location-section {
  margin-top: 0;
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(236, 248, 240, 0.36));
  border: 1px solid rgba(148, 197, 166, 0.2);
  border-radius: 1.6rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 44px rgba(8, 41, 22, 0.08);
}

.contact-location-intro {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.contact-location-intro h2 {
  color: var(--text-strong);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin: 0.35rem 0 0.65rem;
}

.contact-location-intro p {
  color: var(--text-body);
  line-height: 1.7;
}

.contact-location-switcher {
  display: flex;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.contact-location-tab {
  min-width: 180px;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(148, 197, 166, 0.2);
  background: rgba(255, 255, 255, 0.44);
  color: var(--text-strong);
  text-align: left;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 24px rgba(8, 41, 22, 0.06);
}

.contact-location-tab.active,
.contact-location-tab:hover,
.contact-location-tab:focus-visible {
  background: linear-gradient(180deg, rgba(31, 168, 95, 0.18), rgba(236, 248, 240, 0.44));
  border-color: rgba(31, 168, 95, 0.38);
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(8, 41, 22, 0.08);
}

.contact-location-tab-title {
  display: block;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.contact-location-tab-copy {
  display: block;
  color: var(--text-soft);
  font-size: 0.82rem;
}

.contact-location-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 1.35rem;
  align-items: stretch;
}

.contact-location-card,
.contact-map-card {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(148, 197, 166, 0.2);
  border-radius: 1.3rem;
  padding: 1.3rem;
  backdrop-filter: blur(14px);
}

.contact-location-card-header {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

.contact-location-card-header h3 {
  color: var(--text-strong);
  margin-bottom: 0.3rem;
}

.contact-location-card-header p {
  color: var(--text-body);
  line-height: 1.6;
}

.contact-location-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-location-detail-card {
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(148, 197, 166, 0.18);
  border-radius: 1rem;
  padding: 1rem;
}

.contact-location-detail-label {
  display: block;
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.contact-location-detail-card strong,
.contact-location-detail-card a {
  color: var(--text-strong);
  font-size: 0.95rem;
  line-height: 1.5;
  text-decoration: none;
}

.contact-location-detail-card a:hover {
  color: var(--brand-700);
}

.contact-location-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.contact-map-card {
  overflow: hidden;
  padding: 0;
  min-height: 440px;
}

.contact-map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
}

.faq-item {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(148, 197, 166, 0.22);
  border-radius: 1.1rem;
  padding: 1.35rem 1.4rem;
  backdrop-filter: blur(12px);
}

.faq-item h4 {
  color: var(--text-strong);
  margin-bottom: 0.45rem;
}

.faq-item p {
  color: var(--text-soft);
  font-size: 0.875rem;
  line-height: 1.65;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-panel-block {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(19, 117, 66, 0.12);
}

.contact-panel-block:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.contact-panel-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.95rem;
}

.contact-panel-header h4 {
  color: var(--text-strong);
  font-size: 1rem;
}

.contact-panel-icon {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(31, 168, 95, 0.14);
  color: var(--brand-700);
}

.contact-detail-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-detail-card {
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(148, 197, 166, 0.18);
  border-radius: 1rem;
  padding: 1rem;
  backdrop-filter: blur(10px);
}

.contact-detail-card strong {
  display: block;
  color: var(--text-strong);
  margin-bottom: 0.45rem;
}

.contact-lines {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.55;
}

.contact-lines a {
  color: var(--brand-700);
  text-decoration: none;
}

.contact-lines a:hover {
  color: var(--brand-800);
}

.contact-hours {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-body);
  font-size: 0.9rem;
}

.contact-hours-note {
  margin-top: 0.75rem;
  color: var(--text-soft);
  font-size: 0.85rem;
  font-style: italic;
}

.social-links {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.social-link {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(148, 197, 166, 0.18);
  color: var(--brand-700);
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(31, 168, 95, 0.14);
  color: var(--brand-800);
}

.summary-totals {
  margin-bottom: 2rem;
}

.total-amount {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--brand-700);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1rem;
  margin-top: 1rem;
}

.error-message {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin-bottom: 1rem;
  color: #dc2626;
  font-size: 0.875rem;
}

.terms-text {
  font-size: 0.75rem;
  color: #6b7280;
  text-align: center;
  margin-top: 1rem;
  line-height: 1.4;
}

/* Success Message */
.success-message {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.success-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
  max-width: 600px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.success-card h1 {
  color: #1f2937;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.success-card > p {
  color: #6b7280;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.booking-reference {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.booking-reference p:first-child {
  color: #166534;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.reference-note {
  color: #15803d;
  font-size: 0.875rem;
}

.confirmation-details {
  margin-bottom: 2rem;
}

.confirmation-details p {
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.email-address {
  font-weight: 600;
  color: #1f2937;
}

.contact-note {
  font-size: 0.875rem;
  color: #6b7280;
}

.payment-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.payment-modal[hidden] {
  display: none;
}

.payment-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 30, 18, 0.55);
  backdrop-filter: blur(8px);
}

.payment-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 540px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(236, 248, 240, 0.95));
  border: 1px solid rgba(220, 245, 229, 0.45);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 26px 60px rgba(8, 41, 22, 0.2);
}

.payment-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 999px;
  background: rgba(11, 63, 36, 0.08);
  color: var(--brand-800);
  font-size: 1.4rem;
  cursor: pointer;
}

.payment-modal-header {
  margin-bottom: 1.5rem;
}

.payment-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(31, 168, 95, 0.12);
  color: var(--brand-700);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.payment-modal-header h2 {
  color: var(--text-strong);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.payment-modal-header p {
  color: var(--text-body);
  line-height: 1.6;
}

.payment-modal-summary {
  display: grid;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(148, 197, 166, 0.2);
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  margin-bottom: 1.4rem;
}

.payment-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-body);
}

.payment-summary-row strong {
  color: var(--text-strong);
  font-size: 1rem;
}

.payment-form {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

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

.payment-note {
  font-size: 0.8rem;
  color: var(--text-soft);
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(148, 197, 166, 0.18);
  border-radius: 0.85rem;
  padding: 0.8rem 0.9rem;
}

.payment-error-message {
  margin-bottom: 0;
}

.payment-checkout-card {
  width: min(1040px, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  padding: 2.25rem;
  background: #fbfcfb;
  border: 1px solid rgba(7, 30, 18, 0.12);
  border-radius: 2rem;
  color: var(--text-strong);
  box-shadow: 0 32px 80px rgba(7, 30, 18, 0.24);
}

.payment-checkout-title {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 2.1rem;
}

.payment-checkout-title h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #0f2118;
}

.payment-back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #0f2118;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.payment-back-button:hover {
  background: rgba(10, 92, 51, 0.08);
  transform: translateX(-2px);
}

.payment-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 4rem;
  align-items: start;
}

.payment-method-panel h3 {
  margin: 0 0 2rem;
  font-size: 1.1rem;
  color: #101c16;
}

.payment-method-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.payment-method-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 5rem;
  padding: 1rem;
  border: 1px solid rgba(15, 33, 24, 0.08);
  border-radius: 1rem;
  background: #f3f5f3;
  color: #5c6b62;
  text-align: center;
  cursor: pointer;
}

.payment-method-option.active {
  background: #fff;
  border-color: rgba(15, 33, 24, 0.5);
  box-shadow: 0 0 0 1px rgba(15, 33, 24, 0.2);
  color: #101c16;
}

.payment-method-icon {
  display: block;
  width: max-content;
  margin-bottom: 0.45rem;
  padding: 0.18rem 0.45rem;
  border-radius: 0.35rem;
  background: #101c16;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.payment-method-option-wallet {
  gap: 0.1rem;
}

.payment-wallet-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 1.9rem;
  margin-bottom: 0.55rem;
  width: 100%;
}

.payment-wallet-logos > img,
.payment-wallet-chip img {
  display: block;
  height: 1.15rem;
  width: auto;
  max-width: 5.25rem;
  object-fit: contain;
}

.payment-wallet-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  min-height: 1.65rem;
  padding: 0.24rem 0.45rem;
  border-radius: 0.5rem;
}

.payment-wallet-chip-dark {
  background: #111;
}

.payment-wallet-chip-light {
  background: #f3f5f3;
  border: 1px solid rgba(15, 33, 24, 0.08);
}

.payment-wallet-chip-light img {
  height: 1.28rem;
  max-width: 1.4rem;
}

.payment-checkout-fields {
  gap: 0.8rem;
}

.payment-checkout-fields .form-group label {
  color: #5d6b64;
  font-weight: 700;
}

.payment-checkout-fields .form-input {
  min-height: 4.45rem;
  border-radius: 1rem;
  background: #fff;
  border-color: rgba(15, 33, 24, 0.12);
  font-size: 1rem;
}

.payment-card-input-shell {
  position: relative;
}

.payment-card-input-shell .form-input {
  padding-right: 8.6rem;
}

.payment-card-brands {
  position: absolute;
  top: 50%;
  right: 0.9rem;
  display: flex;
  gap: 0.25rem;
  transform: translateY(-50%);
}

.payment-card-brands span {
  display: inline-flex;
  align-items: center;
  height: 1.45rem;
  padding: 0 0.32rem;
  border-radius: 0.2rem;
  background: #0d5da8;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
}

.payment-card-brands span:nth-child(2) {
  background: #111;
}

.payment-card-brands span:nth-child(3) {
  background: #fff;
  color: #f47a14;
  border: 1px solid rgba(15, 33, 24, 0.16);
}

.payment-save-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0.2rem 0;
  color: #27382f;
  font-size: 0.95rem;
}

.payment-save-row input {
  width: 1.15rem;
  height: 1.15rem;
  accent-color: var(--brand-700);
}

.payment-summary-card {
  padding: 2rem;
  border: 1px solid rgba(15, 33, 24, 0.1);
  border-radius: 1.65rem;
  background: #fff;
  box-shadow: 0 18px 45px rgba(7, 30, 18, 0.08);
}

.payment-summary-card h3 {
  margin: 0 0 1rem;
  font-size: 1.8rem;
  color: #101c16;
}

.payment-summary-intro {
  margin: 0 0 1.4rem;
  color: #42564b;
  line-height: 1.6;
}

.payment-feature-list {
  display: grid;
  gap: 0.95rem;
  margin-bottom: 1.75rem;
}

.payment-feature-item {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.75rem;
  align-items: start;
}

.payment-feature-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: rgba(25, 151, 83, 0.12);
  color: var(--brand-700);
  font-size: 0.72rem;
  font-weight: 800;
}

.payment-feature-item p {
  margin: 0;
  color: #101c16;
  line-height: 1.45;
}

.payment-summary-card .payment-modal-summary {
  margin: 0 0 1.6rem;
  padding: 1.45rem 0 0;
  border: none;
  border-top: 1px solid rgba(15, 33, 24, 0.12);
  border-radius: 0;
  background: transparent;
}

.payment-due-row {
  margin-top: 0.5rem;
  color: #101c16;
  font-weight: 800;
}

.payment-due-row strong {
  font-size: 1.15rem;
}

.payment-submit-button {
  width: 100%;
  min-height: 3.5rem;
  border: none;
  border-radius: 999px;
  background: var(--brand-700);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.payment-submit-button:hover {
  background: var(--brand-800);
  transform: translateY(-1px);
}

.payment-submit-button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
}

@media (max-width: 900px) {
  .payment-checkout-card {
    padding: 1.5rem;
  }

  .payment-checkout-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.success-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 1180px) {
  .nav-container {
    grid-template-columns: minmax(10rem, 0.75fr) minmax(0, 2fr) minmax(7rem, 0.55fr);
    gap: 0.75rem;
    padding: 0 1rem;
  }

  .nav-menu {
    gap: 0.2rem;
  }

  .nav-link {
    font-size: 0.92rem;
    padding: 0.66rem 0.72rem;
  }

  .desktop-only {
    padding: 0.72rem 1rem;
  }

  .logo-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 1280px) {
  .hero-container {
    gap: 2rem;
    padding-inline: clamp(1rem, 2vw, 1.5rem);
  }

  .hero-title {
    font-size: clamp(3.2rem, 4.6vw, 4.5rem);
  }

  .hero-subtitle {
    font-size: clamp(1.45rem, 2vw, 2rem);
    margin-bottom: 2rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, minmax(min(100%, 18rem), 1fr));
    gap: 2rem;
  }

  .footer-section:nth-child(3) {
    align-items: flex-start;
    justify-self: start;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    gap: 2rem;
    padding: 6rem 1.25rem 2rem;
  }

  .hero-content,
  .booking-form-container {
    transform: none;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.65rem;
    max-width: 24rem;
  }

  .booking-form-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-page .booking-main {
    max-width: 100%;
    padding: 2rem 1.25rem;
  }

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

  .booking-summary {
    position: static;
  }
}

@media (max-width: 1100px) {
  .booking-main,
  .contact-page .booking-main,
  .main-content,
  .kariba-page .main-content,
  .conference-events-page .main-content,
  .activities-page .main-content {
    width: min(calc(100% - 1.5rem), 100%);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
    align-items: center;
    text-align: center;
    padding-left: 0;
  }

  .nav-container {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }

  .nav-menu,
  .desktop-only {
    display: none;
  }

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

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

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.45rem;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }

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

  .category-buttons {
    justify-content: center;
  }

  .hero-action-row {
    justify-content: center;
  }

  .hero-action-label-desktop {
    display: none;
  }

  .hero-action-label-mobile {
    display: inline;
  }

  .hero-action-secondary {
    width: 52px;
    min-width: 52px;
    height: 52px;
    min-height: 52px;
    padding: 0;
    border-radius: 50%;
  }

  .hero-video-label {
    display: none;
  }

  .stats-grid {
    justify-content: center;
    gap: 1rem;
  }

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

  .hero-visit {
    display: flex;
    width: min(100%, 22rem);
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    margin-top: 9rem;
  }

  .hero-visit-label {
    color: white;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  }

  .hero-visit-description {
    max-width: 28ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.9rem;
    line-height: 1.45;
    text-align: center;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  }

  .hero-visit-actions {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .hero-visit-btn {
    position: relative;
    display: inline-flex;
    width: 80%;
    min-height: 40px;
    justify-self: center;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 999px;
    background: rgba(239, 249, 242, 0.2);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 12px 28px rgba(8, 31, 19, 0.2);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    touch-action: manipulation;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }

  .hero-visit-btn::before {
    content: "";
    position: absolute;
    inset: -4px 0;
  }

  .hero-visit-btn:hover,
  .hero-visit-btn:focus-visible {
    background: rgba(24, 168, 95, 0.82);
    border-color: rgba(181, 255, 211, 0.75);
  }

  .hero-visit-btn:focus-visible {
    outline: 3px solid white;
    outline-offset: 3px;
  }

  .hero-visit-btn:active {
    transform: scale(0.97);
  }

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

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

  .filters-footer {
    flex-direction: column;
    align-items: stretch;
  }

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

  .page-title {
    font-size: 2.5rem;
  }

  .booking-header h1 {
    font-size: 2.5rem;
  }

  .hero-content-center,
  .header-content {
    padding: 1.75rem 1.5rem;
    border-radius: 1.5rem;
  }

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

  .success-buttons {
    flex-direction: column;
  }

  .contact-info {
    position: static;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.8);
  }

  .contact-card {
    background: transparent;
    border: none;
    backdrop-filter: none;
  }

  .home-story-grid,
  .home-connect-card,
  .home-contact-band {
    grid-template-columns: 1fr;
  }

  .home-contact-band {
    justify-items: center;
    text-align: center;
  }

  .home-contact-band > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .home-contact-band-info {
    align-items: center;
    text-align: center;
  }

  .home-room-grid,
  .home-offer-grid,
  .testimonial-grid,
  .conference-preview-grid {
    grid-template-columns: 1fr;
  }

  .home-room-slider {
    display: flex;
    grid-template-columns: none;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin: 0;
    padding: 0 0.75rem 0 3.45rem;
  }

  .home-room-slider::-webkit-scrollbar {
    display: none;
  }

  .home-room-slider .home-showcase-card {
    flex: 0 0 calc(100vw - 4.9rem);
    min-width: calc(100vw - 4.9rem);
    max-width: none;
    scroll-snap-align: start;
    margin-right: 0.8rem;
  }

  .home-room-slider .home-showcase-card:last-child {
    margin-right: 0;
  }

  .home-room-slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 1rem;
  }

  .home-room-slider-dot {
    width: 0.72rem;
    height: 0.72rem;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.26);
    box-shadow: inset 0 0 0 1px rgba(198, 231, 210, 0.3);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, width 0.2s ease;
  }

  .home-room-slider-dot.active {
    width: 1.9rem;
    background: var(--brand-500);
  }

  .home-social-links,
  .home-contact-band-info {
    justify-content: flex-start;
    align-items: flex-start;
  }
}

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

  .lodges-hero,
  .booking-header {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    max-width: 18rem;
  }

  .stats-grid {
    max-width: 100%;
  }

  .booking-form {
    padding: 1.5rem;
  }

  .main-content {
    padding: 2rem 1rem;
  }

  .filters-section {
    padding: 0;
  }

  .search-toolbar {
    --search-control-height: 3.3rem;
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 0.7rem;
  }

  .search-bar {
    height: var(--search-control-height);
    min-height: var(--search-control-height);
    padding: 0.25rem 0.25rem 0.25rem 0.8rem;
    gap: 0.5rem;
  }

  .search-submit-btn {
    height: calc(var(--search-control-height) - 0.6rem);
    min-height: 0;
    padding: 0 0.95rem;
    font-size: 0.82rem;
  }

  .filter-toggle-btn {
    height: var(--search-control-height);
    min-height: var(--search-control-height);
    width: 100%;
    border-radius: 999px;
  }

  .filters-panel {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
  }

  .form-section .section-content {
    padding: 1.5rem;
  }

  .summary-card .summary-content {
    padding: 1.5rem;
  }

  .success-card {
    padding: 2rem;
  }

  .contact-destination-preview,
  .contact-detail-group,
  .contact-location-detail-grid,
  .contact-location-layout {
    grid-template-columns: 1fr;
  }

  .contact-location-section {
    padding: 1.35rem;
  }

  .contact-map-card,
  .contact-map-card iframe {
    min-height: 320px;
  }

  .payment-modal-card {
    padding: 1.5rem;
    border-radius: 1.2rem;
  }

  .payment-modal-header h2 {
    font-size: 1.45rem;
  }

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

  .home-story-grid,
  .home-section-header,
  .home-card-grid,
  .conference-preview-grid,
  .home-connect-card,
  .home-contact-band,
  .testimonial-slider-shell {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .home-story-card,
  .home-connect-card,
  .home-contact-band {
    padding: 1.2rem;
  }
}

/* Utility Classes */
.desktop-only {
  display: inline-flex;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-up {
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.home-main-glass {
  position: relative;
  background: transparent;
  isolation: isolate;
  overflow: hidden;
}

.home-main-glass::before {
  content: "";
  position: absolute;
  inset: -2px 0;
  z-index: -1;
  pointer-events: none;
  background: rgba(8, 32, 18, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.home-main-glass > section {
  margin: 0;
  border: 0;
  box-shadow: none;
}

.home-main-glass > section + section {
  margin-top: -1px;
}

/* About Us Section */
.about-us-section {
  padding: 6rem 0;
  background: transparent;
  backdrop-filter: none;
  position: relative;
}

.home-story-section,
.home-feature-section,
.home-offers-section,
.home-conference-section,
.home-reviews-section,
.home-connect-section,
.home-contact-section {
  position: relative;
  padding: 4rem 0;
}

.home-story-section {
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 7rem 0;
}

.home-story-section,
.home-feature-section,
.home-offers-section,
.home-conference-section,
.home-reviews-section,
.home-connect-section,
.home-contact-section {
  background: transparent;
  backdrop-filter: none;
}

.home-story-grid,
.home-section-header,
.home-card-grid,
.conference-preview-grid,
.home-connect-card,
.home-contact-band {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.home-section-header h2 {
  color: white;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3rem);
  margin-bottom: 0.9rem;
}

.home-section-header p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.02rem;
}

.home-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  max-width: 1080px;
}

.home-story-card,
.home-showcase-card,
.offer-card,
.conference-preview-card,
.testimonial-card,
.home-connect-card,
.home-contact-band {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.4rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 42px rgba(8, 41, 22, 0.12);
}

.home-story-card {
  padding: 1.6rem;
}

.home-story-intro {
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
  text-align: center;
}

.home-story-card h2,
.home-story-card h3 {
  color: white;
  margin-bottom: 0.8rem;
  font-family: var(--font-display);
}

.home-story-intro h2 {
  max-width: 820px;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.95;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.home-story-card p {
  color: rgba(255, 255, 255, 0.82);
}

.home-story-intro p {
  max-width: 860px;
  font-size: 1.25rem;
  line-height: 1.7;
  margin-left: auto;
  margin-right: auto;
}

.home-content-loading .home-card-grid,
.home-content-loading .conference-preview-grid,
.home-content-loading .event-package-grid,
.home-content-loading .about-cards {
  min-height: 260px;
}

.home-skeleton-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border-radius: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(236, 248, 240, 0.55)),
    rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 42px rgba(8, 41, 22, 0.1);
}

.home-skeleton-card::after,
.home-skeleton-line::after,
.home-skeleton-pill::after,
.home-skeleton-media::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  animation: tamarindSkeletonShimmer 1.35s infinite;
}

.home-skeleton-media {
  position: relative;
  height: 165px;
  overflow: hidden;
  background: rgba(8, 67, 36, 0.12);
}

.home-skeleton-body {
  padding: 1.2rem;
}

.home-skeleton-line,
.home-skeleton-pill {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(8, 67, 36, 0.13);
}

.home-skeleton-line {
  height: 0.85rem;
  margin-bottom: 0.85rem;
}

.home-skeleton-line-short {
  width: 48%;
  height: 1rem;
}

.home-skeleton-line-mid {
  width: 72%;
}

.home-skeleton-pill {
  width: 42%;
  height: 2.1rem;
  margin-top: 1.1rem;
}

.home-skeleton-testimonial {
  min-height: 250px;
}

.home-skeleton-testimonial .home-skeleton-media {
  display: none;
}

.home-skeleton-testimonial .home-skeleton-body {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 1.45rem;
}

.home-skeleton-testimonial .home-skeleton-line-short {
  width: 34%;
  margin-bottom: 1.2rem;
}

.home-skeleton-testimonial .home-skeleton-line {
  width: 100%;
}

.home-skeleton-testimonial .home-skeleton-line-mid {
  width: 82%;
}

.home-skeleton-testimonial .home-skeleton-pill {
  width: 3rem;
  height: 3rem;
  margin-top: auto;
  border-radius: 999px;
}

.home-skeleton-testimonial .home-skeleton-body::before,
.home-skeleton-testimonial .home-skeleton-body::after {
  content: "";
  position: absolute;
  left: 5.25rem;
  border-radius: 999px;
  background: rgba(8, 67, 36, 0.13);
}

.home-skeleton-testimonial .home-skeleton-body::before {
  bottom: 2.65rem;
  width: 7.5rem;
  height: 0.85rem;
}

.home-skeleton-testimonial .home-skeleton-body::after {
  bottom: 1.35rem;
  width: 5.5rem;
  height: 0.7rem;
}

@keyframes tamarindSkeletonShimmer {
  100% {
    transform: translateX(100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-skeleton-card::after,
  .home-skeleton-line::after,
  .home-skeleton-pill::after,
  .home-skeleton-media::after {
    animation: none;
  }
}

.home-story-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.home-story-points span {
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
}

.event-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1040px;
  margin: 2.8rem auto 0;
}

.event-package-card {
  overflow: hidden;
  text-align: left;
  border-radius: 1.35rem;
  background: rgba(232, 247, 237, 0.78);
  border: 1px solid rgba(198, 231, 210, 0.58);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 42px rgba(8, 41, 22, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.event-package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(8, 41, 22, 0.22);
}

.event-package-image {
  position: relative;
  height: 170px;
  overflow: hidden;
}

.event-package-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.event-package-card:hover .event-package-image img {
  transform: scale(1.06);
}

.event-package-label {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--brand-700);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(8, 41, 22, 0.18);
}

.event-package-rating {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.45rem 0.65rem;
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-strong);
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(8, 41, 22, 0.12);
}

.event-package-rating i {
  color: var(--brand-600);
  font-size: 0.72rem;
}

.event-package-body {
  display: flex;
  flex-direction: column;
  min-height: 225px;
  padding: 1rem;
}

.event-package-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.65rem;
}

.event-package-card h3 {
  margin: 0;
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
}

.event-package-heading strong {
  color: var(--brand-700);
  font-size: 1.35rem;
  line-height: 0.95;
  text-align: right;
  white-space: nowrap;
}

.event-package-heading strong span {
  display: block;
  color: var(--text-soft);
  font-size: 0.68rem;
  font-weight: 600;
}

.event-package-card p {
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.55;
}

.event-package-addons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.9rem 0 1rem;
}

.event-package-addons span {
  padding: 0.35rem 0.55rem;
  border-radius: 0.35rem;
  background: rgba(31, 168, 95, 0.11);
  color: var(--text-body);
  font-size: 0.72rem;
  font-weight: 600;
}

.event-package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: auto;
}

.event-package-footer > span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-body);
  font-size: 0.78rem;
  font-weight: 600;
}

.event-package-footer i {
  color: var(--brand-700);
}

.event-package-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.6rem 0.9rem;
  border-radius: 0.45rem;
  background: var(--brand-600);
  color: white;
  font-weight: 800;
  font-size: 0.78rem;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(15, 90, 50, 0.24);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.event-package-link:hover,
.event-package-link:focus-visible {
  background: var(--brand-500);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(15, 90, 50, 0.3);
}

.home-contact-grid {
  display: grid;
  gap: 1rem;
  margin: 1rem 0;
}

.home-contact-grid strong {
  display: block;
  color: white;
  margin-bottom: 0.3rem;
}

.home-contact-grid a,
.home-inline-link,
.home-contact-band-info a {
  color: #c9f6d6;
  text-decoration: none;
}

.home-contact-grid a:hover,
.home-inline-link:hover,
.home-contact-band-info a:hover {
  color: white;
}

.home-room-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.95rem;
}

.home-room-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.58rem 0.95rem;
  border-radius: 0.45rem;
  background: #18a85f;
  color: white;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(19, 149, 84, 0.3);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.home-room-book-btn:hover,
.home-room-book-btn:focus-visible {
  background: #20bd70;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(19, 149, 84, 0.36);
}

.home-card-grid {
  display: grid;
  gap: 1.5rem;
}

.home-room-grid,
.home-offer-grid,
.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-slider-shell {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.testimonial-slider-controls {
  position: absolute;
  inset: 50% 0 auto 0;
  transform: translateY(-50%);
  pointer-events: none;
}

.testimonial-nav-btn {
  position: absolute;
  top: 50%;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: transform 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
  pointer-events: auto;
  transform: translateY(-50%);
}

#testimonialPrev {
  left: -1.35rem;
}

#testimonialNext {
  right: -1.35rem;
}

.testimonial-nav-btn:hover:not(:disabled) {
  transform: translateY(calc(-50% - 2px));
  background: rgba(31, 168, 95, 0.22);
}

.testimonial-nav-btn:disabled {
  opacity: 0.45;
  cursor: default;
}

.testimonial-viewport {
  overflow: hidden;
}

.home-showcase-card {
  overflow: hidden;
}

.home-showcase-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.home-showcase-content,
.conference-preview-card,
.testimonial-card {
  padding: 1.25rem;
}

.home-showcase-content h3,
.offer-card h3,
.conference-preview-card h3 {
  color: white;
  margin-bottom: 0.55rem;
}

.home-showcase-content p,
.offer-card p,
.conference-preview-card p,
.testimonial-card p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.home-room-slider-dots {
  display: none;
}

.home-mobile-slider-dots {
  display: none;
}

.offer-badge {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(31, 168, 95, 0.22);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
}

.offer-card {
  position: relative;
  overflow: hidden;
  min-height: 462px;
  padding: 0;
  border-radius: 1.35rem;
  background: rgba(3, 52, 44, 0.72);
  border: 1px solid rgba(198, 231, 210, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 22px 52px rgba(5, 37, 28, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 64px rgba(5, 37, 28, 0.34);
}

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

.offer-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(3, 52, 44, 0.88) 100%);
}

.offer-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.offer-card:hover .offer-image img {
  transform: scale(1.06);
}

.offer-ribbon {
  position: absolute;
  top: 0.9rem;
  left: -2.3rem;
  z-index: 2;
  width: 9.5rem;
  padding: 0.35rem 0;
  transform: rotate(-45deg);
  background: #ffd21f;
  color: #12301f;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.offer-content {
  display: flex;
  flex-direction: column;
  min-height: 242px;
  padding: 1.35rem;
}

.offer-content .offer-badge {
  width: fit-content;
  background: rgba(31, 168, 95, 0.28);
  border: 1px solid rgba(198, 231, 210, 0.2);
}

.offer-content h3 {
  color: white;
  margin-bottom: 0.8rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.08;
  text-transform: uppercase;
}

.offer-content p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.65;
}

.offer-view-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: auto;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(31, 168, 95, 0.28);
  border: 1px solid rgba(198, 231, 210, 0.24);
  color: white;
  font-weight: 800;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.offer-view-btn:hover,
.offer-view-btn:focus-visible {
  transform: translateY(-2px);
  background: var(--brand-600);
  border-color: rgba(255, 255, 255, 0.22);
}

.conference-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.conference-preview-card {
  text-align: center;
}

.conference-preview-card h3 {
  color: white;
  font-weight: 900;
  text-align: center;
}

.conference-preview-card p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.home-section-cta {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  padding: 0 2rem;
}

.home-review-cta {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.home-review-cta .btn {
  margin-bottom: 0.25rem;
}

.testimonial-card strong {
  display: block;
  margin-top: 1rem;
  color: white;
}

.testimonial-card span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
}

.testimonial-grid {
  display: flex;
  gap: 1.5rem;
  max-width: none;
  transform: translateX(0);
  transition: transform 0.45s ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 170px;
  padding: 1rem 4.8rem 0.95rem 1.15rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.1rem;
  box-shadow: 0 18px 42px rgba(8, 41, 22, 0.12);
  backdrop-filter: blur(18px);
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.55rem;
  order: 3;
}

.testimonial-score {
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
}

.testimonial-stars {
  color: #ffd766;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  line-height: 1;
}

.testimonial-card p {
  order: 1;
  margin-bottom: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  line-height: 1.55;
}

.testimonial-profile {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  margin-top: auto;
  order: 2;
}

.testimonial-avatar {
  position: absolute;
  right: 0.75rem;
  bottom: 0.95rem;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 20px rgba(7, 30, 18, 0.22);
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

.testimonial-meta strong {
  margin-top: 0;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.testimonial-meta span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.7rem;
}

.testimonial-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.testimonial-slider-dot {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.testimonial-slider-dot.active {
  background: var(--brand-500);
  transform: scale(1.15);
}

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.home-card-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 2150;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.home-card-detail-modal[hidden] {
  display: none;
}

.home-card-detail-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 11, 7, 0.78);
  backdrop-filter: blur(10px);
}

.home-card-detail-modal,
.conference-gallery-modal,
.gallery-modal {
  --universal-popup-width: min(1100px, calc(100vw - 3rem));
  --universal-popup-height: min(78vh, 600px);
  --universal-popup-radius: 2rem;
}

.home-card-detail-dialog {
  position: relative;
  z-index: 1;
  width: var(--universal-popup-width);
  min-height: var(--universal-popup-height);
  max-height: var(--universal-popup-height);
  overflow: hidden;
  border-radius: var(--universal-popup-radius);
  background: linear-gradient(180deg, rgba(252, 254, 252, 0.98), rgba(241, 248, 243, 0.98));
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.32);
}

.home-card-detail-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 2;
  width: 2.7rem;
  height: 2.7rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #163322;
  font-size: 1.6rem;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(17, 34, 24, 0.12);
  cursor: pointer;
}

.home-card-detail-layout {
  display: grid;
  grid-template-columns: minmax(340px, 1.2fr) minmax(320px, 1fr);
  min-height: min(43.4vh, 392px);
}

.home-card-detail-media {
  position: relative;
  background: linear-gradient(180deg, rgba(10, 46, 28, 0.5), rgba(4, 19, 12, 0.12));
}

.home-card-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-card-detail-image-strip {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 0.35rem;
}

.home-card-detail-thumb {
  flex: 0 0 74px;
  width: 74px;
  height: 74px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(7, 20, 13, 0.22);
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, opacity 0.22s ease;
}

.home-card-detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-card-detail-thumb.is-active {
  border-color: rgba(44, 188, 108, 0.9);
  transform: translateY(-2px);
}

.home-card-detail-copy {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
  padding: 2.35rem 2.2rem 1.65rem;
}

.home-card-detail-head {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.home-card-detail-kicker {
  align-self: flex-start;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(32, 166, 94, 0.12);
  color: var(--brand-700);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-card-detail-head h2 {
  color: var(--text-strong);
  font-size: clamp(2rem, 2vw, 2.45rem);
  line-height: 1.08;
  margin: 0;
}

.home-card-detail-price {
  color: #0f7d47;
  font-size: 1.08rem;
  font-weight: 800;
  margin: 0;
}

.home-card-detail-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.home-card-detail-section h3 {
  color: var(--text-strong);
  font-size: 1.05rem;
  margin: 0 0 0.8rem;
}

.home-card-detail-section p {
  color: var(--text-body);
  line-height: 1.65;
  margin: 0;
}

.home-card-detail-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.home-card-detail-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.52rem 0.78rem;
  border-radius: 999px;
  background: rgba(16, 111, 64, 0.08);
  color: #125834;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(31, 168, 95, 0.16);
}

.home-card-detail-footer {
  margin-top: 0.35rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(30, 64, 48, 0.12);
}

.home-card-detail-availability {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.home-card-detail-availability span {
  color: #74807a;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-card-detail-availability strong {
  color: var(--text-strong);
  font-size: 1.55rem;
  line-height: 1.1;
}

[data-home-popup] {
  cursor: pointer;
}

@media (max-width: 768px) {
  .home-card-detail-modal {
    padding: 0.8rem;
  }

  .home-card-detail-modal,
  .conference-gallery-modal,
  .gallery-modal {
    --universal-popup-width: min(calc(100vw - 1.6rem), 100%);
    --universal-popup-height: min(64vh, 560px);
    --universal-popup-radius: 1.4rem;
  }

  .home-card-detail-dialog {
    max-height: var(--universal-popup-height);
    overflow-y: auto;
  }

  .home-card-detail-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-card-detail-media {
    min-height: 196px;
  }

  .home-card-detail-image-strip {
    right: 0.65rem;
    bottom: 0.65rem;
    left: 0.65rem;
    gap: 0.45rem;
  }

  .home-card-detail-thumb {
    flex-basis: 56px;
    width: 56px;
    height: 56px;
    border-radius: 0.8rem;
  }

  .home-card-detail-copy {
    padding: 1.3rem 1.15rem 1.15rem;
  }

  .home-card-detail-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .home-card-detail-footer .btn {
    width: 100%;
  }
}

.review-modal[hidden] {
  display: none;
}

.review-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(98, 183, 129, 0.16), transparent 28%),
    rgba(5, 28, 17, 0.58);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
}

.review-modal-card {
  position: relative;
  width: min(640px, 100%);
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  padding: 1.8rem;
  border-radius: 1.9rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.22), rgba(227, 246, 233, 0.1));
  border: 1px solid rgba(233, 246, 238, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 28px 80px rgba(6, 34, 19, 0.32);
  backdrop-filter: blur(28px) saturate(135%);
  -webkit-backdrop-filter: blur(28px) saturate(135%);
}

.review-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #f5fff8;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.review-modal-close:hover,
.review-modal-close:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.24);
  transform: scale(1.04);
}

.review-modal-header {
  margin-bottom: 1.4rem;
}

.review-modal-header h2 {
  margin: 0.45rem 0 0.5rem;
  color: #f5fff8;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.65rem);
  line-height: 0.98;
}

.review-modal-header p {
  color: rgba(245, 255, 248, 0.78);
  max-width: 42ch;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.review-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.review-form .form-group label {
  color: rgba(245, 255, 248, 0.88);
}

.review-form .form-input,
.review-form .form-select,
.review-form .form-textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f5fff8;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.review-form .form-input::placeholder,
.review-form .form-textarea::placeholder {
  color: rgba(245, 255, 248, 0.45);
}

.review-form .form-input:focus,
.review-form .form-select:focus,
.review-form .form-textarea:focus {
  border-color: rgba(143, 208, 168, 0.6);
  box-shadow: 0 0 0 4px rgba(31, 168, 95, 0.12);
}

.review-form .form-select option {
  color: var(--text-strong);
}

.review-avatar-field {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.review-avatar-preview {
  width: 4.75rem;
  height: 4.75rem;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(31, 168, 95, 0.7), rgba(11, 66, 39, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.review-avatar-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-avatar-preview span {
  color: #f5fff8;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 1rem;
}

.review-avatar-copy {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.review-avatar-copy label {
  color: rgba(245, 255, 248, 0.88);
}

.review-avatar-copy p {
  margin: 0;
  color: rgba(245, 255, 248, 0.62);
  font-size: 0.9rem;
}

.review-avatar-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f5fff8;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.review-avatar-input::file-selector-button {
  margin-right: 0.85rem;
  padding: 0.6rem 0.9rem;
  border: none;
  border-radius: 999px;
  background: rgba(31, 168, 95, 0.95);
  color: #f5fff8;
  font-weight: 700;
  cursor: pointer;
}

.review-form-message {
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.review-form-message.is-error {
  background: rgba(190, 42, 42, 0.12);
  color: #8c1d1d;
  border: 1px solid rgba(190, 42, 42, 0.22);
}

.review-form-message.is-success {
  background: rgba(31, 168, 95, 0.12);
  color: var(--brand-900);
  border: 1px solid rgba(31, 168, 95, 0.24);
}

.review-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .review-modal {
    padding: 1rem;
  }

  .review-modal-card {
    padding: 1.2rem;
    border-radius: 1.35rem;
  }

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

  .review-avatar-field {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .review-avatar-copy {
    width: 100%;
  }

  .review-form-actions {
    justify-content: stretch;
  }

  .review-form-actions .btn {
    width: 100%;
  }
}

.home-connect-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.6rem 2rem;
}

.home-connect-copy h2,
.home-contact-band h2 {
  color: white;
  font-family: var(--font-display);
  margin-bottom: 0.6rem;
}

.home-connect-copy p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 42rem;
}

.home-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

.home-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.floating-social-rail {
  position: fixed;
  top: 50%;
  left: 4rem;
  transform: translateY(-50%);
  z-index: 950;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.floating-social-link {
  width: 2.9rem;
  height: 2.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.86);
  background: linear-gradient(180deg, rgba(31, 168, 95, 0.18), rgba(11, 63, 36, 0.14));
  border: 1px solid rgba(198, 231, 210, 0.16);
  backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 24px rgba(6, 18, 11, 0.22);
  transition: width 0.3s ease, transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.floating-social-link:hover,
.floating-social-link:focus-visible {
  width: 10.6rem;
  transform: translateX(3px);
  color: white;
  background: linear-gradient(180deg, rgba(31, 168, 95, 0.28), rgba(15, 90, 50, 0.22));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 14px 28px rgba(6, 18, 11, 0.26);
}

.floating-social-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.28);
  outline-offset: 3px;
}

.floating-social-link i {
  font-size: 1.3rem;
  flex: 0 0 2.9rem;
  text-align: center;
}

.floating-social-link svg {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 2.9rem;
}

.floating-social-name {
  max-width: 0;
  opacity: 0;
  transform: translateX(-0.45rem);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: max-width 0.3s ease, opacity 0.2s ease, transform 0.25s ease;
}

.floating-social-link:hover .floating-social-name,
.floating-social-link:focus-visible .floating-social-name {
  max-width: 6rem;
  opacity: 1;
  transform: translateX(0);
}

.home-social-link svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.social-link svg {
  width: 1.05rem;
  height: 1.05rem;
}

.home-contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.6rem 2rem;
}

.home-contact-band-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-header h2 {
  font-size: 3rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1rem;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}

.about-header p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.about-cards-container {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.about-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.3s ease;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  box-shadow: 0 22px 50px rgba(8, 41, 22, 0.14);
}

.about-image {
  position: relative;
  height: 225px;
  overflow: hidden;
}

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

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

.destination-card {
  position: relative;
}

.destination-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 18, 14, 0.18) 100%);
}

.about-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-icon {
  font-size: 1.5rem;
}

.about-content {
  position: relative;
  z-index: 1;
  padding: 1.2rem 1.2rem 1.15rem;
  margin-top: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.12));
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.about-content h3 {
  font-size: 1.7rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0.32rem;
  font-family: var(--font-display);
}

.about-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: 0.85rem;
  font-size: 0.84rem;
  max-width: none;
}

.destination-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}

.destination-meta span {
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 700;
}

.destination-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem 0.55rem;
  margin: 0 0 0.65rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  line-height: 1.35;
}

.destination-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0;
  background: transparent;
  border: 0;
}

.destination-stat + .destination-stat::before {
  content: "•";
  margin-right: 0.22rem;
  color: rgba(255, 255, 255, 0.58);
}

.destination-stat i {
  color: #17a35d;
  font-size: 0.76rem;
}

.destination-stat strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 800;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.feature-tag {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  padding: 0.22rem 0.62rem;
  border-radius: 1rem;
  font-size: 0.68rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.destination-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.destination-link-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.destination-link-text:hover {
  color: white;
}

.destination-book-btn {
  padding: 0.58rem 1rem;
  font-size: 0.74rem;
  white-space: nowrap;
}

.about-link {
  color: #b4f0c5;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.about-link:hover {
  color: #d4f4de;
}

.about-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background: var(--brand-500);
  transform: scale(1.2);
}

/* Mobile Responsiveness for About Section */
@media (max-width: 768px) {
  .testimonial-card {
    flex-basis: 100%;
    min-height: 0;
    padding: 1.15rem 4.8rem 1.1rem 1.15rem;
  }

  .offer-card {
    min-height: auto;
  }

  .offer-image {
    height: 190px;
  }

  .offer-content {
    min-height: auto;
  }

  .event-package-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-top: 2rem;
  }

  .event-package-card {
    min-height: auto;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .about-header h2 {
    font-size: 2.5rem;
  }

  .about-header p {
    font-size: 1rem;
  }

  .about-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-card {
    width: 80%;
    max-width: 80%;
    min-height: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .about-content {
    padding: 1.5rem;
  }

  .about-image {
    height: 260px;
  }

  .destination-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-offer-slider,
  .conference-preview-slider {
    display: flex;
    grid-template-columns: none;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin: 0 -0.15rem;
    padding: 0 0.15rem;
  }

  .home-offer-slider::-webkit-scrollbar,
  .conference-preview-slider::-webkit-scrollbar {
    display: none;
  }

  .home-offer-slider .offer-card,
  .conference-preview-slider .conference-preview-card {
    flex: 0 0 67.2%;
    min-width: 67.2%;
    scroll-snap-align: center;
    margin-right: 0.95rem;
  }

  .home-offer-slider .offer-card:last-child,
  .conference-preview-slider .conference-preview-card:last-child {
    margin-right: 0;
  }

  .home-mobile-slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 1rem;
  }

  .home-mobile-slider-dot {
    width: 0.72rem;
    height: 0.72rem;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.26);
    box-shadow: inset 0 0 0 1px rgba(198, 231, 210, 0.3);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, width 0.2s ease;
  }

  .home-mobile-slider-dot.active {
    width: 1.9rem;
    background: var(--brand-500);
  }

  .testimonial-slider-shell {
    padding: 0 0.65rem;
  }

  .home-review-cta {
    margin-bottom: 1.1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .testimonial-slider-controls {
    display: none;
  }

  .testimonial-card p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .testimonial-avatar {
    width: 4rem;
    height: 4rem;
  }

  .testimonial-meta strong {
    font-size: 0.92rem;
  }

  .testimonial-meta span {
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    padding: 1rem 4.25rem 1rem 1rem;
  }

  .about-us-section {
    padding: 4rem 0;
  }

  .about-header h2 {
    font-size: 2rem;
  }

  .about-card {
    min-height: 0;
  }

  .about-cards {
    gap: 1rem;
  }

  .about-image {
    height: 230px;
  }

  .about-content h3 {
    font-size: 1.65rem;
  }

  .about-content p {
    font-size: 0.84rem;
  }
}

@media (max-width: 768px) {
  .home-card-grid.home-room-slider {
    display: flex;
    grid-template-columns: none;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin: 0;
    padding: 0 0.75rem 0 3.45rem;
  }

  .home-card-grid.home-room-slider::-webkit-scrollbar {
    display: none;
  }

  .home-card-grid.home-room-slider .home-showcase-card {
    flex: 0 0 calc((100vw - 4.9rem) * 0.8);
    min-width: calc((100vw - 4.9rem) * 0.8);
    max-width: none;
    scroll-snap-align: start;
    margin-right: 0.8rem;
  }

  .home-card-grid.home-room-slider .home-showcase-card:last-child {
    margin-right: 0;
  }
}

/* Lodge Selection Styles */
.selected-lodge-info {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.lodge-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
}

.lodge-icon {
  font-size: 1.25rem;
}

.lodge-location {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-left: auto;
}

.lodge-selection-info {
  background: #edf9f0;
  border: 1px solid #c8e9d2;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-top: 1rem;
}

.lodge-selection-info p {
  margin: 0;
  color: var(--brand-800);
  font-size: 0.875rem;
}

.lodge-selection-info p:first-child {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.lodge-note {
  font-style: italic;
  color: var(--brand-600) !important;
  font-size: 0.75rem !important;
}

.room-type-note {
  margin-top: 0.5rem;
  padding: 0.5rem;
  background: #edf9f0;
  border: 1px solid #c8e9d2;
  border-radius: 0.25rem;
}

.room-type-note p {
  margin: 0;
  color: var(--brand-800);
  font-size: 0.75rem;
  font-weight: 500;
}

/* Pricing highlight for selected lodge */
.lodge-specific-pricing {
  background: linear-gradient(135deg, #edf9f0, #d9efdf);
  border: 1px solid rgba(31, 168, 95, 0.35);
}

.lodge-specific-pricing .price-amount {
  color: var(--brand-700);
  font-weight: bold;
}

/* Mobile responsiveness for lodge selection */
@media (max-width: 768px) {
  .lodge-badge {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .lodge-location {
    margin-left: 0;
  }

  .selected-lodge-info {
    padding: 0.75rem;
  }
}

/* Gallery Indicator and Modal Styles */
.gallery-indicator {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.gallery-icon {
  width: 0.9rem;
  height: 0.9rem;
}

.whatsapp-widget {
  position: fixed;
  right: 1.35rem;
  bottom: 1.35rem;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.85rem;
}

.support-chat-prompt {
  max-width: 132px;
  border: 1px solid rgba(175, 239, 199, 0.22);
  border-radius: 1rem 1rem 0.35rem 1rem;
  background: linear-gradient(135deg, rgba(250, 255, 252, 0.96), rgba(224, 248, 233, 0.92));
  color: #0a4727;
  padding: 0.5rem 0.62rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-align: left;
  box-shadow: 0 16px 34px rgba(4, 28, 15, 0.18);
  cursor: pointer;
  position: relative;
  animation: supportPromptFloat 2.8s ease-in-out infinite;
}

.support-chat-prompt-text {
  display: inline-block;
  min-width: 9ch;
}

.support-chat-prompt-text::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.92em;
  margin-left: 0.12em;
  vertical-align: -0.08em;
  background: rgba(10, 71, 39, 0.8);
  animation: supportPromptCaret 0.9s steps(1) infinite;
}

.support-chat-prompt::after {
  content: "";
  position: absolute;
  right: 0.85rem;
  bottom: -0.28rem;
  width: 0.58rem;
  height: 0.58rem;
  background: inherit;
  border-right: 1px solid rgba(175, 239, 199, 0.22);
  border-bottom: 1px solid rgba(175, 239, 199, 0.22);
  transform: rotate(45deg);
}

.support-chat-prompt:hover,
.support-chat-prompt:focus-visible {
  animation-play-state: paused;
  transform: translateY(-2px);
}

.support-chat-prompt[hidden] {
  display: none;
}

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

@keyframes supportPromptCaret {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}

.whatsapp-panel {
  width: min(380px, calc(100vw - 1.5rem));
  padding: 1rem;
  border-radius: 1.4rem;
  background:
    linear-gradient(180deg, rgba(8, 66, 37, 0.95), rgba(7, 42, 24, 0.94)),
    rgba(236, 248, 240, 0.12);
  border: 1px solid rgba(146, 230, 177, 0.24);
  backdrop-filter: blur(18px);
  box-shadow: 0 26px 54px rgba(2, 24, 12, 0.36);
}

.whatsapp-panel-title {
  color: white;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.whatsapp-panel-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  margin-bottom: 0.8rem;
}

.whatsapp-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.whatsapp-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(31, 168, 95, 0.94), rgba(16, 123, 68, 0.94));
  border: 1px solid rgba(175, 239, 199, 0.22);
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 24px rgba(5, 35, 19, 0.24);
}

.whatsapp-option:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, rgba(42, 188, 110, 0.98), rgba(18, 138, 77, 0.96));
  border-color: rgba(197, 244, 214, 0.3);
}

.whatsapp-fab {
  min-width: 148px;
  height: 60px;
  padding: 0 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 36%),
    linear-gradient(135deg, #2fd56d, #159a4a);
  color: white;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 16px 34px rgba(19, 117, 66, 0.28),
    0 0 0 10px rgba(37, 211, 102, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 22px 42px rgba(19, 117, 66, 0.34),
    0 0 0 12px rgba(37, 211, 102, 0.1);
  filter: saturate(1.05);
}

.whatsapp-fab:active {
  transform: translateY(-1px) scale(0.98);
}

.whatsapp-fab span {
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.support-chat-fab-icons {
  position: relative;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.support-chat-fab-icon {
  position: absolute;
  inset: 0;
  width: 28px;
  height: 28px;
  animation-duration: 4.4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.support-chat-fab-icon.is-support {
  animation-name: supportFabSupportSwap;
}

.support-chat-fab-icon.is-whatsapp {
  animation-name: supportFabWhatsappSwap;
}

.support-chat-fab:hover .support-chat-fab-icon,
.support-chat-fab:focus-visible .support-chat-fab-icon {
  animation-play-state: paused;
}

@keyframes supportFabSupportSwap {
  0%, 42% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  50%, 92% {
    opacity: 0;
    transform: scale(0.72) rotate(-10deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes supportFabWhatsappSwap {
  0%, 42% {
    opacity: 0;
    transform: scale(0.72) rotate(10deg);
  }
  50%, 92% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: scale(0.72) rotate(10deg);
  }
}

.support-chat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.95rem;
}

.support-chat-close {
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.support-chat-close:hover,
.support-chat-close:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: white;
}

.support-context-switcher {
  margin-bottom: 0.95rem;
}

.support-context-btn {
  flex: 1 1 calc(33.333% - 0.45rem);
}

.support-context-btn.is-active {
  background: linear-gradient(135deg, rgba(69, 219, 129, 0.98), rgba(25, 159, 86, 0.98));
  box-shadow: 0 14px 28px rgba(6, 41, 22, 0.32);
}

.support-context-spacer {
  display: none;
}

.support-chat-thread {
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  min-height: 260px;
  max-height: 320px;
  overflow-y: auto;
  padding: 0.3rem 0.7rem 0.2rem 0.2rem;
  margin-right: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(46, 190, 108, 0.95) rgba(255, 255, 255, 0.08);
}

.support-chat-thread::-webkit-scrollbar {
  width: 10px;
}

.support-chat-thread::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.support-chat-thread::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(54, 214, 123, 0.96), rgba(16, 137, 74, 0.96));
  border-radius: 999px;
  border: 2px solid rgba(8, 66, 37, 0.9);
}

.support-chat-thread::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(73, 228, 138, 0.98), rgba(20, 154, 86, 0.98));
}

.support-chat-message {
  max-width: calc(100% - 0.4rem);
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
}

.support-chat-message.is-assistant {
  align-self: flex-start;
}

.support-chat-message.is-user {
  align-self: flex-end;
}

.support-chat-author {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(194, 243, 212, 0.7);
}

.support-chat-message p {
  margin: 0;
  padding: 0.82rem 0.95rem;
  border-radius: 1rem;
  font-size: 0.86rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.support-chat-message.is-assistant p {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(244, 255, 248, 0.96);
  border: 1px solid rgba(198, 243, 213, 0.12);
}

.support-chat-message.is-user p {
  background: linear-gradient(135deg, rgba(31, 168, 95, 0.96), rgba(15, 122, 67, 0.94));
  color: white;
  border: 1px solid rgba(198, 243, 213, 0.16);
}

.support-chat-composer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
  margin-top: 1rem;
  padding-top: 0.2rem;
}

.support-chat-input {
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(176, 240, 200, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0 1.15rem;
  font-size: 0.84rem;
}

.support-chat-input::placeholder {
  color: rgba(233, 248, 238, 0.64);
}

.support-chat-input:focus {
  outline: none;
  border-color: rgba(108, 223, 153, 0.42);
  box-shadow: 0 0 0 3px rgba(94, 208, 137, 0.16);
}

.support-chat-send {
  min-width: 96px;
  min-height: 48px;
  padding: 0 1.2rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(31, 168, 95, 0.96), rgba(15, 122, 67, 0.94));
  color: white;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(5, 35, 19, 0.24);
}

@media (max-width: 640px) {
  .floating-social-rail {
    left: 0.6rem;
    gap: 0.6rem;
  }

  .floating-social-link {
    width: 2.45rem;
    height: 2.45rem;
  }

  .floating-social-link:hover,
  .floating-social-link:focus-visible {
    width: 8.75rem;
  }

  .floating-social-link i {
    font-size: 1.02rem;
    flex-basis: 2.45rem;
  }

  .floating-social-link svg {
    flex-basis: 2.45rem;
  }

  .floating-social-name {
    font-size: 0.88rem;
  }

  .whatsapp-widget {
    right: 1rem;
    bottom: 1rem;
  }

  .support-chat-prompt {
    max-width: min(77px, calc(100vw - 4rem));
    padding: 0.34rem 0.44rem;
    font-size: 0.52rem;
    line-height: 1.2;
  }

  .support-chat-prompt-text {
    min-width: 6.4ch;
  }

  .support-chat-prompt::after {
    right: 0.62rem;
    bottom: -0.2rem;
    width: 0.4rem;
    height: 0.4rem;
  }

  .whatsapp-fab {
    min-width: 56px;
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
  }

  .support-chat-fab > span:last-child {
    display: none;
  }

  .whatsapp-panel {
    width: min(100vw - 1rem, 100%);
    max-height: calc(100vh - 6rem);
  }

  .support-chat-thread {
    min-height: 220px;
    max-height: 280px;
  }

  .support-chat-composer {
    grid-template-columns: 1fr;
  }

  .support-chat-send {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .support-chat-prompt {
    animation: none;
  }

  .support-chat-prompt-text::after {
    animation: none;
  }

  .support-chat-fab-icon {
    animation: none;
  }

  .support-chat-fab-icon.is-whatsapp {
    opacity: 0;
  }
}

.destination-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.9fr);
  gap: 2rem;
  align-items: start;
}

.kariba-page-layout {
  grid-template-columns: minmax(0, 1.35fr) minmax(560px, 0.9fr);
  gap: 2.5rem;
}

.destination-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.destination-intro-panel,
.destination-gallery-showcase {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(236, 248, 240, 0.5));
  border: 1px solid var(--surface-border);
  border-radius: 1.5rem;
  padding: 2.4rem;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 42px rgba(8, 41, 22, 0.1);
}

.destination-intro-panel h2,
.destination-gallery-heading h2 {
  color: var(--text-strong);
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  line-height: 1.05;
  margin: 0.45rem 0 0.8rem;
}

.destination-copy {
  color: var(--text-body);
  line-height: 1.75;
}

.destination-highlight-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.destination-highlight-list.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.4rem;
}

.destination-highlight-item {
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(148, 197, 166, 0.2);
  border-radius: 1rem;
  padding: 1rem;
  backdrop-filter: blur(10px);
}

.destination-highlight-item h4 {
  color: var(--text-strong);
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.destination-highlight-item p {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

.destination-gallery-heading {
  margin-bottom: 1.25rem;
}

.destination-gallery-heading p {
  color: var(--text-body);
  line-height: 1.7;
}

.destination-gallery-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.8fr);
  gap: 1rem;
  min-height: 500px;
}

.destination-gallery-main,
.destination-gallery-thumb {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 1.15rem;
  cursor: pointer;
  background: rgba(8, 41, 22, 0.1);
}

.destination-gallery-main {
  min-height: 500px;
}

.destination-gallery-side {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.destination-gallery-thumb {
  min-height: 150px;
}

.destination-gallery-main img,
.destination-gallery-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.destination-gallery-main::after,
.destination-gallery-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6, 24, 14, 0.62));
}

.destination-gallery-main span,
.destination-gallery-thumb span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: white;
  font-weight: 800;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.destination-gallery-main:hover img,
.destination-gallery-thumb:hover img {
  transform: scale(1.04);
}

.destination-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.destination-gallery-item {
  overflow: hidden;
  border-radius: 1.2rem;
  border: 1px solid rgba(148, 197, 166, 0.22);
  min-height: 220px;
  background: rgba(255, 255, 255, 0.24);
}

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

.destination-booking-card {
  position: sticky;
  top: 6rem;
}

.destination-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  color: var(--text-body);
}

.destination-contact-row {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(148, 197, 166, 0.18);
}

.destination-contact-icon {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(31, 168, 95, 0.14);
  color: var(--brand-700);
}

.destination-contact-row strong {
  display: block;
  color: var(--text-strong);
  margin-bottom: 0.25rem;
}

.destination-contact-row p {
  margin: 0.15rem 0;
  line-height: 1.45;
}

.destination-contact-list a {
  color: var(--brand-700);
  text-decoration: none;
}

.destination-contact-list a:hover {
  color: var(--brand-800);
}

.destination-sidebar-map {
  overflow: hidden;
  border: 1px solid rgba(148, 197, 166, 0.22);
  border-radius: 1rem;
  min-height: 260px;
  background: rgba(255, 255, 255, 0.3);
}

.destination-sidebar-map iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  border: 0;
}

.destination-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.destination-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(7, 30, 18, 0.72);
  backdrop-filter: blur(10px);
}

.destination-lightbox[hidden] {
  display: none;
}

.destination-lightbox figure {
  width: min(1100px, 100%);
  margin: 0;
  background: rgba(236, 248, 240, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.destination-lightbox img {
  width: 100%;
  max-height: 78vh;
  display: block;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.24);
}

.destination-lightbox figcaption {
  padding: 1rem 1.2rem;
  color: white;
  font-weight: 700;
}

.destination-lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.kariba-page .main-content,
.nyanga-page .main-content {
  max-width: min(1720px, calc(100vw - 2rem));
  padding: 2.5rem 1rem 3rem;
}

.kariba-page .destination-intro-panel,
.kariba-page .destination-gallery-showcase,
.kariba-page .summary-card,
.nyanga-page .destination-intro-panel,
.nyanga-page .destination-gallery-showcase,
.nyanga-page .summary-card {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.08)),
    linear-gradient(180deg, rgba(12, 74, 44, 0.94), rgba(31, 136, 84, 0.9));
  border: 1px solid rgba(226, 245, 233, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 22px 46px rgba(8, 41, 22, 0.26);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}

.kariba-page .destination-intro-panel h2,
.kariba-page .destination-gallery-heading h2,
.kariba-page .summary-header h2,
.kariba-page .destination-highlight-item h4,
.kariba-page .destination-contact-row strong,
.nyanga-page .destination-intro-panel h2,
.nyanga-page .destination-gallery-heading h2,
.nyanga-page .summary-header h2,
.nyanga-page .destination-highlight-item h4,
.nyanga-page .destination-contact-row strong {
  color: #fff;
}

.kariba-page .destination-copy,
.kariba-page .destination-gallery-heading p,
.kariba-page .destination-highlight-item p,
.kariba-page .destination-contact-list,
.kariba-page .destination-contact-row p,
.kariba-page .summary-content,
.nyanga-page .destination-copy,
.nyanga-page .destination-gallery-heading p,
.nyanga-page .destination-highlight-item p,
.nyanga-page .destination-contact-list,
.nyanga-page .destination-contact-row p,
.nyanga-page .summary-content {
  color: rgba(239, 249, 243, 0.9);
}

.kariba-page .destination-highlight-item,
.kariba-page .destination-contact-row,
.kariba-page .destination-sidebar-map,
.nyanga-page .destination-highlight-item,
.nyanga-page .destination-contact-row,
.nyanga-page .destination-sidebar-map {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(226, 245, 233, 0.18);
}

.kariba-page .destination-contact-icon,
.nyanga-page .destination-contact-icon {
  background: rgba(172, 234, 193, 0.16);
  color: rgba(239, 249, 243, 0.96);
}

.kariba-page .destination-contact-list a,
.nyanga-page .destination-contact-list a {
  color: #fff;
}

.kariba-page .destination-contact-list a:hover,
.nyanga-page .destination-contact-list a:hover {
  color: rgba(172, 234, 193, 0.96);
}

@media (max-width: 1024px) {
  .destination-page-grid,
  .kariba-page-layout {
    grid-template-columns: 1fr;
  }

  .destination-booking-card {
    position: static;
  }
}

@media (min-width: 1025px) and (max-width: 1320px) {
  .kariba-page-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(460px, 0.85fr);
    gap: 1.5rem;
  }

  .destination-intro-panel,
  .destination-gallery-showcase {
    padding: 2rem;
  }
}

@media (max-width: 640px) {
  .destination-highlight-list,
  .destination-gallery-grid {
    grid-template-columns: 1fr;
  }

  .destination-highlight-list.compact {
    grid-template-columns: 1fr;
  }

  .destination-gallery-feature {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .destination-gallery-main {
    min-height: 340px;
  }

  .destination-gallery-side {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .destination-gallery-thumb {
    min-height: 120px;
  }
}

/* Gallery Modal Styles */
.gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.gallery-content {
  width: var(--universal-popup-width);
  min-height: var(--universal-popup-height);
  max-height: var(--universal-popup-height);
  background: white;
  border-radius: var(--universal-popup-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.gallery-header h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #1f2937;
}

.gallery-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #6b7280;
  cursor: pointer;
  padding: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  transition: all 0.2s ease;
}

.gallery-close:hover {
  background: #f3f4f6;
  color: #1f2937;
}

.gallery-image-container {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.gallery-image-container img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.gallery-nav:hover {
  background: rgba(0, 0, 0, 0.7);
}

.gallery-prev {
  left: 1rem;
}

.gallery-next {
  right: 1rem;
}

.gallery-footer {
  padding: 1rem;
  text-align: center;
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
}

.gallery-footer span {
  color: #6b7280;
  font-size: 0.875rem;
}

/* Scroll reveal animations */
.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.scroll-reveal[data-reveal="left"] {
  transform: translate3d(-38px, 0, 0);
}

.scroll-reveal[data-reveal="right"] {
  transform: translate3d(38px, 0, 0);
}

.scroll-reveal[data-reveal="scale"] {
  transform: translate3d(0, 26px, 0) scale(0.94);
}

.scroll-reveal.is-visible[data-reveal] {
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none !important;
    transition: none;
  }
}

/* Mobile Gallery Styles */
@media (max-width: 768px) {
  .gallery-content {
    max-width: 95vw;
    max-height: 95vh;
  }

  .gallery-image-container {
    min-height: 300px;
  }

  .gallery-nav {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
  }

  .gallery-prev {
    left: 0.5rem;
  }

  .gallery-next {
    right: 0.5rem;
  }
}

@media (max-width: 768px) {
  body:not(.lodges-page):not(.booking-page):not(.kariba-page):not(.nyanga-page) .destination-actions {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  body:not(.lodges-page):not(.booking-page):not(.kariba-page):not(.nyanga-page) .destination-book-btn {
    margin-left: auto;
  }

  body:not(.lodges-page):not(.booking-page):not(.kariba-page):not(.nyanga-page) .destination-card {
    width: calc(100vw - 4.9rem);
    max-width: calc(100vw - 4.9rem);
  }

  body:not(.lodges-page):not(.booking-page):not(.kariba-page):not(.nyanga-page) .destination-card::after {
    height: 0;
    display: none;
  }

  body:not(.lodges-page):not(.booking-page):not(.kariba-page):not(.nyanga-page) .destination-card .about-image {
    height: 170px;
  }

  body:not(.lodges-page):not(.booking-page):not(.kariba-page):not(.nyanga-page) .home-card-grid.home-room-slider .home-showcase-card {
    flex: 0 0 calc(100vw - 4.9rem);
    min-width: calc(100vw - 4.9rem);
    max-width: none;
    margin-right: 0.8rem;
  }

  body:not(.lodges-page):not(.booking-page):not(.kariba-page):not(.nyanga-page) .home-offer-slider .offer-card,
  body:not(.lodges-page):not(.booking-page):not(.kariba-page):not(.nyanga-page) .conference-preview-slider .conference-preview-card {
    flex: 0 0 84%;
    min-width: 84%;
    max-width: none;
    margin-right: 0.95rem;
  }

  body:not(.lodges-page):not(.booking-page):not(.kariba-page):not(.nyanga-page) .event-package-card {
    width: 100%;
    max-width: none;
  }

  body:not(.lodges-page):not(.booking-page):not(.kariba-page):not(.nyanga-page) .destination-card img,
  body:not(.lodges-page):not(.booking-page):not(.kariba-page):not(.nyanga-page) .home-showcase-card img,
  body:not(.lodges-page):not(.booking-page):not(.kariba-page):not(.nyanga-page) .offer-image,
  body:not(.lodges-page):not(.booking-page):not(.kariba-page):not(.nyanga-page) .event-package-image {
    height: 165px;
  }

  body:not(.lodges-page):not(.booking-page):not(.kariba-page):not(.nyanga-page) .destination-card img {
    height: 170px;
    object-position: center;
  }

  body:not(.lodges-page):not(.booking-page):not(.kariba-page):not(.nyanga-page) .home-showcase-content,
  body:not(.lodges-page):not(.booking-page):not(.kariba-page):not(.nyanga-page) .offer-content,
  body:not(.lodges-page):not(.booking-page):not(.kariba-page):not(.nyanga-page) .event-package-body,
  body:not(.lodges-page):not(.booking-page):not(.kariba-page):not(.nyanga-page) .conference-preview-card {
    padding: 0.95rem;
  }

  body:not(.lodges-page):not(.booking-page):not(.kariba-page):not(.nyanga-page) .destination-card .home-showcase-content {
    min-height: 0;
    padding-top: 1rem;
    transform: translateY(0);
  }

  body:not(.lodges-page):not(.booking-page):not(.kariba-page):not(.nyanga-page) .destination-card .about-content {
    min-height: 0;
    padding: 1rem;
  }

  body:not(.lodges-page):not(.booking-page):not(.kariba-page):not(.nyanga-page) .destination-stats {
    gap: 0.45rem;
    margin-bottom: 0.65rem;
  }

  body:not(.lodges-page):not(.booking-page):not(.kariba-page):not(.nyanga-page) .destination-stat {
    padding: 0.25rem 0.48rem;
  }

  body:not(.lodges-page):not(.booking-page):not(.kariba-page):not(.nyanga-page) .destination-card h3,
  body:not(.lodges-page):not(.booking-page):not(.kariba-page):not(.nyanga-page) .home-showcase-card h3,
  body:not(.lodges-page):not(.booking-page):not(.kariba-page):not(.nyanga-page) .offer-card h3 {
    font-size: 1.35rem;
  }

  body:not(.lodges-page):not(.booking-page):not(.kariba-page):not(.nyanga-page) .destination-card p,
  body:not(.lodges-page):not(.booking-page):not(.kariba-page):not(.nyanga-page) .home-showcase-card p,
  body:not(.lodges-page):not(.booking-page):not(.kariba-page):not(.nyanga-page) .offer-card p {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .footer {
    padding: 2rem 0 2.4rem;
  }

  .footer-content {
    gap: 1.65rem;
    padding: 0 2rem;
    text-align: center;
    justify-items: center;
  }

  .footer-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    margin-bottom: 0.85rem;
    justify-content: center;
  }

  .footer-section p {
    max-width: 31ch;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-admin-login {
    margin-top: 1rem;
  }

  .footer-section:nth-child(2) {
    padding-top: 0.3rem;
  }

  .contact-list {
    gap: 1rem;
    justify-items: center;
    text-align: center;
  }

  .contact-location {
    align-items: center;
  }

  .contact-location + .contact-location {
    padding-top: 1rem;
    border-top: 0;
  }

  .footer-section:nth-child(3) {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    align-items: center;
    justify-self: center;
    text-align: center;
  }

  .footer-developer-credit {
    gap: 0.5rem;
    align-items: center;
    text-align: center;
  }

  .developer-contact-block {
    margin-top: 0.7rem;
    gap: 0.35rem;
    justify-items: center;
    text-align: center;
  }

  .mobile-menu {
    align-items: center;
    text-align: center;
    max-width: 300px;
    margin-left: auto;
    margin-right: 1rem;
  }

  .mobile-nav-link {
    width: min(100%, 230px);
    text-align: center;
  }

  .mobile-book-btn {
    min-height: 38px;
    padding: 0.65rem 1rem;
    font-size: 0.78rem;
  }

  .mobile-book-btn {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .floating-social-rail {
    left: 0.55rem;
    transform: translateY(-50%) scale(0.82);
    transform-origin: left center;
    gap: 0.45rem;
    opacity: 0.9;
  }

  .floating-social-link:hover,
  .floating-social-link:focus-visible {
    width: 2.45rem;
    transform: none;
  }

  .floating-social-link:hover .floating-social-name,
  .floating-social-link:focus-visible .floating-social-name {
    max-width: 0;
    opacity: 0;
  }
}
