    :root {
      --primary-color: #00724f;
      --secondary-color: #f5f5f5;
      --text-color: #333;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {  font-family: 'Lora', serif; line-height: 1.6; color: var(--text-color); }
    a { text-decoration: none; color: var(--primary-color); }

    .top-bar {
 display: flex;
  justify-content: space-between;
  align-items: center;
  background: #393739;
  color: #fff;
  padding: 15px 5%; /* Adjust padding for more space on top and bottom */
  font-size: 15px;
  font-weight: 500;
    }
    .top-bar .left i {
      margin-right: 8px;
      color: #fff;
    }
    .top-bar .left span {
      margin-right: 20px;
    }
    .top-bar .right a {
      background: #fff;
      color: var(--primary-color);
      padding: 10px 24px;
      border-radius: 50px;
      font-weight: bold;
      font-size: 14px;
      text-transform: uppercase;
      transition: all 0.3s ease;
      border: 2px solid #fff;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }
    .top-bar .right a:hover {
      background: var(--primary-color);
      color: #fff;
      border: 2px solid #fff;
    }
	
	/* Slider Container */
.hero-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh; /* Full screen height, adjust as needed */
}

.slider {
  display: flex;
  transition: transform 1s ease-in-out;
  width: 100%;
  height: 100%;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
}

/* Slide Image */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Keeps image aspect ratio while covering the area */
  display: block;
}

/* Caption Styling */
.caption {
  position: absolute;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for readability */
  padding: 25px 40px;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
}

.caption h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.caption p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* Navigation Buttons */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  color: #fff;
  font-size: 40px;
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  z-index: 10;
  transition: background-color 0.3s, transform 0.3s;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.7);
  transform: scale(1.1); /* Slight enlargement effect */
}

/* Positioning Navigation Buttons */
.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .caption h1 {
    font-size: 28px;
  }

  .caption p {
    font-size: 16px;
  }

  .prev, .next {
    font-size: 30px;
    padding: 10px;
  }
}




    @media (max-width: 768px) {
		
	
      .top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        text-align: left;
      }
    }
	
	.book-now-btn {
  background: (#00975f, #00bd6f); /* Holiday Inn Express green gradient */
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  background: #fff;
    color: #00724f;
}
.book-now-btn:hover {
  background: #00724f;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}


.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%; /* More space on top and bottom */
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  flex-wrap: wrap;
  border: 15px solid;
    border-color: #8da19c;
}

.nav-bar {
  border-radius: 20px;
  padding: 0px 5%;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 60px;
  max-width: 150px;
}

.nav-menu {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  padding-top: 25px;
}

.nav-menu a {
  font-weight: 600;
  color: #00724f;
  text-transform: uppercase;
  font-size: 16px;
  transition: color 0.3s;
      cursor: pointer;
}

.nav-menu a:hover {
 color: #e96f1f;
}

.nav-menu a.active {
  color: #e96f1f;
  font-weight: bold;
  text-decoration: none; /* Removes underline */
}

.nav-call {
  font-weight: bold;
  font-size: 14px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-call a {
  color: var(--primary-color);
  text-decoration: none;
}

.nav-call i {
  color: var(--primary-color);
}

.nav-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
    position: absolute;
    right: 5%;
    top: 20px;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    gap: 10px;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-call {
    align-self: flex-end;
    margin-top: 10px;
  }
  .col-lg-2 {
    width: 30% !important;
    float: left!important;
}
}

.hero-slider {
  position: relative;
  overflow: hidden;
 /* height: 90vh;
  max-height: 700px;*/
}
.hero-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slider {
  display: flex;
  transition: transform 1s ease;
  width: 100%;
  height: 100%;
}

.slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.caption {
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 25px 40px;
  border-radius: 10px;
}

.caption h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.caption p {
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-slider {
    height: 60vh;
  }

  .caption h1 {
    font-size: 24px;
  }

  .caption p {
    font-size: 14px;
  }
}




/* Dropdown Container */
.dropdown {
  position: relative;
}

/* Dropdown Button Link */
.dropbtn {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Dropdown Menu Content */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 180px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  flex-direction: column;
  top: 100%;
  left: 0;
}

.dropdown-content a {
  padding: 10px 15px;
  color: var(--text-color);
  font-size: 14px;
  text-transform: none;
  border-bottom: 1px solid #eee;
}

.dropdown-content a:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* Desktop hover */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-content {
    display: flex;
  }
}

/* Mobile click toggle */
@media (max-width: 768px) {
  .dropdown .dropdown-content {
    position: relative;
    background-color: #f9f9f9;
    border: none;
    box-shadow: none;
    width: 100%;
  }

  .dropdown.active .dropdown-content {
    display: flex;
  }
}


.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  max-height: 90vh;
}

.slider {
  display: flex;
  transition: transform 0.8s ease-in-out;
  width: 100%;
  height: 100%;
}

.slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: none;
  align-items: center;
  justify-content: center;
}

.slide {
  position: relative;
  min-width: 100%;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slide.active {
  display: flex;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}

.caption {
  position: absolute;
  bottom: 20%;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px 30px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
}

.caption h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.caption p {
  font-size: 16px;
}


.slide.active {
  display: flex;
}


/* Navigation Buttons */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.4);
  color: #fff;
  font-size: 30px;
  padding: 10px 16px;
  cursor: pointer;
  border: none;
  z-index: 10;
  transition: background 0.3s;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.7);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .caption h1 {
    font-size: 28px;
  }

  .caption p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .hero-s
}

@media (max-width: 480px) {
	
	.col-lg-2 {
    width: 100% !important;
    float: left;
}
    .hero-slider {
        height: 32vh;
    }

  .caption h1 {
    font-size: 18px;
	        display: none;
  }

  .caption p {
    font-size: 13px;
  }

  .prev, .next {
    font-size: 18px;
  }
  
  .slide.active {
  display: flex;
}

.slide {
    min-width: 100%;
    height: 100%;

}

.prev, .next {
    position: absolute;
    top: 25%;


}

}

.content-section {
  padding: 40px 5%;
  background: #f9f9f9;
  text-align: center;
}

/*.content-wrapper {
  max-width: 750px;
  margin: auto;
  color: #333;
}*/

#additionalContent.hidden {
  display: none;
}

#toggleBtn {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}

#toggleBtn:hover {
  background-color: #005f3c;
}

.about-fullwidth {
  width: 100%;
  padding: 50px 5%;
  font-family: Arial, sans-serif;
  text-align: left;
}

.about-container {
  max-width: 100%;
  margin: auto;
  color: #333;
}

.about-fullwidth h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-fullwidth h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.about-fullwidth .intro {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
      font-family: 'Poppins';
}
}

.more-content {
  font-size: 15px;
  line-height: 1.7;
  display: none;
}

#aboutToggleBtn {
  margin-top: 20px;
  padding: 10px 24px;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display:none;
}

#aboutToggleBtn:hover {
  background-color: #005f3c;
}
/* General Styles */
/* General Styles */
/* General Styles */
:root {
  --primary-color: #00724f;
  --secondary-color: #f5f5f5;
  --text-color: #333;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

/* Amenities Section */
.amenities-section {
	  background: linear-gradient(to bottom, #006847 0%, #f5f5f5 100%);
  /*background: linear-gradient(to right, var(--gradient-start), var(--gradient-end)); /* Gradient background */
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.1); /* Soft inner shadow for depth */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.amenities-section-title {
  font-size: 48px;
  font-weight: 800;
  color: #fff; /* White text for contrast */
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 40px;
  text-align: center;
  font-family: 'Poppins', sans-serif; /* Modern font family */
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4); /* Text shadow for better readability */
  background: -webkit-linear-gradient(left, #00975f, #00bd6f); /* Green gradient background for text */
  -webkit-background-clip: text; /* Clip the gradient to the text */
  background-clip: text; /* For non-WebKit browsers */
  transition: none; /* Disable any transition */
  animation: none; /* Disable any animation */
  text-align:center;
  margin: 0 auto;
}

/* Hover Effect for Section Title */
.section-title:hover {
  color: #f39c12; /* Change text color to orange on hover */
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5); /* Add a stronger shadow on hover */
}

/* Add subtle parallax effect */
.amenities-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
  position: relative;
  z-index: 2; /* Ensures that the amenities appear above the background */
}

.amenity {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 14%;
  height: 300px;
  flex: 1;
  position: relative;
  z-index: 3; /* Ensures the amenities are above the background */
}

.amenity em {
  font-size: 50px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.amenity h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.amenity p {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.5;
  font-family: 'Poppins';
}

/* Hover Effects */
.amenity:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
}

/* Add background overlay effect */
.amenity:hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2); /* Slight dark overlay */
  border-radius: 10px;
  z-index: -1; /* Ensures it stays behind the text */
  border: 5px solid;
    border-color: #4eefca;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .amenity h3 {
    font-size: 18px;
  }

  .amenity p {
    font-size: 13px;
  }

  .amenity {
    width: 48%;
  }
}

@media (max-width: 480px) {
  .amenity {
    width: 100%;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.amenity:nth-child(1) {
  animation-delay: 0.2s;
}

.amenity:nth-child(2) {
  animation-delay: 0.4s;
}

.amenity:nth-child(3) {
  animation-delay: 0.6s;
}

.amenity:nth-child(4) {
  animation-delay: 0.8s;
}

.amenity:nth-child(5) {
  animation-delay: 1s;
}

.amenity:nth-child(6) {
  animation-delay: 1.2s;
}
/* Section Styling */
/* Apply a smooth gradient background */
.video-attraction-section {
  background: linear-gradient(to right, #00bd6f, #00975f); /* Green gradient */
  padding: 60px 5%;
  font-family: 'Poppins', sans-serif;
  text-align: left;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background-color: #77aa77;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 2 1'%3E%3Cdefs%3E%3ClinearGradient id='a' gradientUnits='userSpaceOnUse' x1='0' x2='0' y1='0' y2='1'%3E%3Cstop offset='0' stop-color='%2377aa77'/%3E%3Cstop offset='1' stop-color='%234fd'/%3E%3C/linearGradient%3E%3ClinearGradient id='b' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%23cf8' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23cf8' stop-opacity='1'/%3E%3C/linearGradient%3E%3ClinearGradient id='c' gradientUnits='userSpaceOnUse' x1='0' y1='0' x2='2' y2='2'%3E%3Cstop offset='0' stop-color='%23cf8' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23cf8' stop-opacity='1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect x='0' y='0' fill='url(%23a)' width='2' height='1'/%3E%3Cg fill-opacity='0.5'%3E%3Cpolygon fill='url(%23b)' points='0 1 0 0 2 0'/%3E%3Cpolygon fill='url(%23c)' points='2 1 2 0 0 0'/%3E%3C/g%3E%3C/svg%3E");
background-attachment: fixed;
background-size: cover;
}

/* Heading Styles */
.video-attraction-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}

/* Subheading for Top Attractions */
.video-attraction-section .top-attractions {
  font-size: 24px;
  color: #e0f7fa;
  /*margin-bottom: 30px;*/
  font-weight: 600;
}

/* Card-style for the Attractions section */
.video-attraction-section .attraction-list {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

/* Individual Attraction Card */
.video-attraction-section .attraction-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 30%;
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
}

/* Attraction Card Hover Effect */
.video-attraction-section .attraction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

/* Icons for each attraction */
.video-attraction-section .attraction-card em {
  font-size: 40px;
  color: #00975f;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

/* Hover effect for icons */
.video-attraction-section .attraction-card:hover em {
  color: #00bd6f;
}

/* Description for each attraction */
.video-attraction-section .attraction-card p {
  font-size: 16px;
 color: #00975f;
    line-height: 1.5;
    font-weight: 600;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  .video-attraction-section .attraction-list {
    flex-direction: column;
    align-items: center;
  }

  .video-attraction-section .attraction-card {
    width: 80%;
    margin-bottom: 20px;
  }

  .video-attraction-section h2 {
    font-size: 30px;
  }

  .video-attraction-section .top-attractions {
    font-size: 20px;
  }
}

/* Styling for the Video Section */
.video-section {
  background: #f0f0f0; /* Light background for the video section */
  padding: 30px 5%;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  /*margin-top: 40px;*/
    background: linear-gradient(to bottom, #006847 0%, #f5f5f5 100%);
background-attachment: fixed;
background-size: cover;
}

/* Video Title */
.video-section h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
  font-style:italic;
}

/* Video Player */
.video-section video {
  width: 100%;
  height: auto;
  max-width: 800px; /* Limit the maximum width */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease-in-out; /* Add zoom effect on hover */
}

/* Video Hover Effect (Zoom In) */
.video-section video:hover {
  transform: scale(1.05); /* Slight zoom effect */
}

/* Responsive Design */
@media (max-width: 768px) {
  .video-section h3 {
    font-size: 28px;
  }

  .video-section video {
    max-width: 100%; /* Make the video responsive on small screens */
  }
}




/* Container to Fill Full Width */
.container {
  width: 100%; /* Full width */
  padding: 0; /* Remove any padding */
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

/* Section Title */
.video-section-title  {
  text-align: center;
 font-size: 28px;
  color: #fff; /* White text for contrast */
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4); /* Text shadow for better readability */
  background: -webkit-linear-gradient(left, #00975f, #00bd6f); /* Green gradient background for text */
  -webkit-background-clip: text; /* Clip the gradient to the text */
  background-clip: text; /* For non-WebKit browsers */
  transition: all 0.3s ease; /* Smooth transition for hover effect */
      margin: 0 auto;
	      color: #fff;
}

/* Content Wrapper */
.content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  width: 100%; /* Full width */
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  padding: 0 20px; /* Padding to prevent text from touching screen edges */
  box-sizing: border-box; /* Ensure padding doesn't cause overflow */
}

/* Video Column */
.video-column {
  flex: 1;
  max-width: 50%;
  min-width: 320px; /* Ensure the video column has a minimum width */
}

.video-column video {
  width: 100%; /* Make video responsive */
  height: 100%; /* Ensure video covers full height of its container */
  object-fit: cover; /* Maintain aspect ratio while covering the container */
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Details Column */
.details-column {
  flex: 1;
  max-width: 50%;
  font-family: 'Roboto', sans-serif;
  color: #fff; /* White text for contrast */
  min-width: 320px; /* Ensure the details column has a minimum width */
}

.details-column h3 {
  font-size: 30px;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.details-column p {
  font-size: 18px;
  color: var(--text-color);
  margin-bottom: 20px;
}

.details-column ul {
  list-style: none;
  padding-left: 0;
}

.details-column ul li {
  font-size: 16px;
  margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .video-column,
  .details-column {
    max-width: 100%; /* Stack the content vertically on small screens */
    margin-bottom: 30px;
  }

  .details-column h3 {
    font-size: 24px;
  }

  .details-column p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .video-column video {
    height: auto; /* Adjust video height on smaller screens */
  }
}


/* Footer Section */
/* Footer Section Styling */
/* Footer Section Styling */

.footer {
	
	
 /* background: url('https://www.transparenttextures.com/patterns/black-linen.png'), #00724f; /* Texture overlay with light color */
  background-blend-mode: overlay; /* Blend the texture with the background color */
  background-size: cover; /* Ensure texture covers the full background */
  color: #fff; /* White text for contrast */
  padding: 40px 20px;
  font-family: 'Arial', sans-serif;
  box-sizing: border-box;
  
    background: #393739;
/*background-attachment: fixed;
background-size: cover;*/
}

.footer p {
	font-size:16px;
}

.footer a {
	 color: #fff; 
}

.footer a:hover {
	 color: #fff; 
}

/* Footer Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.reserver-container
{
	  max-width: 80%;
  margin: 0 auto;
  display: block;
  justify-content: space-between;
  flex-wrap: wrap;
	
}

/* Footer Sections (Contact, Links, Social, Policy) */
.footer-contact,
.footer-links,
.footer-social,
.footer-policy {
  flex: 1;
  min-width: 250px; /* Ensure each section has minimum width */
  margin-bottom: 30px;
}

.footer-contact h3,
.footer-links h3,
.footer-social h3,
.footer-policy h3 {
  font-size: 28px;
  margin-bottom: 10px;
}



.footer-contact h4,
.footer-links h4,
.footer-social h4,
.footer-policy h4 {
  font-size: 28px;
  margin-bottom: 10px;
}




.footer-contact p,
.footer-links a,
.footer-social p,
.footer-policy a {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-links ul,
.footer-policy ul {
  list-style: none;
  padding-left: 0;
}

.footer-links li,
.footer-policy li {
  margin-bottom: 8px;
}

.footer-links a,
.footer-policy a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-policy a:hover {
  color: #fff; /* Hover color */
}

.footer-social ul {
  list-style: none;
  padding-left: 0;
  /*display: flex;*/
  gap: 15px;
  display: -webkit-inline-box;
}

.footer-social .social-icon {
  font-size: 20px;
  color: #fff;
  transition: color 0.3s ease;
}

.footer-social .social-icon:hover {
  color: #fff; /* Hover color */
}

.footer-social img {
  width: 150px;
  margin-top: 10px;
}

/* Footer Bottom Section */
.footer-bottom {
  background-color: #111;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  margin: 5px 0;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff; /* Hover color */
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-contact,
  .footer-links,
  .footer-social,
  .footer-policy {
    text-align: center;
  }

  .footer-logo img {
    max-width: 120px;
  }

  .footer-bottom p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .footer-contact p,
  .footer-links a,
  .footer-social p,
  .footer-policy a {
    font-size: 12px;
  }
}



/* General styling */
body {
font-family: 'Lora', serif;
}

.agileits_reservation_grid {
  display: flex;
  flex-wrap: wrap;
  /*gap: 20px;*/
  margin: 20px 0;
      margin-top: 10px;
    margin-bottom: -15px
}

.res {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

/*.col-lg-2,
.col-sm-4,
.col-xs-12 {
  padding: 0 10px;
  flex: 1 1 20%;
}*/

.book_date {
  margin-bottom: 20px;
}

.book_date label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.book_date input,
.book_date select {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f9f9f9;
}

.book_date input:focus,
.book_date select:focus {
  border-color: #00724f;
}

.book_date .bi {
  font-size: 20px;
  margin-right: 10px;
}

.date_btn input {
  background-color: #00724f;
  color: white;
  font-size: 16px;
  padding: 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
}

.date_btn input:hover {
  background-color: #005f3c;
}

.clearfix {
  clear: both;
}


 /*  Booking Form Styling */
  .welcome-booking-form {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Distribute items evenly */
  gap: 15px;
  flex-wrap: nowrap; /* Prevent wrapping */
  background: rgba(0, 123, 255, 0.08);
  padding: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  max-width: 1400px;
  width: 100%;
  border-radius: 12px;
  margin: 0 auto;
}

   .welcome-form-group {
  display: flex;
  flex-direction: column;
  align-items: center; /* Align label and input in the center */
  justify-content: center;
  text-align: center;
  width: 100px; /* Adjust the width for better alignment */
      background: #fff;
    width: 50%;
    padding-top: 7px;
    padding-bottom: 7px;
}

    .welcome-form-group label {
      
        color: #11365E;
       display: inline-block;
  font-size: 0; /* Hide any text inside the label */
        align-items: center;
        gap: 6px;
        font-weight: 700;
		
    }

    .welcome-form-group i {
        font-size: 20px; /* Adjust the icon size */
  color: #00724f; /* Icon color */
    }

    .welcome-form-group input,
    .welcome-form-group select {
        background: transparent;
        border: none;
        color: #0B2E53;
        font-size: 15px;
        outline: none;
        margin-top: 5px;
        font-weight: 500;
        text-align: center;
    }

    .welcome-booking-btn {
        background: linear-gradient(to right, #28A745, #007BFF);
  color: white;
  border: none;
  padding: 14px 24px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
  box-shadow: 0px 4px 12px rgba(0, 123, 255, 0.3);
}

    .welcome-booking-btn:hover {
        background: linear-gradient(to right, #007BFF, #28A745);
        box-shadow: 0px 6px 18px rgba(0, 123, 255, 0.4);
    }

    /* Responsive */
    @media (max-width: 820px) {
        .welcome-booking-form {
    flex-direction: column; /* Stack elements on smaller screens */
    width: 100%;
    gap: 12px;
    padding: 18px;
  }

  .welcome-form-group {
        width: 100%;
  }

  .welcome-booking-btn {
    width: 100%;
  }
    }

    @media (max-width: 538px) {
        .welcome-booking-form {
            padding: 15px;
        }

        .welcome-form-group label {
            font-size: 14px;
        }

        .welcome-booking-btn {
            padding: 12px;
            font-size: 14px;
        }
    }

/* Social Media Icons in the Top Bar */
.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icon a {
    color: #fff;
	
}

.social-icon a:hover {
    color: #fff;
	
}

.social-icon:hover {
  color: #fff;
}

/* "Book Now" Button in the Menu */
.nav-menu .book-now-btn {
  background: #00724f;
  color: #fff;
  padding: 12px 28px; /* Adjust padding for vertical alignment */
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  margin-top: -12px; /* Remove extra margin */
  margin-bottom: 0; /* Ensure equal spacing top and bottom */

}

.nav-menu .book-now-btn:hover {
  background: #005f3c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

/* Add responsiveness to the menu for small screens */
@media (max-width: 768px) {
	
	.left{
display: none;
	}
  .social-icons {
    /*display: none;*/ /* Hide on small screens */
  }
  .nav-menu .book-now-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}
.agileits_reservation {
    z-index: 999;
    background-image: linear-gradient(to bottom,#006a52 11%,#0fc0a5 132%);
    padding: 1em;
    -webkit-box-shadow: 0px 1px 8px 0px rgb(24 24 23 / 42%);
    -moz-box-shadow: 0px 1px 8px 0px rgba(24, 24, 23, 0.42);
    box-shadow: 0px 1px 8px 0px rgb(24 24 23 / 42%);
    margin-top: 5px;
}
.span1_of_1 {
    float: left;
    list-style: none;
    /* width: 30.9%; */
    padding-top: 10px;
}
label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: bold;
}
.agileits_reservation span.glyphicon {
    position: absolute;
    color: #555;
    font-size: 0.9em;
    top: 1.5em;
    left: 1.5em;
}
.agileits_reservation input[type="text"], select#adult, select#children, select#selrooms, .phone_email1 input[type="email"] {
   width: 100%;
    color: #1d6554;
    font-size: 15px;
    padding: 10px  19px 10px;
    outline: none;
    background: #ffffff;
    border: 1px solid #ccc;
}
.date_btn input[type="submit"]:hover {
    background: #ffffff;
    color: #050505;
}
.date_btn input[type="submit"] {
    text-transform: capitalize;
    width: 100%;
    background: #e26811;
    color: #ffffff;
    padding: 10px 0;
    border: none;
    font-size: 16px;
    outline: none;
    font-weight: 600;
   
    letter-spacing: 4px;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    transition: .5s all;
}
.date_btn {
    margin:0px 0 0;
}
.agileits_reservation em.bi {
    position: absolute;
    color: #555;
    font-size: 0.9em;
        margin-top: 12px;
    margin-left: 3px;
}
.d-flex {
    display: flex!important;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.col-lg-2
{
	width:15%;
	float:left;
}
.footer-links {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
    color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
    color: #fff;
}

.footer-column li {
  margin-bottom: 8px;
    color: #fff;
}

.footer-column a {
  text-decoration: none;
  color: #fff;
}
.footer-column a:hover {
  text-decoration: none;
  color: #fff;
}
.attractive-title {
  font-family: 'Georgia', serif;
  font-size: 23px;
  font-weight: bold;
  color: #2e7d32;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.attractive-subtext {
  font-style: italic;
  font-size: 16px;
  color: #4e4e4e;
}


.park-list{
	      padding-left: 30px !important;
    /* top: 18px; */
    margin-top: 21px!important;
}

.park-list li {
  font-family: 'Segoe UI', sans-serif;
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 5px;
  color: #333;
  position: relative;

      text-align: left;

   
}

.tel-link
{
	color:#fff;
	cursor: pointer;
}

.tel-link a
{
	color:#fff;
	cursor: pointer;
}

.tel-link a:hover
{
	color:#fff;
	cursor: pointer;
}

.tel-link:hover
{
	color:#fff;
	cursor: pointer;
}
.attraction-list ul {
    padding-left: 20px; /* Adjust as needed */
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #2c7a6fcf;
  color: white;
  text-align: center;
  padding: 15px;
  z-index: 1000;
  display: none;
  font-size: 14px;
  line-height: 1.5;
  box-sizing: border-box;
  white-space: normal;  /* ✨ allows wrapping */
  word-wrap: break-word; /* ensures long words wrap */
}


.cookie-banner button {
  margin-left: 10px;
  padding: 6px 12px;
  background-color: #006847;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}


#backToTopBtn {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 99;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #28a745, #1e7e34);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  display: none;
  transition: all 0.4s ease;
}

#backToTopBtn:hover {
  background: linear-gradient(135deg, #1e7e34, #28a745);
  transform: translateY(-3px);
}






.attractions-header {
            color: #2a5e55;
            font-size: 2.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin: 30px 0;
            padding: 20px 0;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .attractions-header::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 15px;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background-color: #e26811;
            border-radius: 2px;
        }


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
        
        body {
            background-color: var(--light-color);
            color: var(--text-color);
            padding: 0;
            overflow-x: hidden;
        }
        
        
        .parallax-header {
            height: 400px;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
            url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
        }
        
        .header-content {
            position: relative;
            z-index: 2;
            animation: fadeInUp 1s ease-out;
        }
        
        .header-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
        }
        
        .header-content p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
            border-radius: 2px;
        }
        
        .section-subtitle {
            color: var(--text-light);
            font-size: 1.1rem;
            margin-top: 15px;
            font-weight: 300;
        }
        
        .attractions-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .tab-btn {
            padding: 12px 28px;
            background: white;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            color: var(--dark-color);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .tab-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(45deg, #00724f, #005a3a);
            transition: width 0.4s ease;
            z-index: -1;
            border-radius: 30px;
        }
        
        .tab-btn:hover::before {
            width: 100%;
        }
        
        .tab-btn:hover {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .tab-btn.active {
            background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .tab-btn.active::before {
            width: 100%;
        }
        
        .attractions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .attraction-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            transform: translateY(0);
        }
        
        .attraction-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .attraction-img {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .attraction-img::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
        }
        
        .distance-badge {
            position: absolute;
            bottom: 15px;
            left: 15px;
            background: var(--accent-color);
            color: white;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
            z-index: 2;
            display: flex;
            align-items: center;
        }
        
        .distance-badge i {
            margin-right: 5px;
        }
        
        .attraction-info {
            padding: 25px;
            position: relative;
        }
        
        .attraction-info h3 {
            font-size: 1.4rem;
            margin-bottom: 12px;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
        }
        
        .attraction-info h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        .attraction-card:hover .attraction-info h3::after {
            width: 70px;
        }
        
        .attraction-info p {
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .attraction-meta {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        .attraction-type {
            display: inline-block;
            padding: 4px 12px;
            background: #f0f0f0;
            border-radius: 20px;
            font-size: 0.8rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .map-container {
            height: 400px;
            margin: 60px 0;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        
        .map-placeholder {
            width: 100%;
            height: 100%;
            background: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 1.2rem;
        }
        
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
            padding: 60px 20px;
            text-align: center;
            margin-top: 80px;
            border-radius: 15px;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
            animation: rotate 20s linear infinite;
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
        }
        
        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-content p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .cta-btn {
            display: inline-block;
            padding: 15px 40px;
            background: var(--accent-color);
            color: white;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
        }
        
        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
            background: #ff5252;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
        
        @media (max-width: 992px) {
            .header-content h1 {
                font-size: 2.8rem;
            }
            
            .section-title h2 {
                font-size: 2.3rem;
            }
            
            .attractions-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .parallax-header {
                height: 300px;
                background-attachment: scroll;
            }
            
            .header-content h1 {
                font-size: 2.2rem;
            }
            
            .header-content p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .attractions-tabs {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 10px;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }
            
            .attractions-tabs::-webkit-scrollbar {
                display: none;
            }
            
            .tab-btn {
                scroll-snap-align: start;
                flex: 0 0 auto;
            }
            
            .cta-content h2 {
                font-size: 2rem;
            }
        }
.content-container {
      padding: 40px 5%;
      margin: 0 auto;
    }
    
    .category-title {
      font-size: 28px;
      font-weight: 600;
      margin: 50px 0 20px;
      color: #2d2d2d;
      position: relative;
      padding-left: 20px;
    }
    
    .category-title:before {
      content: "";
      position: absolute;
      left: 0;
      top: 5px;
      height: 80%;
      width: 5px;
      background: #2a5e55;
      border-radius: 5px;
    }

    .section {
      display: flex;
      justify-content: space-between;
      align-items: stretch;
      margin-bottom: 40px;
      gap: 20px;
      transform-style: preserve-3d;
      perspective: 1200px;
    }

    /* PERFECT SQUARE CONTAINERS */
    .list-box, .image-box {
      width: calc(50% - 10px);
      aspect-ratio: 1/1;
      min-height: 280px;
      max-height: 350px;
      display: flex;
      transition: all 0.5s ease;
      overflow: hidden;
    }

    /* TEXT CONTAINER */
    .list-box {
      background: white;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 15px 5px 25px -10px rgba(0,0,0,0.15);
      transform: rotateY(-10deg);
      border: 1px solid #f0f0f0;
      flex-direction: column;
    }

    /* IMAGE CONTAINER */
    .image-box {
      border-radius: 12px;
      box-shadow: -15px 5px 25px -10px rgba(0,0,0,0.15);
      transform: rotateY(10deg);
      border: 1px solid #f0f0f0;
    }

    /* HOVER EFFECTS */
    .section:hover .list-box {
      transform: rotateY(-15deg) translateX(-5px);
    }

    .section:hover .image-box {
      transform: rotateY(15deg) translateX(5px);
    }

    .column {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    
    .section-headline {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 15px;
      color: #3a3a3a;
      text-align: center;
      padding: 0 10px;
    }

    .column ul {
      list-style-type: none;
      padding: 0 10px;
      margin: 0;
      flex-grow: 1;
    }

    .column ul li {
      margin-bottom: 12px;
      color: #2d2d2d;
      font-size: 17.5px;
      padding: 8px 0;
      position: relative;
      padding-left: 25px;
      transition: all 0.3s ease;
    }

    .column ul li:before {
      content: "→";
      color: #2a5e55;
      position: absolute;
      left: 0;
      font-weight: bold;
    }

    .column ul li:hover {
      transform: translateX(8px);
      color: #2a5e55;
    }

    .image-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .section:hover .image-box img {
      transform: scale(1.05);
    }

    @media (max-width: 768px) {
      .content-container {
        padding: 30px 15px;
      }
      
      .category-title {
        font-size: 24px;
        margin: 30px 0 15px;
      }
      
      .section {
        flex-direction: column;
        perspective: none;
      }
      
      .list-box, .image-box {
        transform: none !important;
        width: 100%;
        aspect-ratio: unset;
        height: auto;
        min-height: 250px;
        max-height: none;
      }
      
      .image-box {
        height: 250px;
        order: -1;
      }
      
      .section-headline {
        font-size: 18px;
      }
    }
.attractions-header {
            color: #2a5e55;
            font-size: 2.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin: 30px 0;
            padding: 20px 0;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .attractions-header::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 15px;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background-color: #e26811;
            border-radius: 2px;
        }
 /* Global carousel container only */
  #carousel {
    padding-top: 220px; /* Increased from 180px */
    position: relative;
    width: 100%;
    height: 200px; /* Increased from 400px */
    perspective: 2000px; /* Increased from 1800px */
    margin: 0 auto;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
  }

  /* Cards */
  .carousel-card {
    position: absolute;
    width: 420px; /* Increased from 320px */
    height: 300px; /* Increased from 220px */
    background-color: #00724f;
    border-radius: 25px; /* Slightly larger radius */
    box-shadow: 0 15px 35px rgba(0, 114, 79, 0.7); /* Bigger shadow */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem; /* Increased from 1.4rem */
    font-weight: 600;
    user-select: none;
    transition: box-shadow 0.3s ease;
  }

  .carousel-card:hover {
    box-shadow: 0 25px 50px rgba(0, 114, 79, 0.9); /* Bigger hover shadow */
  }

  /* Responsive */
  @media (max-width: 1100px) {
    .carousel-card {
      width: 380px; /* Increased from 280px */
      height: 260px; /* Increased from 190px */
      font-size: 1.5rem; /* Increased from 1.2rem */
    }
  }

  @media (max-width: 768px) {
    #carousel {
      height: 450px; /* Increased from 320px */
    }
    .carousel-card {
      width: 320px; /* Increased from 240px */
      height: 220px; /* Increased from 160px */
      font-size: 1.3rem; /* Increased from 1rem */
    }
  }

  @media (max-width: 480px) {
    #carousel {
      height: 380px; /* Increased from 280px */
    }
    .carousel-card {
      width: 260px; /* Increased from 200px */
      height: 180px; /* Increased from 130px */
      font-size: 1.1rem; /* Increased from 0.9rem */
    }
  }
/* Facilities Section */
        .facility-section {
            padding: 60px 20px;
            background-color: #f9f9f9;
        }

        .facility-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .facility-title {
            font-size: 2.5rem;
            color: #00724f;
            margin-bottom: 40px;
            text-align: center;
            position: relative;
        }

        .facility-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: #00724f;
            margin: 10px auto;
            border-radius: 2px;
        }

        .facility-description {
            text-align: center;
            color: #555555;
            font-size: 1.1em;
            margin-bottom: 30px;
        }

        .facility-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
        }

        .facility-column {
            flex: 1 1 45%;
            min-width: 300px;
            background-color: #ffffff;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }

        .facility-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .facility-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            font-size: 1em;
            color: #333333;
        }

        .facility-list em {
            font-size: 1.5em;
            color: #1e3a8a;
        }

        /* Form & Map Section */
        .form-image-section {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .form-container, .image-container {
            flex: 1 1 45%;
            min-width: 300px;
        }

        .info-card {
            background: #ffffff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .info-title {
            color: #e26811;
            font-size: 1.8em;
            margin-bottom: 15px;
        }

        .info-subtitle {
            color: #555;
            margin-bottom: 20px;
        }

        .coordinates {
            margin: 20px 0;
        }

        .coordinate-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .icon {
            color: #00724f;
            font-size: 1.2em;
        }

        .direction-form {
            margin-top: 30px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-control {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1em;
        }

        .get-directions-btn {
            background-color: #00724f;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
            font-size: 1em;
            width: 100%;
        }

        .get-directions-btn:hover {
            background-color: #e65c00;
        }

        .responsive-image {
            border-radius: 8px;
            height: auto;
            max-width: 100%;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            object-fit: cover;
            height: 100%;
            min-height: 400px;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .facility-grid, .form-image-section {
                flex-direction: column;
            }

            .facility-column, .form-container, .image-container {
                flex: 1 1 100%;
                min-width: 100%;
            }

            .facility-title {
                font-size: 1.8em;
            }

            .responsive-image {
                min-height: 300px;
            }
        }

        @media (max-width: 480px) {
            .facility-title {
                font-size: 1.5em;
            }

            .facility-description {
                font-size: 0.9em;
            }

            .facility-list li {
                font-size: 0.9em;
            }

            .facility-list em {
                font-size: 1.2em;
            }
        }
    .nav-container {
        display: flex;
        justify-content: center;
        padding: 20px;
    }
    
    .nav-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        max-width: 1000px;
    }
    
    .nav-card {
        background: white;
        border-radius: 12px;
        padding: 25px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        border: 2px solid #00724f;
        position: relative;
        overflow: hidden;
    }
    
    .nav-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: #e26811;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }
    
    .nav-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }
    
    .nav-card:hover::before {
        transform: scaleX(1);
    }
    
    .nav-icon {
        font-size: 28px;
        margin-bottom: 15px;
        color: #00724f;
        transition: all 0.3s ease;
    }
    
    .nav-card:hover .nav-icon {
        color: #e26811;
        transform: scale(1.1);
    }
    
    .nav-title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 8px;
        color: #00724f;
        transition: all 0.3s ease;
    }
    
    .nav-desc {
        font-size: 14px;
        color: #555;
        transition: all 0.3s ease;
    }
    
    .nav-card:hover .nav-title {
        color: #e26811;
    }
    
    .nav-card:hover .nav-desc {
        color: #00724f;
    }
    
    .nav-link {
        text-decoration: none;
        display: block;
        height: 100%;
    }
    
    @media (max-width: 900px) {
        .nav-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 500px) {
        .nav-grid {
            grid-template-columns: 1fr;
        }
    }    
.faq-section {
        margin: 50px auto;
        padding: 0 20px;
    }
    
    .faq-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .faq-header h2 {
        color: #00724f;
        font-size: 36px;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }
    
    .faq-header h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(to right, #00724f, #e26811);
        border-radius: 2px;
    }
    
    .faq-header p {
        color: #666;
        font-size: 18px;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .faq-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
        gap: 25px;
    }
    
    .faq-card {
        background: white;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        overflow: hidden;
        transition: all 0.3s ease;
        border-top: 4px solid #00724f;
    }
    
    .faq-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    }
    
    .faq-question {
        padding: 25px;
        background: #f9f9f9;
        display: flex;
        align-items: center;
    }
    
    .faq-icon {
        width: 40px;
        height: 40px;
        background: #e26811;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
        font-size: 18px;
    }
    
    .faq-question-text {
        font-size: 18px;
        font-weight: 600;
        color: #333;
    }
    
    .faq-answer {
        padding: 25px;
        position: relative;
    }
    
    .faq-answer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 25px;
        right: 25px;
        height: 1px;
        background: linear-gradient(to right, transparent, #00724f, transparent);
    }
    
    .faq-answer p {
        margin: 0;
        font-size: 16px;
        line-height: 1.6;
        color: #555;
    }
    
    .faq-answer a {
        color: #e26811;
        font-weight: 600;
        text-decoration: none !important;
    }

    
    .faq-answer a:hover {
        color: #00724f;
        border-bottom-color: #00724f;
    }
    
    .faq-answer .fa-caret-right {
        color: #e26811;
        margin-right: 8px;
    }
    
    @media (max-width: 600px) {
        .faq-grid {
            grid-template-columns: 1fr;
        }
        
        .faq-header h2 {
            font-size: 28px;
        }
        
        .faq-question {
            padding: 20px;
        }
        
        .faq-answer {
            padding: 20px;
        }
    }
    /* AMENITIES SECTION CSS - SCOPED */
    .custom-amenities-container {
        --amenities-primary-color: #1a2a3a;
        --amenities-secondary-color: #2a5e55;
        --amenities-accent-color: #e26811;
        --amenities-light-color: #f8f9fa;
        --amenities-dark-color: #2c3e50;
        --amenities-gold-color: #d4af37;
        --amenities-text-color: #333;
        --amenities-text-light: #777;
    }

    /* Add the gradient only to home page */
    .home .custom-amenities-container {
        background: linear-gradient(to bottom, #006847 0%, #f5f5f5 100%);
    }

    .custom-amenities-container .parallax-header {
        height: 400px;
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                    url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
        margin-bottom: 60px;
        position: relative;
        overflow: hidden;
    }
    
    .custom-amenities-container .header-content {
        position: relative;
        z-index: 2;
        animation: amenitiesFadeInUp 1s ease-out;
    }
    
    .custom-amenities-container .header-content h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    }
    
    .custom-amenities-container .header-content p {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    }
    
    .custom-amenities-container .section-title {
        text-align: center;
        margin-bottom: 50px;
        position: relative;
    }
    
    .custom-amenities-container .section-title h2 {
        font-size: 2.8rem;
        color: var(--amenities-primary-color);
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
    }
    
    .custom-amenities-container .section-title h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: linear-gradient(to right, var(--amenities-secondary-color), var(--amenities-accent-color));
        border-radius: 2px;
    }
    
    .custom-amenities-container .amenities-container {
        max-width: 1200px !important;
        margin: 0 auto !important;
        padding: 0 20px !important;
        position: relative !important;
        z-index: 2 !important;
        width: 100% !important;
        transform: translateY(10%) !important;
    }

    .custom-amenities-container .section-subtitle {
        color: var(--amenities-text-light);
        font-size: 1.1rem;
        margin-top: 15px;
        font-weight: 300;
    }
    
    .custom-amenities-container .amenities-tabs {
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .custom-amenities-container .tab-btn {
        padding: 12px 28px;
        background: white;
        border: none;
        border-radius: 30px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        color: var(--amenities-dark-color);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    
    .custom-amenities-container .tab-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: linear-gradient(45deg, var(--amenities-secondary-color), var(--amenities-accent-color));
        transition: width 0.4s ease;
        z-index: -1;
        border-radius: 30px;
    }
    
    .custom-amenities-container .tab-btn:hover::before {
        width: 100%;
    }
    
    .custom-amenities-container .tab-btn:hover {
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    
    .custom-amenities-container .tab-btn.active {
        background: linear-gradient(45deg, var(--amenities-secondary-color), var(--amenities-accent-color));
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    
    .custom-amenities-container .tab-btn.active::before {
        width: 100%;
    }
    
    .custom-amenities-container .amenities-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .custom-amenities-container .amenity-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        position: relative;
        transform: translateY(0);
    }
    
    .custom-amenities-container .amenity-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }
    
    .custom-amenities-container .amenity-icon {
        height: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
        color: var(--amenities-secondary-color);
        font-size: 4rem;
        position: relative;
        overflow: hidden;
    }
    
    .custom-amenities-container .amenity-icon i {
        transition: transform 0.4s ease;
    }
    
    .custom-amenities-container .amenity-card:hover .amenity-icon i {
        transform: scale(1.1);
    }
    
    .custom-amenities-container .amenity-info {
        padding: 25px;
        position: relative;
    }
    
    .custom-amenities-container .amenity-info h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
        color: var(--amenities-primary-color);
        position: relative;
        display: inline-block;
    }
    
    .custom-amenities-container .amenity-info h3::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 40px;
        height: 3px;
        background: var(--amenities-accent-color);
        transition: width 0.3s ease;
    }
    
    .custom-amenities-container .amenity-card:hover .amenity-info h3::after {
        width: 70px;
    }
    
    .custom-amenities-container .amenity-info p {
        color: var(--amenities-text-light);
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .custom-amenities-container .highlight-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: var(--amenities-gold-color);
        color: white;
        padding: 6px 18px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: bold;
        box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
        text-transform: uppercase;
        letter-spacing: 1px;
        z-index: 2;
    }
    
    .custom-amenities-container .premium-badge {
        background: linear-gradient(45deg, var(--amenities-gold-color), #f1c40f);
    }
    
    .custom-amenities-container .attractions-header {
        color: #2a5e55;
        font-family: Arial, sans-serif;
        font-size: 2.5rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        padding: 15px;
        text-align: center;
        position: relative;
        transition: all 0.3s ease;
        margin-top: 0;
    }

    .custom-amenities-container .attractions-header::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 15px;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background-color: #e26811;
        border-radius: 2px;
    }

    .custom-amenities-container .section-subtitle {
        text-align: center;
        font-family: Arial, sans-serif;
        font-size: 1.2rem;
        color: #444;
        margin-bottom: 40px;
    }
    
    @keyframes amenitiesFadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @media (max-width: 992px) {
        .custom-amenities-container .header-content h1 {
            font-size: 2.8rem;
        }
        
        .custom-amenities-container .section-title h2 {
            font-size: 2.3rem;
        }
        
        .custom-amenities-container .amenities-grid {
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        }
    }
    
    @media (max-width: 768px) {
        .custom-amenities-container .parallax-header {
            height: 300px;
            background-attachment: scroll;
        }
        
        .custom-amenities-container .header-content h1 {
            font-size: 2.2rem;
        }
        
        .custom-amenities-container .header-content p {
            font-size: 1rem;
        }
        
        .custom-amenities-container .section-title h2 {
            font-size: 2rem;
        }
        
        .custom-amenities-container .amenities-tabs {
            justify-content: flex-start;
            overflow-x: auto;
            padding-bottom: 10px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }
        
        .custom-amenities-container .amenities-tabs::-webkit-scrollbar {
            display: none;
        }
        
        .custom-amenities-container .tab-btn {
            scroll-snap-align: start;
            flex: 0 0 auto;
        }
    }

    /* HIGHLIGHTS SECTION CSS - SCOPED */
    .highlights-section {
        --highlights-primary-color: #0a1f1c;
        --highlights-secondary-color: #2a5e55;
        --highlights-text-color: #121212;
        --highlights-light-gray: #f5f5f5;
        --highlights-transition-speed: 0.3s;
    }
	
	    .highlights-section h3{
        font-weight: 800;
        font-size: 2.2rem;
        margin-bottom: 30px;
        text-align: center;
        color: var(--highlights-secondary-color);
    }
    
    .highlights-section h2 {
        font-weight: 800;
        font-size: 2.2rem;
        margin-bottom: 30px;
        text-align: center;
        color: var(--highlights-secondary-color);
    }
    
    .highlights-section .highlights-nav {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
        margin-bottom: 40px;
        font-size: 20px;
        color: var(--highlights-text-color);
    }
    
    .highlights-section .highlights-nav > div {
        border-bottom: 3px solid transparent;
        padding-bottom: 8px;
        cursor: pointer;
        transition: all var(--highlights-transition-speed) ease;
        position: relative;
        text-align: center;
        min-width: 120px;
    }
    
    .highlights-section .highlights-nav > div:hover {
        color: var(--highlights-secondary-color);
    }
    
    .highlights-section .highlights-nav > div.active {
        font-weight: 600;
        border-color: var(--highlights-secondary-color);
        color: var(--highlights-secondary-color);
    }
    
    .highlights-section .highlights-nav > div::after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 0;
        height: 3px;
        background-color: var(--highlights-secondary-color);
        transition: width var(--highlights-transition-speed) ease;
    }
    
    .highlights-section .highlights-nav > div:hover::after {
        width: 100%;
    }
    
    .highlights-section .content-wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
        max-width: 1200px;
        margin: 0 30px;
        padding: 50px;
    }
    
    .highlights-section .content-image {
        width: 500px;
        height: 350px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }
    
    .highlights-section .content-image:hover {
        transform: scale(1.02);
    }
    
    .highlights-section .content-text {
        max-width: 500px;
    }
    
    .highlights-section .content-text h3 {
        font-weight: 700;
        font-size: 1.8rem;
        margin-bottom: 20px;
        color: var(--highlights-secondary-color);
    }
    
    .highlights-section .content-text p {
        font-weight: 400;
        font-size: 1.1rem;
        line-height: 1.7;
        color: var(--highlights-text-color);
    }
    
    .highlights-section .tab-content {
        display: none;
        animation: highlightsFadeIn 0.5s ease;
    }
    
    .highlights-section .tab-content.active {
        display: flex;
    }
    
    @keyframes highlightsFadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    @media (max-width: 1024px) {
		
		.reserver-container {
    max-width: 100%;
    margin: 0 auto;
    display: block;
    justify-content: space-between;
    flex-wrap: wrap;
}

        .highlights-section .content-wrapper {
            flex-direction: column;
            gap: 30px;
        }
        
        .highlights-section .content-image {
            width: 100%;
            max-width: 600px;
            height: auto;
        }
        
        .highlights-section .content-text {
            max-width: 100%;
            text-align: center;
        }
        
        .highlights-section .highlights-nav {
            gap: 20px;
        }
    }
    
    @media (max-width: 768px) {
        .highlights-section h2 {
            font-size: 1.8rem;
        }
        
        .highlights-section .content-text h3 {
            font-size: 1.5rem;
        }
        
        .highlights-section .highlights-nav {
            gap: 15px;
        }
        
        .highlights-section .highlights-nav > div {
            font-size: 14px;
            min-width: auto;
            padding: 0 10px 8px;
        }
    }
    
    .highlights-section .tab-link:focus {
        outline: 2px solid var(--highlights-secondary-color);
        outline-offset: 4px;
    }
