﻿@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');

/* Reset & Base Layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Apply to body and global text */
body {
  font-family:  'Lato', sans-serif;
 font-size:17px;
  color: #111;
background-color: #d8d2d3;
/*background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cg %3E%3Cpolygon fill='%23b8e6c1' points='800 100 0 200 0 800 1600 800 1600 200'/%3E%3Cpolygon fill='%23c6e6cd' points='800 200 0 400 0 800 1600 800 1600 400'/%3E%3Cpolygon fill='%23d4e9d8' points='800 300 0 600 0 800 1600 800 1600 600'/%3E%3Cpolygon fill='%23e0ece2' points='1600 800 800 400 0 800'/%3E%3Cpolygon fill='%23ebf0ec' points='1280 800 800 500 320 800'/%3E%3Cpolygon fill='%23f5f6f5' points='533.3 800 1066.7 800 800 600'/%3E%3Cpolygon fill='%23FDFDFD' points='684.1 800 914.3 800 800 700'/%3E%3C/g%3E%3C/svg%3E");*/
background-attachment: fixed;
background-size: cover;
}

/* Headings with emphasis */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
}

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 25px;
  z-index: 1000;
  font-size: 22px;


      background: linear-gradient(135deg, #efa1b8, #b81945);
  color: #fff;
  border: none;
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  display: none;
      border: 3px solid;
}

#backToTop:hover {
  background: linear-gradient(135deg, #b81945, #efa1b8);
  color: #fff;
  transform: scale(1.1);
      border: 3px solid;
}
/* Top Bar Styling */
.top-bar {
    background: linear-gradient(rgb(181 24 68), rgb(186 21 66)), url(../images/exterior.jpg);
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 8px 0;
    font-size: 14px;
    width: 100%;
    z-index: 9999;
}

/* Top Bar Container */
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Left, Center, Right Sections */
.top-left, .top-right, .top-center {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* Links & Icons */
.top-left a, .top-right a {
    color: #ffffff;
    text-decoration: none;
    margin-right: 12px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 18px;
    position: relative;
    z-index: 99999;
}

.top-left a:hover, .top-right a:hover {
    color: #D0FFD7; /* light mint shade for hover */
}

/* Social Icons */
.top-center {
    justify-content: center;
    width: 100%;
    margin-top: 5px;
}

.top-center a {
    font-size: 18px;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.top-center a:hover {
    color: #A8E6B5; /* lighter green */
    transform: scale(1.1);
}

.separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.4);
}

/* Mobile & Tablet Layout */
@media (max-width: 1040px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
        padding: 6px;
        gap: 3px;
    }

    .top-left {
        width: 100%;
        text-align: left;
        justify-content: flex-start;
        padding: 5px 10px;
    }

    .top-right {
        width: 100%;
        text-align: right;
        justify-content: flex-end;
		        padding: 5px 10px 23px 0px;
        /*padding: 5px 10px;*/
    }

    .top-center {
        display: flex;
        justify-content: center;
        margin: 5px 0;
		
    }

    .separator {
        display: none;
    }
}

/* Extra Small Screens (393x852, 430x932, 538x1040, 820x1180) */
@media (max-width: 820px) {
    .top-bar {
        padding: 6px 8px;
        font-size: 13px;
    }

    .top-left, .top-right {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        padding: 5px 15px;
    }

    .top-left {
        text-align: left;
    }

    .top-right {
        text-align: right;
    }

    .top-center {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 6px;
    }

    .top-left a, .top-right a {
        font-size: 17px;
        margin-right: 6px;
    }
}
/* Transparent Glass Header Styles */
.site-header {
  background-color: rgba(255, 255, 255, 0.85); /* Semi-transparent white */
  padding: 6px 20px; /* Reduced height */
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Header Container */
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* Logo Container */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  max-width: 100%;
}

/* Logo Image */
.logo img {
  height: 100px;
  width: 100%;
  max-width: 100%;
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-nav a {
  text-decoration: none;
  color: #2E2E2E;
  font-size: 18px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #b81643; 
}

/* Active Link */
.nav-link.active {
color: #b11943 !important;
    border-bottom: 3px solid #595661;
  padding-bottom: 3px;
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-link {
  display: block;
  color: #2E2E2E;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px;
  transition: color 0.3s ease;
}

.dropdown-link:hover {
  color: #b81643;

}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px;
  background: #ffffff;
  border-radius: 8px;
  padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  color: #2E2E2E;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
  background:#b8164347;
  color: #ffffff;
  
}

/* Contact / CTA Button */
.contact-btn {
  background: linear-gradient(rgb(181 24 68), rgb(186 21 66));

  
  color: #ffffff;
  padding: 8px 16px;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
  text-decoration: none;
}

.contact-btn:hover {
  transform: scale(1.08);
    background: linear-gradient(135deg, #b71642, #79182d);
  color: #ffffff;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #2E2E2E;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgb(246 246 244);
  color: #2E2E2E;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  z-index: 9999;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease-in-out;
}

.mobile-nav.active {
  display: flex;
}

.mobile-header {
  position: absolute;
  top: 160px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-header img {
  height: 70px;
  max-width: 180px;
}

.mobile-header .mobile-close {
  font-size: 1.6rem;
  color: #2E2E2E;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-header .mobile-close:hover {
  color: #007A33;
  transform: rotate(90deg);
}

.mobile-nav a {
  text-decoration: none;
  color: #2E2E2E;
  font-size: 20px;
  font-weight: 600;
  padding: 14px 0;
  text-align: center;
  width: 100%;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: #007A33;
}

/* Show Hamburger on Mobile */
@media (max-width: 1024px) {
  .hamburger-menu {
    display: block;
  }
  .main-nav {
    display: none;
  }
  .logo img {
    height: 50px;
  }
}

/* Small Devices Optimization */
@media (max-width: 600px) {
  .contact-btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
  .hamburger-menu {
    font-size: 1.4rem;
  }
  .mobile-nav a {
    font-size: 1.2rem;
    padding: 10px 0;
  }
  .mobile-header .mobile-close {
    font-size: 1.5rem;
  }
  .mobile-header img {
    height: 50px;
  }
}


/* Extra Small Screens (393x852, 430x932) */
@media (max-width: 600px) {
    .site-header {
        padding: 8px 12px;
    }

    .logo img {
        height: 35px;
    }

    .hamburger-menu {
        font-size: 1.6rem;
    }

    .contact-btn {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}
/* 📱 Responsive Design */
@media (max-width: 820px) {
    .logo {
        padding: 4px 8px;
        max-width: 180px; /* Slightly smaller */
		
    }
    .logo img {
        height: 100px;
		
    }
}

@media (max-width: 538px) {
    .logo {
        padding: 3px 6px;
        max-width: 160px;
    }
    .logo img {
        height: 100px;
    }
}

@media (max-width: 430px) {
    .logo {
        padding: 3px 5px;
        max-width: 150px;
    }
    .logo img {
        height: 32px;
    }
}

@media (max-width: 393px) {
    .logo {
        padding: 2px 4px;
        max-width: 140px;
    }
    .logo img {
        height:100px;
    }
}

/* Hero Container */
.hero-slider-boutique {
  position: relative;
  width: 100%;
  height: 120vh;
  overflow: hidden;
  margin-top:-98px;
}

/* Each Slide */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.show {
  opacity: 1;
  z-index: 1;
}

/* Slide background fade overlay */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.45), #e6e0e07d);
  z-index: 0;
}

/* Inner Container */
.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
     max-width: 600px;
    width: 100%;
  gap: 40px;
  color: #fff;
  position: relative;
  z-index: 1;
  animation: fadeIn 1s ease forwards;
}

/* Hero Text Panel */
.hero-text {
  flex: 1;
  background: rgb(179 25 68 / 62%);
  padding: 24px 24px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
  animation: fadeInLeft 1.2s ease both;
}

/* Heading */
.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 14px;
  text-align: left;
  color: #FDFDFD; /* White */
}

/* Paragraph */
.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  text-align: left;
  color: #E7F7ED; /* Soft mint */
}

/* CTA Button */
.btn-hero {
  padding: 12px 30px;
  background: linear-gradient(135deg, #007A33, #A8E6B5); /* Green gradient */
  color: #ffffff;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-hero:hover {
  background: linear-gradient(135deg, #A8E6B5, #007A33);
  color: #ffffff;
}

/* Hero Image (Circle) */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1.4s ease both;
}

.hero-image img {
  width: 600px;
  height: 600px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(0, 122, 51, 0.15), 0 12px 28px rgba(0, 0, 0, 0.5);
  border: 3px solid #ffffffcc;
}

/* Navigation Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: #721e31;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.arrow:hover {
  background: #721e31;
  color: #ffffff;
}

.arrow.prev {
  left: 25px;
}

.arrow.next {
  right: 25px;
}

/* Dot Navigation */
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-dots .dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-dots .dot.active {
  background: #b21642; 
}

/* Animations */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}


/* Mobile Responsiveness */
@media (max-width: 768px) {
	
  .hero-inner {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text {
    padding: 20px;
    text-align: center;
  }

  .hero-text h1,
  .hero-text p {
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-image img {
    width: 90%;
    margin-bottom: 20px;
	width: 400px; /* Set a fixed width/height for a perfect circle */
  height: 400px;
	
  }

  .arrow {
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
  }
}

/* Reset opacity for animation */
.hero-text,
.hero-image {
  opacity: 1;
}
.wave-divider {
  position: relative;
  width: 100%;
  height: 100px;


  background-size: cover;
  z-index: 2;
}

/* Welcome Section Background */
.bwplus-welcome-section {
    background: #fdfdfdb3;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    margin-top: -100px;
}

/* Main Container */
.bwplus-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    z-index: 2;
	  padding: 0; 
}

.bwplus-text p:last-of-type {
  margin-bottom: 10px; /* reduce gap below last paragraph */
}

/* Left Content */
.bwplus-text {
    flex: 1;
    max-width: 1400px;
}

/* Subtitle */
.section-subtitle {
    font-size: 20px;
    color: #b21642; 
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Main Title */
.section-title {
    font-size: 40px;
    color: #77162d;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
	
}

/* Description */
.section-description {
    font-size: 20px;
    color: #2F2F2F;
    margin-bottom: 15px;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

/* Read More Section */
.read-more-section {
    margin-top: 20px;
    position: relative;
}

#read-more-toggle {
    display: none;
}

.read-more-button {
    display: inline-block;
    background: linear-gradient(to right, #77162d, #e9839b);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.read-more-button:hover {
    background: linear-gradient(to right, #e9839b, #77162d);
    color: #ffffff;
}

.read-more-content {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: all 0.5s ease;
    margin-top: 0;
    padding: 0;
    color: #2F2F2F;
    font-size: 20px;
    line-height: 1.6;
}

#read-more-toggle:checked ~ .read-more-content {
    max-height: 2000px;
    visibility: visible;
    padding-top: 20px;
}

.read-more-content h3 {
    font-size: 24px;
    color: #b61744;
    margin-top: 25px;
    margin-bottom: 8px;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 768px) {
    .bw-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 16px;
    }

    .read-more-content {
        font-size: 14px;
    }

    .read-more-button {
        width: 100%;
    }

    .read-more-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }

    .section-description {
        font-size: 14px;
    }

    .read-more-button {
        font-size: 14px;
        padding: 8px 14px;
    }

    .read-more-content {
        font-size: 13px;
    }

    .read-more-content h3 {
        font-size: 18px;
    }
}
.booking-form {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  background: #baf0c4;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.booking-field {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  min-width: 160px;
  flex-grow: 1;
}

.booking-field label {
  font-weight: 600;
  color: #183b2d;
  margin-bottom: 6px;
  font-size: 14px;
}

.booking-field label i {
  color: #f9c200;
  margin-right: 6px;
}

.booking-field select {
  padding: 8px;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  cursor: pointer;
}

/* Booking Form Styling */
.welcome-booking-form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    background:#a8173f; 
    padding: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 1400px;
    width: 100%;
    border-radius: 12px;
    margin: 0 auto;
}

.welcome-form-group {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    padding: 14px;
    flex: 1;
    min-width: 180px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.welcome-form-group label {
    font-size: 16px;
    color: #014421;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
}

.welcome-form-group i {
    color: #FFD700; /* Gold icon */
}

.welcome-form-group input,
.welcome-form-group select {
    background: transparent;
    border: none;
    color: #014421;
    font-size: 15px;
    outline: none;
    margin-top: 5px;
    font-weight: 500;
    text-align: center;
}

/* Booking Button */
.welcome-booking-btn {
    background: linear-gradient(to right, #007A33, #A8E6B5); /* Green gradient */
    color: #ffffff;
    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, 0, 0, 0.1);
}

.welcome-booking-btn:hover {
    background: linear-gradient(to left, #007A33, #A8E6B5);
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.15);
}

@media (max-width: 820px) {
    .welcome-booking-form {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        padding: 18px;
    }

    .welcome-form-group {
        width: 100%;
        min-width: unset;
    }

    .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;
    }
}





.bw-amenities {
  position: relative;
  padding: 40px 20px;
  text-align: center;
  background: #FDFDFD;
  z-index: 1;
  overflow: hidden;
}

.bw-amenities::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background:
    linear-gradient(rgb(255 255 255 / 82%), rgba(255, 255, 255, 0.96)), url(../images/exterior.jpg) center center / cover no-repeat;
  z-index: 0;
  opacity: 1;
}

.bw-amenities > * {
  position: relative;
  z-index: 2;
}

.bw-amenities-header h5 {
  font-size: 14px;
  color: #2F2F2F;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: 600;
}

.bw-amenities-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #b61744;
  margin-bottom: 12px;
}

.bw-amenities-header p {
  max-width: 1200px;
  margin: 0 auto 30px;
  color: #444;
  font-size: 18px;
}

.bw-divider-icon {
  font-size: 20px;
  color: #FFA500;
  margin: 20px 0;
}

.bw-amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1138px;
  margin: 0 auto;
  padding-top: 20px;
}

.bw-amenity-box {
  text-align: center;
  padding: 20px;
}

.bw-amenity-box i {
  font-size: 40px;
  color: #b61744;
  margin-bottom: 15px;
}

.bw-amenity-box h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1A1A1A;
}

.bw-amenity-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.bw-view-all-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(to right, #b61744, #b61744);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 122, 51, 0.3);
}

.bw-view-all-btn:hover {
  background: linear-gradient(to right, #e6a8a8, #b61744);
  box-shadow: 0 6px 14px rgba(0, 122, 51, 0.4);
}



/* Room Section */
.room-section {
  padding: 30px 20px;
  text-align: center;
  
      background: linear-gradient(to top, #caa7a7, #f3ecec8f );
}

.room-header h2 {
 font-size: 38px;
    font-weight: 700;
    color: #77162d;
    margin-bottom: 12px;
}

.room-header p {
  color: #3c3c3c;
  margin-bottom: 30px;
}

.btn-see-more {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(to right, #007A33, #A8E6B5); /* Green to Gold */
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-see-more:hover {
  background: linear-gradient(to left, #007A33, #A8E6B5);
  color: #fff;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.room-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  border: 1px solid #d9e5dd;
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.room-img {
  position: relative;
  overflow: hidden;
}

.room-img img {
  width: 100%;
  height: auto;
  display: block;
}

.price-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #FFD700; /* Golden badge */
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  color: #014421;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.price-tag small {
  font-weight: normal;
  margin-left: 10px;
  font-size: 14px;
  color: #014421;
}

.room-details {
  padding: 20px;
  text-align: left;
}

.room-details h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #014421;
}

.room-amenities {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: #333;
}

.room-amenities li {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f6f8f3;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 500;
}







/* Attractions Section */
.attractions-section-alt {
  padding: 40px 20px;
    background: linear-gradient(to bottom, #fbf3f38c, #77162d);

  background-blend-mode: multiply;
  backdrop-filter: blur(1px);
  color: #ffffff;
}

.attractions-alt-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading Area */
.attractions-heading {
  text-align: center;
  margin-bottom: 50px;
}

.attractions-heading h5 {
  font-size: 18px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.attractions-heading h2 {
  font-size: 36px;
  margin-bottom: 12px;
  font-weight: bold;
  color: #991f38;
  
}

.attractions-heading p {
  font-size: 18px;
  max-width: 1200px;
  margin: 0 auto;
  color: #3c3c3c;
  line-height: 1.7;
  
}

.divider-icon {
  font-size: 24px;
  color: #ffffff;
  margin-top: 20px;
}

/* Row Layout */
.attraction-row {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 40px;
  gap: 30px;
  flex-wrap: wrap;
}

.attraction-row.reverse {
  flex-direction: row-reverse;
}

/* Image Block */
.attraction-image {
  flex: 1 1 45%;
}

.attraction-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Text Block */
.attraction-text {
  flex: 1 1 50%;
}

.attraction-text h3 {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.attraction-text p {
  font-size: 19px;
  color: #fff;
  line-height: 1.7;
  
}

/* Badge Number */
.badge {
  display: inline-block;
  background-color: #ffffff;
  color: #007A33;
  font-weight: bold;
  border-radius: 10px;
  padding: 10px 20px;
  margin-bottom: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}


/* Responsive */
@media (max-width: 768px) {
  .attraction-row,
  .attraction-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .attraction-text {
    padding-top: 20px;
  }
}




.video-showcase-section {
background: linear-gradient(to top, #941e1e8f, #bfa7a7);
  padding: 40px 20px;
   /* padding: 0px 20px;*/
 
  
}

.video-showcase-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.video-box {
	flex: 1 1 200px;
  /*flex: 1 1 450px;*/
  position: relative;
  padding-bottom: 26.25%;
  /*padding-bottom: 56.25%;*/
  height: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.video-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-content {
  flex: 1 1 500px;
}

.video-subtitle {
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-size: 14px;
}

.video-title {
  font-size: 36px;
  color: #991f38;
  margin-bottom: 16px;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.video-description {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 25px;
}

.watch-more-btn {
  display: inline-block;
  padding: 12px 26px;
  background: linear-gradient(to right, #77162d, #e9839b);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 122, 51, 0.3);
}

.watch-more-btn:hover {
  background: linear-gradient(to right, #e9839b, #77162d);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 122, 51, 0.4);
}


@media (max-width: 768px) {
  .video-showcase-container {
    flex-direction: column;
    text-align: center;
	margin-bottom:-200px;
  }

  .video-box {
    width: 100%;
    padding-bottom: 56.25%; /* Maintain 16:9 aspect ratio */
    height: 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
  }

  .video-box iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 0;
  }

  .video-content {
    padding-top: 0;
  }
}




/* Gallery & Map Section */
.gallery-map-section-enhanced {
  padding: 60px 0;
  background: linear-gradient(to bottom , #8cd49f8f, #ffffff00); /* light green overlay */
}

.gallery-map-flexbox {
  display: flex;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

/* Gallery Side */
.gallery-side {
  flex: 1 1 50%;
  padding: 40px;
  background: #ffffff;
}

.gallery-header h5 {
  font-size: 14px;
  color: #007A33;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.gallery-header h2 {
  font-size: 30px;
  font-weight: 700;
  color: #014421;
  margin-bottom: 10px;
}

.accent-line {
  width: 50px;
  height: 4px;
  background-color: #A8E6B5;
  margin-bottom: 20px;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.gallery-item:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* Hover Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 122, 51, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.overlay-text {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

/* Map Side */
.map-side {
  flex: 1 1 50%;
  padding: 40px;
  background-color: #fefefe;
}

.map-header h5 {
  font-size: 14px;
  color: #007A33;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.map-header h2 {
  font-size: 30px;
  font-weight: 700;
  color: #014421;
  margin-bottom: 10px;
}

.map-side iframe {
  width: 100%;
  height: 360px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}


/* Mobile Responsive */
@media (max-width: 768px) {
	.gallery-map-section-enhanced {
margin-top:50px;
 
}

  .gallery-map-flexbox {
    flex-direction: column;
  }

  .gallery-side, .map-side {
    flex: 1 1 100%;
  }

  .map-side iframe {
    min-height: 300px;
  }
}

/* Footer Section */
.aligned-footer {
background: linear-gradient(to bottom right, #e982a1, #fff7f9, #e0acbd, #d02b62);
  color: #333;
  padding: 70px 6% 40px;
  position: relative;
  overflow: hidden;


  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  margin-top: -50px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
  flex-wrap: wrap;
  border-bottom: 2px solid #b8e2c0;
  padding-bottom: 25px;
}

.footer-logo img {
  max-width: 120px;
  height: auto;
  display: block;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.25));
}

.footer-social-icons {
  display: flex;
  gap: 15px;
}

.footer-social-icon {
  width: 42px;
  height: 42px;
/*  background: radial-gradient(circle, #a8e6b5 0%, #fffaf2 100%);
  border-radius: 50%;*/
  border:1px solid;
      color: #b81945;

  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-social-icon:hover {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(0, 122, 51, 0.4);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
}

.footer-contact,
.footer-links,
.footer-follow {
  flex: 1;
  min-width: 250px;
}

.footer-contact h4,
.footer-links h4,
.footer-follow h4 {
  font-size: 24px;
  color: #b61744;
  position: relative;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-contact h4::after,
.footer-links h4::after,
.footer-follow h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, #1c050b, #e6afa8);
  border-radius: 2px;
}

.footer-contact p,
.footer-links ul li a,
.footer-bottom {
  color: #333;
  font-size: 17px;
  
}

.footer-links ul {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.footer-links ul li {
  position: relative;
  padding-left: 20px;
}

.footer-links ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: #b61744;
  
}

.footer-links ul li a {
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-links ul li a:hover {
  transform: translateX(5px);
  color: #8e2c43;
}

.footer-bottom {
  background: #77162d;
  color: #ffffff;
  text-align: center;
  padding: 18px 0;
  font-size: 18px;
  margin-top: 50px;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.2);
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #000000;
}
.title {
  font-weight: 600;
  font-size: 22px;
  background: #014421;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}
/* .title - for business name or highlighted titles */
.title-link {
  font-weight: 700;
  font-size: 22px;
  background: #b61744;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease;
  text-align:Left;
}

.title-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, #007a33, #a8e6b5);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.title-link:hover::after {
  width: 100%; /* animate underline on hover */
}


/* .cgsl - for clickable contact links like phone/email */
.cgsl {
	
  background: #8e2c43;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cgsl:hover {
  background: #000;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}





.inner-hero-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px 100px;
  position: relative;
  text-align: center;
  color: #ffffff;
  margin-top: -100px;
  height: 750px;
}

.inner-hero-overlay {
  background: #0000006b; /* Matching green tone from your layout */
  padding: 20px 20px;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  margin-top:40px;
}

.inner-subtitle {
  font-size: 1.3rem;
  color: #FFCC33; /* Yellow tone to match your layout accents */
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.inner-title {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .inner-title {
    font-size: 20px;
  }
  .inner-subtitle {
    font-size: 1.1rem;
  }
}





.amenities-inner-section {
  background: linear-gradient(to bottom, #f6fefb, #007a33d9);
  padding: 80px 20px;
  text-align: center;
  margin-top: -100px;
}

.amenities-inner-header h2 {
  font-size: 42px;
  color: #004225; /* Dark green */
  margin-bottom: 15px;
      margin-top: 15px;
}

.amenities-inner-header p {
  font-size: 18px;
  color: #2c2c2c;
  max-width: 750px;
  margin: 0 auto 30px;
  
}

.amenities-icon-bar {
  margin-top: 10px;
  margin-bottom: 50px;
}

.amenities-icon-bar em {
  font-size: 26px;
  color: #148642; /* Gold/yellow accent */
  margin: 0 12px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.6; }
}

.amenities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 60px;
}

.amenity-card {
  background: #ffffff;
  width: 300px;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
  border-left: 5px solid #148642; /* Gold */
}

.amenity-card:hover {
  transform: translateY(-8px);
  border-left-color: #006633; /* Deep green on hover */
}

.amenity-icon {
  font-size: 40px;
  color: #004225; /* Dark green */
  margin-bottom: 18px;
}

.amenity-title {
  font-size: 25px;
  font-weight: 600;
  color: #004225;
  margin-bottom: 10px;
}

.amenity-desc {
  font-size: 18px;
  color: #555;
  line-height: 1.5;
}

/* Footer Trust Banner */
.amenities-footer-banner {
  background: linear-gradient(to right, #004225, #006633);
  padding: 35px 20px;
  border-radius: 15px;
  color: #fff;
  max-width: 900px;
  margin: auto;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  font-size: 30px;
}

.trust-row em {
  margin-right: 10px;
}

.explore-rooms-btn {
  background: #FFCC33; /* Gold button */
  color: #004225;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.explore-rooms-btn:hover {
  background: #006633; /* Deep green hover */
  color: #fff;
}

/* Mobile View */
@media (max-width: 768px) {
  .amenity-card {
    width: 90%;
  }

  .trust-row {
    flex-direction: column;
    gap: 15px;
  }

  .amenities-inner-header h2 {
    font-size: 32px;
  }
}
.well {
  font-size: 18px;
  color: #444444; /* Dark Gray for readability */
  max-width: 1300px;
  margin: 0 auto 30px;
  line-height: 1.7;
  text-align: center;
}




.additional-amenities-section {
  padding: 0px 20px;
  background: linear-gradient(to top, #f6fefb, #007a33d9);
  color: #333333;
  max-width: 1600px;
  margin: 0 auto;
}

.additional-amenities-section .section-title5 {
  font-size: 2.6rem;
  color: #fff; /* Dark green */
  font-weight: 800;
  margin-bottom: 50px;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 0 12px #148642; /* Soft gold glow */
}

.amenities-list-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 60px;
}

.amenities-category {
  flex: 1 1 300px;
  background: #ffffff;
  border-radius: 15px;
  padding: 25px 30px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.1);
  color: #333333;
  border-left: 5px solid #148642; /* Gold accent */
}

.amenities-category h3 {
  font-size: 1.8rem;
  color: #004225; /* Dark green */
  margin-bottom: 20px;
  font-weight: 900;
  border-bottom: 3px solid #006633; /* Deep green underline */
  padding-bottom: 8px;
}

.amenities-category ul {
  list-style: none;
  padding-left: 0;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444444;
}

.amenities-category ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  font-weight: 500;
  color: #444444;
}

.amenities-category ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 4px;
  color: #004225; /* Dark green bullet */
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .amenities-list-container {
    gap: 35px 40px;
  }
  .amenities-category {
    flex: 1 1 45%;
  }
}

@media (max-width: 600px) {
  .amenities-list-container {
    gap: 30px 30px;
  }
  .amenities-category {
    flex: 1 1 100%;
  }
}





.things-to-do {
  padding: 80px 0;
  text-align: center;
  background:  linear-gradient(to bottom, #f6fefb, #007a33d9); /* Light green background */
  margin-top: -100px;
}

.things-title {
  font-size: 3rem;
  color: #004225; /* Dark green */
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 66, 37, 0.3);
    margin-top: 40px;
}

.things-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background-color: #FFCC33; /* Gold accent underline */
  margin: 10px auto;
  border-radius: 2px;
}

.things-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
}

.things-slider {
  flex: 1;
  max-width: 50%;
  min-width: 300px;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.custom-hero-slide {
  display: none;
  position: relative;
  background-size: cover;
  background-position: center;
  height: 400px;
  border-radius: 8px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4);
}

.custom-hero-slide.active {
  display: block;
}

.custom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: rgba(0, 66, 37, 0.6); /* Dark green overlay */
}

.custom-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  padding: 14px 24px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  max-width: 90%;
  box-shadow: 0 0 12px rgba(255, 204, 51, 0.4); /* Gold glow */
}

.custom-hero-content h1 {
  font-size: 24px;
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #FFCC33; /* Gold */
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.custom-hero-content p {
  font-size: 17px;
  margin-bottom: 10px;
  color: #f5f5f5;
  font-weight: 500;
  line-height: 1.5;
}

.custom-hero-btn {
  margin-top: 8px;
  padding: 10px 22px;
  background-color: #006633; /* Deep green */
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 66, 37, 0.4);
}

.custom-hero-btn:hover {
  background-color: #004225;
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 66, 37, 0.6);
}

.things-content-box {
  flex: 1;
  max-width: 40%;
  min-width: 300px;
  padding: 25px;
  color: #333;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
}

.content-inner h3 {
  font-size: 32px;
  margin-bottom: 12px;
  font-weight: 700;
  color: #004225; /* Dark green */
  text-shadow: 0 0 6px rgba(0, 66, 37, 0.2);
}

.content-inner p {
  font-size: 18px;
  margin-bottom: 14px;
  color: #444;
  line-height: 1.6;
}

.content-inner ul {
  list-style: none;
  padding: 0;
  color: #555;
}

.content-inner ul li {
  font-size: 15px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 24px;
  font-weight: 600;
  color: #004225; /* Dark green text */
}

.content-inner ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #FFCC33; /* Gold arrow */
  font-weight: 900;
  font-size: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .things-slider {
    max-width: 80%;
    margin-bottom: 20px;
  }

  .things-content-box {
    max-width: 80%;
    margin: 0 auto;
  }

  .custom-hero-content h1 {
    font-size: 20px;
  }

  .custom-hero-content p {
    font-size: 14px;
  }

  .custom-hero-slide {
    height: 450px;
  }
}

@media (max-width: 768px) {
  .things-container {
    flex-direction: column;
  }

  .things-slider,
  .things-content-box {
    max-width: 100%;
    margin: 0 auto;
  }

  .custom-hero-slide {
    height: 450px;
  }

  .custom-hero-content h1 {
    font-size: 20px;
  }

  .custom-hero-content p {
    font-size: 14px;
  }

  .custom-hero-btn {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .things-slider,
  .things-content-box {
    max-width: 90%;
  }

  .custom-hero-slide {
    height: 450px;
  }

  .custom-hero-content h1 {
    font-size: 18px;
  }

  .custom-hero-content p {
    font-size: 12px;
  }

  .custom-hero-btn {
    font-size: 12px;
    padding: 6px 12px;
  }
}
.things-to-do-section {
  padding: 60px 15px 100px;
 background:  linear-gradient(to top, #f6fefb, #007a33d9); /* Light green background */
  color: #004225; /* Dark green text */
  max-width: 1600px;
  margin: 0 auto;
  
  text-align: center;
}

.things-to-do-section .section-title1 {
  font-size: 2.6rem;
  color: #fff; /* Dark green */
  font-weight: 800;
  margin-bottom: 50px;
  text-transform: uppercase;
  text-shadow: 0 0 12px #148642; /* Gold glow */
  text-align: center;
}

.things-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 60px;
  justify-content: center;
}

.things-card {
  flex: 1 1 300px;
  background: #ffffff;
  border-radius: 15px;
  padding: 25px 30px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.15);
  color: #004225; /* Dark green text */
  text-align: left;
  transition: transform 0.3s ease;
  border-left: 4px solid #148642; /* Gold accent */
}

.things-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
  border-left-color: #006633; /* Deep green on hover */
}

.things-card h3 {
  font-size: 1.8rem;
  color: #004225; /* Dark green */
  margin-bottom: 20px;
  font-weight: 800;
  border-bottom: 3px solid #006633; /* Deep green underline */
  padding-bottom: 8px;
}

.things-card ul {
  list-style: none;
  padding-left: 0;
  font-size: 1.15rem;
  line-height: 1.9;
  color: #444444; /* Light black for body text */
  font-weight: 500;
}

.things-card ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  color: #004225; /* Dark green for list */
}

.things-card ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 5px;
  color: #148642; /* Gold bullet */
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .things-cards-grid {
    gap: 35px 40px;
  }
  .things-card {
    flex: 1 1 45%;
  }
}

@media (max-width: 600px) {
  .things-cards-grid {
    gap: 30px 30px;
  }
  .things-card {
    flex: 1 1 100%;
  }
}





/* Custom Location Section */
.custom-location-section {
  padding: 60px 20px;
  background: #f6fefb; /* Light green background */
  margin-top: -100px;
}

.custom-location-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 40px;
  border-radius: 12px;
}

/* Header Section */
.custom-location-header {
  text-align: center;
  margin-bottom: 30px;
  width: 100%;
}

.custom-location-title {
  font-size: 3rem;
  color: #004225; /* Dark green */
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: 800;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Left Side: Text & Form */
.custom-location-text {
  flex: 1;
  max-width: 50%;
  padding: 20px;
}

.custom-location-description {
  font-size: 20px;
  color: #444444;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Coordinates Box */
.custom-coordinates-box {
  background-color: #fffbea; /* very light gold */
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #FFCC33; /* gold accent */
}

.custom-coordinates-title {
  font-size: 20px;
  margin-bottom: 10px;
  color: #004225; /* dark green */
  font-weight: 700;
}

.custom-coordinate-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-coordinate-list li {
  font-size: 16px;
  color: #333;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.custom-coordinate-list em {
  color: #FFCC33; /* gold */
  margin-right: 8px;
}

/* Form Styling */
.custom-directions-form {
  margin-top: 20px;
}

.custom-input-field {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  background-color: #fff;
  color: #004225;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.06);
  transition: border-color 0.3s ease;
}

.custom-input-field::placeholder {
  color: #888;
}

.custom-input-field:focus {
  border-color: #004225;
  outline: none;
  box-shadow: 0 0 8px rgba(0, 66, 37, 0.2);
}

.custom-directions-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(to right, #b61744, #b61744); /* dark green to gold */
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.custom-directions-btn:hover {
  background: linear-gradient(to right, #b61744, #b61744);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Right Side: Map Image */
.custom-location-image {
  flex: 1;
  max-width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-image {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.custom-image:hover {
  transform: scale(1.03);
}

/* Responsive Design */
@media (max-width: 768px) {
  .custom-location-container {
    flex-direction: column;
  }

  .custom-location-text,
  .custom-location-image {
    max-width: 100%;
  }

  .custom-location-title {
    font-size: 32px;
  }
}




/* 1. Full-width Title Section */
.contact-hero-banner {
  background: #f6fefb; /* Light green background */
  padding: 100px 20px;
  text-align: center;
  margin-top: -100px;
}

.contact-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.custom-contact-subtitle {
  font-size: 18px;
  color: #FFCC33; /* Gold */
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
  text-shadow: 0 0 4px rgba(255, 204, 51, 0.4);
}

.custom-contact-title {
  font-size: 3rem;
  color: #004225; /* Dark green */
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: 800;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
}

.custom-contact-description {
  font-size: 20px;
  color: #444444;
  font-weight: 400;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}

/* 2. Contact Info + Image Section */
.futuristic-contact-section {
  padding: 40px 20px 80px;
  background: #f6fefb; /* light green */
}

.futuristic-contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.futuristic-contact-info {
  flex: 1;
  max-width: 520px;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: left;
  color: #004225;
}

.futuristic-contact-info p {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}

.futuristic-info-block {
  margin-top: 20px;
}

.futuristic-info-block h2,
.futuristic-info-block h3 {
  font-size: 22px;
  margin-bottom: 5px;
  color: #004225; /* Dark green */
  font-weight: 700;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}

.futuristic-info-block a {
  color: #004225; /* dark green */
  font-weight: bold;
  text-decoration: none;
}

.futuristic-info-block a:hover {
  color: #FFCC33; /* Gold on hover */
  text-decoration: underline;
}

.futuristic-image-block {
  flex: 1;
  max-width: 450px;
}

.contact-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-image:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 768px) {
  .custom-contact-title {
    font-size: 32px;
  }

  .contact-hero-banner,
  .futuristic-contact-section {
    padding: 40px 20px;
  }

  .futuristic-contact-container {
    flex-direction: column;
  }

  .futuristic-contact-info,
  .futuristic-image-block {
    max-width: 100%;
  }

  .custom-contact-description {
    font-size: 16px;
  }

  .contact-image {
    margin-bottom: 60px;
  }
}





/* 🌐 Updated Sitemap Section - bw Theme */
.sitemap-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #f6fefb, #b71642); /* Light green to dark green gradient */
    text-align: center;
    margin-top: -100px;
}

.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sitemap-title {
    font-size: 3rem;
    color: #004225; /* Dark green */
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 0 6px rgba(0, 66, 37, 0.4);
}

.sitemap-subtitle {
    font-size: 1.4rem;
    color: #333333; /* Dark gray for readability */
    margin-bottom: 50px;
    font-weight: 400;
}

.sitemap-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sitemap-block {
    background: #92c9aa; /* Gold */
    padding: 40px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 18px rgba(0, 66, 37, 0.2);
    border: 1px solid rgba(0, 66, 37, 0.25);
}

.sitemap-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 66, 37, 0.4);
    border-color: #004225;
}

.sitemap-block h2 {
    font-size: 1.8rem;
    color: #004225; /* Dark green */
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.2);
}

.sitemap-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-block ul li {
    margin-bottom: 15px;
}

.sitemap-block ul li a {
    font-size: 18px;
    color: #004225; /* Dark green text on gold background */
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    font-weight: 600;
}

.sitemap-block ul li a i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: #004225;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}

.sitemap-block ul li a:hover {
    color: #007a33; /* Slight deeper green on hover */
}

/* 📱 Responsive Design */
@media (max-width: 1024px) {
    .sitemap-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .sitemap-links {
        grid-template-columns: 1fr;
    }
}





/* FAQ Section - Holiday Inn Budd Lake Theme */
.faq-section {
  padding: 100px 20px;
  background: #f6fefb; /* Light green background */
  color: #333; /* Dark text */
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top:-100px;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-title {
  font-size: 3rem;
  font-weight: 800;
  color: #004225; /* Dark green */
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-shadow: 0 0 5px rgba(0, 66, 37, 0.2);
}

.faq-subtitle {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 50px;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: left;
}

.faq-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid #b61744; /* Gold highlight */
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
}

.faq-item h2 {
  font-size: 1.8rem;
  color: #b61744; /* Dark green title */
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #b61744; /* Gold underline */
}

.faq-item p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
}

.faq-item a {
  color: #b61744; /* Dark green link */
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.faq-item a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #555; /* Gold underline */
  transition: width 0.3s ease;
}

.faq-item a:hover {
  color: #b61744; /* Deep green on hover */
  text-decoration: none;
}

.faq-item a:hover::after {
  width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .faq-title {
    font-size: 2.5rem;
  }

  .faq-item h2 {
    font-size: 1.6rem;
  }

  .faq-item p {
    font-size: 1rem;
  }
}
.new-facility-title {
  color: #004225; /* Dark green */
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.new-facility-title:hover {
  color: #FFCC33; /* Gold hover */
  text-decoration: none;
}
/* Page Layout */
.inner-page-container {
    width: 100%;
    padding: 130px 10%;
    background: linear-gradient(135deg, #f0f8ff, #e0ffe0);
   
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    margin-top: -99px;
    margin-bottom: 40px;
    transition: transform 0.3s ease-in-out;
}
.page-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-title {
    font-size: 48px;
    font-weight: bold;
    color: #2e7d32;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.2;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.page-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    background-color: #2e7d32;
    margin: 20px auto;
}

/* Content Wrapper */
.content-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 0 5%;
    flex-wrap: wrap;
}

.description {
    flex: 0 0 55%;
    line-height: 1.8;
    color: #555;
    padding-right: 20px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.description p {
    margin-bottom: 20px;
}

.image-gallery {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    object-fit: cover;
    height: 300px;
}

.gallery-image:hover {
    transform: scale(1.05);
}

.image-gallery .gallery-image:last-child {
    height: 329px;
}

/* Call to Action */
.call-to-action {
    text-align: center;
    margin-top: 40px;
}

.cta-button {
    padding: 18px 35px;
    background-color: #2e7d32;
    color: white;
    font-size: 22px;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #1b5e20;
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.cta-button:active {
    transform: scale(1);
}

@media (max-width: 1024px) {  /* iPad and similar */
    .content-wrapper {
        flex-direction: column;
        padding: 0 5%;
    }

    .description {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }

    .image-gallery {
        flex: 0 0 100%;
    }

    .cta-button {
        width: 70%;
        font-size: 20px;
        padding: 16px 30px;
    }

    .page-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {  /* Tablet small */
    .content-wrapper {
        flex-direction: column;
        padding: 0 8%;
    }

    .description {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }

    .image-gallery {
        flex: 0 0 100%;
    }

    .cta-button {
        width: 80%;
        font-size: 18px;
        padding: 14px 25px;
    }

    .page-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {  /* Mobile */
    .content-wrapper {
        flex-direction: column;
        padding: 0 6%;
    }

    .description {
        flex: 0 0 100%;
        margin-bottom: 15px;
    }

    .image-gallery {
        flex: 0 0 100%;
    }

    .cta-button {
        width: 80%;
        font-size: 16px;
        padding: 12px 20px;
    }

    .page-title {
        font-size: 28px;
    }
}



/* Trade Center Specific Section */
.trade-center-content {
    width: 100%;
     padding: 130px 10%;
     background: linear-gradient(135deg, #f0f8ff, #e0ffe0);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    margin-top: -99px;
    margin-bottom: 40px;
    transition: transform 0.3s ease-in-out;
}



/* Header Section */
.header-section {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.trade-title {
    font-size: 48px;
    font-weight: bold;
    color: #2e7d32;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.2;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.trade-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    background-color: #2e7d32;
    margin: 20px auto;
}

/* Content Section */
.content-section {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 0 5%;
    flex-wrap: wrap;
}

.text-description {
    flex: 0 0 100%;
    line-height: 1.8;
    color: #555;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.text-description p {
    margin-bottom: 20px;
}

/* Call to Action Section */
.cta-section {
    text-align: center;
    margin-top: 40px;
}

.cta-link {
   padding: 18px 35px;
    background-color: #2e7d32;
    color: white;
    font-size: 22px;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    letter-spacing: 1px;
}

.cta-link:hover {
     background-color: #1b5e20;
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.cta-link:active {
    transform: scale(1);
}



/* Cookie Consent custom styling */
.cc-window.cc-banner {
  background-color: #e6f5ea !important;
  border-top: 4px solid #45894f !important;
  font-family: Arial, sans-serif;
}

.cc-window.cc-banner .cc-btn {
  background-color: #45894f !important;
  color: #ffffff !important;
  border-radius: 4px !important;
  padding: 8px 16px !important;
  font-size: 14px;
  text-transform: uppercase;
}

.cc-window.cc-banner .cc-btn:hover {
  background-color: #3a6f3f !important;
}

.cc-window.cc-banner .cc-reject {
  background-color: transparent !important;
  color: #45894f !important;
  text-decoration: underline;
}



.accessibility-banner {
  background:  #b61744;
  color: #e7f6ee;
  text-align: center;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  border-top: 3px solid #e5b6c3; /* Light mint border */
  border-bottom: 3px solid #e5b6c3;
}

.accessibility-banner a {
  color: #f5e0e6; /* Light green */
  font-weight: 700;
  text-decoration: none;
  margin-left: 6px;
}

.accessibility-banner a:hover {
  text-decoration: underline;
}

.accessibility-banner em {
  color: #cdeecd;
  margin-left: 8px;
  margin-right: 4px;
}
/* --- Headings --- */
.h2-class{
  /*margin-top: 20px;*/
  color:#bc4547;
  font-size:26px;
  line-height:1.25;
  width:100%;
    margin-top: -20px !important;  /* smaller space above heading */
  margin-bottom: -20px !important; /* smaller space below heading */
  font-weight: 600;
  /*text-transform: capitalize;*/
  text-align: left;
}

/* --- Container/text (kept generic so it won't fight other CSS) --- */
.bwplus-welcome-section .section-title{
  margin:0 0 10px 0;
}
.bwplus-welcome-section .section-description{
  margin:0 0 12px 0;
}

/* --- Amenities Layout --- */
.amenities-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px 40px;
  align-items:start;
   margin: 0; 
  /*margin-top:0px;*/
  width:100%;
   padding: 0;  
}

/* Reset list and style each row with icon */
.amenities-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.amenities-list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  line-height:1.1;
  color:#222;
  font-size:16px;
}
.amenities-list i.fa{
  margin-top:2px; /* align icon with text baseline */
  flex:0 0 auto;
  color:#000; /* matches your inline style */
}

@media (max-width: 768px) {
  .amenities-grid {
    grid-template-columns: 1fr;
	  width:100%!important;
  }
}

/* --- Responsive --- */
@media (max-width: 900px){
  .amenities-grid{
    grid-template-columns:1fr;
    gap:18px;
	  width:100%!important;
  }
}

/* (Optional) If you keep your old col-* rules somewhere else, disable floats here to avoid conflicts */
.col-md-6, .col-md-12, .col-lg-12{
  float:none !important;
  max-width:100% !important;
  flex:none !important;
}

/* Container for the location section */
.location-section {
    font-family: Arial, sans-serif;
    margin: 20px;
}

/* Title styling */
.location-section h3 {
    font-size: 1.8em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

/* Longitude and Latitude styling */
.location-section p {
    font-size: 1.2em;
    color: #333;
}

.location-container {
    font-family: Arial, sans-serif;
    margin: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    max-width: 600px;
    background-color: #f9f9f9;
}

h2 {
    font-size: 24px;
    color: #333;
    text-align: center;
}

.coordinates {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.longitude, .latitude {
    font-size: 18px;
    color: #d18d24; /* Gold-like color */
}

.direction {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#starting-point {
    padding: 10px;
    font-size: 16px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.btn {
    background-color: #e74c3c; /* Red button */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background-color: #c0392b;
}

@media only screen and (max-width: 616px) {
    .inner-hero-section {
        padding: 50px 15px 60px; /* Reduce padding for smaller screens */
        margin-top: -50px;        /* Adjust margin if needed */
        height: 350px;            /* Reduce height for mobile */
        font-size: 14px;          /* Adjust text size if there’s text */
    }
}
.title-2
{
color: #a1173c;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    margin-top: 0px;
}