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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  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);
}

.lodges-nav {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  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;
}

.lodges-nav .logo-text {
  color: #1f2937;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
  color: white;
}

.lodges-nav .nav-link {
  color: #6b7280;
}

.lodges-nav .nav-link:hover,
.lodges-nav .nav-link.active {
  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;
}

.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.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.75rem;
}

.btn-primary {
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  color: white;
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d97706, #dc2626);
  transform: translateY(-1px);
}

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

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

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

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

.hero-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
}

.hero-content {
  flex: 2;
  max-width: 800px;
}

.hero-title {
  font-size: 4rem;
  font-weight: bold;
  color: white;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.gradient-text {
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.5;
}

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

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

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

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

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

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

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

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

.category-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

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

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

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

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

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

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

.booking-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

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

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

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

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

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

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

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

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

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

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

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

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

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

  .booking-form {
    padding: 1.5rem;
  }

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

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

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

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

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

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

/* Lodges Page Styles */
.lodges-page {
  background: linear-gradient(135deg, #dbeafe, #fed7aa);
  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: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

/* Filters */
.filters-section {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.view-btn.active,
.view-btn:hover {
  background: rgba(255, 255, 255, 0.8);
}

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

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

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

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

.lodge-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.lodge-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

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

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

.lodge-type {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: #ea580c;
  color: white;
  padding: 0.125rem 0.5rem;
  border-radius: 0.75rem;
  font-size: 0.625rem;
  font-weight: 500;
}

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

.star-icon {
  color: #f59e0b;
  font-size: 0.75rem;
}

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

.lodge-content {
  padding: 1rem;
}

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

.lodge-name {
  font-size: 1rem;
  font-weight: bold;
  color: #1f2937;
  margin: 0;
  line-height: 1.2;
}

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

.price-amount {
  font-size: 1.125rem;
  font-weight: bold;
  color: #ea580c;
  line-height: 1;
}

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

.lodge-location {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #6b7280;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

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

.lodge-description {
  color: #374151;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.amenity-tag {
  background: rgba(107, 114, 128, 0.1);
  color: #374151;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-size: 0.625rem;
}

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

.lodge-reviews {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  color: #6b7280;
  font-size: 0.625rem;
  flex: 1;
}

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

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

/* Footer */
.footer {
  background: linear-gradient(135deg, #1f2937, #111827);
  color: white;
  padding: 3rem 0;
  margin-top: 4rem;
}

.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 {
  color: #f59e0b;
}

/* Booking Page Styles */
.booking-page {
  background: linear-gradient(135deg, #dbeafe, #fed7aa);
  min-height: 100vh;
}

.booking-header {
  background: linear-gradient(135deg, #ea580c, #f59e0b);
  color: white;
  padding: 6rem 2rem 3rem;
  text-align: center;
}

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

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

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

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

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

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

.form-section {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

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

.section-header h2 {
  color: #1f2937;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: #6b7280;
}

.section-content {
  padding: 2rem;
}

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

.booking-page .form-input,
.booking-page .form-select,
.booking-page .form-textarea {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #1f2937;
}

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

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

.counter-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.5);
  color: #1f2937;
  font-size: 1.25rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.counter-btn:hover {
  background: rgba(255, 255, 255, 0.8);
}

.guest-number {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  min-width: 3rem;
  text-align: center;
}

.nights-info {
  background: #dbeafe;
  border: 1px solid #bfdbfe;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-top: 1rem;
}

.nights-info p {
  color: #1e40af;
  font-size: 0.875rem;
  margin: 0;
}

.help-info {
  background: #dbeafe;
  border: 1px solid #bfdbfe;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-top: 1rem;
}

.help-info h4 {
  color: #1e40af;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

.help-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1e40af;
  font-size: 0.875rem;
}

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

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

.activity-item {
  position: relative;
}

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

.activity-label {
  display: block;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  padding: 1rem;
  padding-left: 3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.activity-checkbox:checked + .activity-label {
  background: rgba(59, 130, 246, 0.1);
  border-color: #3b82f6;
}

.activity-name {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.activity-description {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.activity-price {
  font-weight: 600;
  color: #ea580c;
  font-size: 0.875rem;
}

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

.summary-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

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

.summary-header h2 {
  color: #1f2937;
  font-size: 1.5rem;
}

.summary-content {
  padding: 2rem;
}

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

.summary-section h4 {
  color: #1f2937;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: #374151;
}

.summary-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: 1rem 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .booking-summary {
    position: static;
  }
}

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

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

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

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

  .hero-subtitle {
    font-size: 1.25rem;
  }

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

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

  .stats-grid {
    gap: 1rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .booking-form {
    padding: 1.5rem;
  }

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

  .filters-section {
    padding: 1.5rem;
  }

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

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

  .success-card {
    padding: 2rem;
  }
}

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

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

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

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

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

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

/* About Us Section */
.about-us-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(10px);
  position: relative;
}

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

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

.about-header h2 {
  font-size: 3rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1rem;
}

.about-header p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.about-cards-container {
  overflow: hidden;
  position: relative;
}

.about-cards {
  display: flex;
  gap: 9rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0 2rem 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  align-items: stretch;
}

.about-cards::-webkit-scrollbar {
  display: none;
}

.about-card {
  flex: 0 0 280px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

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

.about-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-icon {
  font-size: 1.5rem;
}

.about-content {
  padding: 2rem;
}

.about-content h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1rem;
}

.about-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.7rem;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.feature-tag {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.about-link {
  color: #f59e0b;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.about-link:hover {
  color: #d97706;
}

.about-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background: #f59e0b;
  transform: scale(1.2);
}

/* Mobile Responsiveness for About Section */
@media (max-width: 768px) {
  .about-header h2 {
    font-size: 2.5rem;
  }

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

  /* Stack cards vertically on mobile instead of horizontal scroll */
  .about-cards {
    flex-direction: column;
    overflow-x: visible;
    align-items: center;
  }

  .about-card {
    flex: none;
    width: 100%;
    max-width: 350px;
    margin-bottom: 2rem;
  }

  .about-content {
    padding: 1.5rem;
  }

  .about-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .about-us-section {
    padding: 4rem 0;
  }

  .about-header h2 {
    font-size: 2rem;
  }

  .about-card {
    max-width: 300px;
  }

  .about-cards {
    gap: 1rem;
  }
}

/* Lodge Selection Styles */
.selected-lodge-info {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.lodge-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
}

.lodge-icon {
  font-size: 1.25rem;
}

.lodge-location {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-left: auto;
}

.lodge-selection-info {
  background: #dbeafe;
  border: 1px solid #bfdbfe;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-top: 1rem;
}

.lodge-selection-info p {
  margin: 0;
  color: #1e40af;
  font-size: 0.875rem;
}

.lodge-selection-info p:first-child {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.lodge-note {
  font-style: italic;
  color: #3b82f6 !important;
  font-size: 0.75rem !important;
}

.room-type-note {
  margin-top: 0.5rem;
  padding: 0.5rem;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 0.25rem;
}

.room-type-note p {
  margin: 0;
  color: #0369a1;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Pricing highlight for selected lodge */
.lodge-specific-pricing {
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
  border: 1px solid #f59e0b;
}

.lodge-specific-pricing .price-amount {
  color: #ea580c;
  font-weight: bold;
}

/* Mobile responsiveness for lodge selection */
@media (max-width: 768px) {
  .lodge-badge {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .lodge-location {
    margin-left: 0;
  }

  .selected-lodge-info {
    padding: 0.75rem;
  }
}

/* Gallery Indicator and Modal Styles */
.gallery-indicator {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.gallery-icon {
  font-size: 0.75rem;
}

/* Gallery Modal Styles */
.gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.gallery-content {
  max-width: 90vw;
  max-height: 90vh;
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.gallery-header h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #1f2937;
}

.gallery-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #6b7280;
  cursor: pointer;
  padding: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  transition: all 0.2s ease;
}

.gallery-close:hover {
  background: #f3f4f6;
  color: #1f2937;
}

.gallery-image-container {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.gallery-image-container img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.gallery-nav:hover {
  background: rgba(0, 0, 0, 0.7);
}

.gallery-prev {
  left: 1rem;
}

.gallery-next {
  right: 1rem;
}

.gallery-footer {
  padding: 1rem;
  text-align: center;
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
}

.gallery-footer span {
  color: #6b7280;
  font-size: 0.875rem;
}

/* Mobile Gallery Styles */
@media (max-width: 768px) {
  .gallery-content {
    max-width: 95vw;
    max-height: 95vh;
  }

  .gallery-image-container {
    min-height: 300px;
  }

  .gallery-nav {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
  }

  .gallery-prev {
    left: 0.5rem;
  }

  .gallery-next {
    right: 0.5rem;
  }
}
