:root {
  /* Brand Colors */
  --brand-navy: #38bdf8;
  --brand-navy-light: #7dd3fc;
  --brand-navy-dark: #0ea5e9;
  --brand-emerald: #27ae60;
  --brand-gold: #f1c40f;

  /* Neutral Palette */
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-on-navy: #ffffff;

  /* Glassmorphism Defaults */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-blur: 12px;

  /* Shadows & Depth */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Layout */
  --border-radius-sm: 0.5rem;
  --border-radius-md: 1rem;
  --border-radius-lg: 2rem;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  overflow-x: hidden;
  background: #07121c;
  min-height: 100vh;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2000;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: #ffffff;
  color: #07121c;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Sidebar Social Links */
.sidebar {
  position: fixed;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 1000;
  overflow: visible;
  width: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.sidebar::before {
  content: none;
}

.sidebar::after {
  content: none;
}

.social-link {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
  width: 48px;
  height: 48px;
  z-index: 1;
  overflow: visible;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.social-link:last-child {
  border-bottom: 0;
}

.social-link:hover,
.social-link:focus-visible {
  color: white;
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25), 0 0 22px rgba(255, 255, 255, 0.18);
}

.social-link i {
  line-height: 1;
}

.social-name {
  display: none;
}

/* Dynamic Sidebar Brand Mode */
.sidebar.sidebar-brand-mode .social-link {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.12);
}

.sidebar.sidebar-brand-mode .social-link:hover {
  background: rgba(255, 255, 255, 0.18);
  color: white;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 4rem;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  /* Added shadow for better layering */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  flex: 1;
  margin-left: 2rem;
}

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

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

.logo-text {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  border: 1px solid transparent;
}

.nav-link:hover,
.nav-link.active {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  .navbar {
    padding: 0.75rem 2rem;
  }
}

@media (max-width: 992px) {
  .navbar {
    padding: 0.75rem 1.5rem;
  }

  .nav-container {
    margin-left: 0;
    justify-content: flex-end;
  }

  .nav-menu {
    display: none;
  }

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

  .sidebar {
    left: 0.75rem;
  }

  .social-link {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}

.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 {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  padding: 2rem;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

/* Ensure mobile menu layers above all content */
.mobile-menu {
  z-index: 1100;
}

.mobile-nav-link {
  color: white;
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  text-align: center;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-navy-light), var(--brand-navy));
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-navy-dark));
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(31, 78, 120, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-full {
  width: 100%;
}

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

.bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(var(--bg-scale, 1));
  transform-origin: var(--bg-origin-x, 50%) var(--bg-origin-y, 50%);
  will-change: transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .bg-image {
    transform: none;
    will-change: auto;
  }
}

/* Organic Blob Shapes */
.blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #38bdf8, #7dd3fc);
  filter: blur(80px);
  opacity: 0.3;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: -1;
  animation: blob-bounce 10s infinite alternate;
}

.blob-1 {
  top: -10%;
  right: -5%;
  background: linear-gradient(135deg, #38bdf8, #7dd3fc);
}

.blob-2 {
  bottom: 0%;
  right: 15%;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
}

@keyframes blob-bounce {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: translate(0, 0) rotate(0deg);
  }

  100% {
    border-radius: 50% 50% 30% 70% / 50% 30% 70% 50%;
    transform: translate(20px, 40px) rotate(10deg);
  }
}

.hero-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 5% 3rem;
  max-width: 1400px;
  margin: 0 auto;
  scroll-snap-align: start;
}

.hero-content {
  width: min(760px, 100%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.2rem;
  margin-left: 0;
  text-align: center;
}

.hero-copy {
  max-width: 720px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(3.5rem, 6rem, 6.2rem);
  font-weight: 800;
  color: white;
  margin: 0;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  max-width: 12ch;
}

.hero-title-brand {
  color: white;
}

.hero-title-accent {
  display: block;
  margin-top: 1.75rem;
  font-size: clamp(1.75rem, 2.5rem, 2.5rem);
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255, 255, 255, 0.95);
}

.hero-tagline {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8fc8ff;
}

.hero-subtitle {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.86);
  margin: 1.5rem 0 0;
  line-height: 1.8;
  max-width: 58ch;
  font-weight: 400;
  margin-left: auto;
  margin-right: auto;
}

/* Feature Image Wrapper */
.feature-image-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.hero-feature-img {
  width: 100%;
  max-width: 800px;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Watch Video Button */
.btn-video {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  min-height: 52px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
}

.hero-cta-primary {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.btn-video-text {
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.play-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-video:hover .play-icon {
  background: #38bdf8;
  color: white;
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .hero-container {
    min-height: auto;
    padding: 7.5rem 1.5rem 3rem;
  }

  .hero-content {
    width: 100%;
    margin-left: 0;
    align-items: center;
    text-align: center;
  }

  .hero-title {
    max-width: 12ch;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero-container {
    padding: 6.5rem 1rem 2.5rem;
  }

  .hero-content {
    gap: 1.25rem;
  }

  .hero-title {
    max-width: none;
    font-size: clamp(2.7rem, 4rem, 4rem);
  }

  .hero-title-accent {
    font-size: clamp(1.45rem, 2rem, 2rem);
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-primary,
  .btn-video {
    width: 100%;
    justify-content: center;
  }
}

/* Search Bar */
.search-bar {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* Added shadow for better layering */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

.search-input,
.search-select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 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;
}

.category-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  color: white;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  font-size: 0.875rem;
  /* Added shadow for depth */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.category-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  /* Enhanced shadow on hover */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.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;
}

/* Booking Form */
.booking-form-container {
  flex: 1;
  max-width: 320px;
}

.booking-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

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

.form-header h2 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

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

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

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

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

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

.form-input,
.form-select,
.form-textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  padding: 0.5rem;
  color: white;
  backdrop-filter: blur(5px);
  font-size: 0.875rem;
}

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

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

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

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

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

.help-link {
  /* Navy blue accent */
  color: #7dd3fc;
  text-decoration: none;
}

.help-link:hover {
  /* Darker navy blue on hover */
  color: #38bdf8;
}

/* 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;
  /* Added shadow for better layering */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.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 {
  /* Navy blue background matching Femik Tours brand */
  background: linear-gradient(135deg, #d4e4f0, #b8d4e8);
  min-height: 100vh;
}

/* Updated lodges-hero to work without background image since it comes from hero-background */
.lodges-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  z-index: 1;
}

.hero-content-center {
  text-align: center;
  z-index: 2;
  position: relative;
  padding: 0 2rem;
}

.page-title {
  font-size: 4.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  letter-spacing: -2px;
  line-height: 1.1;
}

.page-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.contact-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  z-index: 1;
}

.hero-bg {
  display: none;
}

.hero-overlay {
  display: none;
}

.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

/* Filters */
.filters-section {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  /* Added shadow for better depth */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.filter-group label {
  color: #374151;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.filter-select {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  padding: 0.75rem;
  color: #1f2937;
  font-size: 0.875rem;
}

.filters-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.filters-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.results-count {
  color: #6b7280;
  font-size: 0.875rem;
}

.view-options {
  display: flex;
  gap: 0.5rem;
}

.view-btn {
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  /* Added shadow */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.view-btn.active,
.view-btn:hover {
  background: rgba(255, 255, 255, 0.8);
  /* Enhanced shadow on hover */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Lodge Grid */
.lodges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  justify-content: center;
}

/* Unified Premium Card Design */
.lodge-card,
.accommodation-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.lodge-card:hover,
.accommodation-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.lodge-image,
.card-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

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

.lodge-card:hover .lodge-image img,
.accommodation-card:hover .card-image img {
  transform: scale(1.1);
}

.lodge-type,
.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.35rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.lodge-rating,
.card-rating {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  border-radius: 0.5rem;
  padding: 0.4rem 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.rating-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
}

.lodge-content,
.card-content {
  padding: 1rem;
  /* Reduced from 1.5rem */
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  /* Reduced from 1.25rem */
}

.lodge-name,
.unit-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin: 0;
  line-height: 1.2;
}

.pricing-grid,
.unit-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.price-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  /* Changed from var(--text-muted) to light white */
  font-weight: 700;
  letter-spacing: 0.5px;
}

.price-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
}

.price-value span {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  /* Changed from var(--text-muted) to light white */
  margin-left: 2px;
}

.lodge-footer {
  margin-top: auto;
}

.lodge-footer .btn,
.card-content .btn {
  width: auto;
  min-width: 110px;
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.accommodation-page .lodges-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.accommodation-page .lodge-card-showcase {
  background: rgba(237, 248, 255, 0.95);
  border: 1px solid rgba(125, 211, 252, 0.45);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(56, 189, 248, 0.18);
}

.accommodation-page .lodge-card-showcase:hover {
  background: rgba(245, 252, 255, 0.98);
  border-color: rgba(56, 189, 248, 0.55);
  box-shadow: 0 24px 60px rgba(56, 189, 248, 0.24);
}

.accommodation-page .lodge-card-showcase .lodge-image {
  aspect-ratio: 1.45 / 1;
}

.accommodation-page .lodge-card-showcase .lodge-content {
  padding: 1.05rem 1rem 1rem;
  gap: 0.8rem;
}

.accommodation-page .lodge-card-showcase .lodge-type {
  background: linear-gradient(135deg, var(--brand-navy-dark), var(--brand-navy));
  border: 0;
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0;
  box-shadow: 0 8px 18px rgba(14, 165, 233, 0.28);
}

.accommodation-page .lodge-card-showcase .lodge-rating {
  background: rgba(255, 255, 255, 0.96);
  border: 0;
  color: #0f172a;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.accommodation-page .lodge-card-showcase .star-icon,
.accommodation-page .lodge-card-showcase .rating-text {
  color: #0f172a;
}

.accommodation-page .lodge-card-showcase .star-icon i {
  color: #22c55e;
  font-size: 0.75rem;
}

.accommodation-page .lodge-photo-count {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.58);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  z-index: 2;
}

.accommodation-page .lodge-photo-count i {
  color: var(--brand-navy-light);
}

.accommodation-page .lodge-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.accommodation-page .lodge-name {
  color: #12344d;
  font-size: 1.05rem;
  line-height: 1.25;
}

.accommodation-page .lodge-price-tag {
  text-align: right;
  flex-shrink: 0;
}

.accommodation-page .lodge-price-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand-navy-dark);
}

.accommodation-page .lodge-price-unit {
  font-size: 0.7rem;
  color: rgba(18, 52, 77, 0.72);
}

.accommodation-page .lodge-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: #234;
  font-size: 0.92rem;
}

.accommodation-page .lodge-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.accommodation-page .lodge-meta-row i {
  color: var(--brand-navy-dark);
}

.accommodation-page .lodge-summary {
  margin: 0;
  color: rgba(18, 52, 77, 0.82);
  font-size: 0.9rem;
  line-height: 1.55;
}

.accommodation-page .lodge-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.accommodation-page .lodge-tag {
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.18);
  color: #24516d;
  font-size: 0.72rem;
  border: 1px solid rgba(125, 211, 252, 0.28);
}

.accommodation-page .lodge-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.accommodation-page .lodge-review-meta {
  color: rgba(36, 81, 109, 0.82);
  font-size: 0.78rem;
}

.accommodation-page .lodge-review-meta i {
  color: #22c55e;
}

.accommodation-page .lodge-card-showcase .btn.btn-primary {
  background: linear-gradient(135deg, var(--brand-navy-dark), var(--brand-navy));
  border: 0;
  min-width: 104px;
  box-shadow: 0 10px 24px rgba(56, 189, 248, 0.24);
}

.activities-page .lodges-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.activities-page .activity-card-showcase {
  background: rgba(240, 250, 246, 0.96);
  border: 1px solid rgba(125, 211, 252, 0.28);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(56, 189, 248, 0.16);
}

.activities-page .activity-card-showcase:hover {
  background: rgba(248, 253, 251, 0.98);
  border-color: rgba(56, 189, 248, 0.38);
  box-shadow: 0 24px 56px rgba(56, 189, 248, 0.22);
}

.activities-page .activity-card-showcase .lodge-image {
  aspect-ratio: 1.32 / 1;
}

.activities-page .activity-card-showcase .lodge-content {
  padding: 1rem 1rem 1.1rem;
  gap: 0.75rem;
}

.activities-page .activity-card-showcase .lodge-type {
  background: linear-gradient(135deg, var(--brand-navy-dark), var(--brand-navy));
  border: 0;
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0;
}

.activities-page .activity-card-showcase .lodge-rating {
  background: rgba(255, 255, 255, 0.94);
  border: 0;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.activities-page .activity-card-showcase .star-icon i {
  color: #22c55e;
  font-size: 0.72rem;
}

.activities-page .activity-card-showcase .rating-text {
  color: #234;
}

.activities-page .activity-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.activities-page .activity-card-showcase .lodge-name {
  color: #16324a;
  font-size: 1.05rem;
  line-height: 1.25;
}

.activities-page .activity-price-tag {
  flex-shrink: 0;
  text-align: right;
}

.activities-page .activity-price-value {
  color: var(--brand-navy-dark);
  font-size: 1rem;
  font-weight: 800;
}

.activities-page .activity-price-unit {
  color: rgba(22, 50, 74, 0.7);
  font-size: 0.72rem;
}

.activities-page .activity-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: #1f3a52;
  font-size: 0.92rem;
}

.activities-page .activity-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.activities-page .activity-meta-row i {
  color: var(--brand-navy-dark);
}

.activities-page .activity-summary {
  margin: 0;
  color: rgba(22, 50, 74, 0.82);
  font-size: 0.9rem;
  line-height: 1.5;
}

.activities-page .activity-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.activities-page .activity-tag {
  padding: 0.28rem 0.55rem;
  border-radius: 8px;
  background: rgba(125, 211, 252, 0.18);
  color: #23506c;
  font-size: 0.72rem;
  border: 1px solid rgba(125, 211, 252, 0.22);
}

.activities-page .activity-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.activities-page .activity-review-meta {
  color: rgba(35, 80, 108, 0.85);
  font-size: 0.78rem;
}

.activities-page .activity-review-meta i {
  color: #22c55e;
}

.activities-page .activity-card-showcase .btn.btn-primary {
  background: linear-gradient(135deg, var(--brand-navy-dark), var(--brand-navy));
  border: 0;
  min-width: 105px;
  box-shadow: 0 10px 22px rgba(56, 189, 248, 0.22);
}

.transfers-page .lodges-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.transfers-page .transfer-card-showcase {
  background: rgba(240, 250, 246, 0.96);
  border: 1px solid rgba(125, 211, 252, 0.28);
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(56, 189, 248, 0.16);
}

.transfers-page .transfer-card-showcase:hover {
  background: rgba(248, 253, 251, 0.98);
  border-color: rgba(56, 189, 248, 0.38);
  box-shadow: 0 24px 56px rgba(56, 189, 248, 0.22);
}

.transfers-page .transfer-card-showcase .lodge-image {
  aspect-ratio: 1.32 / 1;
}

.transfers-page .transfer-card-showcase .lodge-content {
  padding: 1rem 1rem 1.1rem;
  gap: 0.75rem;
}

.transfers-page .transfer-card-showcase .lodge-type {
  background: linear-gradient(135deg, var(--brand-navy-dark), var(--brand-navy));
  border: 0;
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0;
}

.transfers-page .transfer-card-showcase .lodge-rating {
  background: rgba(255, 255, 255, 0.94);
  border: 0;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.transfers-page .transfer-card-showcase .star-icon i {
  color: #22c55e;
  font-size: 0.72rem;
}

.transfers-page .transfer-card-showcase .rating-text {
  color: #234;
}

.transfers-page .transfer-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.transfers-page .transfer-card-showcase .lodge-name {
  color: #16324a;
  font-size: 1.05rem;
  line-height: 1.25;
}

.transfers-page .transfer-price-tag {
  flex-shrink: 0;
  text-align: right;
}

.transfers-page .transfer-price-value {
  color: var(--brand-navy-dark);
  font-size: 1rem;
  font-weight: 800;
}

.transfers-page .transfer-price-unit {
  color: rgba(22, 50, 74, 0.7);
  font-size: 0.72rem;
}

.transfers-page .transfer-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: #1f3a52;
  font-size: 0.92rem;
}

.transfers-page .transfer-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.transfers-page .transfer-meta-row i {
  color: var(--brand-navy-dark);
}

.transfers-page .transfer-summary {
  margin: 0;
  color: rgba(22, 50, 74, 0.82);
  font-size: 0.9rem;
  line-height: 1.5;
}

.transfers-page .transfer-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.transfers-page .transfer-tag {
  padding: 0.28rem 0.55rem;
  border-radius: 8px;
  background: rgba(125, 211, 252, 0.18);
  color: #23506c;
  font-size: 0.72rem;
  border: 1px solid rgba(125, 211, 252, 0.22);
}

.transfers-page .transfer-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.transfers-page .transfer-review-meta {
  color: rgba(35, 80, 108, 0.85);
  font-size: 0.78rem;
}

.transfers-page .transfer-review-meta i {
  color: #22c55e;
}

.transfers-page .transfer-card-showcase .btn.btn-primary {
  background: linear-gradient(135deg, var(--brand-navy-dark), var(--brand-navy));
  border: 0;
  min-width: 105px;
  box-shadow: 0 10px 22px rgba(56, 189, 248, 0.22);
}

.blog-page .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  padding-top: 1.25rem;
  align-items: start;
}

.blog-page .blog-card-showcase {
  background: rgba(240, 250, 246, 0.96);
  border: 1px solid rgba(125, 211, 252, 0.28);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(56, 189, 248, 0.16);
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-page .blog-card-showcase:hover {
  transform: translateY(-8px);
  background: rgba(248, 253, 251, 0.98);
  border-color: rgba(56, 189, 248, 0.38);
  box-shadow: 0 24px 56px rgba(56, 189, 248, 0.22);
}

.blog-page .blog-image {
  position: relative;
  aspect-ratio: 1.32 / 1;
  overflow: hidden;
  padding: 0.9rem 0.9rem 0 0.9rem;
}

.blog-page .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 18px;
}

.blog-page .blog-card-showcase:hover .blog-image img {
  transform: scale(1.06);
}

.blog-page .blog-content {
  padding: 1.1rem 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}

.blog-page .blog-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.blog-page .blog-title {
  color: #16324a;
  font-size: 1.08rem;
  line-height: 1.3;
  margin: 0;
}

.blog-page .blog-date-chip {
  flex-shrink: 0;
  color: rgba(22, 50, 74, 0.72);
  font-size: 0.72rem;
  text-align: right;
}

.blog-page .blog-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: #1f3a52;
  font-size: 0.9rem;
}

.blog-page .blog-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-page .blog-meta-row i {
  color: var(--brand-navy-dark);
}

.blog-page .blog-excerpt {
  margin: 0;
  color: rgba(22, 50, 74, 0.82);
  font-size: 0.9rem;
  line-height: 1.5;
}

.blog-page .blog-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.blog-page .blog-review-meta {
  color: rgba(35, 80, 108, 0.85);
  font-size: 0.78rem;
}

.blog-page .blog-review-meta i {
  color: #22c55e;
}

.blog-page .blog-card-showcase .btn.btn-primary {
  background: linear-gradient(135deg, var(--brand-navy-dark), var(--brand-navy));
  border: 0;
  min-width: 105px;
  box-shadow: 0 10px 22px rgba(56, 189, 248, 0.22);
}

.speedboats-page .main-content {
  max-width: 1220px;
}

.speedboats-page .section-header {
  margin-bottom: 1.35rem;
}

.speedboats-page .section-title {
  color: #fff;
}

.speedboats-page .section-subtitle {
  color: rgba(255, 255, 255, 0.82);
}

.speedboats-page .lodges-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.speedboats-page .speedboat-card-showcase {
  background: rgba(237, 248, 255, 0.94);
  border: 1px solid rgba(125, 211, 252, 0.42);
  border-radius: 24px;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.18);
}

.speedboats-page .speedboat-card-showcase:hover {
  background: rgba(246, 251, 255, 0.98);
  border-color: rgba(56, 189, 248, 0.58);
  box-shadow: 0 28px 62px rgba(15, 23, 42, 0.24);
}

.speedboats-page .speedboat-card-showcase .lodge-image {
  aspect-ratio: 1.18 / 1;
}

.speedboats-page .speedboat-card-showcase .lodge-content {
  padding: 1.08rem 1rem 1rem;
  gap: 0.8rem;
}

.speedboats-page .speedboat-card-showcase .lodge-type {
  background: linear-gradient(135deg, #14b8ff, #0ea5e9);
  border: 0;
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0;
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.28);
}

.speedboats-page .speedboat-card-showcase .lodge-rating {
  background: rgba(255, 255, 255, 0.96);
  border: 0;
  color: #0f172a;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.speedboats-page .speedboat-card-showcase .star-icon,
.speedboats-page .speedboat-card-showcase .rating-text {
  color: #0f172a;
}

.speedboats-page .speedboat-card-showcase .star-icon i {
  color: #22c55e;
}

.speedboats-page .speedboat-image-trigger {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.8rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #12344d;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
}

.speedboats-page .speedboat-image-trigger i {
  color: var(--brand-navy-dark);
}

.speedboats-page .lodge-photo-count {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.46rem 0.72rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.58);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  z-index: 2;
}

.speedboats-page .lodge-photo-count i {
  color: #7dd3fc;
}

.speedboats-page .lodge-header-row,
.speedboats-page .lodge-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.9rem;
}

.speedboats-page .lodge-name {
  color: #12344d;
  font-size: 1rem;
  line-height: 1.25;
}

.speedboats-page .lodge-price-tag {
  text-align: right;
  flex-shrink: 0;
}

.speedboats-page .lodge-price-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand-navy-dark);
}

.speedboats-page .lodge-price-unit {
  font-size: 0.72rem;
  color: rgba(18, 52, 77, 0.72);
}

.speedboats-page .lodge-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  color: #234;
  font-size: 0.92rem;
}

.speedboats-page .lodge-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.speedboats-page .lodge-meta-row i {
  color: var(--brand-navy-dark);
}

.speedboats-page .lodge-summary {
  margin: 0;
  color: rgba(18, 52, 77, 0.82);
  font-size: 0.92rem;
  line-height: 1.55;
}

.speedboats-page .lodge-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.speedboats-page .lodge-tag {
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.18);
  color: #24516d;
  font-size: 0.72rem;
  border: 1px solid rgba(125, 211, 252, 0.28);
}

.speedboats-page .lodge-footer-row {
  align-items: center;
  margin-top: auto;
}

.speedboats-page .speedboat-card-showcase .btn {
  min-width: 128px;
}

.speedboats-page .speedboat-card-showcase .btn.btn-outline {
  color: #1d4f72;
  border-color: rgba(29, 78, 114, 0.25);
  background: rgba(255, 255, 255, 0.72);
}

.speedboats-page .speedboat-card-showcase .btn.btn-primary {
  background: linear-gradient(135deg, var(--brand-navy-dark), var(--brand-navy));
  border: 0;
  box-shadow: 0 10px 24px rgba(56, 189, 248, 0.24);
}

.speedboat-gallery-section {
  margin-top: 0.5rem;
}

.speedboat-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.speedboat-gallery-item {
  position: relative;
  grid-column: span 4;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.22);
  cursor: pointer;
}

.speedboat-gallery-item.is-wide {
  grid-column: span 8;
  aspect-ratio: 1.8 / 1;
}

.speedboat-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.speedboat-gallery-overlay {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.82) 100%);
}

.speedboat-gallery-name,
.speedboat-gallery-action {
  color: #fff;
  font-weight: 600;
}

.speedboat-gallery-action {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 1024px) {
  .accommodation-page .lodges-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .activities-page .lodges-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .transfers-page .lodges-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .speedboats-page .lodges-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .speedboat-gallery-item,
  .speedboat-gallery-item.is-wide {
    grid-column: span 6;
  }

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

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

  .accommodation-page .lodge-header-row,
  .accommodation-page .lodge-footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .accommodation-page .lodge-price-tag {
    text-align: left;
  }

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

  .activities-page .activity-header-row,
  .activities-page .activity-footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .activities-page .activity-price-tag {
    text-align: left;
  }

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

  .transfers-page .transfer-header-row,
  .transfers-page .transfer-footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .transfers-page .transfer-price-tag {
    text-align: left;
  }

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

  .speedboats-page .lodge-header-row,
  .speedboats-page .lodge-footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .speedboats-page .lodge-price-tag {
    text-align: left;
  }

  .speedboat-gallery-grid {
    grid-template-columns: 1fr;
  }

  .speedboat-gallery-item,
  .speedboat-gallery-item.is-wide {
    grid-column: span 1;
    aspect-ratio: 1.28 / 1;
  }

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

  .blog-page .blog-header-row,
  .blog-page .blog-footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-page .blog-date-chip {
    text-align: left;
  }
}

/* Main Footer */
.main-footer {
  background: rgba(0, 0, 0, 0.3);
  /* Premium semi-transparent dark */
  backdrop-filter: blur(15px) saturate(160%);
  -webkit-backdrop-filter: blur(15px) saturate(160%);
  color: white;
  padding: 0;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
}

/* CTA Card */
.footer-cta-container {
  margin-bottom: 4rem;
}

.footer-cta-card {
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.34), rgba(56, 189, 248, 0.28));
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: 40px;
  padding: 3rem 3rem;
  text-align: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.footer-cta-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.cta-title::after {
  content: "";
  height: 2px;
  background: #fff;
  flex: 1;
  max-width: 200px;
}

.cta-text {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
  font-weight: 500;
}

.cta-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 5px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0 1.5rem;
  font-size: 1rem;
  outline: none;
  color: white;
}

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

.cta-form button {
  background: white;
  color: var(--brand-navy);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-form button:hover {
  transform: scale(1.05);
  background: var(--brand-navy-light);
  color: white;
}

/* Footer Content */
.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-column h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-column p {
  color: #a1a1aa;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  color: #a1a1aa;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-column ul li a:hover {
  color: white;
}

.btn-outline-white {
  background: transparent;
  border: 1px solid white;
  color: white;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.btn-outline-white:hover {
  background: white;
  color: black;
}

.app-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  border: 1px solid #3f3f46;
  border-radius: 10px;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: white;
  transition: background 0.3s ease;
  width: fit-content;
}

.app-btn:hover {
  background: #18181b;
}

.app-btn i {
  font-size: 1.5rem;
}

.app-btn span {
  font-size: 0.75rem;
  line-height: 1.2;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #18181b;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #71717a;
  font-size: 0.9rem;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
}

.social-icons a {
  color: white;
  font-size: 1.25rem;
  transition: opacity 0.3s ease;
}

.social-icons a:hover {
  opacity: 0.7;
}

/* Mobile Adjustments for Footer */
@media screen and (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-cta-card {
    padding: 3rem 1.5rem;
  }

  .cta-title {
    font-size: 2rem;
  }

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

@media screen and (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

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

/* Booking Page Styles */
.booking-page {
  min-height: 100vh;
  background: transparent;
}

.booking-header {
  background: linear-gradient(135deg, #38bdf8, #7dd3fc);
  color: white;
  padding: 5rem 2rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(31, 78, 120, 0.3);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
}

.booking-header h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

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

.booking-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 2rem 6rem;
  background: transparent;
  position: relative;
  z-index: 10;
}

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

/* Added plane icon logo styling for center of booking form */
.form-logo {
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #38bdf8, #7dd3fc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(31, 78, 120, 0.4);
  z-index: 10;
  border: 3px solid white;
}

.form-logo i {
  font-size: 1.5rem;
  color: white;
  transform: rotate(-45deg);
}

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

/* Carousel Slider Styles */
.carousel {
  height: 100vh;
  margin-top: 0;
  width: 100vw;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, rgba(6, 11, 20, 0.18), rgba(6, 11, 20, 0.12));
  scroll-snap-align: start;
}

.carousel .list .item {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0 0 0 0;
}

.carousel .list .item img {
  display: block;
  position: absolute;
  top: 21%;
  left: 10%;
  width: min(39vw, 552px);
  height: 44vh;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  opacity: 0;
  transform: translateX(-24px) scale(0.96);
  transition: opacity 0.45s ease, transform 0.45s ease;
  z-index: 120;
  pointer-events: none;
}

.carousel .list .item.is-active img {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.carousel .list .item .content {
  position: absolute;
  top: 22%;
  width: 620px;
  max-width: 42vw;
  left: 50%;
  right: auto;
  transform: none;
  padding-right: 0;
  box-sizing: border-box;
  color: #fff;
  text-align: left;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
  z-index: 200;
  /* Increased to stay above all transitions */
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  /* Added visibility for extra safety */
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.carousel .list .item.is-active .content {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.carousel .list .item .author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.carousel .list .item .author::before {
  content: "";
  width: 52px;
  height: 2px;
  background: var(--brand-navy-light);
  display: inline-block;
}

.carousel .list .item .title,
.carousel .list .item .topic {
  font-size: 4rem;
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: normal;
}

.carousel .list .item .topic {
  color: #7dd3fc;
  margin-top: 0.35rem;
}

.carousel .list .item .des {
  max-width: 56ch;
  margin: 1.15rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.carousel .list .item .buttons {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin-top: 24px;
}

.carousel .list .item .buttons a {
  text-decoration: none !important;
}

.carousel .list .item .buttons button,
.carousel .list .item .buttons .carousel-action {
  border: none;
  background: var(--brand-navy);
  border: 1px solid rgba(255, 255, 255, 0.18);
  letter-spacing: 0;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 999px;
  font-size: 1rem;
  color: #fff;
  box-shadow: 0 14px 35px rgba(31, 78, 120, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0.9rem 1.65rem;
  white-space: nowrap;
  text-decoration: none;
}

.carousel .list .item .buttons button i,
.carousel .list .item .buttons .carousel-action i {
  font-size: 1rem;
}

.carousel .list .item .buttons button:hover,
.carousel .list .item .buttons .carousel-action:hover {
  transform: translateY(-3px);
  background: var(--brand-navy-light);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 18px 42px rgba(31, 78, 120, 0.45);
}

/* Animation */
.carousel .list .item.is-active {
  z-index: 1;
}

/* animation text in active item */
.carousel .list .item.is-active .content .author,
.carousel .list .item.is-active .content .title,
.carousel .list .item.is-active .content .topic,
.carousel .list .item.is-active .content .des,
.carousel .list .item.is-active .content .buttons {
  transform: translateY(50px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent .5s 0.4s linear 1 forwards;
  /* Reduced from 1s */
}

@keyframes showContent {
  to {
    transform: translateY(0);
    filter: blur(0);
    opacity: 1;
  }
}

.carousel .list .item.is-active .content .title {
  animation-delay: 0.6s !important;
  /* Reduced from 1.2s */
}

.carousel .list .item.is-active .content .topic {
  animation-delay: 0.8s !important;
  /* Reduced from 1.4s */
}

.carousel .list .item.is-active .content .des {
  animation-delay: 1.0s !important;
  /* Reduced from 1.6s */
}

.carousel .list .item.is-active .content .buttons {
  animation-delay: 1.2s !important;
  /* Reduced from 1.8s */
}

/* time running */
.carousel .time {
  position: absolute;
  z-index: 1000;
  width: 0%;
  height: 3px;
  background-color: #38bdf8;
  left: 0;
  top: 0;
}

.carousel.is-running .time {
  animation: runningTime 7s linear 1 forwards;
}

@keyframes runningTime {
  from {
    width: 100%
  }

  to {
    width: 0
  }
}

/* Accommodation Section */
.accommodation-section {
  min-height: 100vh;
  padding: 8rem 2rem 4rem;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/new bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  position: relative;
}

.accommodation-section .container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

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

.section-header .section-title {
  justify-content: center;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

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

.accommodation-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px) saturate(160%);
  -webkit-backdrop-filter: blur(15px) saturate(160%);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}

.accommodation-card:hover {
  transform: translateY(-15px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

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

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

.accommodation-card:hover .card-image img {
  transform: scale(1.1);
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.35rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 5;
}

.card-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.unit-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.unit-description,
.lodge-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  line-height: 1.6;
  flex: 1;
}

.lodge-card:hover .image-track {
  animation: slideRotate 2.5s infinite ease-in-out;
}


/* Services Section */
.services-section {
  padding: 6rem 0;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(288px, 1fr));
  gap: 1.5rem;
  max-width: 1320px;
  margin: 0 auto;
}

.service-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px) saturate(160%);
  -webkit-backdrop-filter: blur(15px) saturate(160%);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.3);
}

.service-card .card-image {
  height: 216px;
  position: relative;
  overflow: hidden;
}

.image-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-track img {
  width: 100%;
  flex-shrink: 0;
  height: 100%;
  object-fit: cover;
}

.service-card:hover .image-track {
  animation: slideRotate 2.5s infinite ease-in-out;
}

@keyframes slideRotate {

  0%,
  15% {
    transform: translateX(0);
  }

  45%,
  60% {
    transform: translateX(-100%);
  }

  90%,
  100% {
    transform: translateX(0);
  }
}

.service-card .card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card-actions {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.25rem;
  width: 100%;
}

.featured-speedboat-card .service-card-actions .btn {
  flex: 1;
}

.featured-loading-state {
  grid-column: 1 / -1;
  padding: 3rem 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.service-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  flex: 1;
}

.unit-pricing {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-item {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.price-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
}

.accommodation-card .btn {
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  font-size: 1rem;
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .accommodation-grid {
    gap: 1.5rem;
  }

  .carousel .list .item img {
    top: 12%;
    left: 50%;
    width: min(94vw, 662px);
    height: 26vh;
    transform: translateX(-50%) translateY(-16px) scale(0.96);
  }

  .carousel .list .item.is-active img {
    transform: translateX(-50%) translateY(0) scale(1);
  }

  .carousel .list .item .content {
    top: 48%;
    width: 80%;
    max-width: 80%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    text-align: center;
  }

  .carousel .list .item .author::before {
    display: none;
  }

  .carousel .list .item .des {
    margin-left: auto;
    margin-right: auto;
  }

  .carousel .list .item .buttons {
    justify-content: center;
  }
}

@media screen and (max-width: 678px) {
  .carousel .list .item img {
    top: 12%;
    width: 96vw;
    height: 21vh;
  }

  .carousel .list .item .content {
    top: 42%;
    padding-right: 0;
  }

  .carousel .list .item .content .title,
  .carousel .list .item .content .topic {
    font-size: 30px;
  }

  .carousel .list .item .content .des {
    font-size: 0.95rem;
  }
}


/* Infinity Gallery Section */
.gallery-section {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: 30px 0;
}

.gallery-section .section-title {
  font-size: 1.5rem !important;
  margin-bottom: 1.5rem !important;
  color: white !important;
}

.infinity-gallery {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 1rem 0;
}

.gallery-track {
  display: flex;
  width: calc(150px * 24);
  /* 6 items * 4 for absolute infinity on ultra-wide screens */
  animation: scroll 40s linear infinite;
}

.gallery-track:hover {
  animation-play-state: paused;
}

.gallery-item {
  width: 150px;
  height: 200px;
  padding: 8px;
  flex-shrink: 0;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-150px * 6));
  }
}

/* Lightbox Modal */
.lightbox {
  background-color: rgba(0, 0, 0, 0.95);
  display: none !important;
  /* Managed by JS */
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex !important;
}

.lightbox-content {
  width: min(92vw, 1100px);
  aspect-ratio: 4 / 3;
  max-height: 85vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(7, 16, 26, 0.96);
  animation: zoomIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

/* Property Detail Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  overflow-y: auto;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-content {
  background: #fff;
  margin: 5% auto;
  width: min(760px, 90vw);
  height: 560px;
  max-width: 760px;
  max-height: 560px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close-modal {
  position: absolute;
  right: 25px;
  top: 25px;
  width: 40px;
  height: 40px;
  background: #f8fafc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #1e293b;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.close-modal:hover {
  background: #fff;
  transform: rotate(90deg);
}

.modal-split {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  height: 100%;
  min-height: 0;
}

.modal-gallery {
  position: relative;
  background: linear-gradient(160deg, #e2e8f0 0%, #cbd5e1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.modal-gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
}

.modal-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
}

.modal-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.modal-nav button:hover {
  background: #fff;
  transform: scale(1.1);
}

.modal-details {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
}

.brand-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand-logo-small {
  width: 50px;
  height: 50px;
}

.brand-logo-small img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#modalTitle {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 5px;
}

#modalLocation {
  color: #64748b;
  font-size: 0.9rem;
}

.modal-rating {
  background: #fff9db;
  padding: 8px 15px;
  border-radius: 50px;
  color: #f08c00;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.modal-section h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #1e293b;
}

.modal-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #475569;
  font-size: 0.88rem;
}

.modal-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-pricing {
  display: flex;
  gap: 18px;
}

.modal-price .price-label {
  font-size: 0.8rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-price .price-val {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1e293b;
}

.modal-price .price-val span {
  font-size: 0.9rem;
  font-weight: 400;
  color: #64748b;
}

@media (max-width: 968px) {
  .modal-split {
    grid-template-columns: 1fr;
  }

  .modal-gallery {
    height: 350px;
  }

  .modal-content {
    margin: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    border-radius: 0;
  }

  .modal-details {
    padding: 30px;
  }
}

/* Overhauled Contact Page Styles - Premium Glassmorphism */
.contact-container.single-layout {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  min-height: auto;
  padding: 6rem 2rem 2rem;
  background: transparent;
}

.contact-form-wrapper.centered-glass,
.contact-map-wrapper.centered-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2.5rem;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  z-index: 10;
  animation: formEntrance 1s cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes formEntrance {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.contact-form-wrapper::before,
.contact-map-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact-form-wrapper .section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-form-wrapper .section-header h2 {
  color: white;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
  background: none !important;
  /* Fix for weird blue background in image */
}

.contact-form-wrapper .section-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  background: none !important;
}

.contact-map-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-map-wrapper .section-header {
  text-align: left;
  margin-bottom: 0;
}

.contact-map-wrapper .section-header h2 {
  color: white;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.contact-map-wrapper .section-header p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.contact-map-frame {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  min-height: 420px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.location-showcase {
  max-width: 1420px;
  margin: 0 auto;
  padding: 1rem 2rem 6rem;
  position: relative;
  z-index: 10;
}

.location-showcase-header {
  text-align: center;
  color: white;
  margin-bottom: 2.25rem;
}

.location-showcase-header h2 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 0.75rem;
  text-shadow: 0 16px 35px rgba(0, 0, 0, 0.28);
}

.location-showcase-header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.88);
}

.location-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2rem;
  align-items: stretch;
}

.location-directions-card,
.location-map-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.location-directions-card {
  padding: 3rem 2.2rem;
  color: white;
}

.location-directions-card h3 {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.location-direction-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.location-direction-item + .location-direction-item {
  margin-top: 1.75rem;
}

.location-direction-item i {
  color: #ff9f2f;
  font-size: 1.3rem;
  width: 22px;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.location-direction-item p {
  font-size: 1.35rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.location-map-card {
  padding: 0.75rem;
}

.location-map-card .contact-map-frame {
  min-height: 405px;
  height: 100%;
  border-radius: 22px;
  border-color: rgba(255, 255, 255, 0.2);
}

.location-map-card .contact-map-frame iframe {
  min-height: 405px;
}

.contact-map-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
}

.contact-map-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.contact-map-meta i {
  color: var(--brand-navy-light);
}

.contact-map-meta a {
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.contact-form .form-group {
  margin-bottom: 1.25rem;
}

.contact-form .form-group label {
  color: white;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: none !important;
}

.contact-form .form-input,
.contact-form .form-select,
.contact-form .form-textarea {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px;
  padding: 0.85rem;
  color: white !important;
  width: 100%;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(5px);
}

.contact-form .form-input:focus,
.contact-form .form-select:focus,
.contact-form .form-textarea:focus {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  outline: none;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.contact-form .btn-primary {
  margin-top: 0.5rem;
  height: 50px;
  width: 100%;
  font-size: 1rem;
  border-radius: 50px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #38bdf8, #7dd3fc) !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-form .btn-primary:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 50px rgba(31, 78, 120, 0.5);
  background: linear-gradient(135deg, #7dd3fc, #38bdf8) !important;
}

@media (max-width: 768px) {
  .contact-container.single-layout {
    padding: 4rem 1rem;
  }

  .contact-form-wrapper.centered-glass {
    padding: 3rem 1.5rem;
    border-radius: 30px;
  }

  .contact-form-wrapper .section-header h2 {
    font-size: 2.5rem;
  }

  .contact-map-wrapper .section-header {
    text-align: center;
  }

  .contact-map-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .location-showcase {
    padding: 1rem 1rem 4rem;
  }

  .location-showcase-grid {
    grid-template-columns: 1fr;
  }

  .location-showcase-header h2 {
    font-size: 2.3rem;
  }

  .location-showcase-header p {
    font-size: 1rem;
  }

  .location-directions-card {
    padding: 2rem 1.5rem;
  }

  .location-directions-card h3 {
    font-size: 1.7rem;
  }

  .location-direction-item p {
    font-size: 1.05rem;
  }

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

/* About Us Section */
.about-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.15), rgba(56, 189, 248, 0.175));
  pointer-events: none;
  z-index: 0;
}

.about-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45, 106, 159, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.about-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-section .section-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -2px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  justify-content: center;
}

.about-section .section-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.about-text-block {
  display: flex;
}

.about-card {
  flex: 1;
  padding: 1.8rem 2rem;
  border-radius: var(--border-radius-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(31, 78, 120, 0.05), transparent);
  transition: 0.6s;
}

.about-card:hover::before {
  left: 100%;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(31, 78, 120, 0.2);
  border-color: rgba(31, 78, 120, 0.3);
}

.about-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.about-icon::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: 0.6s;
}

.about-card:hover .about-icon::before {
  transform: rotate(45deg) translate(50%, 50%);
}

.about-card:hover .about-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.about-icon i {
  font-size: 2rem;
  color: white;
}

.about-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.about-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  opacity: 1;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.feature-item {
  text-align: center;
  padding: 0.75rem;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: transparent;
  transform: none;
}

.feature-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.25rem;
  letter-spacing: -1px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.feature-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
  .about-section {
    padding: 4rem 0;
  }

  .about-section .section-title {
    font-size: 2.5rem;
  }

  .about-section .section-subtitle {
    font-size: 1rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-card {
    padding: 2rem;
  }

  .about-features {
    grid-template-columns: repeat(2, 1fr);
    padding: 1rem;
    gap: 1rem;
  }

  .feature-number {
    font-size: 1.5rem;
  }

  .feature-label {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .about-features {
    grid-template-columns: 1fr;
  }
}

/* Blog Page Styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
  padding: 2rem 0;
  max-width: 1400px;
  margin: 0 auto;
}

.blog-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

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

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.blog-category {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #38bdf8, #7dd3fc);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.blog-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-meta i {
  font-size: 0.9rem;
}

.blog-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.blog-excerpt {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-read-more:hover {
  gap: 0.75rem;
  color: #7dd3fc;
}

.blog-read-more i {
  transition: transform 0.3s ease;
}

.blog-read-more:hover i {
  transform: translateX(5px);
}

/* Articles Section */
.articles-section {
  padding: 6rem 0;
  position: relative;
  background: transparent;
}

.articles-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(31, 78, 120, 0.4));
  pointer-events: none;
  z-index: 0;
}

.articles-section .container {
  position: relative;
  z-index: 1;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.article-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.article-image {
  position: relative;
  height: 110px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-card:hover .article-image img {
  transform: scale(1.1);
}

.article-category {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  font-size: 0.55rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.article-category.destinations {
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
}

.article-category.travel-tips {
  background: linear-gradient(135deg, #FFA500, #FFD700);
}

.article-category.stories {
  background: linear-gradient(135deg, #4ECDC4, #44A08D);
}

.article-category.activities {
  background: linear-gradient(135deg, #FF69B4, #DA70D6);
}

.article-category.wildlife {
  background: linear-gradient(135deg, #32CD32, #228B22);
}

.article-date {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  color: #38bdf8;
  padding: 0.3rem 0.6rem;
  border-radius: 50px;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.article-date i {
  font-size: 0.8rem;
}

.article-content {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
}

.article-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  letter-spacing: -0.2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.article-meta {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
}

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

.article-meta i {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.article-excerpt {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  flex: 1;
}

.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.article-views {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 600;
}

.article-views i {
  color: rgba(255, 255, 255, 0.7);
}

.article-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #38bdf8, #7dd3fc);
  color: white;
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(31, 78, 120, 0.3);
}

.article-read-more:hover {
  background: linear-gradient(135deg, #7dd3fc, #38bdf8);
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(31, 78, 120, 0.4);
}

/* Articles Responsive */
@media (max-width: 968px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .articles-section {
    padding: 4rem 0;
  }

  .articles-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .article-image {
    height: 200px;
  }

  .article-content {
    padding: 1.5rem;
  }

  .article-title {
    font-size: 1.2rem;
  }

  .article-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Blog Responsive */
@media (max-width: 968px) {
  .blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
  }
}

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

  .blog-image {
    height: 200px;
  }

  .blog-content {
    padding: 1.5rem;
  }

  .blog-title {
    font-size: 1.3rem;
  }
}

/* Search and Filter Styles */
.search-filter-container {
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
}

.search-bar-wrapper {
  margin-bottom: 1.5rem;
}

.search-input-field {
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.search-input-field:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.filter-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.filter-btn.active {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  border-color: #f39c12;
  color: white;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.filter-btn.active:hover {
  background: linear-gradient(135deg, #e67e22, #d35400);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.5);
}

@media (max-width: 768px) {
  .search-filter-container {
    padding: 0 1rem;
  }

  .filter-buttons {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
}

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

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Delay staggered children if needed */
.stagger-children>*:nth-child(1) {
  transition-delay: 0.1s;
}

.stagger-children>*:nth-child(2) {
  transition-delay: 0.2s;
}

.stagger-children>*:nth-child(3) {
  transition-delay: 0.3s;
}

.stagger-children>*:nth-child(4) {
  transition-delay: 0.4s;
}

.stagger-children>*:nth-child(5) {
  transition-delay: 0.5s;
}

.stagger-children>*:nth-child(6) {
  transition-delay: 0.6s;
}

/* Article Modal Styles */
.article-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 2000;
  padding: 2rem;
  overflow-y: auto;
  align-items: flex-start;
  justify-content: center;
}

.article-modal.active {
  display: flex;
  animation: fadeIn 0.4s ease;
}

.article-modal-content {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-lg);
  max-width: 900px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  margin: auto;
  overflow: hidden;
}

.close-article-modal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.close-article-modal:hover {
  background: #ef4444;
  border-color: #ef4444;
  transform: rotate(90deg);
}

.article-header {
  height: 400px;
  position: relative;
  width: 100%;
}

.article-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-header-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem;
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.9));
  color: white;
}

.article-header-overlay h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 1rem 0;
  line-height: 1.2;
}

.article-body {
  padding: 3rem;
  background: rgba(30, 41, 59, 0.5);
}

.article-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  white-space: pre-wrap;
}

@media (max-width: 768px) {
  .article-modal {
    padding: 0;
  }

  .article-modal-content {
    border-radius: 0;
    min-height: 100vh;
  }

  .article-header {
    height: 300px;
  }

  .article-header-overlay {
    padding: 1.5rem;
  }

  .article-header-overlay h2 {
    font-size: 1.8rem;
  }

  .article-body {
    padding: 1.5rem;
  }
}

/* Booking Split Layout */
.booking-page .navbar {
  background: rgba(0, 0, 0, 0.1) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.booking-main {
  padding-top: 60px;
  min-height: 100vh;
  background: transparent !important;
}

.booking-header {
  padding: 3rem 1.5rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  background: transparent;
}

.booking-header h1 {
  font-size: 2.5rem;
  color: var(--brand-navy);
  margin-bottom: 0.5rem;
}

.booking-form-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  align-items: start;
}

@media (max-width: 992px) {
  .booking-form-layout {
    grid-template-columns: 1fr;
  }
}

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

.booking-section-card {
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.34), rgba(14, 165, 233, 0.22));
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border-radius: var(--border-radius-md);
  box-shadow: 0 28px 70px rgba(14, 165, 233, 0.18);
  padding: 3rem;
  border: 1px solid rgba(125, 211, 252, 0.28);
  color: white;
}

.booking-section-card h2,
.booking-section-card label,
.booking-section-card .text-muted,
.booking-section-card .section-title {
  color: white !important;
  text-shadow: 0 2px 8px rgba(8, 47, 73, 0.22);
}

.booking-section-card .form-input,
.booking-section-card .form-textarea {
  background: rgba(255, 255, 255, 0.16) !important;
  border: 1px solid rgba(125, 211, 252, 0.24) !important;
  color: white !important;
  padding: 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.booking-section-card .form-input::placeholder,
.booking-section-card .form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.booking-section-card select.form-input option {
  color: #000;
  background: white;
}

.booking-section-card .form-input:focus,
.booking-section-card .form-textarea:focus {
  background: rgba(255, 255, 255, 0.22) !important;
  border-color: rgba(255, 255, 255, 0.72) !important;
  box-shadow: 0 0 0 4px rgba(125, 211, 252, 0.16);
}

.booking-section-card .section-title {
  font-size: 1.5rem;
  color: var(--brand-navy);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.booking-section-card .section-title i {
  color: var(--brand-navy-light);
}

/* Multi-select Styles */
.selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.selection-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(125, 211, 252, 0.18);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.selection-item:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-5px);
}

.selection-item.selected {
  border-color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.28), rgba(56, 189, 248, 0.2));
  box-shadow: 0 18px 40px rgba(14, 165, 233, 0.22);
}

.selection-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.selection-info {
  flex: 1;
}

.selection-name {
  font-weight: 600;
  display: block;
  color: white;
}

.selection-price {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Summary Card (Quote Style) */
.booking-summary {
  position: sticky;
  top: 120px;
}

.summary-card {
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.38), rgba(14, 165, 233, 0.24));
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-radius: var(--border-radius-md);
  box-shadow: 0 36px 90px rgba(8, 47, 73, 0.28);
  border: 1px solid rgba(125, 211, 252, 0.28);
  border-top: 5px solid rgba(255, 255, 255, 0.72);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  color: white;
}

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

.summary-header h2 {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 8px rgba(8, 47, 73, 0.22);
}

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

.summary-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-height: 100px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 1rem;
}

.item-name {
  font-weight: 600;
  color: white;
}

.item-subtext {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.76);
}

.item-price {
  font-weight: 700;
  color: white;
}

.summary-divider {
  border-top: 1px dashed rgba(255, 255, 255, 0.24);
  margin: 1rem 0;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
}

.total-label {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
}

.total-amount {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  text-shadow: 0 4px 18px rgba(8, 47, 73, 0.25);
}

.empty-summary {
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  padding: 2rem 0;
  font-style: italic;
}

.booking-actions {
  margin-top: 1rem;
}

.booking-footer {
  position: relative;
  z-index: 10;
  margin-top: 2rem;
  background: transparent;
  border-top: 0;
}

.booking-footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 2rem;
}

.booking-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.8rem;
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.26), rgba(14, 165, 233, 0.18));
  border: 1px solid rgba(125, 211, 252, 0.24);
  box-shadow: 0 24px 55px rgba(8, 47, 73, 0.18);
}

.booking-footer-bottom p {
  color: rgba(255, 255, 255, 0.9);
}

.booking-footer-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.booking-footer-socials a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: white;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.booking-footer-socials a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 30px rgba(8, 47, 73, 0.2);
}

@media (max-width: 768px) {
  .booking-section-card,
  .summary-card {
    padding: 2rem 1.5rem;
  }

  .booking-form-layout {
    padding: 0 1rem 2.5rem;
    gap: 1.5rem;
  }

  .booking-footer-container {
    padding: 0 1rem 1.5rem;
  }

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

/* Loader */
.loader-container {
  display: flex;
  justify-content: center;
  padding: 3rem;
  grid-column: 1 / -1;
}

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid #e2e8f0;
  border-bottom-color: var(--brand-navy);
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }

}

/* Video Modal Specific Styles */
.video-modal .video-modal-container {
  width: 90%;
  max-width: 1000px;
  margin: 5% auto;
  position: relative;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  animation: slideUp 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-modal .close-video-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 35px;
  color: white;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  line-height: 1;
}

.video-modal .close-video-modal:hover {
  transform: rotate(90deg) scale(1.1);
  color: var(--brand-gold);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .video-modal .video-modal-container {
    width: 95%;
    margin: 20% auto;
  }
}

/* Homepage mobile experience */
@media (max-width: 992px) {
  .home-page .navbar {
    min-height: 68px;
    padding: max(0.625rem, env(safe-area-inset-top)) 1rem 0.625rem;
    background: rgba(5, 14, 23, 0.82);
    border-bottom-color: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
  }

  .home-page .nav-logo {
    gap: 0.625rem;
  }

  .home-page .logo-img {
    width: 38px;
    height: 38px;
  }

  .home-page .logo-text {
    font-size: 1.05rem;
  }

  .home-page .mobile-menu-btn {
    width: 48px;
    height: 48px;
    padding: 12px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    touch-action: manipulation;
  }

  .home-page .mobile-menu-btn:focus-visible {
    outline: 3px solid var(--brand-navy-light);
    outline-offset: 3px;
  }

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

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

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

  .home-page .mobile-menu {
    top: 100%;
    padding: 0.75rem 1rem max(1.25rem, env(safe-area-inset-bottom));
    gap: 0.25rem;
    align-items: stretch;
    background: rgba(5, 14, 23, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  }

  .home-page .mobile-menu.active {
    display: flex;
    animation: mobileMenuIn 0.22s ease-out both;
  }

  .home-page .mobile-nav-link {
    min-height: 48px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    border: 0;
    border-radius: 0.75rem;
    text-align: left;
    font-size: 1rem;
  }

  .home-page .mobile-nav-link.active {
    background: rgba(56, 189, 248, 0.16);
    color: #ffffff;
  }

  .home-page .mobile-book-btn {
    min-height: 50px;
    margin-top: 0.5rem;
  }
}

@keyframes mobileMenuIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .home-page .sidebar {
    display: none;
  }

  .home-page .hero-background {
    height: 100svh;
  }

  .home-page .bg-image {
    object-position: 58% center;
  }

  .home-page .bg-overlay {
    background:
      linear-gradient(180deg, rgba(3, 10, 17, 0.35) 0%, rgba(3, 10, 17, 0.18) 38%, rgba(3, 10, 17, 0.72) 100%),
      linear-gradient(90deg, rgba(3, 10, 17, 0.2), transparent 70%);
  }

  .home-page .hero-container {
    min-height: 100svh;
    padding: calc(88px + env(safe-area-inset-top)) 1rem 3rem;
    align-items: flex-end;
  }

  .home-page .hero-content {
    gap: 1.75rem;
    text-align: left;
    align-items: stretch;
  }

  .home-page .hero-copy {
    margin: 0;
  }

  .home-page .hero-title {
    max-width: 8ch;
    font-size: clamp(3.25rem, 17vw, 4.75rem);
    line-height: 0.88;
    letter-spacing: -0.045em;
    text-wrap: balance;
  }

  .home-page .hero-title-accent {
    max-width: 27ch;
    margin-top: 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
  }

  .home-page .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
  }

  .home-page .hero-cta-primary {
    width: 100%;
    min-height: 54px;
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
  }

  .home-page .btn-video {
    width: 54px;
    min-width: 54px;
    min-height: 54px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(5, 14, 23, 0.38);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    touch-action: manipulation;
  }

  .home-page .btn-video-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .home-page .play-icon {
    width: 42px;
    height: 42px;
  }

  .home-page .carousel {
    width: 100%;
    height: clamp(610px, 82svh, 720px);
    min-height: 0;
    background: linear-gradient(180deg, rgba(5, 14, 23, 0.72), rgba(5, 14, 23, 0.94));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .home-page .carousel .list .item img {
    top: 1rem;
    left: 1rem;
    width: calc(100% - 2rem);
    height: 42%;
    border-radius: 1.5rem;
    transform: translateY(-12px) scale(0.98);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.38);
  }

  .home-page .carousel .list .item.is-active img {
    transform: translateY(0) scale(1);
  }

  .home-page .carousel .list .item .content {
    top: 48%;
    left: 1.25rem;
    width: calc(100% - 2.5rem);
    max-width: none;
    transform: none;
    text-align: left;
  }

  .home-page .carousel .list .item .author {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
  }

  .home-page .carousel .list .item .author::before {
    display: inline-block;
    width: 32px;
  }

  .home-page .carousel .list .item .content .title {
    margin-top: 0.75rem;
    font-size: clamp(2.25rem, 11vw, 3.1rem);
    line-height: 0.95;
  }

  .home-page .carousel .list .item .content .topic {
    margin-top: 0.5rem;
    font-size: clamp(1.25rem, 6vw, 1.7rem);
    line-height: 1.05;
  }

  .home-page .carousel .list .item .buttons {
    justify-content: flex-start;
    margin-top: 1.5rem;
  }

  .home-page .carousel .list .item .buttons button,
  .home-page .carousel .list .item .buttons .carousel-action {
    min-height: 48px;
    padding: 0.8rem 1.25rem;
    font-size: 0.9rem;
    touch-action: manipulation;
  }

  .home-page .services-section,
  .home-page .about-section {
    padding: 4.5rem 0;
  }

  .home-page .services-section .container,
  .home-page .about-section .container {
    padding-inline: 1rem;
  }

  .home-page .section-header,
  .home-page .about-section .section-header {
    margin-bottom: 2.25rem;
    text-align: left;
  }

  .home-page .section-header .section-title,
  .home-page .about-section .section-title {
    justify-content: flex-start;
    font-size: clamp(2rem, 10vw, 2.75rem);
    line-height: 1;
    letter-spacing: -0.035em;
  }

  .home-page .section-subtitle,
  .home-page .about-section .section-subtitle {
    margin: 0;
    max-width: 36ch;
    font-size: 1rem;
    line-height: 1.6;
  }

  .home-page .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .home-page .service-card {
    border-radius: 1.5rem;
    text-align: left;
  }

  .home-page .service-card:active {
    transform: scale(0.985);
  }

  .home-page .service-card .card-image {
    height: 210px;
  }

  .home-page .service-card .card-content {
    padding: 1.25rem;
    align-items: stretch;
  }

  .home-page .service-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  .home-page .service-description {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.6;
  }

  .home-page .service-card-actions {
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .home-page .service-card-actions .btn {
    min-height: 48px;
    padding: 0.75rem 0.875rem;
    font-size: 0.85rem;
    touch-action: manipulation;
  }

  .home-page .about-content {
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .home-page .about-card {
    padding: 1.5rem;
    text-align: left;
  }

  .home-page .about-icon {
    width: 52px;
    height: 52px;
    margin: 0 0 1rem;
  }

  .home-page .about-icon i {
    font-size: 1.4rem;
  }

  .home-page .about-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  .home-page .about-card p {
    line-height: 1.65;
  }

  .home-page .about-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    padding: 0;
  }

  .home-page .feature-item {
    min-height: 112px;
    padding: 1rem 0.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .home-page .feature-number {
    font-size: 1.75rem;
  }

  .home-page .feature-label {
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .home-page .main-footer {
    margin-top: 0;
  }

  .home-page .footer-container {
    padding: 4rem 1rem max(2rem, env(safe-area-inset-bottom));
  }

  .home-page .footer-cta-container {
    margin-bottom: 3rem;
  }

  .home-page .footer-cta-card {
    padding: 2rem 1.25rem;
    border-radius: 1.5rem;
    text-align: left;
  }

  .home-page .cta-title {
    justify-content: flex-start;
    font-size: 2rem;
    line-height: 1.1;
  }

  .home-page .cta-text {
    margin-bottom: 0;
    font-size: 1rem;
  }

  .home-page .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .home-page .footer-column h3 {
    margin-bottom: 0.875rem;
  }

  .home-page .footer-column ul li a,
  .home-page .footer-column p {
    font-size: 1rem;
  }

  .home-page .footer-column ul li a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  .home-page .footer-bottom {
    align-items: flex-start;
    text-align: left;
  }

  .home-page .social-icons a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 380px) {
  .home-page .hero-title {
    font-size: 3rem;
  }

  .home-page .service-card-actions {
    flex-direction: column;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .home-page .hero-container {
    min-height: 680px;
  }

  .home-page .carousel {
    height: 680px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page *,
  .home-page *::before,
  .home-page *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Shared responsive system for public inner pages */
.flights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.flight-card {
  overflow: hidden;
  border-radius: 1.5rem;
  background: rgba(240, 250, 255, 0.96);
  border: 1px solid rgba(125, 211, 252, 0.32);
  box-shadow: 0 18px 44px rgba(8, 47, 73, 0.2);
  color: #16324a;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.flight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(8, 47, 73, 0.28);
}

.flight-header {
  padding: 1.5rem;
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
  color: #ffffff;
}

.flight-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 800;
}

.flight-arrow {
  color: rgba(255, 255, 255, 0.78);
}

.flight-time {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
}

.flight-details {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
}

.flight-details .detail-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(14, 165, 233, 0.12);
}

.flight-details .detail-label {
  color: #526b7e;
}

.flight-details .detail-value {
  font-weight: 700;
  text-align: right;
}

.flight-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.5rem 0.5rem;
}

.flight-price .price-text {
  color: #526b7e;
}

.flight-price .price-value {
  color: #0369a1;
  font-size: 1.5rem;
  font-variant-numeric: tabular-nums;
}

.flight-card .btn-outline {
  color: #0369a1;
  background: rgba(14, 165, 233, 0.08);
  border-color: rgba(14, 165, 233, 0.24);
}

.site-page > .footer {
  padding: 4rem max(1.5rem, calc((100% - 1200px) / 2)) 2rem;
  color: #ffffff;
  background: rgba(3, 10, 17, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-page > .footer > .footer-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  margin: 0;
}

.site-page > .footer .footer-section h3 {
  margin-bottom: 1rem;
}

.site-page > .footer .footer-section p,
.site-page > .footer .footer-links a,
.site-page > .footer .contact-item {
  color: rgba(255, 255, 255, 0.78);
}

.site-page > .footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-page > .footer .footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-page > .footer .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.site-page > .footer .footer-logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

@media (max-width: 992px) {
  .site-page .navbar {
    min-height: 68px;
    padding: max(0.625rem, env(safe-area-inset-top)) 1rem 0.625rem;
    background: rgba(5, 14, 23, 0.9) !important;
    border-bottom-color: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
  }

  .site-page .nav-logo {
    gap: 0.625rem;
  }

  .site-page .logo-img {
    width: 38px;
    height: 38px;
  }

  .site-page .logo-text {
    font-size: 1.05rem;
  }

  .site-page .mobile-menu-btn {
    width: 48px;
    height: 48px;
    padding: 12px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    touch-action: manipulation;
  }

  .site-page .mobile-menu-btn:focus-visible {
    outline: 3px solid var(--brand-navy-light);
    outline-offset: 3px;
  }

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

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

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

  .site-page .mobile-menu {
    top: 100%;
    padding: 0.75rem 1rem max(1.25rem, env(safe-area-inset-bottom));
    gap: 0.25rem;
    align-items: stretch;
    background: rgba(5, 14, 23, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  }

  .site-page .mobile-menu.active {
    display: flex;
    animation: mobileMenuIn 0.22s ease-out both;
  }

  .site-page .mobile-nav-link {
    min-height: 48px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    border: 0;
    border-radius: 0.75rem;
    text-align: left;
    font-size: 1rem;
  }

  .site-page .mobile-nav-link.active {
    background: rgba(56, 189, 248, 0.16);
  }

  .site-page .mobile-book-btn {
    min-height: 50px;
    margin-top: 0.5rem;
  }
}

@media (max-width: 768px) {
  .site-page {
    background: #07121c;
  }

  .site-page .sidebar {
    display: none;
  }

  .site-page .hero-background {
    height: 100svh;
  }

  .site-page .bg-overlay {
    background: linear-gradient(180deg, rgba(3, 10, 17, 0.35), rgba(3, 10, 17, 0.74));
  }

  .site-page .lodges-hero,
  .site-page .contact-hero {
    height: 270px;
    margin-top: 68px;
    padding: 2rem 0 1.5rem;
    background:
      radial-gradient(circle at 85% 10%, rgba(56, 189, 248, 0.22), transparent 42%),
      linear-gradient(180deg, rgba(5, 14, 23, 0.22), rgba(5, 14, 23, 0.58));
  }

  .site-page .hero-content-center {
    width: 100%;
    padding: 0 1rem;
    text-align: left;
    align-self: flex-end;
  }

  .site-page .page-title {
    max-width: 12ch;
    margin-bottom: 0.75rem;
    font-size: clamp(2.5rem, 12vw, 3.6rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    text-wrap: balance;
  }

  .site-page .page-subtitle {
    max-width: 34ch;
    margin: 0;
    font-size: 1rem;
    line-height: 1.55;
  }

  .site-page .main-content {
    width: 100%;
    padding: 2rem 1rem 3.5rem;
  }

  .site-page .lodges-grid,
  .site-page .flights-grid,
  .site-page .blog-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
    width: 100%;
    margin-bottom: 1rem;
    padding: 0;
  }

  .site-page .lodge-card,
  .site-page .blog-card,
  .site-page .flight-card {
    min-width: 0;
    border-radius: 1.5rem;
  }

  .site-page .lodge-card:active,
  .site-page .blog-card:active,
  .site-page .flight-card:active {
    transform: scale(0.985);
  }

  .site-page .lodge-image,
  .site-page .accommodation-page .lodge-image,
  .site-page.fleet-page .lodge-image {
    aspect-ratio: 1.4 / 1;
  }

  .site-page .lodge-content,
  .site-page .blog-content {
    padding: 1.25rem;
  }

  .site-page .lodge-name,
  .site-page .blog-title {
    font-size: 1.3rem;
  }

  .site-page .lodge-summary,
  .site-page .activity-summary,
  .site-page .transfer-summary,
  .site-page .blog-excerpt {
    font-size: 1rem;
    line-height: 1.6;
  }

  .site-page.accommodation-page .lodge-header-row,
  .site-page.accommodation-page .lodge-footer-row,
  .site-page.activities-page .activity-header-row,
  .site-page.activities-page .activity-footer-row,
  .site-page.transfers-page .transfer-header-row,
  .site-page.transfers-page .transfer-footer-row,
  .site-page.blog-page .blog-header-row,
  .site-page.blog-page .blog-footer-row {
    flex-direction: row;
    align-items: flex-start;
  }

  .site-page .lodge-footer .btn,
  .site-page .activity-footer-row .btn,
  .site-page .transfer-footer-row .btn,
  .site-page .blog-footer-row .btn,
  .site-page .flight-card .btn {
    min-height: 48px;
    padding: 0.75rem 1rem;
    touch-action: manipulation;
  }

  .site-page .search-filter-container {
    margin-bottom: 2rem;
    padding: 0;
  }

  .site-page .search-input-field {
    min-height: 52px;
    padding: 0.875rem 1.1rem;
    font-size: 1rem;
  }

  .site-page .filter-buttons {
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .site-page .filter-btn {
    min-height: 44px;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    touch-action: manipulation;
  }

  .site-page .modal {
    padding-top: 4vh;
  }

  .site-page .modal-content {
    width: calc(100% - 1rem);
    height: min(560px, 92dvh);
    max-height: 96dvh;
    max-width: 760px;
    margin: 0 auto;
    border-radius: 1.5rem;
    overflow: hidden;
  }

  .site-page .modal-split {
    min-height: 0;
  }

  .site-page .modal-gallery {
    height: 260px;
    min-height: 260px;
  }

  .site-page .close-modal {
    top: 0.75rem;
    right: 0.75rem;
    width: 48px;
    height: 48px;
  }

  .site-page .modal-details {
    padding: 1.5rem 1.25rem max(1.5rem, env(safe-area-inset-bottom));
    gap: 1.5rem;
  }

  .site-page #modalTitle {
    font-size: 1.45rem;
  }

  .site-page .modal-amenities {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .site-page .modal-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    padding-top: 1.25rem;
  }

  .site-page .modal-pricing {
    justify-content: space-between;
    gap: 1rem;
  }

  .site-page .modal-actions .btn {
    width: 100%;
    min-height: 50px;
  }

  .site-page .main-footer {
    margin-top: 0;
  }

  .site-page .footer-container {
    padding: 3.5rem 1rem max(2rem, env(safe-area-inset-bottom));
  }

  .site-page .footer-cta-container {
    margin-bottom: 3rem;
  }

  .site-page .footer-cta-card {
    padding: 2rem 1.25rem;
    border-radius: 1.5rem;
    text-align: left;
  }

  .site-page .cta-title {
    justify-content: flex-start;
    font-size: 2rem;
  }

  .site-page .cta-title::after {
    display: none;
  }

  .site-page .cta-text {
    margin-bottom: 0;
    font-size: 1rem;
  }

  .site-page .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .site-page .footer-column ul li a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .site-page .footer-bottom {
    align-items: flex-start;
    text-align: left;
  }

  .site-page .social-icons a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
  }

  .site-page > .footer {
    padding: 3rem 1rem max(2rem, env(safe-area-inset-bottom));
  }

  .site-page > .footer > .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site-page > .footer > .footer-bottom {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .contact-page .main-content {
    padding: 0 1rem 3.5rem;
  }

  .contact-page .contact-container.single-layout {
    padding: 2rem 0 0;
  }

  .contact-page .contact-form-wrapper.centered-glass,
  .contact-page .contact-map-wrapper.centered-glass {
    padding: 1.5rem 1.25rem;
    border-radius: 1.5rem;
  }

  .contact-page .contact-form-wrapper .section-header {
    margin-bottom: 2rem;
    text-align: left;
  }

  .contact-page .contact-form-wrapper .section-header h2 {
    font-size: 2rem;
    line-height: 1.1;
  }

  .contact-page .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-page .contact-form .form-input,
  .contact-page .contact-form .form-select,
  .contact-page .contact-form .form-textarea {
    min-height: 52px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
  }

  .contact-page .contact-form .form-textarea {
    min-height: 140px;
  }

  .contact-page .contact-form .btn-primary {
    min-height: 52px;
  }

  .contact-page .location-showcase {
    padding: 1rem 1rem 3.5rem;
  }

  .contact-page .location-showcase-header h2 {
    font-size: 2rem;
  }

  .blog-page .article-modal-content {
    width: calc(100% - 1rem);
    max-height: 94dvh;
    margin: 3vh auto 0;
    border-radius: 1.5rem 1.5rem 0 0;
  }

  .blog-page .close-article-modal {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .blog-page .article-header {
    height: 260px;
  }

  .blog-page .article-header-overlay h2 {
    font-size: 1.6rem;
  }

  .blog-page .article-body {
    padding: 1.5rem 1.25rem max(1.5rem, env(safe-area-inset-bottom));
  }

  .booking-page .booking-main {
    min-height: 0;
    padding: 1.5rem 0 3rem;
  }

  .booking-page .booking-form-layout {
    padding: 0 1rem;
    gap: 1.25rem;
  }

  .booking-page .form-sections {
    gap: 1rem;
  }

  .booking-page .booking-section-card,
  .booking-page .summary-card {
    padding: 1.5rem 1.25rem;
    border-radius: 1.5rem;
  }

  .booking-page .booking-section-card .section-title {
    font-size: 1.25rem;
    line-height: 1.25;
  }

  .booking-page .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .booking-page .booking-section-card label {
    font-size: 1rem !important;
    line-height: 1.35;
  }

  .booking-page .booking-section-card .form-input,
  .booking-page .booking-section-card .form-textarea {
    min-height: 52px;
    font-size: 1rem;
  }

  .booking-page .booking-section-card .form-textarea {
    min-height: 130px;
  }

  .booking-page .selection-grid {
    grid-template-columns: 1fr;
  }

  .booking-page .selection-item {
    min-height: 56px;
    padding: 1rem;
  }

  .booking-page .booking-summary {
    position: static;
  }

  .booking-page .summary-card {
    gap: 1.25rem;
  }

  .booking-page .summary-total {
    align-items: flex-end;
  }

  .booking-page .total-amount {
    font-size: 1.65rem;
  }

  .booking-page .booking-actions .btn {
    min-height: 54px;
    white-space: normal;
  }

  .booking-page .booking-footer-container {
    padding: 0 1rem max(1.5rem, env(safe-area-inset-bottom));
  }

  .booking-page .booking-footer-bottom {
    align-items: flex-start;
    text-align: left;
    padding: 1.25rem;
  }
}

@media (max-width: 380px) {
  .site-page.accommodation-page .lodge-header-row,
  .site-page.accommodation-page .lodge-footer-row,
  .site-page.activities-page .activity-header-row,
  .site-page.activities-page .activity-footer-row,
  .site-page.transfers-page .transfer-header-row,
  .site-page.transfers-page .transfer-footer-row,
  .site-page.blog-page .blog-header-row,
  .site-page.blog-page .blog-footer-row {
    flex-direction: column;
    align-items: stretch;
  }

  .site-page .lodge-footer .btn,
  .site-page .activity-footer-row .btn,
  .site-page .transfer-footer-row .btn,
  .site-page .blog-footer-row .btn {
    width: 100%;
  }

  .site-page .flight-route {
    font-size: 1.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-page *,
  .site-page *::before,
  .site-page *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
