.elementor-122 .elementor-element.elementor-element-0e83e63{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-122 .elementor-element.elementor-element-0e83e63{--content-width:100%;}}/* Start custom CSS for html, class: .elementor-element-79383b5 */* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif; /* Default body font */
  line-height: 1.6;
  color: #3a3a3a; /* Default text color */
  background-color: #ffffff; /* Default background */
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Add overflow hidden to main element */
main {
  overflow: hidden !important; /* Corrected syntax */
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif; /* Headings font */
  color: #3a3a3a;
  margin-bottom: 0.5em;
}

a {
  color: #7a8a7a; /* Accent color for links */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button:hover{
    background-color: white;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

transitions style {
    color: white  !important;
}
button#menu-toggle.menu-toggle{
    color: white !important;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0; /* Vertical padding for sections */
}

.btn {
  display: inline-block;
  background: #7a8a7a;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  border-radius: 5px;
  transition: background 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn:hover {
  background: #5c6c5c; /* Darker shade on hover */
  text-decoration: none;
  color: #fff;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

/* Add styles section by section below */

/* 2. Header Styles */
#header {
  position: fixed;
  top: 0; 
  left: 0; 
  width: 100%;
  background: rgba(255, 255, 255, 0.95); /* Slightly more opaque white */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000; /* Ensure header stays on top */
  padding: 10px 0; /* Padding top/bottom */
  transition: background 0.3s ease; /* Smooth transition on scroll */
}

/* Add a class for scrolled state if needed */
#header.scrolled {
  background: rgba(255, 255, 255, 1); /* Fully opaque when scrolled */
}

#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Remove old H1 logo styles */
/* 
#header .logo h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; 
  color: #3a3a3a;
  margin: 0; 
}
*/

/* Add styles for the image logo */
#header .logo img#header-logo {
  height: 45px; /* Adjust height as needed */
  max-height: 50px; /* Prevent it from getting too large */
  width: auto; /* Maintain aspect ratio */
  display: block; /* Ensure it behaves as a block element */
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px; /* Spacing between nav items */
  margin: 0; 
  padding: 0;
}

.nav-link {
  text-decoration: none;
  color: #3a3a3a;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  padding: 5px 10px;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active /* Style for active section link */
{
  color: #7a8a7a;
  text-decoration: none;
}

.lang-toggle button {
  background: none;
  border: 1px solid transparent; /* Maintain layout space */
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  margin-left: 8px;
  cursor: pointer;
  color: #3a3a3a;
  padding: 5px 8px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.lang-toggle button:hover {
    color: #7a8a7a;
}

.lang-toggle button.active {
  color: #7a8a7a;
  border-color: #7a8a7a; /* Indicate active language */
  border-radius: 4px;
}

/* Mobile Menu Styles (Placeholder - implementation in JS) */
.menu-toggle {
  display: none; /* Hidden on desktop */
  /* Styling for the hamburger icon */
}

/* Mobile Nav - Hidden by default on Desktop */
.mobile-nav {
    display: none;
}

/* Responsive adjustments for header */
@media (max-width: 992px) {
  /* Hide desktop nav links, show toggle */
  #header .container nav {
     display: none;
  }
  .menu-toggle {
    display: flex; /* Use flex for alignment */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001; /* Ensure toggle is above mobile nav */
  }
  .menu-toggle .hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #3a3a3a;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
  }

  /* Style toggle when active (for X icon) */
  .menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  #header .menu-toggle.active {
    background-color: white !important; /* Ensure override */
  }

  /* Mobile Nav Styles */
  .mobile-nav {
    display: flex; /* Override: Make visible on mobile */
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98); /* Slightly transparent white */
    z-index: 1000; /* Below header toggle, above content */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(-100%); /* Start off-screen */
    transition: transform 0.4s ease-in-out;
    padding-top: 60px; /* Space for header */
  }

  .mobile-nav.active {
    transform: translateX(0); /* Slide in */
  }

  .mobile-nav .nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .mobile-nav .nav-links li {
    margin: 15px 0;
  }

  .mobile-nav .nav-link {
    font-size: 1.5rem; /* Larger font for mobile menu */
    color: #3a3a3a;
    padding: 10px 20px;
    font-weight: 700;
  }
   .mobile-nav .nav-link:hover {
       color: #7a8a7a;
   }
}

/* Back to top button */
#back-to-top {
  position: fixed;
  bottom: 20px; 
  right: 20px;
  background: #7a8a7a;
  color: #fff;
  border: none;
  width: 40px; /* Set fixed size */
  height: 40px; /* Set fixed size */
  border-radius: 50%;
  font-size: 1rem; /* Adjust if icon looks too big/small */
  display: none; /* Hidden by default */
  cursor: pointer;
  z-index: 999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0;
  visibility: hidden;
  /* Add flexbox for centering icon */
  display: flex;
  align-items: center;
  justify-content: center;
}

#back-to-top.visible {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* 3. Hero Section Styles (Carousel Update) */
#hero {
  position: relative;
  height: 100vh; /* Full viewport height */
  color: #fff; /* White text for contrast */
  display: flex; /* Use flexbox to center content */
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden; /* Hide parts of slides that might extend */
}

.hero-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Behind overlay and content */
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transition: opacity 1s ease-in-out; /* Fade transition */
    z-index: 1; /* Slides stack */
}

.hero-slide.active {
    opacity: 1;
    z-index: 2; /* Active slide on top */
}

/* Overlay sits above slides but below content */
.hero-overlay {
  position: absolute;
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
  z-index: 3; /* Above slides */
}

/* Content sits above overlay */
.hero-content {
  position: relative; 
  z-index: 4; /* Above overlay */
  max-width: 800px; 
  padding: 0 20px;
}

#hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; 
  margin-bottom: 15px;
  color: #fff; 
  font-weight: 700;
}

#hero p {
  font-family: 'Lato', sans-serif;
  font-size: 1.3rem; 
  margin-bottom: 30px;
  color: #fff; 
}

#hero .btn {
  padding: 12px 25px; 
  font-size: 1.1rem;
}

/* Carousel Navigation Styles */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent; /* Remove background */
    color: white;
    border: none;
    width: 40px;  /* Adjust size */
    height: 40px; /* Adjust size */
    cursor: pointer;
    z-index: 5; 
    transition: opacity 0.3s ease;
    padding: 0; /* Remove padding */
    opacity: 0.7;
}

.carousel-arrow:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0); /* Slightly darker overlay on hover */
    background-color: transparent;
}

.carousel-arrow:active {
    opacity: 1;
    background: rgba(0, 0, 0, 0); /* Slightly darker overlay on hover */
    background-color: transparent;
}

/* Create arrow shape using borders */
.carousel-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px; /* Chevron size */
    height: 12px; /* Chevron size */
    border-style: solid;
    border-color: white;
    border-width: 0 2px 2px 0; /* Top Right Bottom Left - Creates > shape */
}

.carousel-arrow.prev {
    left: 25px;
}

.carousel-arrow.prev::before {
    transform: translate(-50%, -50%) rotate(135deg); /* Point left */
}

.carousel-arrow.next {
    right: 25px;
}

.carousel-arrow.next::before {
    transform: translate(-50%, -50%) rotate(-45deg); /* Point right */
}

/* Removed Carousel Dots Styles */

/* Responsive adjustments for Hero */
@media (max-width: 768px) {
  #hero h1 {
    font-size: 2.5rem;
  }
  #hero p {
    font-size: 1.1rem;
  }
   .carousel-arrow {
       padding: 8px 12px;
       font-size: 1.2rem;
   }
}

/* 4. About Section Styles */
.two-column {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  align-items: center;
  gap: 40px; /* Spacing between columns */
}

/* Basic structure: 50/50 split */
.text-column, 
.image-column {
  flex: 1 1 45%; /* Allow flex-basis to be around 45% */
  min-width: 300px; /* Prevent columns from becoming too narrow */
}

/* Style for the text content */
.text-column h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #3a3a3a;
}

.text-column p,
.text-column li {
  font-family: 'Lato', sans-serif;
  color: #555; /* Slightly lighter text for paragraphs */
  line-height: 1.7;
  margin-bottom: 15px;
}

.text-column ul {
  margin-top: 20px;
  list-style: none; /* Remove default bullets */
  padding-left: 0;
}

.text-column li {
  position: relative;
  padding-left: 25px; /* Space for custom bullet */
  margin-bottom: 10px;
}

/* Custom bullet point */
.text-column li::before {
  content: '\2713'; /* Unicode checkmark */
  position: absolute;
  left: 0;
  top: 0px; /* Adjust vertical alignment */
  color: #7a8a7a; /* Accent color */
  font-weight: bold;
}

/* Image styling */
.image-column img {
  width: 100%;
  border-radius: 8px; /* Slightly rounded corners */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); /* Softer shadow */
}

/* Responsive adjustments for About section */
@media (max-width: 768px) {
  #about .two-column { /* Target specifically within #about */
    flex-direction: column; /* Stack columns vertically */
    gap: 30px;
    overflow: hidden; /* Hide overflow within this container on mobile */
  }
  #about .text-column, 
  #about .image-column {
    flex: 1 1 100%; /* Ensure columns take full width */
    min-width: 0; /* Override the desktop min-width */
    width: 100%; /* Explicitly set width to 100% */
  }
  #about .text-column h2 {
      font-size: 1.8rem;
  }
  #about .text-column ul {
    padding-left: 0; /* Reset padding for list on mobile if needed */
  }
  #about .text-column li::before {
      top: 2px; /* Fine-tune checkmark position on mobile */
  }
}

/* 5. Gallery Section Styles */
#gallery {
  background-color: #fdfdf9; /* Slightly off-white background for contrast */
  padding: 60px 0;
}

#gallery h2 {
  text-align: center; /* Center the gallery title */
  font-size: 2.2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 0;
  padding-bottom: 75%; /* For image aspect ratio */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #f5f5f5;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.4s ease, transform 0.5s ease;
}

/* For initially visible items, show them */
.gallery-item[data-aos] {
  opacity: 1;
  transform: scale(1);
}

.gallery-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.gallery-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Initially hide elements past the first 6 */
.gallery-grid.show-all .gallery-item {
  display: block;
}

/* Style for the 'See More' button */
#see-more-gallery {
    /* Using existing .btn styles, adding margin */
    margin-top: 20px; 
}

/* Responsive adjustments for Gallery */
@media (max-width: 767px) { /* Target smaller mobile screens */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr); /* Force 2 columns */
    gap: 10px; /* Slightly reduce gap on mobile */
  }
  #gallery h2 {
      font-size: 1.8rem;
  }
}

/* 6. Activities Section Styles */
#activities h2 {
  text-align: center;
  margin-bottom: 40px;
}

.activities-grid {
  display: grid; /* Use grid for layout */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive columns */
  gap: 30px;
  margin-top: 20px;
}

.activity {
  text-align: center;
  background: #f9f9f4; /* Light background for activity cards */
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

/* Style for placeholder icons/emoji */
.activity .icon {
  font-size: 2.5rem; /* Size for emoji/icon */
  margin-bottom: 15px;
  color: #7a8a7a; /* Accent color */
}

.activity h3 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: #3a3a3a;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.activity p {
  font-family: 'Lato', sans-serif;
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* 7. Nearby Attractions Section Styles (Updated Layout) */
#attractions h2 {
  text-align: center;
  margin-bottom: 40px; 
  font-size: 2.2rem;
}

.attractions-layout {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 30px;
    align-items: start; /* Align items to the top */
}

.featured-attraction-card {
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    position: relative; /* Needed for absolute positioning of pseudo-element */
    min-height: 350px; /* Ensure a minimum height */
    display: flex;
    align-items: flex-end; /* Align content to the bottom */
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.featured-attraction-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Black overlay with 30% opacity */
    z-index: 1; /* Overlay below content */
}

.featured-content {
    padding: 25px;
    position: relative; /* Ensure content is above the overlay */
    z-index: 2;
}

.featured-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 10px;
    color: white;
}

.featured-content p {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.attractions-list-container {
    flex: 1 1 35%; /* List takes less space */
    min-width: 280px;
}

.attractions-list-container h3 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #3a3a3a;
    /* text-transform: uppercase; */ /* Optional styling */
    /* letter-spacing: 1px; */   /* Optional styling */
}

.attractions-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.attractions-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0; /* Subtle separator */
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
}

.attractions-list li:last-child {
    border-bottom: none;
}

.attractions-list .place-name {
    color: #3a3a3a;
    font-weight: 500; /* Use 500 or 700 */
}

.attractions-list .place-distance {
    color: #555;
    text-align: right;
    white-space: nowrap; /* Prevent wrapping */
    padding-left: 15px; /* Space between name and distance */
}

/* Map styles removed */

/* Responsive adjustments for Attractions */
@media (max-width: 768px) {
    .attractions-layout {
        grid-template-columns: 1fr; /* Stack into a single column */
        gap: 25px; /* Adjust gap for stacked layout */
    }
    .featured-attraction-card {
       /* Remove flex-basis if it was previously used */
       min-height: 250px; /* Adjust min height for mobile card */
       /* aspect-ratio: 16 / 9; - Keep or remove based on visual preference */
    }
    #attractions h2 {
      font-size: 1.8rem;
    }
    .featured-content h3 {
        font-size: 1.6rem;
    }
     .attractions-list li {
         font-size: 0.95rem;
         padding: 10px 0;
     }
}

/* Highlights Section Styles (Now part of Attractions) */
/* #highlights Specific styles removed */


#attractions h2 {
  /* Styles for the main Attractions title remain */
  text-align: center;
  margin-bottom: 40px; 
  font-size: 2.2rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Highlight Card Styles (Now within Attractions) */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    /* margin-top: 50px; /* Spacing added via inline style in HTML */
}

.highlight-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden; /* Clip image corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; /* Use flex to manage content */
    flex-direction: column;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.highlight-card img {
    width: 100%;
    height: 220px; /* Fixed height for highlight images */
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 25px;
    flex-grow: 1; /* Allow content area to grow */
}

.card-content h3 {
    font-family: 'Lato', sans-serif; /* Match reference style */
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #3a3a3a;
}

.card-content p {
    font-family: 'Lato', sans-serif;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive adjustments for Highlights Cards */
@media (max-width: 767px) {
    .highlight-card img {
        height: 180px; /* Slightly smaller image height */
    }
    .card-content {
        padding: 20px;
    }
     .card-content h3 {
        font-size: 1.2rem;
     }
}

/* 10. Booking Form Section Styles (Updated Layout) */
#booking {
    background-color: #f8f8f8; /* Light background for the whole section */
}

#booking h2 {
  text-align: center;
  margin-bottom: 50px; /* More space below main title */
  font-size: 2.2rem;
}

.booking-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px; /* Adjust gap between columns */
}

.booking-info {
    flex: 1 1 40%; /* Adjust flex-basis */
    min-width: 300px;
}

.booking-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.booking-info p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Testimonial Block Styles */
.booking-testimonial {
    background-color: #f0f0ec; /* Match footer bg */
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #7a8a7a; /* Accent border */
}

.booking-testimonial blockquote p {
    font-style: italic;
    color: #3a3a3a;
    margin-bottom: 15px;
    line-height: 1.6;
    position: relative;
    padding-left: 35px; /* Space for quote marks */
}

/* Add quote marks */
.booking-testimonial blockquote p::before {
    content: '“';
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #7a8a7a;
    position: absolute;
    left: 0;
    top: -5px;
    line-height: 1;
}

.testimonial-author-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.testimonial-author-rating .author {
    font-weight: 700;
    color: #3a3a3a;
}

.testimonial-author-rating .stars {
    color: #e4b63a;
    font-size: 1.1rem;
}

/* Contact Details Styles */
.booking-contact-details {
    margin-top: 30px;
}

.email-inquiry-btn {
    /* Custom styles for the outline button */
    background-color: transparent;
    border: 1px solid #7a8a7a;
    color: #7a8a7a;
    display: inline-block; /* Or block if full width */
    margin-bottom: 15px;
    text-align: center;
    padding: 10px 25px;
}

.email-inquiry-btn:hover {
    background-color: #7a8a7a;
    color: white;
    text-decoration: none;
}

.booking-contact-details p {
    margin-bottom: 8px;
    color: #555;
}

.booking-contact-details a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.booking-contact-details a:hover {
    color: #7a8a7a;
    text-decoration: underline;
}

/* Add spacing for booking contact icons */
.booking-contact-details p i {
    margin-right: 8px; /* Add space between icon and text */
    width: 1em; /* Ensure consistent alignment */
    text-align: center;
}

/* Right Column: Form Container */
.booking-form-container {
    flex: 1 1 55%;
    min-width: 320px;
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 8px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #7a8a7a; /* Accent border at the top */
}

#booking-form h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 30px;
    text-align: center;
    color: #3a3a3a;
}

.form-group {
    margin-bottom: 22px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 0px 8px;
    font-family: 'Lato', sans-serif;
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    font-size: 1.05rem;
    background-color: transparent;
    transition: border-color 0.3s ease, padding 0.2s;
    appearance: none;
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-bottom-color: #aaa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-bottom: 2px solid #7a8a7a;
    padding-bottom: 7px; /* Adjust for thicker border */
}

.form-group:focus-within label {
    color: #7a8a7a;
}

/* Custom select styling */
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%237a8a7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 16px;
    padding-right: 24px;
    cursor: pointer;
}

/* Style datepicker inputs */
.datepicker {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%237a8a7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 16px;
    padding-right: 24px;
}

/* Style placeholder text */
::placeholder {
    color: #bbb;
    opacity: 1;
    font-size: 0.95rem;
}

/* Elegant submit button */
.submit-inquiry-btn {
    background-color: #5c6c5c;
    border: none;
    color: white;
    border-radius: 4px;
    padding: 14px 25px;
    width: 100%;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.submit-inquiry-btn:hover {
    background-color: #4a5a4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.submit-inquiry-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
}

/* Add ripple effect with pseudo-element */
.submit-inquiry-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
    background-repeat: no-repeat;
    background-position: 50%;
    transform: scale(10, 10);
    opacity: 0;
    transition: transform .5s, opacity 1s;
}

.submit-inquiry-btn:active::after {
    transform: scale(0, 0);
    opacity: 0.3;
    transition: 0s;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .booking-layout {
        flex-direction: column;
        gap: 40px;
    }
    .booking-info,
    .booking-form-container {
        flex-basis: 100%; /* Stack columns */
        min-width: 0; /* Allow container to shrink fully */
        overflow-x: hidden; /* Prevent internal overflow */
    }
}

@media (max-width: 767px) {
    .form-row {
        flex-direction: column; /* Stack date fields */
        gap: 0; /* Remove gap when stacked */
    }
    .booking-form-container {
         padding: 25px 20px;
    }
    /* Hide booking contact details on mobile */
    .booking-contact-details {
        display: none;
    }
}

/* Styles for mobile-only contact buttons below testimonial */
.mobile-contact-buttons {
  display: none !important; /* Hidden by default */
  flex-direction: column; /* Stack buttons vertically */
  gap: 15px; /* Space between buttons */
}

.mobile-contact-buttons .btn { /* Style for buttons within this container */
  display: flex; /* To align icon and text */
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%; /* Make buttons full width */
  padding: 12px 15px;
  font-size: 1rem;
}

.mobile-contact-buttons .btn i {
  margin-right: 8px; /* Space between icon and text */
  font-size: 1.2rem; /* Slightly larger icon */
}

.btn-email-mobile {
  background-color: #7a8a7a; /* Main accent color */
  color: #fff;
}
.btn-email-mobile:hover {
  background-color: #5c6c5c;
  color: #fff; /* Ensure text remains white on hover */
}

.btn-whatsapp-mobile {
  background-color: #7a8a7a; /* WhatsApp green */
  color: #fff;
}
.btn-whatsapp-mobile:hover {
  background-color: #5c6c5c; /* Darker WhatsApp green */
  color: #fff; /* Ensure text remains white on hover */
}

/* 11. New Footer Styles - Dark Theme */
.footer-section {
    background-color: #343a40; /* Dark background */
    color: #adb5bd; /* Lighter base text color */
    padding: 60px 0 0;
    border-top: 1px solid #495057; /* Darker border */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    line-height: 1.7;
}

.footer-logo-col .footer-logo {
    max-width: 130px; /* Adjust size as needed */
    margin-bottom: 20px;
    /* Consider adding filter: brightness(0) invert(1); if the logo itself needs to be white */
}

.footer-logo-col p {
    font-size: 0.95rem;
    color: #dee2e6; /* Lighter text for description */
}

.footer-col h4 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #f8f9fa; /* White/Very light heading color */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
}

.footer-links-col li {
    margin-bottom: 10px;
}

.footer-links-col a,
.footer-contact-col a {
    color: #adb5bd; /* Match base text color */
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-links-col a:hover,
.footer-contact-col a:hover {
    color: #ffffff; /* White on hover */
    text-decoration: underline;
}

.footer-contact-col p {
    margin-bottom: 10px;
}

/* Add spacing for footer contact icons */
.footer-contact-col p i {
    margin-right: 8px; /* Add space between icon and text */
    width: 1em; /* Ensure consistent alignment */
    text-align: center;
}

.footer-social {
    margin-top: 15px;
}

.footer-social a {
    display: inline-block;
    margin-right: 12px;
    transition: transform 0.3s ease, color 0.3s ease; /* Added color transition */
    color: #adb5bd; /* Set base color for the icon link */
}

/* Style Font Awesome icons */
.footer-social i {
    font-size: 1rem; /* Adjust icon size using font-size */
    vertical-align: middle; /* Align icons better if needed */
    transition: color 0.3s ease; /* Smooth color change on hover */
}

.footer-social a:hover {
    transform: translateY(-2px);
    color: #ffffff; /* Make icon white on hover */
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid #495057; /* Darker border */
    font-size: 0.9rem;
    color: #6c757d; /* Muted grey for copyright */
}

/* Responsive adjustments for new footer */
@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .footer-section {
        padding-top: 40px;
        margin-top: 50px;
    }
    .footer-content {
        text-align: center; /* Center content on small screens */
    }
    .footer-logo-col .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-social a {
        margin: 0 8px;
    }
    .footer-bottom {
        padding: 20px 0;
    }
    /* Hide Quick Links on mobile */
    .footer-links-col {
        display: none;
    }
}

.mobile-contact-buttons {
        display: flex !important; /* Show on mobile */
    }

/* Scroll Down Button Styles */
#scroll-down-btn {
    position: absolute;
    bottom: 40px; /* Adjust distance from bottom */
    left: 50%;
    transform: translateX(-50%);
    z-index: 5; /* Above content */
    display: flex;
    flex-direction: column; /* Stack text above arrow */
    align-items: center;
    text-decoration: none;
    color: white;
    background-color: rgba(255, 255, 255, 0.2);
    width: 90px; /* Adjust size */
    height: 90px; /* Adjust size */
    border-radius: 50%; /* Circular */
    padding: 15px;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#scroll-down-btn:hover {
    background-color: rgba(120, 170, 221, 0.2);
    transform: translateX(-50%) translateY(-3px); /* Slight lift on hover */
    text-decoration: none;
}

.scroll-text {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.scroll-arrow {
    display: block;
    width: 12px; /* Arrow size */
    height: 12px; /* Arrow size */
    border-style: solid;
    border-color: white;
    border-width: 0 2px 2px 0; /* Creates > shape */
    transform: rotate(45deg); /* Point down */
    /* Optional animation */
    animation: bounce 2s infinite;
}

/* Bounce animation for arrow */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) rotate(45deg);
  }
  40% {
    transform: translateY(-6px) rotate(45deg);
  }
  60% {
    transform: translateY(-3px) rotate(45deg);
  }
}

/* Responsive adjustments for scroll button */
@media (max-width: 768px) {
    #scroll-down-btn {
        width: 80px;
        height: 80px;
        bottom: 25px;
        padding: 10px;
    }
    .scroll-text {
        font-size: 0.7rem;
        margin-bottom: 5px;
    }
    .scroll-arrow {
        width: 10px;
        height: 10px;
    }
}

/* Responsive: Reduce section padding on smaller screens */
@media (max-width: 767px) {
  .section {
    padding: 20px 0; /* Reduce vertical padding */
  }
  #gallery {
    padding: 20px 0; /* Reduce vertical padding */
  }
}

/* Form row layout for side-by-side fields */
.form-row {
    display: flex;
    gap: 20px; /* Space between date fields */
    margin-bottom: 0; /* Let individual form-groups handle spacing */
}

.form-row .form-group {
    flex: 1; /* Each field takes equal space */
}

@media (max-width: 767px) {
    .form-row {
        flex-direction: column; /* Stack date fields */
        gap: 0; /* Remove gap when stacked */
    }
    .booking-form-container {
         padding: 25px 20px;
    }
}

/* Enhanced date picker styling */
.flatpickr-date {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%237a8a7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 2px center;
    background-size: 16px;
    padding-right: 24px;
}

/* Calendar popup customization */
.flatpickr-calendar {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
    border-radius: 8px !important;
    border: none !important;
    overflow: hidden;
}

.flatpickr-month {
    background-color: #7a8a7a !important;
    color: white !important;
    height: 60px !important;
}

.flatpickr-weekday {
    background-color: #7a8a7a !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

.flatpickr-day.selected, 
.flatpickr-day.startRange, 
.flatpickr-day.endRange, 
.flatpickr-day.selected.inRange, 
.flatpickr-day.startRange.inRange, 
.flatpickr-day.endRange.inRange, 
.flatpickr-day.selected:focus, 
.flatpickr-day.startRange:focus, 
.flatpickr-day.endRange:focus, 
.flatpickr-day.selected:hover, 
.flatpickr-day.startRange:hover, 
.flatpickr-day.endRange:hover {
    background: #7a8a7a !important;
    border-color: #7a8a7a !important;
}

.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)), 
.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)), 
.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
    box-shadow: -10px 0 0 #7a8a7a !important;
}

.flatpickr-day.inRange {
    background: rgba(122, 138, 122, 0.2) !important;
    border-color: rgba(122, 138, 122, 0.2) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    font-weight: 500 !important;
}

/* Date field focus effect */
.form-group input.flatpickr-date:focus {
    outline: none;
    border-bottom: 2px solid #7a8a7a;
    padding-bottom: 7px;
}

/* Enlarge calendar icon on hover */
.flatpickr-date:hover {
    background-size: 18px;
}

/* Add animation for calendar open/close */
.flatpickr-calendar.open {
    animation: fadeDown 0.2s ease-out forwards;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}/* End custom CSS */