body {
  overflow-y: auto !important;
  height: auto !important;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-color);
  color: var(--text-color);
}

.navbar {
  background-color: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(10px);
  opacity: 1 !important;
  box-shadow: 0 2px 10px var(--light-shadow);
  border-bottom: 1px solid var(--line-color);
}

.navbar-logo
 {
  color: var(--text-color) !important;
}

.navbar:hover {
  background-color: rgba(255, 255, 255, 0.95) !important;
}
  .home-icon {
  font-size: 3rem;
  color: black;
  text-decoration: none;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease, color 0.3s ease;
}

.home-icon:hover {
  transform: translateY(-50%) scale(1.1);
  color: #c8a97e;
}

/* Make logo link back to home too */
.navbar-logo {
  cursor: pointer;
}

/* Remove existing menu-toggle button and navbar-links completely */
.menu-toggle, .navbar-links {
  display: none !important;
}
.carousel-section {
  height: 85vh;
  width: 100%;
  position: relative;
  background-color: var(--bg-color);
  margin-top: 80px;
}

.carousel-container {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s ease;
  aspect-ratio: 16/9;
}

.carousel-nav {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 5;
}

.carousel-prev,
.carousel-next {
  background: rgba(176, 137, 104, 0.7);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-slide:hover {
  transform: scale(1.02);
}

.carousel-prev:hover,
.carousel-next:hover {
  background: var(--accent-color);
}

.carousel-indicators {
  display: flex;
  gap: 10px;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-indicator.active {
  background: white;
}

.carousel-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  pointer-events: none;
}

/* Main Content Layout */
.location-container {
  display: flex;
  max-width: 100%;
  margin: 0 auto;
  padding: 2rem;
  background-color: var(--bg-color);
  min-height: 100vh;
}

.location-content {
  flex: 2;
  padding-right: 3rem;
  max-width: 800px;
  margin-right: auto;
}

.booking-panel {
  flex: 1;
  position: sticky;
  top: 100px;
  height: fit-content;
  max-height: calc(100vh - 120px);
  background-color: var(--card-bg);
  border: 1px solid var(--line-color);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 15px 30px var(--light-shadow);
  margin-bottom: 2rem;
  overflow: visible;
}

/* Content Styling */
.location-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--text-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.location-description p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--text-color);
  opacity: 0.9;
  font-family: "Work Sans", sans-serif;
}

.location-features {
  margin-bottom: 3rem;
}

.location-features h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.location-features h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--accent-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-icon {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.feature-text {
  color: var(--text-color);
  opacity: 0.9;
  font-family: "Work Sans", sans-serif;
}

.itinerary-section {
  margin-bottom: 3rem;
}

.itinerary-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.itinerary-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--accent-color);
}

.itinerary-item {
  margin-bottom: 1.5rem;
  border: 1px solid var(--line-color);
  border-radius: 10px;
  overflow: hidden;
}

.itinerary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  background-color: var(--secondary-color);
  cursor: pointer;
}

.itinerary-header h3 {
  font-size: 1.4rem;
  margin: 0;
  color: var(--text-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.toggle-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: var(--accent-color);
}

.itinerary-item.active .toggle-icon {
  transform: rotate(45deg);
}

.itinerary-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1.5rem;
  padding: 1.5rem 1.5rem 1.5rem;
  display: none;
}

.itinerary-item.active .itinerary-content {
  display: grid;
}

/* Updated itinerary image styling for stacked images */
.itinerary-images {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.itinerary-image {
  flex: 1;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px var(--light-shadow);
}

.primary-image {
  margin-bottom: 0;
}

.secondary-image {
  margin-top: 0;
}

.itinerary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.5s ease;
}

.itinerary-image:hover img {
  transform: scale(1.05);
}



/* Responsive adjustments */
@media (max-width: 768px) {
  .itinerary-content {
    grid-template-columns: 1fr;
  }
  
  .itinerary-images {
    flex-direction: row;
    margin-bottom: 20px;
  }
  
  .itinerary-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .itinerary-images {
    flex-direction: column;
  }
  
  .itinerary-image {
    height: 200px;
  }
}

.itinerary-details p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-color);
  opacity: 1;
  font-family: "Work Sans", sans-serif;
}

.must-know-section {
  margin-bottom: 3rem;
}

.must-know-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.must-know-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--accent-color);
}

.must-know-list {
  list-style-type: none;
  padding: 0;
}

.must-know-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  opacity: 1;
  font-family: "Work Sans", sans-serif;
}

.must-know-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

.bottom-cta {
  text-align: center;
  margin: 3rem 0;
}

/* Booking Panel Styling */
.price-details {
  margin-bottom: 2rem;
  text-align: center;
}

.price-details h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-family: "Montserrat", sans-serif;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
  font-family: "Montserrat", sans-serif;
}

.price-info {
  font-size: 0.9rem;
  color: var(--text-color);
  opacity: 0.7;
  font-family: "Work Sans", sans-serif;
}

.booking-form h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  color: var(--text-color);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  background-color: white;
  border: 1px solid var(--line-color);
  border-radius: 4px;
  color: var(--text-color);
  font-family: "Work Sans", sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-color);
  outline: none;
}

.form-group textarea {
  height: 100px;
  resize: vertical;
}

.submit-button {
  width: 100%;
  padding: 15px;
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.submit-button:hover {
  background-color: #9a775a;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--light-shadow);
}

/* Footer Styling */
.site-footer {
  background-color: var(--secondary-color);
  color: var(--text-color);
  padding: 80px 40px 40px;
  margin-top: auto;
  width: 100%;
}

/* Package Map Styling */
.package-map-section {
  margin: 2rem 0 3rem;
  padding: 1rem 0;
}

.package-map-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  position: relative;
  display: inline-block;
}

.package-map-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--accent-color);
}

.package-map {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  margin-bottom: 30px;
    box-shadow: 0 5px 20px var(--light-shadow);
  border: 1px solid var(--line-color);
  z-index: 0;
}

.map-custom-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Modal Styling */
.booking-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  margin: 10% auto;
  width: 90%;
  max-width: 500px;
  animation: modalFade 0.3s ease-in-out;
}

@keyframes modalFade {
  from {opacity: 0; transform: translateY(-30px);}
  to {opacity: 1; transform: translateY(0);}
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  color: var(--text-color);
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

.booking-panel-modal {
  background-color: var(--bg-color);
  border: 1px solid var(--line-color);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  color: var(--text-color);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .carousel-section {
    height: 50vh;
    margin-top: 60px;
  }
  
  .location-container {
    flex-direction: column;
    padding: 1.5rem;
  }

  .location-content {
    padding-right: 0;
    margin-right: 0;
    max-width: 100%;
  }

  .booking-panel {
    position: relative;
    top: 0;
    width: 100%;
    margin-top: 3rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .carousel-prev,
  .carousel-next {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }

  .booking-panel {
    position: relative;
    top: 0;
    width: 100%;
    margin-top: 2rem;
    max-height: none;
    overflow: visible;
  }
  
  .location-title {
    font-size: 2.5rem;
  }

  .itinerary-content {
    grid-template-columns: 1fr;
  }
  
  .modal-content {
    margin: 15% auto;
    width: 95%;
  }
  
  .booking-panel-modal {
    padding: 1.5rem;
  }
  
  .package-map {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .location-title {
    font-size: 2rem;
  }
  
  .location-features h2,
  .itinerary-section h2,
  .must-know-section h2,
  .package-map-section h2 {
    font-size: 1.5rem;
  }
  
  .price {
    font-size: 2.5rem;
  }
}

/* Ensure details paragraphs have proper alignment */
.itinerary-details p {
  margin-bottom: 12px;
  padding-left: 5px;
  line-height: 1.6;
  position: relative;
  display: flex;
  align-items: baseline;
}

.itinerary-details .feature-icon {
  margin-right: 10px;
  flex-shrink: 0;
}

.optional-tag {
  display: inline-block;
  font-size: 0.85em;
  font-weight: 500;
  color: var(--text-color);
  opacity: 0.7;
  margin-left: 5px;
}