:root {
  /* Brand Colors */
  --brand-navy: #1f4e78;
  --brand-navy-light: #2d6a9f;
  --brand-navy-dark: #163a5a;
  --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;

  /* WhatsApp Color */
  --whatsapp-green: #25d366;

  /* Missing Brand Colors for Reviews */
  --brand-primary: var(--brand-navy);
}

/* 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: var(--bg-primary);
  min-height: 100vh;
}

/* Sidebar Social Links */
.sidebar {
  position: fixed;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 1000;
}

.social-link {
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.25rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 30px;
  width: 45px;
  height: 45px;
  z-index: 1;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(0px);
  border: 1px solid rgba(255, 255, 255, 0);
}

.social-link:hover {
  width: 155px;
  /* Formal expansion width */
  color: white;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Professional brand accents on hover */
.social-link.facebook:hover {
  border-color: rgba(59, 89, 152, 0.6);
}

.social-link.instagram:hover {
  border-color: rgba(225, 48, 108, 0.6);
}

.social-link.tiktok:hover {
  border-color: rgba(254, 44, 85, 0.6);
}

.social-name {
  position: absolute;
  left: 50px;
  opacity: 0;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  transform: translateX(-15px);
  transition: all 0.4s ease;
  pointer-events: none;
  white-space: nowrap;
  text-transform: uppercase;
}

.social-link:hover .social-name {
  opacity: 1;
  transform: translateX(0);
}

/* Dynamic Sidebar Brand Mode */
.sidebar.sidebar-brand-mode .social-link {
  background: rgba(31, 78, 120, 0.15);
  color: #1f4e78;
  border: 1px solid rgba(31, 78, 120, 0.2);
}

.sidebar.sidebar-brand-mode .social-link:hover {
  background: #1f4e78;
  color: white;
  border-color: #1f4e78;
}

.sidebar.sidebar-brand-mode .social-link .social-name {
  color: #1f4e78;
}

.sidebar.sidebar-brand-mode .social-link:hover .social-name {
  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);
}



.mobile-menu-btn {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1200;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hamburger {
  width: 28px;
  height: 2.5px;
  background: white;
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.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-menu.active {
  display: flex;
}

/* Hamburger menu animation when active */
.mobile-menu-btn.active .hamburger:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

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

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

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

/* Navigation Media Queries */
@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,
  .navbar .desktop-only {
    display: none !important;
  }

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

/* 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;
}

.bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/* Organic Blob Shapes */
.blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #1f4e78, #2d6a9f);
  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, #1f4e78, #00d2ff);
}

.blob-2 {
  bottom: 0%;
  right: 15%;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #1f4e78, #3a7bd5);
}

@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: space-between;
  padding: 6rem 5% 2rem;
  max-width: 1400px;
  margin: 0 auto;
  scroll-snap-align: start;
}

.hero-content {
  flex: 1;
  max-width: 850px;
  /* Adjusted to accommodate centered content better */
  text-align: center;
  z-index: 2;
  margin: 0 auto;
  /* Center the card block itself */
}

/* Liquid Glass Card */
.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--glass-border);
  padding: 4rem 6rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.glass-card:hover::before {
  left: 100%;
  transition: 0.8s;
}

.hero-title {
  font-size: 5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 2rem;
  line-height: 0.95;
  letter-spacing: -3px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 3rem;
  line-height: 1.6;
  max-width: 650px;
  font-weight: 400;
}

/* 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;
}

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

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

/* 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: #2d6a9f;
  text-decoration: none;
}

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

/* 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 Hersov 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: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
  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;
}

/* 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(31, 78, 120, 0.54), rgba(45, 106, 159, 0.42));
  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;
}



/* 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, #1f4e78, #2d6a9f);
  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, #1f4e78, #2d6a9f);
  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-color: #000;
  scroll-snap-align: start;
}

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

.carousel .list .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
  /* Reduced to 60% darkness for optimal balance */
}

.carousel .list .item .content {
  position: absolute;
  top: 20%;
  width: 1140px;
  max-width: 80%;
  left: 50%;
  transform: translateX(-50%);
  padding-right: 30%;
  box-sizing: border-box;
  color: #fff;
  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.5s, visibility 0.5s;
}

.carousel .list .item:nth-child(1) .content {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.carousel .list .item .author {
  font-weight: bold;
  letter-spacing: 10px;
}

.carousel .list .item .title,
.carousel .list .item .topic {
  font-size: 5em;
  font-weight: bold;
  line-height: 1.1em;
  white-space: nowrap;
  /* Prevent words from stacking */
}

.carousel .list .item .topic {
  color: #2d6a9f;
}

.carousel .list .item .buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

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

.carousel .list .item .buttons button {
  border: none;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  letter-spacing: 2px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 12px;
  font-size: 1rem;
  /* Increased font size */
  color: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 40px;
  /* Increased padding */
  white-space: nowrap;
  /* Prevent words from stacking */
  text-decoration: none;
}

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

.carousel .list .item .buttons button:hover {
  transform: translateY(-8px) scale(1.05);
  background: linear-gradient(135deg, #2d6a9f, #1f4e78);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 15px 35px rgba(31, 78, 120, 0.5);
}

/* Thumbnail */
.thumbnail {
  position: absolute;
  bottom: 50px;
  left: 50%;
  width: max-content;
  z-index: 100;
  display: flex;
  gap: 20px;
}

.thumbnail .item {
  width: 200px;
  height: 300px;
  flex-shrink: 0;
  position: relative;
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease;
}

.thumbnail .item:hover {
  transform: scale(1.05);
  z-index: 10;
}

.thumbnail .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: filter 0.5s;
}

.thumbnail .item:nth-child(1) img {
  filter: brightness(1.1);
  /* Light / Highlighted */
}

.thumbnail .item:nth-child(2) img {
  filter: brightness(0.7);
  /* Next one darker */
}

.thumbnail .item:nth-child(3) img {
  filter: brightness(0.4);
  /* Third even darker */
}

.thumbnail .item:nth-child(4) img {
  filter: brightness(0.2);
  /* Last one way dark but visible */
}

.thumbnail .item .content {
  color: #fff;
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
}

.thumbnail .item .content .title {
  font-weight: 500;
}

.thumbnail .item .content .description {
  font-weight: 300;
}

/* Arrows */
.arrows {
  position: absolute;
  top: 80%;
  right: 52%;
  z-index: 100;
  width: 300px;
  max-width: 30%;
  display: flex;
  gap: 10px;
  align-items: center;
}

.arrows button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.arrows button:hover {
  background: #fff;
  color: #1f4e78;
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Animation */
.carousel .list .item:nth-child(1) {
  z-index: 1;
}

/* animation text in first item */
.carousel .list .item:nth-child(1) .content .author,
.carousel .list .item:nth-child(1) .content .title,
.carousel .list .item:nth-child(1) .content .topic,
.carousel .list .item:nth-child(1) .content .des,
.carousel .list .item:nth-child(1) .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:nth-child(1) .content .title {
  animation-delay: 0.6s !important;
  /* Reduced from 1.2s */
}

.carousel .list .item:nth-child(1) .content .topic {
  animation-delay: 0.8s !important;
  /* Reduced from 1.4s */
}

.carousel .list .item:nth-child(1) .content .des {
  animation-delay: 1.0s !important;
  /* Reduced from 1.6s */
}

.carousel .list .item:nth-child(1) .content .buttons {
  animation-delay: 1.2s !important;
  /* Reduced from 1.8s */
}

/* create animation when next click */
.carousel.next .list .item:nth-child(1) img {
  width: 200px;
  height: 300px;
  position: absolute;
  bottom: 50px;
  left: 50%;
  border-radius: 15px;
  animation: showImage .5s linear 1 forwards;
}

@keyframes showImage {
  to {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}

.carousel.next .thumbnail .item:nth-last-child(1) {
  overflow: hidden;
  animation: showThumbnail .5s linear 1 forwards;
}

.carousel.prev .list .item img {
  z-index: 100;
}

@keyframes showThumbnail {
  from {
    width: 0;
    opacity: 0;
  }
}

.carousel.next .thumbnail {
  animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext {
  from {
    transform: translateX(200px);
  }
}

/* prev click */
.carousel.prev .list .item:nth-child(2) {
  z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img {
  animation: outFrame 0.5s linear 1 forwards;
  position: absolute;
  bottom: 0;
  left: 0;
}

@keyframes outFrame {
  to {
    width: 200px;
    height: 300px;
    bottom: 50px;
    left: 50%;
    border-radius: 10px;
  }
}

.carousel.prev .thumbnail .item:nth-child(1) {
  overflow: hidden;
  opacity: 0;
  animation: showThumbnail .5s linear 1 forwards;
}

.carousel.next .arrows button,
.carousel.prev .arrows button {
  pointer-events: none;
}

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

.carousel.next .time,
.carousel.prev .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/bg image.jpg');
  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-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;
  }
}

@media screen and (max-width: 768px) {
  .carousel .list .item .content {
    top: 15%;
    width: 100%;
    padding-right: 0;
    text-align: left;
    max-width: 90%;
  }

  .carousel .list .item .author {
    letter-spacing: 5px;
    font-size: 0.7rem;
  }

  .carousel .list .item .title,
  .carousel .list .item .topic {
    font-size: 2.2em;
    white-space: normal;
    /* Allow wrap if needed on very narrow screens */
  }

  .carousel .list .item .des {
    font-size: 0.85rem;
    margin-top: 10px;
    line-height: 1.4;
  }

  .carousel .list .item .buttons {
    margin-top: 20px;
    gap: 10px;
  }

  .carousel .list .item .buttons button {
    padding: 10px 20px;
    font-size: 0.8rem;
    letter-spacing: 1px;
  }

  .thumbnail {
    bottom: 30px;
    gap: 10px;
  }

  .thumbnail .item {
    width: 120px;
    height: 180px;
  }

  .arrows {
    right: 5%;
    top: 90%;
    width: 120px;
    max-width: none;
    justify-content: flex-end;
  }

  .arrows button {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}


/* 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 {
  max-width: 90%;
  max-height: 85%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: zoomIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

#lightboxPrev {
  left: -80px;
}

#lightboxNext {
  right: -80px;
}

@media (max-width: 1100px) {
  #lightboxPrev {
    left: 10px;
  }

  #lightboxNext {
    right: 10px;
  }

  .lightbox-nav {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.3);
  }
}

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

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

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

/* Property Detail Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 5000;
  /* Increased from 2000 to be above WhatsApp button */
  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: 90%;
  max-width: 1100px;
  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: 1.2fr 1fr;
  min-height: 600px;
}

.modal-gallery {
  position: relative;
  background: #f1f5f9;
}

.modal-gallery img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  display: block;
}

.modal-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  width: 100%;
  justify-content: center;
  pointer-events: none;
}

.modal-nav button {
  pointer-events: auto;
  padding: 12px 25px;
  border-radius: 50px;
  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;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  color: var(--brand-navy);
}

.modal-nav button:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.modal-details {
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  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: 2rem;
  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: 1.1rem;
  margin-bottom: 15px;
  color: #1e293b;
}

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

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

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

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

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

.modal-price .price-val {
  font-size: 1.5rem;
  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%;
    border-radius: 0;
  }

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

/* Overhauled Contact Page Styles - Premium Glassmorphism */
.contact-hero {
  padding: 80px 0 40px;
  text-align: center;
}

.contact-container.single-layout {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: auto;
  padding: 0 2rem 4rem;
  background: transparent;
  gap: 2rem;
}

.contact-form-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 {
  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 Quick Info Styles - Simplified Vertical */
.contact-quick-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  z-index: 10;
  text-align: center;
}

.quick-info-header h2 {
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.5px;
}

.info-group h3 {
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 0.5rem 0;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.info-group p,
.info-group a {
  font-size: 1rem;
  color: white;
  margin: 0;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.3s ease;
  font-weight: 600;
}

.info-group a:hover {
  color: var(--brand-navy-light);
  text-decoration: underline;
}

.info-item a:hover {
  color: #2d6a9f;
}

.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-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, #1f4e78, #2d6a9f) !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, #2d6a9f, #1f4e78) !important;
}

@media (max-width: 768px) {
  .contact-form-wrapper.centered-glass {
    padding: 3rem 1.5rem;
    border-radius: 30px;
  }

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

/* About Us Section */
.about-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background-image: url('images/bg image.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(31, 78, 120, 0.7));
  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: 1.5rem;
  background: linear-gradient(135deg, rgba(31, 78, 120, 0.4) 0%, rgba(45, 106, 159, 0.3) 50%, rgba(31, 78, 120, 0.4) 100%);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.feature-item {
  text-align: center;
  padding: 0.75rem;
  border-radius: var(--border-radius-md);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.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-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
  max-width: 1280px;
  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;
  width: 100%;
  aspect-ratio: 16 / 9;
  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, #1f4e78, #2d6a9f);
  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: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.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: #2d6a9f;
}

.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-image: url('images/bg image.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.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-fit, minmax(220px, 1fr));
  justify-content: center;
  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: #1f4e78;
  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, #1f4e78, #2d6a9f);
  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, #2d6a9f, #1f4e78);
  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-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

@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 */
/* Floating Glassmorphism Navbar for Booking Page (Desktop only) */
.booking-page .navbar {
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  margin: 1.25rem 2rem;
  width: calc(100% - 4rem);
  border-radius: 50px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Mobile: reset to standard navbar style to match other pages */
@media (max-width: 992px) {
  .booking-page .navbar {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin: 0;
    width: 100%;
    border-radius: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1.5rem;
  }
}

.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: 1fr 1.3fr;
  gap: 2rem;
  max-width: 1400px;
  /* Adjusted for wider quote card */
  margin: 0 auto;
  padding: 0 2rem 4rem;
  align-items: start;
  justify-content: center;
  /* Center the grid items */
}

@media (max-width: 992px) {
  .booking-form-layout {
    grid-template-columns: 1fr;
    max-width: 800px;
    /* Narrower for better centering feel on tablets */
  }
}

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

.booking-section-card {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border-radius: var(--border-radius-md);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  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 4px rgba(0, 0, 0, 0.3);
}

.booking-section-card .form-input,
.booking-section-card .form-textarea {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: white !important;
  padding: 1rem;
}

.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.15) !important;
  border-color: var(--brand-navy-light) !important;
}

.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(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

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

.selection-item.selected {
  border-color: var(--brand-navy-light);
  background: rgba(45, 106, 159, 0.3);
  box-shadow: 0 0 30px rgba(45, 106, 159, 0.4);
}

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

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

.summary-card {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-radius: var(--border-radius-md);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 5px solid var(--brand-navy-light);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  color: white;
}

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

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

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

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

.summary-divider {
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  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 15px rgba(0, 0, 0, 0.4);
}

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

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

/* 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;
  }
}

/* Contact Map Styles */
.contact-map-container {
  width: 100%;
  max-width: 500px;
  height: 450px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-bottom: 2rem;
}

.contact-map-container iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Card Loader Spinner */
.card-loader-container {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5rem 2rem;
  width: 100%;
  text-align: center;
}

.card-loader {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: card-spin 0.8s ease-in-out infinite;
  margin-bottom: 1.5rem;
}

.loader-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 1px;
}

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

/* =========================================================================
   Global Mobile View Optimizations
   ========================================================================= */
@media screen and (max-width: 768px) {

  /* Hero Section Overrides */
  .hero-container {
    padding: 6rem 1.5rem 2rem;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .glass-card {
    padding: 2.5rem 1.5rem;
    width: 100%;
    margin-top: 2rem;
  }

  .hero-tagline {
    font-size: 2rem !important;
    letter-spacing: 2px !important;
  }

  .hero-title {
    font-size: 2.5rem !important;
    line-height: 1.1 !important;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 1.5rem !important;
  }

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

  /* Typography Adjustments */
  h1,
  .hero-title,
  .section-title {
    font-size: 2rem !important;
    line-height: 1.2;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  /* Grid Layouts */
  .stats-grid,
  .articles-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    max-width: 85%;
    margin: 0 auto;
  }

  /* Service Card Refinements (15% reduction for compact feel) */
  .service-card .card-image {
    height: 170px !important;
  }

  .service-card .card-content {
    padding: 1.25rem !important;
  }

  .service-title {
    font-size: 1.1rem !important;
    margin-bottom: 0.4rem !important;
  }

  .service-description {
    font-size: 0.85rem !important;
    margin-bottom: 0.9rem !important;
    line-height: 1.4 !important;
  }

  .service-card .btn {
    padding: 0.65rem 1rem !important;
    font-size: 0.85rem !important;
    border-radius: 50px !important;
  }

  .about-content {
    flex-direction: column;
  }

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

  /* Forms & Search */
  .search-grid,
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Polished Mobile Modal (Centered Style instead of Bottom Sheet) */
  .modal {
    padding: 5vh 0; /* Add top/bottom padding instead of relying purely on margin if needed */
  }

  /* Override for Image Modal to stay centered */
  .modal.lightbox {
    align-items: center !important;
    justify-content: center !important;
    background-color: rgba(0, 0, 0, 0.95) !important;
  }

  .modal-content {
    width: 95%; /* Better fit with slight margin */
    margin: 5% auto; /* Centers the modal and gives it spacing */
    max-height: 85vh; /* Standard mobile max-height */
    border-radius: 20px; /* Full rounded corners instead of just top */
    animation: slideUp 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); /* Slide from bottom gracefully */
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  @keyframes slideSheet {
    from {
      transform: translateY(100%);
    }

    to {
      transform: translateY(0);
    }
  }

  .modal-split {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    flex: 1;
    padding-bottom: 0;
    /* Removed large padding-bottom */
    /* Space for sticky footer */
  }

  .modal-gallery {
    height: 250px; /* Restored to original size for better visibility */
    flex-shrink: 0;
  }

  .modal-gallery img {
    min-height: 250px;
  }

  .modal-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10;
    padding: 0.8rem 1.25rem;
    /* Reduced from 1.25rem 1.5rem */
    /* Reduced vertical padding */
    padding-right: 50px;
    /* Room for close button */
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .modal-details {
    padding: 0.8rem 1.25rem;
    /* Reduced from 1.5rem */
    gap: 0.8rem;
    /* Reduced from 1.5rem */
  }

  #modalTitle {
    font-size: 1.2rem;
    /* Reduced from 1.5rem */
    margin-bottom: 0px;
  }

  #modalLocation {
    font-size: 0.75rem;
    /* Added smaller location font */
  }

  .modal-rating {
    padding: 4px 10px;
    /* Smaller rating badge */
    font-size: 0.8rem;
  }

  .modal-section {
    padding: 0;
  }

  .modal-section h3 {
    font-size: 0.9rem;
    /* Reduced from 1rem */
    margin-bottom: 6px;
    /* Reduced from 10px */
  }

  .modal-section p {
    font-size: 0.8rem;
    /* Smaller description */
    line-height: 1.4;
  }

  .amenity-item {
    font-size: 0.8rem;
    /* Smaller amenities */
    gap: 6px;
  }

  .modal-footer {
    position: sticky;
    /* Changed from fixed to sticky */
    bottom: -1px;
    /* Align to bottom of scroll area */
    left: 0;
    right: 0;
    background: white;
    padding: 0.8rem 1.25rem;
    /* Reduced from 1rem 1.5rem */
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
    z-index: 20;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .modal-pricing {
    gap: 1rem;
  }

  .modal-price .price-val {
    font-size: 1rem;
    /* Reduced from 1.2rem */
  }

  .modal-price .price-label {
    font-size: 0.65rem;
    /* Smaller labels */
  }

  .modal-actions .btn {
    padding: 0.6rem 1.2rem;
    /* Smaller button */
    font-size: 0.85rem;
  }

  .close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    background: rgba(0, 0, 0, 0.05);
    width: 35px;
    height: 35px;
    font-size: 20px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

  /* Booking Split Layout Adjustments */
  .booking-form-layout {
    grid-template-columns: 1fr;
    padding: 0 1rem 2rem;
  }

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

  .booking-section-card {
    padding: 1.5rem;
  }

  /* Footer Adjustments */
  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-column {
    align-items: center;
  }



  /* Sidebar Socials */
  .sidebar {
    display: none;
    /* Hide sidebar socials on small devices to avoid overlapping content */
  }

  /* Inner Pages Hero Adjustments */
  .lodges-hero,
  .contact-hero {
    height: 200px;
    margin-top: 60px;
  }

  .page-title {
    font-size: 3rem !important;
    margin-bottom: 0.5rem;
  }

  .page-subtitle {
    font-size: 1.1rem !important;
  }
}

/* Small mobile devices */
@media screen and (max-width: 480px) {
  .hero-tagline {
    font-size: 1.5rem !important;
  }

  .hero-title {
    font-size: 2rem !important;
  }

  .glass-card {
    padding: 2rem 1rem;
  }

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

  .page-title {
    font-size: 2.2rem !important;
  }

  .page-subtitle {
    font-size: 1rem !important;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: var(--whatsapp-green);
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  color: white;
  background-color: #128c7e;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 25px;
  }
}

/* Responsive Video Player */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

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

/* Review Summary Section below Stats */
.reviews-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reviews-summary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.reviews-summary .stars {
  color: #f39c12;
  /* Golden star color */
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  gap: 0.25rem;
}

.reviews-summary .review-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 300;
  text-align: center;
}

.reviews-summary .highlight-rating {
  font-weight: 700;
  color: #fff;
}

/* Glassmorphic Review Cards Section */
.reviews-section {
  padding: 6rem 0;
  position: relative;
  z-index: 2;
  background-image: url('images/bg image.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.reviews-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  /* Dark overlay to make white text visible */
  z-index: -1;
}

.reviews-scroll-wrapper {
  overflow: hidden;
  margin-top: 3rem;
}

.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.reviews-grid.scrolling-ticker {
  flex-wrap: nowrap;
  width: max-content;
  justify-content: flex-start;
  animation: scroll-ticker 40s linear infinite;
}

.reviews-grid.scrolling-ticker:hover {
  animation-play-state: paused;
}

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

  100% {
    transform: translateX(-50%);
  }
}

.review-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  min-width: 280px;
  max-width: 320px;
  flex: 0 0 280px;
  margin-right: 2rem;
  /* Spacing for infinite scroll */
}

.review-card:hover {
  transform: translateY(-8px);
  border-color: rgba(45, 106, 159, 0.5);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 25px rgba(45, 106, 159, 0.3);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.reviewer-img,
.reviewer-initials {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.4rem;
  color: white;
  background: linear-gradient(135deg, var(--brand-primary), #3b82f6);
  flex-shrink: 0;
  text-transform: uppercase;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.reviewer-name {
  color: white;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
}

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

.review-body {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
  /* Pushes footer to the bottom */
}

.review-footer {
  text-align: right;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: auto;
}

.explore-more {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.explore-more i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.explore-more:hover {
  color: var(--brand-navy-light);
}

.explore-more:hover i {
  transform: translateX(4px);
}

/* Star Rating Input */
.star-rating-input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.star-rating-input input {
  display: none;
}

.star-rating-input label {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: color 0.2s ease;
}

.star-rating-input label:hover,
.star-rating-input label:hover~label,
.star-rating-input input:checked~label {
  color: #f1c40f;
  /* Brand gold */
}

/* Character Count */
.char-count {
  text-align: right;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.25rem;
}

/* Review Modal Adjustments */
#reviewModal .modal-content {
  max-width: 500px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(25px) saturate(200%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #000;
  /* Black text */
}

#reviewModal .modal-header h2,
#reviewModal .modal-header p,
#reviewModal .form-group label {
  color: #000;
  /* Ensure black text */
}

#reviewModal .form-group {
  margin-bottom: 1.5rem;
}

#reviewModal .form-input,
#reviewModal .form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #000;
  border-radius: 12px;
  padding: 0.75rem;
}

#reviewModal .form-input::placeholder,
#reviewModal .form-textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

#reviewModal .char-count {
  color: rgba(0, 0, 0, 0.5);
}

#reviewModal .close-modal {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
}

#reviewModal .star-rating-input label {
  color: rgba(0, 0, 0, 0.2);
}

#reviewModal .star-rating-input label:hover,
#reviewModal .star-rating-input label:hover~label,
#reviewModal .star-rating-input input:checked~label {
  color: #f1c40f;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--brand-navy-light);
  color: var(--brand-navy-light);
}

/* Featured Boats Product Cards */
.featured-boats-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background-image: url('images/bg image.jpg');
  /* Adding background so glass pops */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.featured-boats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  /* Darker overlay for true glass contrast */
  backdrop-filter: blur(4px);
  z-index: 0;
}

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

.featured-boats-section .section-title {
  color: white;
}

.featured-boats-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.boat-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.boat-product-card {
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  /* Transparent glassmorphism */
  backdrop-filter: blur(25px) saturate(200%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.boat-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3), 0 0 20px rgba(45, 106, 159, 0.3);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.boat-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #ff6b00;
  color: white;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 10px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
  letter-spacing: 0.5px;
}

.boat-card-image-wrapper {
  position: relative;
  border-radius: 18px;
  /* Slightly softer corners */
  overflow: hidden;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: rgba(0, 0, 0, 0.15);
  /* Darker internal image wrapper for contrast */
}

.boat-card-image-wrapper.dark-bg {
  background: rgba(30, 41, 59, 0.5);
  /* Semi-transparent navy */
}

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

.boat-product-card:hover .boat-card-image {
  transform: scale(1.08);
  /* Smoother zoom */
}

.boat-card-favorite {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #ff6b00;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.boat-card-favorite.dark {
  background: transparent;
  color: #ff6b00;
}

.boat-card-favorite:hover {
  transform: scale(1.2);
}

.boat-card-thumbnails {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.boat-thumbnail {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  padding: 2px;
}

.boat-thumbnail.active {
  border: 2px solid #ff6b00;
}

.boat-card-category {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7) !important;
  letter-spacing: 1.2px;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.boat-card-title {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  font-weight: 800;
  color: white !important;
  line-height: 1.2;
}

.boat-card-price-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.boat-card-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: white !important;
}

.boat-card-old-price {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.5) !important;
  text-decoration: line-through;
  font-weight: 600;
}

.boat-card-actions {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: auto;
  height: 52px;
}

.boat-card-btn {
  flex: 1;
  background: #1e293b;
  color: white;
  border: none;
  padding: 0;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(30, 41, 59, 0.15);
}

.boat-card-btn:hover {
  background: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 41, 59, 0.25);
  color: white;
  /* Ensure text remains white */
}

.boat-card-actions-fav {
  width: 52px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6b00;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.boat-card-actions-fav:hover {
  background: rgba(255, 107, 0, 0.05);
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateY(-2px);
}

/* Card 3 (Dark Blue Glass Variant) */
.boat-product-card.glass-card-style {
  background: rgba(30, 41, 59, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.boat-product-card.glass-card-style .boat-card-title,
.boat-product-card.glass-card-style .boat-card-price {
  color: white;
}

.boat-product-card.glass-card-style .boat-card-category {
  color: #94a3b8;
}

.boat-product-card.glass-card-style .boat-card-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.boat-product-card.glass-card-style .boat-card-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.boat-product-card.glass-card-style .boat-card-actions-fav {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.boat-product-card.glass-card-style .boat-card-actions-fav:hover {
  background: rgba(255, 107, 0, 0.1);
  border-color: rgba(255, 107, 0, 0.5);
}

/* Updates and Promotions Slider */
.promo-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.promo-slider-btn {
  display: none; /* Hidden on desktop since it's a grid */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.promo-slider-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.promo-slider-btn.prev-btn {
  left: 5px;
}

.promo-slider-btn.next-btn {
  right: 5px;
}

@media (max-width: 768px) {
  .promo-slider-btn {
    display: flex; /* Show only on mobile where it's a horizontal slider */
  }
}

/* Updates and Promotions Cards */
.promo-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin: 3rem auto 0;
  justify-content: center;
  max-width: 1200px;
}

/* Mobile Horizontal Scroll */
@media (max-width: 768px) {
  .promo-cards-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 1.5rem 1rem 2.5rem;
    gap: 1.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar for clean look */
    justify-content: flex-start; /* Fixes center-alignment cutting off left cards */
  }

  .promo-cards-grid::-webkit-scrollbar {
    display: none;
  }

  .promo-card {
    min-width: 85vw;
    scroll-snap-align: center;
    margin: 0;
  }
}





.promo-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 350px;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
}

.promo-ribbon {
  position: absolute;
  top: 15px;
  left: -35px;
  background: var(--brand-gold);
  color: #000;
  padding: 5px 40px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  transform: rotate(-45deg);
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}



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

.promo-card-image-wrap {
  position: relative;
  height: 250px;
  overflow: hidden;
  cursor: pointer;
}

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

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

.promo-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(31, 78, 120, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.promo-card-image-wrap:hover .promo-card-overlay {
  opacity: 1;
}

.promo-card-overlay i {
  color: white;
  font-size: 2rem;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.promo-card-image-wrap:hover .promo-card-overlay i {
  transform: scale(1);
}

.promo-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 0.5rem; /* Reduced gap since we added topic */
}

.promo-card-topic {
  color: #ffffff !important;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
  font-family: 'Outfit', sans-serif;
}

.promo-card-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.promo-card-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--brand-navy);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 5;
  pointer-events: auto !important;
}

.promo-card-btn:hover {
  background: var(--brand-navy-light);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(31, 78, 120, 0.3);
}

/* Promo Lightbox */
.promo-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.promo-lightbox.active {
  display: flex;
  animation: promoFadeIn 0.3s ease;
}

.promo-lightbox-img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.promo-lightbox.active .promo-lightbox-img {
  transform: scale(1);
}

.promo-lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.promo-lightbox-close:hover {
  transform: scale(1.2) rotate(90deg);
}

@keyframes promoFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}