@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:wght@700;900&display=swap");

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  right: 6%;
  bottom: 10%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: whatsappPulse 2.4s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.6), 0 6px 16px rgba(0, 0, 0, 0.25);
  color: #ffffff;
}

.whatsapp-float i {
  line-height: 1;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50%      { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0); }
}

@media (max-width: 600px) {
  .whatsapp-float {
    right: 2%;
    bottom: 8%;
    width: 54px;
    height: 54px;
    font-size: 26px;
  }
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Brand Variables - 365 Orange Glass Theme */
:root {
  --color-primary: #F97316;
  --color-primary-dark: #C2410C;
  --color-secondary: #7C2D12;
  --color-brand-light: #FB923C;
  --color-text-body: #7C2D12;
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.28);
  --glass-blur: 14px;
  --glass-shadow: 0 8px 30px rgba(124, 45, 18, 0.18);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--color-text-body);
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  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);
}

.lodges-nav {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  /* Enhanced shadow for depth */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: 100%;
  margin: 0;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.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;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.logo-mobile {
  display: none;
}

.lodges-nav .logo-text {
  color: #1f2937;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 50px;
}

.nav-link:hover,
.nav-link.active {
  color: white;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lodges-nav .nav-link {
  color: #6b7280;
}

.lodges-nav .nav-link:hover,
.lodges-nav .nav-link.active {
  /* Changed from orange to sky blue */
  color: #EA580C;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}

.hamburger {
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
}

.lodges-nav .hamburger {
  background: #1f2937;
}

.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;
}

/* Ensure mobile menu layers above all content */
.mobile-menu {
  z-index: 1100;
}

.lodges-nav .mobile-menu {
  background: rgba(255, 255, 255, 0.98);
}

.mobile-nav-link {
  color: white;
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lodges-nav .mobile-nav-link {
  color: #1f2937;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-book-btn {
  margin-top: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  /* Added shadow for better depth */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  /* Changed from orange gradient to sky blue gradient */
  background: linear-gradient(135deg, #F97316, #EA580C);
  color: white;
  border: none;
}

.btn-primary:hover {
  /* Changed hover gradient to darker sky blue */
  background: linear-gradient(135deg, #EA580C, #C2410C);
  transform: translateY(-2px);
  /* Enhanced shadow on hover */
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  /* Added shadow on hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.lodges-page .btn-outline {
  background: rgba(255, 255, 255, 0.6);
  color: #1f2937;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.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(9, 13, 20, 0.56), rgba(9, 13, 20, 0.34));
}

/* Center the hero content (title, copy, buttons) both horizontally and vertically */
.hero-container {
  /* Reduced height by 20% */
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* Reduce vertical padding by 20% (80px -> 64px, 5rem -> 4rem) */
  padding: 64px 6rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
  gap: 2rem;
}

/* Raise foreground content above background */
.hero-content,
.booking-form-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home-hero-text {
  width: min(800px, 100%);
  padding: 2.75rem 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Ensure title and copy are centered */
.home-hero-title,
.home-hero-copy {
  text-align: center;
}

/* Additional button styling for video button next to Book Your Stay */
.home-hero-video {
  margin-left: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  /* Cohesive gradient styling matching CTA */
  background: linear-gradient(135deg, #f97316, #ea580c);
  border: none;
  color: #fff;
  padding: 0.72rem 1.5rem;
  border-radius: 999px; /* pill shape matching CTA */
  transition: background 0.3s ease, border-color 0.3s ease;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

/* Hover effect for video button */
.home-hero-video:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.15);
}

/* Increase icon size inside video button */
.home-hero-video i {
  font-size: 1rem;
}

/* Center the button group under the hero text */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.home-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.1;
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.home-hero-copy {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.95rem, 1.1vw, 1.02rem);
  max-width: 540px;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
}

.home-hero-cta {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  border-radius: 999px;
  padding: 0.72rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 18px rgba(234, 88, 12, 0.34);
}

.home-hero-cta:hover {
  background: linear-gradient(135deg, #ea580c, #c2410c);
  transform: translateY(-1px);
}

.home-page .booking-form {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.home-page .form-header h2 {
  font-size: 1.3rem;
}

.home-page .form-header p {
  color: rgba(255, 255, 255, 0.85);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #F97316, #EA580C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 540px;
}

/* 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;
  justify-content: center;
  gap: 1.25rem;
  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: 2.5rem;
  max-width: 500px;
  margin: 0 auto;
}

.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 {
  width: 100%;
  max-width: 420px;
  justify-self: center;
}

.booking-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.5rem;
  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.75rem;
}

.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.75rem 0.875rem;
  color: white;
  backdrop-filter: blur(5px);
  font-size: 0.875rem;
  height: 42px;
  line-height: 1.5;
  width: 100%;
  box-sizing: border-box;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

.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 {
  /* Changed from orange to sky blue */
  color: #F97316;
  text-decoration: none;
}

.help-link:hover {
  /* Changed hover color to darker sky blue */
  color: #EA580C;
}

/* 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 {
  /* Changed from orange tint to sky blue tint */
  background: linear-gradient(135deg, #e0f2fe, #bae6fd);
  min-height: 100vh;
}

.lodges-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-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));
  z-index: -1;
}

.hero-content-center {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 2rem;
  margin-top: 4rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: white;
}

.back-arrow {
  font-size: 1.2rem;
}

.page-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Main Content */
.main-content {
  max-width: 100%;
  margin: 0;
  padding: 4rem 4rem;
}

/* 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;
  /* Make cards perfectly square with fixed size */
  grid-template-columns: repeat(auto-fit, minmax(200px, 200px));
  gap: 1.5rem;
  margin-bottom: 3rem;
  justify-content: center;
}

.lodge-card {
  /* Glassmorphism effect - transparent background with blur */
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  /* Make card perfectly square */
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
}

.lodge-image {
  position: relative;
  /* Reduce image height for square card */
  height: 120px;
  overflow: hidden;
  flex-shrink: 0;
}

.lodge-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.lodge-card:hover .lodge-image img {
  transform: scale(1.05);
}

.lodge-type {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: #EA580C;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 1rem;
  font-size: 0.65rem;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.4);
}

.lodge-rating {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  /* Enhanced glassmorphism for rating badge */
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 0.5rem;
  padding: 0.35rem 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.star-icon {
  color: #EA580C;
  font-size: 0.75rem;
}

.rating-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.lodge-content {
  /* Reduce padding and make content scrollable if needed */
  padding: 0.75rem;
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lodge-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* Remove margin to save space */
  margin-bottom: 0;
}

.lodge-name {
  /* Smaller font and limit to 2 lines */
  font-size: 0.85rem;
  font-weight: bold;
  color: white;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.lodge-price {
  text-align: right;
  flex-shrink: 0;
}

.price-amount {
  /* Smaller price font */
  font-size: 0.9rem;
  font-weight: bold;
  color: #F97316;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.price-unit {
  /* Hide price unit to save space */
  display: none;
}

.lodge-location {
  /* Hide location to save space */
  display: none;
}

.lodge-description {
  /* Hide description to save space */
  display: none;
}

.lodge-amenities {
  /* Hide amenities to save space */
  display: none;
}

.lodge-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

.lodge-reviews {
  /* Hide reviews to save space */
  display: none;
}

.lodge-footer .btn {
  /* Make button smaller and full width */
  padding: 0.35rem 0.6rem;
  font-size: 0.65rem;
  width: 100%;
}

/* Flight Search & Selection Styles */
.search-flights-btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #F97316, #EA580C);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.search-flights-btn:hover {
  background: linear-gradient(135deg, #EA580C, #EA580C);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
}

.search-flights-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.flight-results {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
  max-height: 500px;
  overflow-y: auto;
  padding: 0.5rem;
}

.flight-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.flight-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.flight-card.selected {
  background: rgba(249, 115, 22, 0.2);
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
}

.flight-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.flight-airline {
  font-weight: 600;
  color: white;
  font-size: 0.95rem;
}

.flight-number {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.flight-price {
  font-weight: 700;
  color: #F97316;
  font-size: 1.1rem;
}

.flight-route {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.flight-location {
  text-align: center;
}

.flight-airport {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
}

.flight-time {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.flight-arrow {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
}

.flight-details {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.flight-duration,
.flight-stops,
.flight-class {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.selected-flight-info {
  background: rgba(249, 115, 22, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 0.75rem;
  padding: 1rem;
  margin-top: 1rem;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

.selected-flight-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.selected-flight-title {
  font-weight: 600;
  color: white;
  font-size: 0.9rem;
}

.change-flight-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.change-flight-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.selected-flight-summary {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  line-height: 1.5;
}

.loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.spinner {
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid #F97316;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.no-flights-message {
  text-align: center;
  padding: 2rem;
  color: rgba(255, 255, 255, 0.8);
}

.no-flights-message i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

/* Airport Autocomplete Styles */
.airport-suggestions {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  max-height: 320px;
  overflow-y: auto;
  z-index: 1000;
  margin-top: 0.25rem;
}

.suggestion-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover,
.suggestion-item.active {
  background: rgba(249, 115, 22, 0.1);
}

.suggestion-code {
  font-weight: 700;
  font-size: 1rem;
  color: #EA580C;
  min-width: 45px;
  text-align: center;
  background: rgba(249, 115, 22, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.suggestion-details {
  flex: 1;
  min-width: 0;
}

.suggestion-city {
  font-weight: 600;
  font-size: 0.9rem;
  color: #1f2937;
  margin-bottom: 0.15rem;
}

.suggestion-name {
  font-size: 0.75rem;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Scrollbar styling for suggestions */
.airport-suggestions::-webkit-scrollbar {
  width: 6px;
}

.airport-suggestions::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}

.airport-suggestions::-webkit-scrollbar-thumb {
  background: rgba(249, 115, 22, 0.3);
  border-radius: 3px;
}

.airport-suggestions::-webkit-scrollbar-thumb:hover {
  background: rgba(249, 115, 22, 0.5);
}

/* Footer */
.footer {
  background: #ffffff;
  color: #1f2937;
  padding: 3rem 0;
  margin-top: 4rem;
  /* Added shadow for separation */
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer-logo-text {
  font-size: 1.125rem;
  font-weight: bold;
}

.footer-section p {
  color: #d1d5db;
  font-size: 0.875rem;
  line-height: 1.5;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  /* Changed from orange to sky blue */
  color: #F97316;
}

/* Booking Page Styles */
.booking-page {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  min-height: 100vh;
}

.booking-header {
  background: linear-gradient(135deg, #EA580C, #F97316);
  color: white;
  padding: 5rem 2rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.header-content {
  max-width: 1400px;
  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 Page Specific Split Layout */
.booking-hero-container {
  display: grid !important;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 1fr) !important;
  gap: 2.5rem !important;
  width: min(1320px, calc(100% - 3rem)) !important;
  margin: 0 auto !important;
  padding: 7.5rem 0 4rem !important;
  align-items: start !important;
  min-height: 100vh !important;
  box-sizing: border-box;
}

.booking-form-main {
  width: 100%;
  min-width: 0;
}

.booking-form-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2.25rem 2rem 2rem;
}

.booking-summary-side {
  width: 100%;
  min-width: 0;
  display: block;
  position: sticky;
  top: 6.5rem;
}

/* Override existing layout to avoid conflicts */
.booking-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.form-sections {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-section {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-header {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.section-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.section-header h2 i {
  margin-right: 0.5rem;
  color: #EA580C;
}

.section-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  color: white;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.form-group label .required {
  color: #ef4444;
}

.booking-form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  font-size: 1rem;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  font-family: inherit;
  height: 48px;
  box-sizing: border-box;
}

.booking-form-input:focus {
  outline: none;
  border-color: #F97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.booking-form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.booking-form-input option {
  background: #1f2937;
  color: white;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: end;
}

.guests-selector {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 48px;
}

.guests-control {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  color: #F97316;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guests-control:hover {
  border-color: #F97316;
  background: rgba(249, 115, 22, 0.2);
}

.guests-control:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.guests-number {
  min-width: 50px;
  text-align: center;
  font-weight: 600;
  color: white;
  font-size: 1.1rem;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.activity-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.activity-card:hover {
  border-color: #F97316;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15);
}

.activity-card.selected {
  border-color: #F97316;
  background: rgba(249, 115, 22, 0.2);
}

.activity-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 0.2rem;
  cursor: pointer;
  accent-color: #F97316;
}

.activity-info {
  flex: 1;
}

.activity-name {
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}

.activity-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

.activity-price {
  font-weight: 700;
  color: #F97316;
  font-size: 1.1rem;
}

.activity-price span {
  font-weight: 500;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin-left: 0.2rem;
}

.help-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  padding: 1rem;
  margin-top: 1rem;
}

.help-box h4 {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.help-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.help-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 0.9rem;
}

.help-contact-item i {
  color: #EA580C;
  width: 20px;
}

.booking-summary {
  position: sticky;
  top: 2rem;
  height: fit-content;
}

.summary-card {
  position: relative;
  background: linear-gradient(180deg, rgba(13, 18, 28, 0.92), rgba(10, 14, 22, 0.82));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  padding: 2.25rem 2rem 2rem;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.summary-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(249, 115, 22, 0.18), transparent 55%);
  pointer-events: none;
}

.summary-card > * {
  position: relative;
  z-index: 1;
}

.summary-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.summary-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.summary-header p.summary-subtitle {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.summary-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: rgba(255, 255, 255, 0.55);
}

.summary-empty i {
  font-size: 2rem;
  color: rgba(249, 115, 22, 0.55);
  margin-bottom: 0.75rem;
  display: block;
}

.summary-empty p {
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.summary-item-value {
  color: white;
  font-weight: 600;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.25rem;
  margin-top: 1.25rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.14), rgba(234, 88, 12, 0.06));
  border: 1px solid rgba(249, 115, 22, 0.25);
}

.summary-total-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.summary-total-value {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fdba74, #F97316);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.booking-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #F97316, #EA580C);
  color: white;
  border: none;
  border-radius: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
  margin-top: 1.5rem;
}

.booking-btn:hover {
  background: linear-gradient(135deg, #EA580C, #EA580C);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.terms-text {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  margin-top: 1rem;
  line-height: 1.5;
}

/* 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, #EA580C, #F97316);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(249, 115, 22, 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.5rem;
  /* Added missing value and semicolon based on common usage */
}

/* Hotel Gallery Carousel Styles */
.hotels-page.inner-page .hero-container.hotels-hero-container,
.activities-page.inner-page .hero-container.activities-hero-container,
.events-page.inner-page .hero-container.events-hero-container,
.blog-page.inner-page .hero-container.blog-hero-container,
.contact-page.inner-page .hero-container.contact-hero-container {
  min-height: min(39vh, 410px);
  padding: 7rem 0 1.5rem;
  align-items: center;
  justify-content: center;
}

.hotels-page.inner-page .hero-content,
.activities-page.inner-page .hero-content,
.events-page.inner-page .hero-content,
.blog-page.inner-page .hero-content,
.contact-page.inner-page .hero-content {
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
  text-align: center;
}

.hotels-hero-container {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  padding-top: 5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.hotel-gallery-carousel {
  flex: 2;
  max-width: none;
  position: relative;
  padding: 1rem;
}

.gallery-country-label {
  text-align: center;
  margin-bottom: 2rem;
}

.gallery-country-label h3 {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  letter-spacing: 3px;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease;
}

.gallery-carousel-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.gallery-slides {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
  transform: scale(1);
}

.gallery-slides.transitioning {
  pointer-events: none;
}

.gallery-card {
  position: absolute;
  width: 280px;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  will-change: transform;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-card:hover {
  transform: translateY(-10px) scale(1.03) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  z-index: 100 !important;
}

/* Navigation Dots */
.gallery-nav-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 0.75rem 0;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  outline: none;
}

.nav-dot:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.2);
}

.nav-dot.active {
  width: 32px;
  border-radius: 12px;
  background: rgba(14, 160, 157, 0.9);
  border-color: rgba(14, 160, 157, 1);
  box-shadow: 0 4px 12px rgba(14, 160, 157, 0.5);
}

/* Budget slider and star rating styles */
.budget-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.budget-value {
  font-size: 1.1rem;
  font-weight: bold;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.budget-range {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.form-range {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  outline: none;
  backdrop-filter: blur(5px);
}

.form-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #F97316, #EA580C);
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.5);
  transition: all 0.3s ease;
}

.form-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.7);
}

.form-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #F97316, #EA580C);
  cursor: pointer;
  border-radius: 50%;
  border: none;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.5);
  transition: all 0.3s ease;
}

.form-range::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.7);
}

.star-rating-selector {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.star-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  gap: 0.2rem;
  color: rgba(255, 255, 255, 0.5);
}

.star-btn i {
  font-size: 0.9rem;
}

.star-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.star-btn.active {
  background: rgba(249, 115, 22, 0.3);
  border-color: #F97316;
  color: #fbbf24;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

/* Inline form logo */
.inline-form-logo {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #EA580C, #F97316);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.3);
  z-index: 10;
}

.inline-form-logo i {
  font-size: 1.2rem;
  color: white;
}

/* Responsive adjustments for hotels page */
@media (max-width: 1024px) {
  .hotels-hero-container {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .hotel-gallery-carousel {
    max-width: 100%;
    width: 100%;
  }

  .booking-form-container {
    max-width: 100%;
    width: 100%;
  }

  .gallery-carousel-wrapper {
    height: 400px;
  }

  .gallery-card {
    width: 220px;
    height: 280px;
  }
}

@media (max-width: 768px) {
  .gallery-carousel-wrapper {
    height: 350px;
  }

  .gallery-card {
    width: 180px;
    height: 240px;
  }

  .gallery-country-label h3 {
    font-size: 1.8rem;
  }
}

/* Scroll Animations */
.scroll-fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.scroll-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-fade-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.scroll-fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-fade-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.scroll-fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-zoom-in {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 1.4s ease, transform 1.4s ease;
}

.scroll-zoom-in.visible {
  opacity: 1;
  transform: scale(1);
}

.scroll-delay-1 { transition-delay: 0.2s; }
.scroll-delay-2 { transition-delay: 0.4s; }
.scroll-delay-3 { transition-delay: 0.6s; }
.scroll-delay-4 { transition-delay: 0.8s; }

/* Packages and Promotions */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.promo-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.promo-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.promo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.promo-card:hover .promo-image img {
  transform: scale(1.05);
}

.promo-badge {
  position: absolute;
  top: 18px;
  left: -35px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white;
  padding: 0.35rem 2.5rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transform: rotate(-35deg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.promo-badge-update {
  background: linear-gradient(135deg, #eab308, #ca8a04);
}

.promo-badge-luxury {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.promo-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.promo-content h3 {
  color: white;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

.promo-subtitle {
  color: #f97316;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.promo-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.65;
  flex: 1;
  margin: 0;
}

.promo-price {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin-top: 0.15rem;
}

.promo-original {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: line-through;
  font-size: 1rem;
  font-weight: 600;
}

.promo-current {
  color: #f97316;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.promo-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.95rem;
  margin-top: auto;
  flex-wrap: wrap;
  row-gap: 0.8rem;
}

.promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0.62rem 0.95rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  width: fit-content;
  min-width: 112px;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.25);
}

.promo-btn-primary {
  background: linear-gradient(135deg, #f97316, #ea580c);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.promo-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.promo-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.3);
}

.promo-btn-secondary:hover {
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.18);
}

@media (max-width: 768px) {
  .promo-grid {
    grid-template-columns: 1fr;
  }
  .promo-image {
    height: 180px;
  }
}

/* About Us Section */
.about-us-section {
  padding: 6rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.about-us-header {
  margin-bottom: 3rem;
}

.about-us-title {
  color: white;
  margin-bottom: 0.75rem;
}

.about-us-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.about-us-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.about-us-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-us-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.about-us-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.about-us-icon i {
  font-size: 1.5rem;
  color: white;
}

.about-us-card h3 {
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-us-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-us-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.25rem;
  padding: 2.5rem 3.5rem;
  flex-wrap: wrap;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 150px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1.5rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: white;
  text-shadow: 0 2px 10px rgba(249, 115, 22, 0.4);
}

.stat-number.animated {
  animation: countPop 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
  margin-top: 0.4rem;
  text-transform: uppercase;
}

@keyframes countPop {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
  .about-us-section {
    padding: 4rem 1.5rem;
  }
  .about-us-stats {
    gap: 1.5rem;
    padding: 1.5rem;
  }
  .stat-item:not(:last-child)::after {
    display: none;
  }
  .stat-number {
    font-size: 2rem;
  }
}

/* Modern Service/Cruise Cards */
.cards-section {
  padding: 9rem 4.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* Spacer between major sections */
.section-spacer {
  height: 2rem; /* Adjust as needed for visual gap */
}

.section-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: white !important;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}


.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(306px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

#destinationsGrid {
  grid-template-columns: repeat(auto-fit, minmax(306px, 360px));
  justify-content: center;
}

/* Mobile: Show only first 2 cards by default */
@media (max-width: 768px) {

  .cards-grid .service-card:nth-child(n+3),
  .cards-grid article.service-card:nth-child(n+3),
  .cards-grid div.service-card:nth-child(n+3) {
    display: none !important;
  }

  .cards-grid.show-all .service-card:nth-child(n+3),
  .cards-grid.show-all article.service-card:nth-child(n+3),
  .cards-grid.show-all div.service-card:nth-child(n+3) {
    display: flex !important;
  }
}

/* View More Button */
.view-more-container {
  text-align: center;
  margin-top: 2rem;
  display: none;
}

@media (max-width: 768px) {
  .view-more-container {
    display: block;
  }
}

.view-more-btn {
  background: linear-gradient(135deg, #F97316, #EA580C);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.view-more-btn:hover {
  background: linear-gradient(135deg, #EA580C, #EA580C);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.service-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 340px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

.card-image {
  position: relative;
  height: 136px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .card-image img {
  transform: scale(1.05);
}

#destinationsGrid .card-image {
  height: 196px;
}

#homeActivitiesGrid .card-image {
  height: 190px;
}

#homeArticlesGrid .card-image {
  height: 170px;
}

.card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.card-rating {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.4rem 0.7rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-rating i {
  color: #fbbf24;
  font-size: 0.85rem;
}

.card-rating span {
  font-weight: 600;
  color: #1f2937;
  font-size: 0.85rem;
}

.card-content {
  padding: 0.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.55rem;
}

.card-title {
  font-size: 1rem;
  font-weight: bold;
  color: white;
  margin: 0;
}

.card-price {
  text-align: right;
}

.price-amount {
  font-size: 1.1rem;
  font-weight: bold;
  color: #EA580C;
  display: block;
}

.price-unit {
  font-size: 0.65rem;
  color: white;
}

.card-icons {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.55rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.card-icon-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: white;
  font-size: 0.75rem;
}

.card-icon-item i {
  color: #EA580C;
  font-size: 0.85rem;
}

.card-description {
  color: white;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.55rem;
}

.feature-tag {
  background: rgba(249, 115, 22, 0.1);
  color: #ffffff;
  padding: 0.25rem 0.5rem;
  border-radius: 0.8rem;
  font-size: 0.65rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.feature-tag i {
  font-size: 0.6rem;
  color: #ffffff;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.card-reviews {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: white;
  font-size: 0.7rem;
}

.card-reviews i {
  color: #fbbf24;
  font-size: 0.75rem;
}

.card-btn {
  background: linear-gradient(135deg, #F97316, #EA580C);
  color: white;
  padding: 0.45rem 1rem;
  border-radius: 0.4rem;
  border: none;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
  text-decoration: none;
  display: inline-block;
}

.card-btn:hover {
  background: linear-gradient(135deg, #EA580C, #EA580C);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
}

/* Responsive card adjustments */
@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card-image {
    height: 140px;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* Footer Styles */
.footer {
  background: #ffffff;
  color: #1f2937;
  padding: 3rem 2rem 2rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  color: #F97316;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-section p {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f2937;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: #4b5563;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #F97316;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #4b5563;
}

.contact-icon {
  color: #F97316;
  font-size: 1rem;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .desktop-only {
    display: none;
  }

  .mobile-menu.active {
    display: flex;
  }

  /* Hero Container Mobile */
  .hero-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem 1.5rem 2rem;
    gap: 2rem;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    text-align: center !important;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: 2rem;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    text-align: center;
    padding: 0 1rem;
  }

  /* Category Buttons Mobile */
  .category-buttons {
    justify-content: center !important;
    flex-wrap: wrap;
    gap: 0.75rem;
    width: 100%;
    display: flex;
  }

  .category-btn {
    font-size: 0.8rem;
    padding: 0.5rem 0.875rem;
  }

  /* Stats Grid Mobile */
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 100%;
    margin: 2rem auto 0;
    justify-content: center;
    display: grid;
    width: 100%;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  /* Booking Form Mobile */
  .booking-form-container {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
  }

  .booking-form {
    padding: 1.25rem;
  }

  /* Cards Grid Mobile */
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card-image {
    height: 200px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  /* Cards Section Mobile */
  .cards-section {
    padding: 3rem 1.5rem;
  }

  /* Main Content Mobile */
  .main-content {
    padding: 2rem 1.5rem;
  }

  /* Footer Mobile */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-links,
  .contact-list {
    align-items: center;
  }

  /* Form Elements Mobile */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Nav Container Mobile */
  .nav-container {
    padding: 0 1rem;
  }

  .logo-text {
    font-size: 1.05rem;
  }

  .logo-desktop {
    display: inline;
  }

  .logo-mobile {
    display: none;
  }

  .logo-img {
    width: 28px;
    height: 28px;
  }

  .search-btn {
    width: 100%;
  }

  .home-hero-text {
    width: 100%;
    padding: 1.6rem 1.2rem;
  }
}

/* Flight Results Page Styles */
.flights-page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  min-height: 80vh;
  position: relative;
  z-index: 10;
}

/* Date Tabs */
.date-selector-tabs {
  grid-column: 1 / -1;
  display: flex;
  overflow-x: auto;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  margin-bottom: 2rem;
  scrollbar-width: none;
}

.date-selector-tabs::-webkit-scrollbar {
  display: none;
}

.date-tab {
  flex: 1;
  min-width: 120px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: rgba(255, 255, 255, 0.8);
}

.date-tab:last-child {
  border-right: none;
}

.date-tab.active {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-bottom: 3px solid #F97316;
}

.date-tab-range {
  font-size: 0.85rem;
  font-weight: 600;
}

.date-tab-price {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* Sidebar Filters */
.filter-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 100px;
  height: fit-content;
}

.filter-group {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.25rem;
}

.filter-group-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.filter-option:last-child {
  margin-bottom: 0;
}

.filter-option:hover {
  color: #fff;
}

.filter-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  accent-color: #F97316;
  cursor: pointer;
}

.filter-price {
  margin-left: auto;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Sort & Header */
.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  color: #fff;
}

.results-count {
  font-size: 1.1rem;
  font-weight: 600;
}

.sort-container {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.25rem;
}

.sort-btn {
  padding: 0.5rem 1rem;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.sort-btn.active {
  background: #F97316;
  color: #fff;
}

/* Date Tab Polish */
.date-tab:hover {
  background: rgba(255, 255, 255, 0.15);
}

.date-tab.active {
  background: rgba(249, 115, 22, 0.2);
  border-bottom: 3px solid #F97316;
  color: #fff;
}

/* Custom Loading Spinner */
.loading-spinner-container {
  flex-direction: column;
  gap: 1.5rem;
  color: #fff;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: #F97316;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.6;
  }
}

.loading-text {
  font-size: 1.1rem;
  font-weight: 500;
  animation: pulse 2s infinite;
}

/* New Flight Card (v2) */
.flight-card-v2 {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  margin-bottom: 1.25rem;
  padding: 1.75rem;
  display: grid;
  grid-template-columns: 80px 1fr auto 180px;
  align-items: center;
  gap: 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.flight-card-v2:hover {
  transform: translateY(-8px) scale(1.01);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.airline-logo-v2 {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.airline-logo-v2 img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.flight-timing-v2 {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: #fff;
}

.time-box {
  display: flex;
  flex-direction: column;
}

.time-val {
  font-size: 1.25rem;
  font-weight: 700;
}

.airport-val {
  font-size: 0.85rem;
  opacity: 0.7;
}

.flight-duration-v2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 1rem;
}

.duration-line {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0.5rem 0;
  position: relative;
}

.duration-line::before,
.duration-line::after {
  content: '';
  position: absolute;
  top: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.duration-line::before {
  left: 0;
}

.duration-line::after {
  right: 0;
}

.duration-val {
  font-size: 0.75rem;
  opacity: 0.6;
}

.stops-val {
  font-size: 0.75rem;
  color: #F97316;
  font-weight: 500;
}

.flight-info-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}

.badge-v2 {
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-cheapest {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.badge-eco {
  background: rgba(249, 115, 22, 0.2);
  color: #7dd3fc;
}

.flight-price-v2 {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price-total-v2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.price-type-v2 {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Booking Page Mobile */
@media (max-width: 1024px) {
  .booking-hero-container {
    grid-template-columns: 1fr !important;
    padding: 6.5rem 0 2.5rem !important;
    gap: 2rem !important;
    width: min(720px, calc(100% - 2rem)) !important;
  }

  .booking-summary-side {
    position: static;
  }

  .booking-summary {
    position: static;
  }

  .summary-card {
    position: static;
  }

  .form-section {
    padding: 1.25rem;
  }

  .activities-grid {
    grid-template-columns: 1fr;
  }

  .booking-header h1 {
    font-size: 2rem;
  }

  .booking-header p {
    font-size: 1rem;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .hero-container {
    padding: 4rem 1rem 2rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 0.875rem;
    padding: 0 0.5rem;
  }

  .category-buttons {
    gap: 0.5rem;
  }

  .category-btn {
    font-size: 0.75rem;
    padding: 0.4rem 0.7rem;
    flex: 0 1 auto;
  }

  .category-icon {
    font-size: 0.875rem;
  }

  .stats-grid {
    gap: 0.75rem;
    padding: 0 0.5rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .card-title {
    font-size: 0.95rem;
  }

  .hero-container {
    padding: 4rem 1rem 2rem;
  }

  .cards-section {
    padding: 2rem 1rem;
  }

  .main-content {
    padding: 1.5rem 1rem;
  }
}

/* Tablet Adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-container {
    padding: 5rem 2rem 2rem;
  }

  .hero-content {
    max-width: 550px;
  }

  .booking-form-container {
    flex: 0 0 380px;
    max-width: 380px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Airport Autocomplete Styles */
.autocomplete-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-top: 8px;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  display: none;
}

.autocomplete-results:not(:empty) {
  display: block;
}

.airport-suggestions {
  position: absolute;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-top: 8px;
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.suggestion-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover,
.suggestion-item.active {
  background: rgba(249, 115, 22, 0.1);
  border-left: 3px solid #F97316;
}

.suggestion-code {
  font-weight: 700;
  color: #F97316;
  font-size: 0.875rem;
  min-width: 40px;
}

.suggestion-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.suggestion-city {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 500;
}

.suggestion-name {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

/* ========================================
   ENHANCED RESPONSIVE DESIGN
   ======================================== */

/* Mobile Navigation Toggle */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .nav-auth .btn {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu.active {
    display: flex;
  }

  .mobile-menu-btn.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-btn.active .hamburger:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Hero Layout */
  .hero-container {
    grid-template-columns: 1fr;
    padding: 100px 1.5rem 4rem;
    gap: 2rem;
    text-align: center;
  }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .booking-form-container {
    max-width: 100%;
    width: 100%;
  }

  .category-buttons {
    justify-content: center;
  }

  /* Form Adjustments */
  .form-row {
    grid-template-columns: 1fr;
  }

  .search-grid {
    flex-direction: column;
    gap: 0.75rem;
  }

  .search-btn {
    width: 100%;
  }
}

/* Tablet Landscape Adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-container {
    gap: 2rem;
  }

  .booking-form-container {
    flex: 0 0 360px;
    max-width: 360px;
  }

  .nav-menu {
    gap: 1.5rem;
  }
}

/* Large Desktop */
@media (min-width: 1441px) {
  .hero-container {
    max-width: 1400px;
  }

  .booking-form-container {
    flex: 0 0 420px;
  }
}

/* Mobile Navigation Styles */

/* Hamburger Button - Hidden on Desktop */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: white;
  /* Default to white for dark/transparent headers */
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Dark Nav Variant */
.lodges-nav .nav-toggle span {
  background-color: #1f2937;
}

/* Mobile Media Query */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  /* Off-Canvas Menu */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    /* Hidden by default */
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background-color: #1f2937;
    /* Dark background */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: right 0.3s ease-in-out;
    z-index: 1050;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    padding: 2rem;
  }

  /* Light Theme Nav Menu Background */
  .lodges-nav .nav-menu {
    background-color: white;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9) !important;
  }

  .lodges-nav .nav-link {
    color: #1f2937 !important;
  }

  /* Overlay when menu is open */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Grid Adjustments for Mobile */
  .features-grid,
  .destinations-grid,
  .flight-cards-container {
    grid-template-columns: 1fr !important;
  }

  .hero-content h1 {
    font-size: 2.5rem !important;
  }
}

@media (max-width: 768px) {
  .flights-page-content {
    grid-template-columns: 1fr !important;
    padding-top: 1rem;
    gap: 1rem;
  }

  .filter-sidebar {
    display: none !important;
  }

  .flights-main {
    width: 100%;
  }

  .results-header {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
  }

  .results-count {
    font-size: 1rem;
  }

  .sort-container {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 5px;
  }

  .sort-btn {
    flex: 1;
    white-space: nowrap;
    font-size: 0.8rem;
    padding: 0.5rem;
  }
}

@media (max-width: 768px) {
  .flight-card-v2 {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    padding: 1.25rem;
    text-align: center;
  }

  .airline-logo-v2 {
    margin: 0 auto;
  }

  .flight-timing-v2 {
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
  }

  .flight-info-badges {
    align-items: center;
    flex-direction: row;
    justify-content: center;
    width: 100%;
  }

  .flight-price-v2 {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    width: 100%;
  }

  .select-flight-btn {
    width: 100%;
    margin-top: 1rem;
  }

  .time-box {
    text-align: center !important;
    flex: 1;
  }
}

/* Icon spacing inside video button */
.home-hero-video i {
  margin-right: 0.3rem;
}

/* Inner Page Refresh */
.inner-page {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(251, 146, 60, 0.12), transparent 28%),
    #080d15;
}

.inner-page::before,
.inner-page::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: 0;
  filter: blur(20px);
}

.inner-page::before {
  top: 120px;
  left: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.18), transparent 70%);
}

.inner-page::after {
  right: -120px;
  bottom: 120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.12), transparent 72%);
}

.inner-page .main-content,
.inner-page .contact-main,
.inner-page .page-main,
.inner-page .flights-page-content,
.inner-page .booking-header,
.inner-page .footer {
  position: relative;
  z-index: 1;
}

.inner-page .bg-overlay {
  background:
    linear-gradient(180deg, rgba(8, 13, 21, 0.58) 0%, rgba(8, 13, 21, 0.42) 36%, rgba(8, 13, 21, 0.94) 100%),
    linear-gradient(120deg, rgba(249, 115, 22, 0.14), transparent 36%);
}

.inner-page .hero-container,
.inner-page .booking-header .nav-container,
.inner-page .flights-page-content,
.inner-page .cards-section {
  width: min(1240px, calc(100% - 2rem));
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.inner-page .hero-container {
  min-height: min(78vh, 820px);
  padding: 7.75rem 0 3rem;
  gap: 1.75rem;
  align-items: stretch;
  justify-content: center;
}

.inner-page .hero-content {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  padding: clamp(1.8rem, 3vw, 2.8rem);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-kicker i {
  color: #fb923c;
}

.inner-page .hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.95;
  margin-bottom: 1rem;
  text-wrap: balance;
}

.inner-page .hero-subtitle {
  max-width: 56ch;
  margin-bottom: 1.75rem;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  color: rgba(255, 255, 255, 0.82);
}

.inner-page .category-buttons {
  gap: 0.85rem;
  margin-bottom: 1.8rem;
}

.inner-page .category-btn {
  padding: 0.72rem 1.15rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 16px 32px rgba(0, 0, 0, 0.18);
}

.inner-page .category-btn:hover {
  background: rgba(249, 115, 22, 0.16);
  border-color: rgba(249, 115, 22, 0.32);
}

.inner-page .stats-grid {
  width: 100%;
  max-width: none;
  gap: 0.9rem;
}

.inner-page .stat-item {
  padding: 1rem 0.95rem;
  border-radius: 20px;
  background: rgba(7, 10, 18, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.inner-page .stat-number {
  font-size: clamp(1.95rem, 3vw, 2.65rem);
  margin-bottom: 0.15rem;
}

.inner-page .booking-form-container {
  max-width: 440px;
}

.inner-page .booking-form,
.inner-page .booking-form-card,
.inner-page .filter-group,
.inner-page .date-selector-tabs,
.inner-page .sort-container,
.inner-page #noResults {
  background: linear-gradient(180deg, rgba(13, 18, 28, 0.84), rgba(10, 14, 22, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.inner-page .booking-form,
.inner-page .booking-form-card {
  border-radius: 28px;
}

.inner-page .form-header h2,
.inner-page .section-header h2 {
  letter-spacing: -0.03em;
}

.inner-page .form-header h2 {
  font-size: 1.45rem;
}

.inner-page .form-input,
.inner-page .form-select,
.inner-page .form-textarea,
.inner-page .booking-form-input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.inner-page .form-input:focus,
.inner-page .form-select:focus,
.inner-page .form-textarea:focus,
.inner-page .booking-form-input:focus {
  outline: none;
  border-color: rgba(249, 115, 22, 0.72);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.14);
}

.inner-page .cards-section {
  padding: 1rem 0 4.5rem;
}

.inner-page .section-header {
  margin-bottom: 1.75rem;
  padding: 1.45rem 1.6rem;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.hotels-page.inner-page .section-header,
.activities-page.inner-page .section-header,
.events-page.inner-page .section-header,
.blog-page.inner-page .section-header,
.contact-page.inner-page .section-header {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  text-align: center;
}

.hotels-page.inner-page .hotel-results-section .section-header,
.activities-page.inner-page .activity-results-section .section-header,
.events-page.inner-page .event-results-section .section-header,
.blog-page.inner-page .blog-results-section .section-header,
.contact-page.inner-page .contact-results-section .section-header {
  text-align: center;
}

.hotels-page.inner-page .section-header .page-kicker,
.activities-page.inner-page .section-header .page-kicker,
.events-page.inner-page .section-header .page-kicker,
.blog-page.inner-page .section-header .page-kicker,
.contact-page.inner-page .section-header .page-kicker {
  margin-left: auto;
  margin-right: auto;
}

.inner-page .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.inner-page .section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}

.inner-page .cards-grid {
  gap: 1.35rem;
}

.inner-page .service-card {
  max-width: none;
  min-height: 100%;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
}

.inner-page .card-image {
  height: 210px;
}

.inner-page .card-content {
  padding: 1.1rem;
}

.inner-page .card-title {
  font-size: 1.1rem;
}

.inner-page .feature-tag {
  background: rgba(249, 115, 22, 0.18);
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.inner-page .card-btn,
.inner-page .btn.btn-primary {
  border-radius: 999px;
}

.inner-page .footer {
  margin-top: 0;
  background: linear-gradient(180deg, rgba(255, 247, 239, 0.98), #ffffff 70%);
  border-top: 1px solid rgba(249, 115, 22, 0.14);
  box-shadow: 0 -18px 44px rgba(8, 13, 21, 0.08);
}

.inner-page .footer-content {
  max-width: 1240px;
}

.hotels-page .hotel-gallery-carousel {
  flex: 1.4;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 1.4rem;
}

.hotels-page .gallery-country-label h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  letter-spacing: 0.14em;
}

.hotels-page .gallery-carousel-wrapper {
  height: clamp(420px, 48vw, 560px);
}

.hotels-page .hotel-commerce-strip {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hotels-page .commerce-pill {
  display: flex;
  gap: 0.95rem;
  align-items: flex-start;
  padding: 1.15rem 1.2rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(13, 18, 28, 0.84), rgba(10, 14, 22, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hotels-page .commerce-pill-icon {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 18px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.24), rgba(234, 88, 12, 0.42));
  color: #fdba74;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hotels-page .commerce-pill-title {
  display: block;
  margin-bottom: 0.35rem;
  color: #fff7ed;
  font-weight: 700;
  font-size: 1rem;
}

.hotels-page .commerce-pill-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  font-size: 0.94rem;
}

.hotels-page .hotel-results-section .section-header,
.hotels-page .catalog-toolbar {
  text-align: center;
}

.hotels-page .catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hotels-page .catalog-toolbar-copy,
.hotels-page .catalog-toolbar-actions,
.hotels-page .catalog-empty-state {
  padding: 1.3rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(13, 18, 28, 0.84), rgba(10, 14, 22, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hotels-page .catalog-overline {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
  line-height: 1.6;
}

.hotels-page .catalog-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.hotels-page .catalog-stat-card {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hotels-page .catalog-stat-value {
  display: block;
  color: #fff7ed;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hotels-page .catalog-stat-label {
  display: block;
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  line-height: 1.45;
}

.hotels-page .catalog-toolbar-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.hotels-page .quick-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hotels-page .quick-filter-btn {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.72rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.hotels-page .quick-filter-btn:hover,
.hotels-page .quick-filter-btn.active {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.26), rgba(234, 88, 12, 0.42));
  border-color: rgba(249, 115, 22, 0.45);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(249, 115, 22, 0.16);
}

.hotels-page .catalog-sort {
  display: grid;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.85rem;
  font-weight: 600;
}

.hotels-page .catalog-sort .form-select {
  min-width: 220px;
}

.hotels-page .catalog-empty-state {
  margin-top: 1.5rem;
  text-align: center;
}

.hotels-page .catalog-empty-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(249, 115, 22, 0.14);
  color: #fdba74;
  font-size: 1.3rem;
}

.hotels-page .catalog-empty-state h3 {
  margin-bottom: 0.45rem;
  color: #fff7ed;
}

.hotels-page .catalog-empty-state p {
  margin: 0 auto 1.25rem;
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.blog-post-page .main-content {
  padding-top: 100px !important;
}

@media (max-width: 1024px) {
  .hotels-page .hotel-commerce-strip,
  .hotels-page .catalog-toolbar {
    grid-template-columns: 1fr;
  }
}

.video-page .video-main {
  position: relative;
  z-index: 1;
}

.video-page .video-shell {
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 8rem 0 4rem;
}

.video-page .video-card {
  background: linear-gradient(180deg, rgba(13, 18, 28, 0.84), rgba(10, 14, 22, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.video-page .video-copy {
  padding: clamp(1.8rem, 4vw, 3rem);
  text-align: center;
}

.video-page .video-copy p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 60ch;
  margin: 0.9rem auto 0;
}

.video-page .video-frame {
  aspect-ratio: 16 / 9;
  width: 100%;
  border: 0;
  display: block;
}

.video-page .video-actions {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  padding: 0 1.5rem 2rem;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .inner-page .hero-container,
  .hotels-page .hotels-hero-container,
  .booking-page.inner-page .booking-hero-container,
  .inner-page .flights-page-content {
    width: min(1240px, calc(100% - 1.5rem));
  }

  .inner-page .hero-container {
    padding-top: 7.25rem;
  }

  .inner-page .cards-section {
    width: min(1240px, calc(100% - 1.5rem));
  }

  .inner-page .flights-page-content {
    grid-template-columns: 1fr;
  }

  .inner-page .filter-sidebar {
    position: static;
    order: 2;
  }

  .inner-page .flights-main {
    order: 1;
  }
}

@media (max-width: 768px) {
  .inner-page .hero-container,
  .inner-page .cards-section,
  .inner-page .booking-header .nav-container,
  .video-page .video-shell {
    width: calc(100% - 1.25rem);
  }

  .inner-page .hero-container {
    min-height: auto;
    padding-top: 6.9rem;
    padding-bottom: 2.25rem;
  }

  .inner-page .hero-content,
  .inner-page .booking-form,
  .inner-page .booking-form-card,
  .hotels-page .hotel-gallery-carousel {
    border-radius: 24px;
    padding: 1.35rem;
  }

  .inner-page .section-header {
    padding: 1.15rem 1.1rem;
  }

  .inner-page .cards-section {
    padding-bottom: 3.5rem;
  }

  .inner-page .card-image {
    height: 190px;
  }

  .inner-page .stats-grid {
    grid-template-columns: 1fr;
  }

  .hotels-page .hotel-commerce-strip {
    width: calc(100% - 1.25rem);
  }

  .hotels-page .commerce-pill,
  .hotels-page .catalog-toolbar-copy,
  .hotels-page .catalog-toolbar-actions,
  .hotels-page .catalog-empty-state {
    padding: 1.1rem;
    border-radius: 20px;
  }

  .hotels-page .catalog-stats {
    grid-template-columns: 1fr;
  }

  .hotels-page .catalog-sort .form-select {
    width: 100%;
    min-width: 0;
  }

  .hotels-page #hotelCatalogGrid .service-card.is-visible {
    display: flex !important;
  }

  .hotels-page #hotelCatalogGrid .service-card.is-hidden-by-filter {
    display: none !important;
  }

  .video-page .video-actions {
    padding-bottom: 1.5rem;
  }
}

/* Blog card link wrapper */
.blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card-link:hover {
  transform: translateY(-6px);
}

.blog-card-link .blog-card {
  height: 100%;
}

/* Blog post article page */
.blog-post-page .post-hero {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 3rem;
  border-radius: 28px;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.blog-post-page .post-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-post-page .post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.85) 100%);
}

.blog-post-page .post-hero-content {
  position: relative;
  padding: 3rem 3rem 2.5rem;
  color: #fff;
  z-index: 1;
  width: 100%;
}

.blog-post-page .post-category {
  display: inline-block;
  padding: 0.45rem 1rem;
  background: #f97316;
  color: #fff;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.blog-post-page .post-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 1.25rem;
  color: #fff;
}

.blog-post-page .post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.blog-post-page .post-meta i {
  margin-right: 0.4rem;
  color: #f97316;
}

.blog-post-page .post-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
  color: #e2e8f0;
  font-size: 1.1rem;
  line-height: 1.85;
}

.blog-post-page .post-body p {
  margin: 0 0 1.4rem;
}

.blog-post-page .post-body h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.01em;
}

.blog-post-page .post-back {
  margin-top: 3rem;
  text-align: center;
}

.blog-post-page .post-back .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .blog-post-page .post-hero {
    min-height: 360px;
    border-radius: 20px;
    margin: 0 1rem 2rem;
  }

  .blog-post-page .post-hero-content {
    padding: 2rem 1.5rem 1.75rem;
  }

  .blog-post-page .post-body {
    padding: 0 1.25rem 4rem;
    font-size: 1.02rem;
  }
}

/* Contact Page Layout */
.contact-page .contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.contact-page .contact-info-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-page .contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 1.5rem;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-page .contact-info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.45);
}

.contact-page .contact-info-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f97316, #fb923c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.35);
}

.contact-page .contact-info-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-page .contact-info-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}

.contact-page .contact-info-body p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.contact-page .contact-info-body a,
.contact-page .contact-info-body span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fb923c;
  text-decoration: none;
  margin-top: 0.35rem;
  word-break: break-word;
}

.contact-page .contact-info-body a:hover {
  color: #f97316;
  text-decoration: underline;
}

/* Contact Form */
.contact-page .contact-form-card {
  padding: 2.5rem;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.contact-page .contact-form-header {
  margin-bottom: 2rem;
  text-align: left;
}

.contact-page .contact-form-header h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.85rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 0.4rem;
}

.contact-page .contact-form-header p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.contact-page .contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-page .contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-page .contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-page .contact-form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-page .contact-form-group input,
.contact-page .contact-form-group select,
.contact-page .contact-form-group textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.98rem;
  font-family: inherit;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.contact-page .contact-form-group input::placeholder,
.contact-page .contact-form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.contact-page .contact-form-group input:focus,
.contact-page .contact-form-group select:focus,
.contact-page .contact-form-group textarea:focus {
  outline: none;
  border-color: #f97316;
  background: rgba(255, 255, 255, 0.1);
}

.contact-page .contact-form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f97316'%3e%3cpath d='M4 6l4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

.contact-page .contact-form-group select option {
  background: #0f172a;
  color: #fff;
}

.contact-page .contact-form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-page .contact-submit-btn {
  margin-top: 0.5rem;
  padding: 1.05rem 1.5rem;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-page .contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(249, 115, 22, 0.55);
}

@media (max-width: 900px) {
  .contact-page .contact-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .contact-page .contact-form-card {
    padding: 1.75rem 1.5rem;
  }

  .contact-page .contact-form-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .contact-page .contact-form-header h3 {
    font-size: 1.55rem;
  }
}

/* ============================================================
   MOBILE NAV — polished override
   ============================================================ */

/* The .nav-toggle button is legacy/dead (no JS wiring).
   Kill it everywhere so we don't get a duplicate hamburger. */
.nav-toggle {
  display: none !important;
}

/* Stop the legacy .nav-menu from appearing on mobile too */
@media (max-width: 768px) {
  .nav-menu {
    display: none !important;
  }
}

/* Mobile menu button — pill style with background */
@media (max-width: 768px) {
  .mobile-menu-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .mobile-menu-btn:hover,
  .mobile-menu-btn:active {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0.96);
  }

  .mobile-menu-btn .hamburger {
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: #ffffff;
  }

  .lodges-nav .mobile-menu-btn {
    background: rgba(31, 41, 55, 0.08);
    border-color: rgba(31, 41, 55, 0.18);
  }

  .lodges-nav .mobile-menu-btn .hamburger {
    background: #1f2937;
  }

  /* Tighter nav container */
  .nav-container {
    padding: 0.6rem 1rem !important;
    gap: 0.5rem;
  }

  /* Slightly bigger, more legible mobile logo */
  .logo-text {
    font-size: 1rem !important;
    white-space: nowrap;
  }

  .logo-text .logo-desktop {
    display: inline !important;
  }

  .logo-text .logo-mobile {
    display: none !important;
  }

  #logo-typed {
    font-size: 0.95rem;
  }

  .logo-img {
    width: 34px !important;
    height: 34px !important;
  }

  /* ---- Full-width slide-down mobile menu ---- */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    padding: 5rem 1.75rem 2rem;
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.98), rgba(11, 18, 32, 0.98));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    gap: 0.4rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.25s ease;
    z-index: 1200;
    display: flex !important;
  }

  .mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .lodges-nav .mobile-menu {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 250, 0.98));
  }

  .mobile-nav-link {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 1.05rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 0.9rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
  }

  .mobile-nav-link::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #f97316;
    font-size: 0.95rem;
    opacity: 0.7;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .mobile-nav-link:hover,
  .mobile-nav-link:active {
    color: #fb923c;
    padding-left: 0.9rem;
  }

  .mobile-nav-link:hover::before {
    transform: translateX(3px);
    opacity: 1;
  }

  .lodges-nav .mobile-nav-link {
    color: #1f2937;
    border-bottom-color: rgba(31, 41, 55, 0.08);
  }

  .mobile-book-btn {
    margin-top: 1.25rem;
    padding: 1rem 1.5rem !important;
    font-size: 1rem !important;
    border-radius: 14px !important;
    text-align: center;
    justify-content: center;
  }

  /* Hamburger animation when active */
  .mobile-menu-btn.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .mobile-menu-btn.active .hamburger:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Lock body scroll when menu open */
  body.mobile-menu-open {
    overflow: hidden;
  }
}
