@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;800&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Outfit", sans-serif;
  color: #1e293b;
  line-height: 1.5;
  background: url('Images/background.png') no-repeat center center fixed;
  background-size: cover;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  background: linear-gradient(135deg, rgba(10, 74, 126, 0.2) 0%, rgba(0, 0, 0, 0.35) 100%);
  z-index: -1;
}

:root {
  --blue: #0a4a7e;
  --orange: #e67e22;
  --orange-glow: #f39c12;
  --shadow-hover: 0 30px 45px -15px rgba(230, 126, 34, 0.2);
  --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- NAVBAR (island transformation) ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 74, 126, 0.25);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 1000;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, width, top, padding, background-color, backdrop-filter;
}

/* Island state — centered floating pill */
body.scrolled .navbar {
  width: auto;
  max-width: 95%;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
  border-radius: 60px;
  padding: 8px 28px;
  background: rgba(10, 74, 126, 0.35);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(230, 126, 34, 0.2) inset;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  justify-content: center;
  gap: 20px;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  text-shadow: 0 4px 12px rgba(0,0,0,0.2);
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  will-change: font-size, gap;
}
.logo-text {
  display: inline-flex;
  gap: inherit;
  align-items: center;
  transition: opacity 0.4s ease, max-width 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s;
  max-width: 400px;
  overflow: hidden;
  white-space: nowrap;
  will-change: opacity, max-width, transform;
}

.logo-text span {
  color: var(--orange);
  font-weight: 300;
}

body.scrolled .logo {
  font-size: 0;
  gap: 0;
}

body.scrolled .logo-text {
  opacity: 0;
  max-width: 0;
  transform: translateX(-10px);
}

.nav-menu {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: nowrap;
}

.nav-menu a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.15);
  white-space: nowrap;
}

.nav-menu a:not(.nav-cta) {
  padding: 8px 18px;
  border-radius: 30px;
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-menu a:not(.nav-cta):hover,
.nav-menu a.active:not(.nav-cta) {
  color: white;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-cta {
  background: var(--orange);
  color: white !important;
  padding: 10px 26px !important;
  border-radius: 40px;
  font-weight: 700;
  box-shadow: 0 8px 18px -6px rgba(230, 126, 34, 0.5);
  border: 1px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}

.nav-cta:hover {
  background: #d35400;
  transform: translateY(-3px);
  box-shadow: 0 16px 25px -10px rgba(230, 126, 34, 0.6);
}

.nav-cta::after {
  display: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Adjust island spacing for medium screens */
@media (max-width: 1100px) {
  .nav-menu {
    gap: 18px;
  }
  body.scrolled .navbar {
    padding: 8px 22px;
    gap: 12px;
  }
}

@media (max-width: 950px) {
  .navbar {
    padding: 14px 24px;
  }
  .nav-menu {
    gap: 14px;
  }
  .nav-menu a {
    font-size: 0.9rem;
  }
  .logo {
    font-size: 1.6rem;
  }
  body.scrolled .logo {
    font-size: 1.4rem;
  }
  .nav-cta {
    padding: 8px 20px !important;
  }
}

/* Mobile: use hamburger, island remains centered but menu toggles */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 12px 20px;
  }
  body.scrolled .navbar {
    width: 90%;
    padding: 12px 24px;
    justify-content: space-between;
  }
  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0 10px;
    gap: 15px;
  }
  .nav-menu.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .nav-menu a {
    white-space: normal;
  }
  body.scrolled .nav-menu {
    width: 100%;
    text-align: left;
  }
}

/* ---------- HERO (centered) ---------- */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 80px 0;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-text h1 {
  font-size: clamp(3.2rem, 10vw, 5.8rem);
  font-weight: 800;
  color: white;
  text-shadow: 0 8px 30px rgba(0,0,0,0.5);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-text p {
  font-size: 1.35rem;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 4px 15px rgba(0,0,0,0.4);
  margin-bottom: 36px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 15px 38px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 12px 22px -8px rgba(230,126,34,0.5);
}
.btn-primary:hover {
  background: #d35400;
  transform: translateY(-5px);
}

.btn-outline-light {
  border: 2px solid white;
  color: white;
  background: transparent;
  backdrop-filter: blur(8px);
}
.btn-outline-light:hover {
  background: white;
  color: var(--blue);
  transform: translateY(-5px);
}

/* ---------- MINOR HERO (other pages) ---------- */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  color: white;
  text-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

/* ---------- SERVICES ---------- */
.services-section {
  padding: 80px 0;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 2px 15px rgba(0,0,0,0.3);
}
.section-sub {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 40px auto 80px;
  padding: 0 20px;
  max-width: 1500px;
}

.service-tile {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(15px);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 30px -10px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  width: 390px;
}
.service-tile:hover {
  transform: translateY(-14px);
  box-shadow: var(--shadow-hover);
  border-color: var(--orange-glow);
  background: rgba(255,255,255,0.25);
}

.tile-img {
  width: 100%;
  height: 310px;  /* Increased by 20% from 253px */
  overflow: hidden;
}
.tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.service-tile:hover .tile-img img {
  transform: scale(1.08);
}

.tile-content {
  padding: 20px 18px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tile-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: center;
  margin-top: auto;
  gap: 12px;
}

.service-price {
  font-weight: 800;
  color: var(--orange);
  white-space: nowrap;
}

.tile-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
  margin-bottom: 8px;
}

.price-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--orange);
  color: white;
  padding: 10px 28px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.tile-content p {
  color: rgba(255,255,255,0.95);
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 0.9rem;
  flex: 1;
}

.tile-btn {
  align-self: flex-start;
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tile-btn:hover {
  background: white;
  color: var(--blue);
}
.tile-btn i {
  transition: transform 0.2s;
}
.tile-btn:hover i {
  transform: translateX(4px);
}

/* ---------- FOOTER ---------- */
footer {
  padding: 40px 0;
  background: rgba(10, 74, 126, 0.35);
  backdrop-filter: blur(15px);
  color: white;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.15);
}
footer a {
  color: var(--orange);
  text-decoration: none;
}

/* Responsive services */
/* Responsive services handled by auto-fit, but we can tweak spacing */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }
}

/* Fade animations */
.fade-up {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- BOOKING FORM ---------- */
.booking-section {
  padding: 72px 0;
}
.booking-split-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.booking-card {
  background: rgba(10, 40, 60, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.form-section-card {
  margin-bottom: 25px;
  background: linear-gradient(135deg, rgba(20, 50, 70, 0.6) 0%, rgba(10, 30, 50, 0.7) 100%);
}

.form-section-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-section-title i {
  color: #3498db;
}

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

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  opacity: 0.9;
  margin-bottom: 8px;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: white;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.4);
  border-color: #3498db;
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.6;
}

.summary-card {
  position: sticky;
  top: 120px;
}

.quote-panel {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 40px;
  padding: 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  color: white;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.quote-panel h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.quote-panel h2 .icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  font-size: 0.8rem;
  box-shadow: 0 6px 16px rgba(230, 126, 34, 0.4);
}

.quote-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  margin-bottom: 18px;
  text-align: center;
}

.quote-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.quote-meta .badge {
  background: rgba(52, 152, 219, 0.3);
  color: #85c1e9;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.summary-instructions {
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
  line-height: 1.5;
}

.summary-breakdown {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.quote-section-title {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}

.quote-section-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  margin: 2px 0 4px;
}

.quote-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.quote-line strong {
  color: white;
  font-weight: 700;
}

.quote-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 800;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  letter-spacing: -0.3px;
  margin-bottom: 24px;
}

.quote-total .amount {
  color: var(--orange-glow);
  font-size: 1.6rem;
}

.btn-submit {
  width: 100%;
  padding: 16px 40px;
  border-radius: 40px;
  border: none;
  background: var(--orange);
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.3px;
  box-shadow: 0 10px 24px rgba(230, 126, 34, 0.4);
}

.btn-submit:hover {
  background: #d35400;
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(230, 126, 34, 0.55);
}

.summary-disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin-top: 20px;
}

.booking-form-shell {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 40px;
  padding: 26px 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.section-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 18px 18px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.section-card:last-child {
  margin-bottom: 0;
}

.section-card:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.3);
}

.lodge-section-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  padding: 18px 18px;
}

.lodge-section-card .section-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.section-card-title {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  letter-spacing: -0.3px;
  width: fit-content;
  max-width: 100%;
  text-align: left;
  line-height: 1.2;
}

.section-card-title .icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(230, 126, 34, 0.4);
}

.section-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  margin-bottom: 10px;
  padding-left: 42px;
}

.section-body {
  padding-left: 0;
}

.lodge-season-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lodge-season-pill {
  position: relative;
  display: inline-flex;
  cursor: pointer;
}

.lodge-season-pill input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.lodge-pill-copy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  line-height: 1;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.lodge-season-pill:hover .lodge-pill-copy {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.16);
}

.lodge-season-pill input:focus-visible + .lodge-pill-copy {
  outline: none;
  border-color: rgba(230, 126, 34, 0.7);
  box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.15);
}

.lodge-season-pill input:checked + .lodge-pill-copy,
.lodge-season-pill.is-selected .lodge-pill-copy {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.lodge-pill-title {
  white-space: nowrap;
}

.lodge-pill-price {
  color: #ff9a1f;
  font-weight: 800;
  white-space: nowrap;
}


.activities-options {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.activities-dropdown {
  display: grid;
}

.activities-dropdown-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.activities-dropdown-toggle:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
}

.activities-dropdown-toggle:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.15);
}

.activities-dropdown-toggle i {
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

.activities-dropdown-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.activities-loading {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  padding: 12px 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  cursor: pointer;
  padding: 9px 14px;
  border-radius: 999px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.98rem;
}

.checkbox-label:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
  flex-shrink: 0;
}

.activity-copy {
  flex: 1;
  line-height: 1.35;
}

.activity-price {
  color: var(--orange-glow);
  font-weight: 700;
}

.activity-child-price {
  color: #f7c978;
  font-style: italic;
  font-size: 0.92rem;
  margin-left: 6px;
}

.guest-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  align-items: center;
}

.guest-row label {
  color: white;
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.guest-icon {
  color: var(--orange-glow);
}

.guest-row input[type="number"] {
  width: 64px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 0.95rem;
  text-align: center;
  outline: none;
}

.guest-row input[type="number"]:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.12);
}

.guest-note {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 500;
}

.guest-row-inline {
  margin-top: 0;
}

.booking-form-shell .form-group input,
.booking-form-shell .form-group select,
.booking-form-shell .form-group textarea {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  color: white;
  padding: 12px 14px;
}

.booking-form-shell .form-group textarea {
  border-radius: 20px;
}

.booking-form-shell .form-group select {
  background-color: rgba(255, 255, 255, 0.12);
  color: white;
}

.booking-form-shell .form-group select option {
  background: #5f594f;
  color: white;
}

.booking-form-shell .form-group select option:checked,
.booking-form-shell .form-group select option:hover {
  background: #e67e22;
  color: white;
}

.booking-form-shell .form-group input:focus,
.booking-form-shell .form-group select:focus,
.booking-form-shell .form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.15);
}

.booking-form-shell .form-group input::placeholder,
.booking-form-shell .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 900px) {
  .booking-split-layout {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: 1;
  }

  .booking-form-shell {
    padding: 22px 16px;
    border-radius: 28px;
  }

  .quote-panel {
    border-radius: 28px;
    padding: 20px 16px;
  }

  .section-card {
    padding: 16px 14px;
  }

  .lodge-season-pills {
    gap: 12px;
  }

  .lodge-pill-copy {
    width: 100%;
    justify-content: space-between;
  }

  .lodge-season-pill {
    width: 100%;
  }

}

/* ---------- GALLERY ---------- */
.gallery-grid {
  display: columns;
  columns: 3;
  column-gap: 20px;
  margin-top: 40px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.4s;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s;
}
.gallery-item:hover {
  transform: scale(1.02);
  border-color: rgba(255, 255, 255, 0.4);
}
.gallery-item:hover img {
  transform: scale(1.1);
}

@media (max-width: 900px) {
  .gallery-grid { columns: 2; }
}
@media (max-width: 600px) {
  .gallery-grid { columns: 1; }
  .booking-card { padding: 25px 20px; }
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

body.scrolled .logo img {
  height: 32px;
}

.footer-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
}

/* ---------- ABOUT SECTION ---------- */
.about-section {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

.about-main-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.4);
  letter-spacing: -1px;
}

.about-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 80px;
  font-weight: 400;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-col {
  background: rgba(255, 255, 255, 0.15); /* Elegant dark blue glass */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255,255,255,0.4);
  border-left: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  padding: 50px 35px;
  position: relative;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2), inset 0 0 20px rgba(255,255,255,0.05);
}

.about-col:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 25px 45px rgba(0,0,0,0.3), inset 0 0 20px rgba(255,255,255,0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 1.8rem;
  color: white;
  transition: all 0.5s ease;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.about-col:hover .icon-circle {
  transform: rotateY(360deg) scale(1.1);
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.2);
  color: var(--orange);
}

.about-col h3 {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.about-col p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-main-title {
    font-size: 2.5rem;
  }
}

/* Removed fixed 4-col grid to support centered flex layout */
.services-grid.four-col {
  display: flex;
}

@media (max-width: 1200px) {
  .services-grid.four-col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .about-card {
    padding: 40px 20px;
  }
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- VERTICAL SOCIAL SIDEBAR ---------- */
.social-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-left: 1px solid rgba(255, 255, 255, 0.4); border-top: 1px solid rgba(255, 255, 255, 0.4); border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  overflow: hidden;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
}

.social-side-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 12px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  width: 50px;
}

.social-side-btn:last-child {
  border-bottom: none;
}

.social-side-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  color: white;
}

.social-side-btn i {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.social-side-btn span {
  writing-mode: vertical-rl;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  /* Add subtle glow to text to match reference */
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Hide on mobile to prevent squishing */
@media (max-width: 768px) {
  .social-sidebar {
    display: none;
  }
}

/* ---------- SCROLL REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible, .reveal-left.visible, .reveal-right.visible, .reveal-scale.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ---------- CARD IMAGE SLIDER ---------- */
.card-slider {
  position: relative;
  width: 100%;
  height: 253px;
  overflow: hidden;
  touch-action: pan-y;
}
.card-slider img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.card-slider img.active {
  opacity: 1;
}

/* ---------- PRICE BADGE ---------- */
.price-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--orange);
  color: white;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 5;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
  backdrop-filter: blur(6px);
  letter-spacing: 0.3px;
}
.tile-img, .card-slider {
  position: relative;
}

/* ---------- WHATSAPP FLOATING BUTTON ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 62px;
  height: 62px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  z-index: 9999;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  animation: whatsapp-pulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55);
  animation: none;
}
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0.15); }
}

/* ---------- WHY CHOOSE US ---------- */
.why-section {
  padding: 100px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.why-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  padding: 45px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
.why-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 25px 45px rgba(0,0,0,0.3);
  border-color: rgba(255, 255, 255, 0.5);
}
.why-card .icon-circle {
  margin: 0 auto 24px;
}
.why-card:hover .icon-circle {
  transform: rotateY(360deg) scale(1.1);
  background: rgba(255, 255, 255, 0.3);
  color: var(--orange);
}
.why-card h3 {
  font-size: 1.4rem;
  color: white;
  margin-bottom: 12px;
  font-weight: 700;
}
.why-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
}
.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--orange);
  display: block;
  margin-bottom: 6px;
  text-shadow: 0 2px 10px rgba(230, 126, 34, 0.3);
}
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ---------- BLOG SECTION ---------- */
.blog-section {
  padding: 100px 0;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
}
.blog-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 30px -10px rgba(0,0,0,0.15);
}
.blog-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-hover);
  border-color: var(--orange-glow);
  background: rgba(255, 255, 255, 0.22);
}
.blog-img {
  width: 100%;
  height: 210px;
  overflow: hidden;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.blog-card:hover .blog-img img {
  transform: scale(1.08);
}
.blog-body {
  padding: 26px 24px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}
.blog-meta .category {
  background: rgba(230, 126, 34, 0.25);
  color: var(--orange);
  padding: 3px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-body h3 {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.35;
}
.blog-body p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 18px;
}
.read-more {
  color: var(--orange);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}
.read-more:hover {
  gap: 12px;
}

body.blog-modal-open {
  overflow: hidden;
}

.blog-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 20px;
  background: rgba(11, 20, 36, 0.8);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.blog-modal.active {
  opacity: 1;
  visibility: visible;
}

.blog-modal-dialog {
  position: relative;
  width: min(820px, 100%);
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(28, 40, 61, 0.98), rgba(23, 34, 53, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.blog-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.blog-modal-close:hover {
  background: rgba(230, 126, 34, 0.85);
  transform: rotate(90deg);
}

.blog-modal-hero {
  position: relative;
  min-height: 360px;
}

.blog-modal-hero img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.blog-modal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 19, 31, 0.12) 0%, rgba(17, 28, 45, 0.45) 55%, rgba(20, 31, 49, 0.95) 100%);
}

.blog-modal-hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 42px 34px;
}

.blog-modal-category {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: rgba(34, 103, 178, 0.92);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-modal-hero-content h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.06;
  margin-bottom: 14px;
}

.blog-modal-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.blog-modal-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.blog-modal-body {
  padding: 36px 42px 44px;
}

.blog-modal-excerpt {
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.28rem;
  line-height: 1.65;
  margin-bottom: 28px;
}

.blog-modal-content {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  line-height: 1.9;
}

.blog-modal-content p {
  margin-bottom: 22px;
}

@media (max-width: 700px) {
  .blog-modal {
    padding: 16px 12px;
  }

  .blog-modal-dialog {
    max-height: calc(100vh - 32px);
    border-radius: 22px;
  }

  .blog-modal-hero,
  .blog-modal-hero img {
    min-height: 260px;
    height: 260px;
  }

  .blog-modal-hero-content,
  .blog-modal-body {
    padding-left: 22px;
    padding-right: 22px;
  }

  .blog-modal-hero-content {
    padding-bottom: 24px;
  }

  .blog-modal-body {
    padding-top: 26px;
    padding-bottom: 30px;
  }
}

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

/* ---------- MAP / FIND US SECTION ---------- */
.map-section {
  padding: 100px 0;
}
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  margin-top: 50px;
  align-items: stretch;
}
.map-info {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 22px;
  padding: 45px 35px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
.map-info h3 {
  font-size: 1.6rem;
  color: white;
  margin-bottom: 25px;
  font-weight: 700;
}
.map-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.9);
}
.map-info-item i {
  color: var(--orange);
  font-size: 1.2rem;
  margin-top: 3px;
  min-width: 22px;
}
.map-info-item p {
  line-height: 1.5;
}
.map-info-item a {
  color: var(--orange);
  text-decoration: none;
}
.map-info-item a:hover {
  text-decoration: underline;
}
.map-embed {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  min-height: 400px;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}
@media (max-width: 900px) {
  .map-grid { grid-template-columns: 1fr; }
}

/* ---------- ABOUT / CONTACT PAGE ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  margin-top: 50px;
}
.contact-info-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 22px;
  padding: 45px 35px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
.contact-info-card h3 {
  font-size: 1.6rem;
  color: white;
  margin-bottom: 10px;
  font-weight: 700;
}
.contact-info-card > p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  line-height: 1.6;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}
.contact-info-item i {
  color: var(--orange);
  font-size: 1.2rem;
  min-width: 22px;
  text-align: center;
}
.contact-info-item a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}
.contact-info-item a:hover {
  color: var(--orange);
}
.contact-social {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}
.contact-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.contact-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-3px);
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- LODGE PAGE ---------- */
.lodge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.amenity:hover {
  background: rgba(255, 102, 0, 0.1);
  border-color: var(--orange);
  transform: translateY(-5px);
}

.amenity i {
  font-size: 1.8rem;
  color: var(--orange);
}

.amenity span {
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.pricing-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  padding: 40px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-row:last-of-type {
  border-bottom: none;
}

.gallery-grid-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.gallery-grid-compact .gallery-item {
  height: 200px;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}

.gallery-grid-compact img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-grid-compact .gallery-item:hover img {
  transform: scale(1.1);
}

@media (max-width: 900px) {
  .lodge-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-card { padding: 30px; }
}

.lodge-feature-img img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
}


.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.lightbox-content {
  position: relative;
  width: 95vw;
  height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.9);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.active .lightbox-content {
  transform: scale(1);
}

.lightbox-img {
  width: auto;
  height: auto;
  max-width: 95%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 0 100px rgba(0, 0, 0, 1);
  transform: scale(1.1); /* Slight boost to perceived size */
}

.lightbox-nav {
  position: fixed; /* Fixed to viewport edges */
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
  z-index: 10005;
}

.lightbox-nav:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 0 50px var(--orange);
}

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


.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 3.5rem;
  cursor: pointer;
  z-index: 10010;
  transition: all 0.3s ease;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--orange);
  transform: rotate(90deg);
}

.service-tile, .gallery-item {
  cursor: pointer;
}

@media (max-width: 900px) {
  .lightbox-prev { left: 15px; }
  .lightbox-next { right: 15px; }
  .lightbox-nav { width: 55px; height: 55px; font-size: 1.5rem; background: rgba(0,0,0,0.6); }
  .lightbox-close { top: 15px; right: 20px; font-size: 2.8rem; }
}


/* ---------- ADMIN LINK ---------- */
.admin-link {
  color: inherit;
  text-decoration: none;
  opacity: 0.7;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 12px;
  border-radius: 50px;
  margin-left: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
  vertical-align: middle;
}

.admin-link:hover {
  opacity: 1;
  background: rgba(255,255,255,0.1);
  border-color: var(--orange);
  color: var(--orange) !important;
}

/* Premium Card Design System */
.premium-card { 
  background: rgba(255, 255, 255, 0.05); 
  backdrop-filter: blur(20px); 
  border-radius: 20px; 
  overflow: hidden; 
  border: 1px solid rgba(255, 255, 255, 0.1); 
  transition: var(--transition); 
  position: relative; 
  display: flex;
  flex-direction: column;
  height: auto;
  width: 390px;
}
.premium-card:hover { 
  transform: translateY(-8px); 
  border-color: var(--orange); 
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4); 
}
.card-media { 
  position: relative; 
  height: 240px; 
  overflow: hidden; 
}
.card-media img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.8s ease; 
}
.premium-card:hover .card-media img {
  transform: scale(1.1);
}
.badge-seater { 
  position: absolute; 
  top: 15px; 
  left: 15px; 
  background: var(--orange); 
  color: white; 
  padding: 7px 18px; 
  border-radius: 50px; 
  font-weight: 800; 
  font-size: 0.65rem; 
  text-transform: uppercase; 
  letter-spacing: 0.5px; 
  z-index: 10; 
}
.card-details { 
  padding: 15px 20px 20px; 
  flex: 1;
  display: flex;
  flex-direction: column;
}
.details-header h3 { 
  font-size: 1.2rem; 
  font-weight: 800; 
  color: white; 
  margin: 0 0 10px 0; 
}
.details-info { 
  display: flex; 
  gap: 15px; 
  color: rgba(255, 255, 255, 0.7); 
  font-size: 0.8rem; 
  margin-bottom: 15px; 
}
.card-divider { 
  height: 1px; 
  background: rgba(255, 255, 255, 0.1); 
  margin-bottom: 15px; 
}
.amenity-pills { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 8px; 
  margin-bottom: 20px; 
}
.amenity-pill { 
  background: rgba(255, 255, 255, 0.08); 
  padding: 6px 12px; 
  border-radius: 10px; 
  font-size: 0.7rem; 
  color: white; 
}
.card-footer { 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  margin-top: auto;
  gap: 40px;
  flex-wrap: nowrap;
}
.footer-review {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
}
.price-btn { 
  background: white; 
  color: #1e293b; 
  padding: 6px 10px; 
  border-radius: 50px; 
  font-weight: 800; 
  font-size: 0.68rem; 
  text-decoration: none; 
  pointer-events: none; 
  white-space: nowrap; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.2);
}
.footer-btn { 
  background: var(--orange); 
  color: white; 
  padding: 6px 14px; 
  border-radius: 50px; 
  font-weight: 800; 
  text-transform: uppercase; 
  text-decoration: none; 
  font-size: 0.68rem; 
  transition: all 0.3s ease;
  box-shadow: 0 8px 18px -6px rgba(230, 126, 34, 0.4);
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-btn:hover {
  background: white;
  color: var(--orange);
}

/* ---------- HOMEPAGE SERVICES - SINGLE ROW ---------- */
#servicesGrid {
  flex-wrap: nowrap;
  align-items: stretch;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 10px;
}
#servicesGrid .service-tile {
  flex: 1 1 0;
  width: auto;
  min-width: 200px;
}
@media (max-width: 768px) {
  #servicesGrid {
    flex-wrap: wrap;
    overflow-x: visible;
  }
  #servicesGrid .service-tile {
    flex: 0 0 85%;
    width: 85%;
  }
}
