﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* Reset & Base Layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
   background: linear-gradient(135deg,  #FF9D00, #28A745, #8E44AD);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  color: #2c2c2c;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
}

h1 {
	font-size: 28px;
}


/* ========== Topbar ========== */
.topbar {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 8px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  color: #fff;
  font-size: 16px;
  z-index: 999;
}

.topbar a {
  color: #fff;
  margin-right: 15px;
  text-decoration: none;
  transition: color 0.3s;
}

.topbar a:hover {
  color: #FF9D00;
}

.topbar-right span {
  margin-left: 20px;
  display: inline-block;
}

.topbar i {
  margin-right: 6px;
}

/* Responsive Topbar Fix */
@media screen and (max-width: 991px) {
  .topbar {
    position: relative;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
    gap: 8px;
	color: #003B5C;
   background-color: #fdfdfd;
  }
  .topbar a {
  color: #003B5C;

}

  .topbar-left {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
	
  }

  .topbar-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
  }

  .topbar-right span {
    margin: 0;
    font-size: 16px;
	
  }

  .topbar::after {
    content: "";
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin-top: 8px;
  }
}

/* ========== Main Header ========== */
.main-header {
  position: absolute;
  top: 40px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
    background: #e7cda57d;
  z-index: 998;
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-img {
  height: 100px;
  width: auto;
  max-height: 300px;
  transition: height 0.3s ease;
}

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav ul li {
  margin-left: 25px;
}

.main-nav ul li a {
  text-decoration: none;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  transition: color 0.3s;
}

.main-nav ul li a:hover {
  color:#f9d404;
}
/* Dropdown Styles */
.main-nav .dropdown {
  position: relative;
}

.main-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  min-width: 300px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  display: none;
  z-index: 999;
  padding: 10px 0;
}

.main-nav .dropdown-menu li {
  margin: 0;
}

.main-nav .dropdown-menu li a {
  color: #fff;
  padding: 10px 10px;
  display: block;
  font-size: 17px;
  font-weight: 500;
  text-transform: capitalize;
}

.main-nav .dropdown:hover .dropdown-menu {
  display: block;
}

.main-nav .dropdown-menu li a:hover {
  background-color: #f0f0f0;
  color: #FF9D00;
}


/* Responsive Main Header */
@media screen and (max-width: 991px) {
  .main-header {
    position: relative;
    top: 0;
    padding: 15px 20px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  
  }

  .main-nav {
    display: none !important;
  }

  .logo-img {
    height: 80px;
  }
}

/* Sticky Header */
.sticky-header {
  position: fixed;
  top: -100px;
  width: 100%;
  background-color: #fff;
  padding: 15px 80px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  z-index: 999;
  transition: top 0.4s ease-in-out;
}

.sticky-header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.sticky-header .logo-img {
  height: 60px;
  width: auto;
}

.sticky-header .main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sticky-header .main-nav ul li {
  margin-left: 25px;
}

.sticky-header .main-nav ul li a {
  text-decoration: none;
  color: #033503;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  transition: color 0.3s;
}

.sticky-header .main-nav ul li a:hover {
  color: #FF9D00;
}
/* Sticky Header Dropdown - Enhanced Visibility */
.sticky-header .main-nav .dropdown {
  position: relative;
}

.sticky-header .main-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff; /* Solid white background */
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  min-width: 260px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 999;
  padding: 8px 0;
}

.sticky-header .main-nav .dropdown-menu li {
  margin: 0;
}

.sticky-header .main-nav .dropdown-menu li a {
  color: #033503; /* Deep blue text for consistency */
  padding: 10px 20px;
  display: block;
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
  transition: background 0.3s, color 0.3s;
}

.sticky-header .main-nav .dropdown:hover .dropdown-menu {
  display: block;
}

.sticky-header .main-nav .dropdown-menu li a:hover {
  background-color: #FF9D00;
  color: #fff; /* White text on orange hover */
  border-radius: 4px;
}

/* Responsive Sticky Header */
@media screen and (max-width: 768px) {
  .sticky-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }

  .sticky-header .main-nav ul {
    flex-direction: column;
    background: #000;
    width: 100%;
    padding: 15px;
    display: none;
  }

  .sticky-header .main-nav ul li {
    margin: 10px 0;
  }

  .sticky-header .main-nav ul.active {
    display: flex !important;
  }

  .sticky-header .logo-img {
    height: 40px;
  }
}
@media screen and (max-width: 991px) {
  .sticky-header {
    display: none !important;
  }
}
/* ========== Hamburger Button ========== */
.hamburger-toggle {
  display: none;
  position: absolute;
  right: 30px;
  top: 50px;
  z-index: 1000;
  background: none;
  border: none;
  font-size: 26px;
  color: #000;
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  .hamburger-toggle {
    display: block;
    top: 40px;
    right: 20px;
  }
}
/* Mobile Menu: Bold Tetradic Design */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  max-width: 330px;
  height: 100vh;
  background: #033503;
  color: #fff;
  z-index: 9999;
  transition: left 0.4s ease;
  padding: 30px 25px;
  box-shadow: 6px 0 20px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto; /* 👈 Enables vertical scrolling */
  overscroll-behavior: contain; /* 👈 Prevents bounce effect */
  -webkit-overflow-scrolling: touch; /* 👈 Smooth scroll on iOS */
}


.mobile-menu-overlay.active {
  left: 0;
}

/* Header: Logo + Close */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.mobile-logo {
  height: 100px;
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.5)); /* ✅ white shadow */
}

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: #FF6F61;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.close-btn:hover {
  transform: rotate(90deg);
  color: #FF9D00;
}

/* Navigation Links - Styled Like Buttons */
.mobile-menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-links li {
  margin-bottom: 15px;
}

.mobile-menu-links li a {
   background: linear-gradient(135deg,  #FF9D00, #28A745, #8E44AD);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  color: #fff;
  padding: 12px 20px;
  display: block;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.mobile-menu-links li a:hover {
  background: linear-gradient(135deg, #FF9D00, #e87d00);
  color: #fff;
  transform: translateY(-2px);
}

/* Contact Information */
.mobile-contact {
  margin-top: 25px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.06);
  padding: 15px;
  border-left: 4px solid #FF9D00;
  border-radius: 6px;
}

.mobile-contact p {
  margin-bottom: 12px;
}

.mobile-contact span {
  display: block;
  color: #FF9D00;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Social Section with Glow */
.mobile-social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.mobile-social-icons a {
  color: #fff;
  font-size: 20px;
  transition: color 0.3s, text-shadow 0.3s;
}

.mobile-social-icons a:hover {
  color: #2ECC71;
  text-shadow: 0 0 8px #2ECC71;
}
.mobile-dropdown {
  position: relative;
}

.dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #FF9D00, #28A745, #8E44AD);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  padding: 12px 20px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.dropdown-link {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  flex: 1;
}

.dropdown-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  padding-left: 15px;
}

/* Submenu hidden by default */
.dropdown-submenu {
  display: none;
  margin-top: -5px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
}

.dropdown-submenu li a {
  background: #fff;
  color: #033503;
  padding: 10px 15px;
  display: block;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.dropdown-submenu li a:hover {
  background: #FF9D00;
  color: #fff;
}

nav.main-nav a.active,
.sticky-header .main-nav a.active,
.mobile-menu-links a.active {
 
  font-weight: 600;
  position: relative;
}

nav.main-nav a.active::after,
.sticky-header .main-nav a.active::after,
.mobile-menu-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #007a79;
  border-radius: 2px;
}


/* Responsive trigger */
@media screen and (max-width: 991px) {
  .hamburger-toggle {
    display: block;
  }

  .main-nav {
    display: none !important;
  }

  .sticky-header .main-nav {
    display: none !important;
  }
.main-header {
  background-color: #fdfdfd;
  border-top: 4px solid #FFD369; /* Adjust color and thickness as needed */
}

}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Slide fade overlay */
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgb(255 185 0 / 32%), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-attachment: fixed; /* Added */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 5%;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity 2s ease;
}


.slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

/* Content left area */
.slide-left {
  width: 100%;
  color: #fff;
  z-index: 2;
}

.slide-left h5 {
	
	  color:#f7f6ec;
  /*color: #FFD700; /* Bright gold */
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;'
  font-weight: 300;
}

.slide-left h1 {
  font-size: 60px;
  font-weight: 500;
  margin: 10px 0 20px;
  line-height: 1.2;
  color: #ffffff;
}

/* Book Button */
.book-btn {
  background: #FF6B35;  /* Vibrant Orange */
  color: #fff;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 6px rgba(255, 107, 53, 0.4);
  transition: background 0.3s;
}

.book-btn:hover {
  background: #E65A26;
}

/* Overlay Title (Right Vertical Text) */
.slide-right .overlay-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 130px;
  -webkit-text-stroke: 1px #fff; /* Gold outline */
  color: transparent;
  opacity: 1.90;
  font-weight: bold;
}

/* Navigation Dots */
.slider-nav {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.slider-nav .dot {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 0.3;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.3s;
}

.slider-nav .dot.active {
  opacity: 1;
}

/* Responsive */
@media screen and (max-width: 768px) {
	.hero-slider {

  height: 40vh;
  
}
  .slide-left h1 {
    font-size: 2rem;
	font-weight:300;
  }
  .slide-left h5 {
 font-weight:300;
  font-size: 17px;
 
}
  
  .slide-left {
    width: 100%;
    text-align: center;
  }
  .slide-right {
    display: none;
  }
  .slider-nav {
    right: 10px;
  }
}

@media screen and (max-width: 768px) {
  .slide {
    background-attachment: scroll;
  }
}

.welcome-section {
  position: relative;
  background: url('../images/sketch-2.png') center center / cover no-repeat;
  background-attachment: fixed; /* This line makes the background fixed */
  color: #fff;
  padding: 80px 30px;
  min-height: 600px;
  overflow: hidden;
}


.welcome-overlay {
  position: absolute;
  inset: 0;
     background: linear-gradient(to right, #184e24, #0bae868c);
  z-index: 1;
}

.welcome-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  gap: 40px;
  align-items: center;
  backdrop-filter: blur(3px);
}

.welcome-left {
  flex: 1 1 55%;
  border-left: 5px solid #FFD700;
  padding-left: 25px;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  from {
    opacity: 0;
    transform: translateY(30px);
  }
}

.welcome-left h2 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  font-weight:500;
}

.welcome-left h4 {
  font-size: 30px;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: 500;
}

.short-intro {
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.6;
  color: #eee;
}

.read-more-btn {
  background: transparent;
  color: #fff; /* Deep Blue from logo */
  padding: 12px 28px;
  border: 2px solid #fff;
  font-weight: 600;
  letter-spacing: 1.5px;
  font-size: 17px;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
}

.read-more-btn:hover {
  background: #f39c12;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 59, 124, 0.3); /* Subtle blue glow */
  transform: translateY(-2px);
}


.read-more-content {
  display: none;
  font-size: 18px;
  line-height: 1.5;
  color: #eee;
  margin-top: 20px;
}

.read-more-content p {
  margin-bottom: 20px;
}

.welcome-right-img {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.welcome-right-img img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  border: 4px solid #fff;
  background: #fff;
  transition: transform 0.3s ease;
}

.welcome-right-img img:hover {
  transform: scale(1.03);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .welcome-container {
    flex-direction: column;
    padding: 20px 15px;
  }

  .welcome-left, .welcome-right-img {
    flex: 1 1 100%;
    text-align: center;
    padding-left: 0;
    border-left: none;
  }

  .welcome-left h2 {
    font-size: 28px;
  }

  .welcome-left h4 {
    font-size: 18px;
  }

  .welcome-right-img img {
    margin-top: 30px;
  }
}
/* Entry Animation Keyframes */
@keyframes fadeSlideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeSlideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Existing welcome-section styling continues... */
.welcome-left {
  flex: 1 1 55%;
  border-left: 5px solid #FFD700;
  padding-left: 25px;
  animation: fadeSlideInLeft 1.2s ease forwards;
  opacity: 0;
  animation-delay: 0.2s;
}

.welcome-right-img {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeSlideInRight 1.2s ease forwards;
  opacity: 0;
  animation-delay: 0.4s;
}

/* Allow animation to work smoothly on page load */
.welcome-left,
.welcome-right-img {
  will-change: opacity, transform;
}
@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
    max-height: 0;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    max-height: 1000px;
  }
}

.read-more-content {
  display: none;
  font-size: 18px;
  line-height: 1.5;
  color: #eee;
  margin-top: 20px;
  animation: slideFadeIn 0.6s ease forwards;
  overflow: hidden;
}
/* When read-more is opened - hide image & make text full width */
.welcome-container.read-open .welcome-right-img {
  display: none;
}

.welcome-container.read-open .welcome-left {
  flex: 1 1 100%;
  max-width: 100%;
}


/* Section Styling */
.amenities-section {
  padding: 40px 20px;
  background-color: #fdfdfd;
  text-align: center;
}

.section-title h2 {
  font-size: 40px;
  margin-bottom: 50px;
  color: #003B5C;
  font-weight:500;
  text-transform: uppercase;
}

/* Grid Layout */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* Amenity Cards */
.amenity-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 20px;
  transition: transform 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  position: relative;
}

.amenity-card:hover {
  transform: translateY(-8px);
}

/* Icon Wrapper with Bubble Shape */
.icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50% 45% 40% 55% / 60% 55% 45% 50%;
  background: transparent;
  border: 2px solid currentColor;
  transition: all 0.4s ease;
}

/* Faded Large Icon */
.faded-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 58px;
  color: currentColor;
  opacity: 0.08;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: all 0.4s ease;
}

/* Solid Small Icon */
.solid-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 40px;
  color: currentColor;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: all 0.4s ease;
}

.amenity-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
  font-weight:500;
}

.amenity-card p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

/* Tetradic Colors */
.orange { color: #FF9D00; }
.blue { color: #007BBA; }
.green { color: #00A676; }
.purple { color: #8E44AD; }

/* Hover Effect */
.amenity-card:hover .solid-icon {
  transform: translate(-50%, -55%) scale(1.1);
  color: #000;
}

.amenity-card:hover .faded-icon {
  opacity: 0.30;
}





.room-slider-title-block {
  text-align: center;
  margin-bottom: 40px;
}

.room-slider-title {
  font-size: 40px;
  font-weight: 500;
  color: #033503;
  letter-spacing: 1px;
  text-transform: uppercase;
}


.room-slider-section {
  position: relative;
  background: #f9fbfc;
  padding: 40px 20px;
}

.room-slider-container {
  position: relative;
  max-width: 1300px;
  margin: auto;
}

.room-slides-wrapper {
  position: relative;
}

.room-slide {
  display: none;
  padding: 50px 30px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.room-static-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.room-image-area {
  position: relative;
  flex: 1;
  min-width: 320px;
  text-align: center;
}

.big-text {
  position: absolute;
  top: -120px;
  left: -20px;
  font-size: 140px;
  font-weight: 200;
  font-family: serif;
  color: transparent;
  -webkit-text-stroke: 1px #ccdbe4;
  opacity: 0.9;
  z-index: 1;
  pointer-events: none;
}

.image-background-shape {
  position: absolute;
  top: -91px;
  left: 0;
  width: 105%;
  height: 160%;
  z-index: 0;
  opacity: 0.12;
  background: linear-gradient(135deg, #28A745, #F39C12, #007BFF, #8E44AD);
  border-radius: 30px;
}

.main-room-img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.corner-thumb-img {
  position: absolute;
  bottom: -30px;
  left: 240px;
  width: 240px;
  border-radius: 12px;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 2;
  background: #fff;
}

.room-info {
  flex: 1;
  min-width: 320px;
  padding: 30px;
  background: #f6f9fc;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.room-info h2 {
  font-size: 32px;
  color: #003B5C;
  margin-bottom: 12px;
}

.room-info .price {
  font-size: 24px;
  color: #F39C12;
  font-weight: bold;
  margin-bottom: 18px;
}

.room-features {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  color: #28A745;
  margin-bottom: 20px;
}

.room-features li {
  font-size: 15px;
}

.room-desc {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.book-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #f39c12;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 6px;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.3s ease;
}

.book-btn:hover {
  background: #19702d;
  color: #fff;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #003B5C;
  color: #fff;
  border: none;
  font-size: 26px;
  padding: 12px 20px;
  cursor: pointer;
  z-index: 20;
  border-radius: 50%;
  opacity: 0.75;
}

.nav-btn:hover {
  opacity: 1;
}

.prev {
  left: -50px;
}

.next {
  right: -50px;
}

/* ✅ RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .room-static-container {
    flex-direction: column;
    gap: 40px;
  }
  .main-room-img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  .corner-thumb-img {
    left: 30%;
    transform: translateX(-50%);
    bottom: 100px;
    width: 60%;
    position: relative;
    margin-top: 20px;
  }

  .big-text {
    font-size: 90px;
    position: static;
    text-align: center;
    margin-bottom: 20px;
  }

  .room-info {
    text-align: center;
  }

  .room-info h2 {
    font-size: 26px;
  }

  .room-features {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .image-background-shape {
    height: 100%;
    width: 100%;
    top: -50px;
  }

  .nav-btn {
    top: auto;
    bottom: 0px;
    transform: none;
  }

  .prev {
    left: 30%;
  }

  .next {
    right: 30%;
  }
}
@media (max-width: 768px) {
  .room-static-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .room-image-area, .room-info {
    min-width: 100%;
    padding: 0 10px;
  }

  .main-room-img {
    max-width: 100%;
    width: 80%;
    height: auto;
  }

  .corner-thumb-img {
    left: 30%;
    transform: translateX(-50%);
    bottom: 50px;
    width: 50%;
  }

  .room-info {
    padding: 20px;
    text-align: left;
  }

  .room-info h2 {
    font-size: 20px;
	
  }

  .room-info .price {
    font-size: 18px;
  }

  .room-desc {
    font-size: 14px;
    margin: 10px 0;
	 text-align: left;
  }

  .book-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .big-text {
    font-size: 70px;
    top: -70px;
    left: 0;
    -webkit-text-stroke: 0.5px #ccdbe4;
  }

  .image-background-shape {
    height: 110%;
    width: 100%;
    top: -50px;
  }

  .room-features {
    grid-template-columns: 1fr;
    text-align: left;
    justify-items: start;
  }

  .nav-btn {
    top: auto;
    bottom: 2px;
    transform: none;
  }

 .prev {
    left: 30%;
  }

  .next {
    right: 30%;
  }
  }
  
  
  @media (max-width: 400px) {
  

  
  .room-info {
    padding: 20px 10px;
  }

  .room-info h2 {
    font-size: 22px;
  }

  .room-features li {
    font-size: 14px;
  }

  .room-desc {
    font-size: 14px;
  }


  .main-room-img {
  max-width: 100%;
    width: 100%;
    height: auto;
	left: auto;
  }
.corner-thumb-img {
  left:70px;
    transform: translateX(-50%);
    bottom: 50px;
    max-width: 50%;
}
  .room-static-container {
    flex-direction: column;
    gap: 20px;
  }

  

  .big-text {
    font-size: 60px;
    top: -80px;
    left: -10px;
  }
  
  .image-background-shape {
    height: 100%;
    width: 106%;
    top: -50px;
	left: -15px;
  }

}




/* Title Block (outside the overlay) */
.attraction-title-block {
  text-align: center;
  padding: 60px 20px 30px;
  color: #003B5C;
  background: #f9f9f9;
  
   
}

.attraction-section-title {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.attraction-subtitle {
  font-size: 16px;
  opacity: 0.8;
  font-weight: 400;
}


/* Section Background */
.attraction-highlight {
  position: relative;
  height: 80vh;
  overflow: hidden;
 
}

.attraction-bg {
  background-image: url('../images/exterior.webp');
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  transition: background-image 0.4s ease-in-out;
}

/* Overlay with 5 vertical full-height columns */
.attraction-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  width: 100%;
}

.attraction-row {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 40px 15px;
  color: #fff;
  cursor: pointer;
  position: relative;
  text-align: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

/* Vertical divider lines */
.attraction-row:not(:first-child)::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 0;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 0;
}

.attraction-row:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.attraction-row .type {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 6px;
  text-transform: uppercase;
  opacity: 0.85;
}

.attraction-row h3 {
  font-size: 22px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .attraction-title-block {
    padding: 40px 15px 20px;
  }

  .attraction-section-title {
    font-size: 32px;
    letter-spacing: 1px;
  }

  .attraction-subtitle {
    font-size: 14px;
  }

  .attraction-highlight {
    height: auto; /* Let height grow as needed */
  }

  .attraction-overlay {
    flex-direction: column;
    height: auto;
  }

  .attraction-row {
    padding: 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transform: none !important;
  }

  .attraction-row:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .attraction-row:not(:first-child)::before {
    display: none; /* Hide vertical dividers on mobile */
  }

  .attraction-row .type {
    font-size: 12px;
  }

  .attraction-row h3 {
    font-size: 18px;
  }
}


.map-gallery-section {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  background: #003B5C; /* dark blue */
  color: white;
  min-height: 100vh;
}

.map-area {
  flex: 1;
  min-width: 350px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: linear-gradient(135deg, #f5fafd 0%, #f5fafd 100%);;
}

.map-box {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 90%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.map-box:hover {
  transform: scale(1.015);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(10%) contrast(1.1) brightness(1);
}

.map-overlay-text {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px 20px;
  color: #fff;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  pointer-events: none;
}

.map-overlay-text i {
  color: #FFC857; /* warm yellow-gold */
  margin-right: 8px;
}

.gallery-area {
  flex: 1;
  min-width: 350px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #f5fafd 0%, #f5fafd 100%);
  padding: 20px;
}

.gallery-container {
  display: flex;
  align-items: center;
  gap: 15px;
  height: 80%;
  width: 100%;
  justify-content: center;
}

.gallery-strip {
  flex: 1;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s ease;
  filter: brightness(0.8) blur(2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-strip.main {
  flex: 2;
  filter: none;
  border: 3px solid #FFC857;
  border-radius: 18px;
}

.gallery-strip:hover {
  flex: 2;
  filter: none;
}

.gallery-strip:hover img {
  transform: scale(1.05);
}

.view-gallery-btn {
  margin-top: 20px;
  padding: 12px 24px;
   background: transparent;
    color: #1b8834;
    border: 2px solid #1b8834;

  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s ease;
}

.view-gallery-btn:hover {
  background: #007BFF;
  color:#fff;
}

/* Popup Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.popup-overlay.active {
  display: flex;
}

.popup-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(255,255,255,0.25);
}

.close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  font-weight: bold;
  z-index: 10000;
}

.map-gallery-title-block {
  text-align: center;
  padding: 60px 20px 30px;
  background: #f5fafd; /* light background */
  color: #003B5C;
}

.map-gallery-section-title {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.map-gallery-subtitle {
  font-size: 16px;
  opacity: 0.8;
  font-weight: 400;
}
@media (max-width: 768px) {
  .map-gallery-section {
    flex-direction: column;
  }

  .map-area, .gallery-area {
    width: 100%;
    height: auto;
    padding: 20px;
  }

  .map-box {
    height: 300px;
    max-width: 100%;
  }

  .gallery-container {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    width: 100%;
    height: auto;
    padding-bottom: 10px;
  }

  .gallery-strip {
    flex: 0 0 120px;
    height: 200px;
    border-radius: 15px;
  }

  .gallery-strip.main {
    flex: 0 0 200px;
    height: 220px;
  }

  .view-gallery-btn {
    width: 100%;
    font-size: 14px;
    padding: 10px;
    margin-top: 15px;
  }

  .popup-img {
    max-width: 95%;
    max-height: 70%;
  }

  .close-btn {
    top: 15px;
    right: 20px;
    font-size: 30px;
  }
}




.footer-section {
  background: linear-gradient(to right, #184e24, #0bae868c);
  color: #F9F9F9;
  padding: 80px 25px 60px;
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/sketch-2.png') no-repeat center center/cover;
  opacity: 0.08;
  z-index: 0;
}

.footer-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 2px solid #FFD369;
  padding-bottom: 25px;
}

/* Container for both logos */
.footer-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  /* space between logos */
}

.footer-logo-img {
  height: 100px;
  filter: drop-shadow(0 0 4px #FFD369);
}

.footer-logo-img1 {
  height: 60px;
  /* Adjusted for better balance */
  filter: drop-shadow(0 0 6px #000);
}

.footer-social a {
  margin: 0 12px;
  font-size: 1.5rem;
  color: #FFD369;
  transition: 0.3s ease;
}

.footer-social a:hover {
  color: #F9F871;
  transform: scale(1.2);
}


.footer-middle {
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-address,
.footer-links {
  flex: 1;
  min-width: 280px;
}

.footer-hotel-name {
  font-size: 1.8rem;
  color: #FFD369;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #E0E0E0;
}

.footer-links h3 {
  color: #FFD369;
  margin-bottom: 10px;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.footer-links ul li a {
  color: #FFFFFF;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #F9F871;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 30px;
  color: #fff;
}

.footer-bottom a {
  color: #FFD369;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #F9F871;
}

@media (max-width: 768px) {
  .footer-top,
  .footer-middle {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-links ul {
    grid-template-columns: 1fr 1fr;
  }
  .footer-social {
    margin-top: 20px;
  }
}

/* Enhance footer link styling */
.footer-phone-link,
.footer-link {
  color: #FFD369;
  text-decoration: none;
  font-weight: 500;
}

.footer-phone-link:hover,
.footer-link:hover {
  color: #F9F871;
}

/* Icon color consistency inside .footer-description and address */
.footer-description em,
.footer-address em {
  color: #FFD369;
  margin-right: 6px;
}

/* Fix missing responsive text alignment */
@media (max-width: 768px) {
  .footer-address,
  .footer-links {
    text-align: left;
  }
  .footer-social {
    justify-content: flex-start;
  }
  .footer-logo-area {
    margin-bottom: 20px;
  }
}

/* Optional: Link underline hover effect for better visual feedback */
.footer-links ul li a:hover,
.footer-phone-link:hover,
.footer-link:hover,
.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-links ul li {
  position: relative;
  padding-left: 25px;
}

.footer-links ul li::before {
  content: '\f111';
  /* Font Awesome's solid circle */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 0.5rem;
  color: #FFD369;
}

#backToTop {
  position: fixed;
  bottom: 35px;
  right: 30px;
  z-index: 999;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #FFD369, #F9F871);
  color: #0F4C75;
  font-size: 20px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  animation: pulseGlow 2.5s infinite ease-in-out;
  transition: transform 0.3s ease, opacity 0.4s ease;
}

#backToTop:hover {
  transform: translateY(-6px) scale(1.05);
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 rgba(255, 211, 105, 0.4);
  }
  50% {
    box-shadow: 0 0 18px rgba(255, 211, 105, 0.9);
  }
  100% {
    box-shadow: 0 0 0 rgba(255, 211, 105, 0.4);
  }
}

@media (max-width: 768px) {
  #backToTop {
    width: 44px;
    height: 44px;
    font-size: 18px;
    bottom: 20px;
    right: 20px;
  }
}



.inner-hero-section {
  position: relative;
  width: 100%;
  height: 650px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Sticky background */
  overflow: hidden;
  
}


.inner-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgb(100 80 27 / 62%), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.inner-hero-overlay {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 5%;
  z-index: 2;
}

.inner-hero-content {
  color: #fff;
  margin-top: -70px;
}

.inner-hero-content h5 {
  font-size: 26px;
  color: #FFD700;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.inner-hero-content h1 {
  font-size: 50px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  margin-bottom: -70px;
}

@media screen and (max-width: 768px) {
  .inner-hero-section {
    height: 250px;
	 background-attachment: scroll;
  }

  .inner-hero-content {
    text-align: center;
    width: 100%;
  }

  .inner-hero-content h1 {
    font-size: 28px;
  }

  .inner-hero-content h5 {
    font-size: 16px;
  }
  
}

/* ===== Custom Amenities Section ===== */

.custom-amenities {
  padding: 30px 20px;
  background: #fdfdfdc9;
}

.custom-amenities-container {
  max-width: 1500px;
  margin: 0 auto; /* This is the key to centering */
}

.custom-amenities-title {
  font-size: 36px;
  color: #246853;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: bold;
  position: relative;
}

.custom-amenities-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background-color: #FF9D00;
  display: block;
  margin: 20px auto 0;
  border-radius: 2px;
}

.custom-amenities-subtitle {
  font-size: 28px;
  color: #033503;
  text-align: center;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-weight: 600;
}

.custom-amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.custom-amenities-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-amenities-grid li {
  background: #ffffff;
  border-left: 4px solid #FF9D00;
  padding: 12px 15px;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
  color: #033503;
  display: flex;
  align-items: center;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease;
}

.custom-amenities-grid li:hover {
  background-color: #fff8ec;
}

.custom-amenities-grid li i {
  margin-right: 12px;
  color: #FF9D00;
  font-size: 18px;
}

/* Optional: Responsive enhancements */
@media (max-width: 767px) {
  .custom-amenities-title {
    font-size: 28px;
  }
  
  .custom-amenities-subtitle {
    font-size: 22px;
  }

  .custom-amenities-grid li {
    font-size: 15px;
    padding: 10px 12px;
  }
}

.custom-amenities-header {
  background: #fdfdfdc9;
  padding: 40px 20px ;
  text-align: center;
}

.custom-amenities-title {
  font-size: 38px;
  color: #246853;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.custom-amenities-description {
  font-size: 20px;
  line-height: 1.8;
  color: #333;
  max-width: 1500px;
 margin-bottom:-10px;
}



/*Things to do  */
.custom-things-header {
  background-color: #fdfdfdc9;
  padding: 30px 20px;
  text-align: center;
 
}

.custom-things-title {
  font-size: 36px;
  color: #033503;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}

.custom-things-description {
  font-size: 20px;
  color: #333;
  max-width:1200px;
  margin: 0 auto;
  line-height: 1.6;
}

.things-grid-section {
  padding: 20px 20px;
  background:  #fdfdfdc9;
}

.things-grid-section .container {
  max-width: 1140px;
  margin: auto;
}

.things-title {
  font-size: 24px;
  color: #033503;
  margin: 40px 0 20px;
  font-weight: bold;
  border-left: 5px solid #FF9D00;
  padding-left: 15px;
  text-transform: uppercase;
}

.things-grid.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.thing-card {
  background: #fdfdfd;
  border-left: 4px solid #FF9D00;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.thing-card h4 {
  font-size: 18px;
  color: #033503;
  margin-bottom: 6px;
  font-weight: 600;
}

.thing-card p {
  color: #666;
  font-size: 14px;
  margin: 0;
}

@media (max-width: 768px) {
  .things-grid.two-cols {
    grid-template-columns: 1fr;
  }

  .custom-things-title {
    font-size: 28px;
  }

  .things-title {
    font-size: 20px;
  }
}


.location-section-hero {
  background: #fdfdfdc9;
  padding: 30px 20px;
}

.location-wrapper-hero {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
}

.location-info-box {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-info-box h2 {
  font-size: 2.6rem;
  color: #033503;
  margin-bottom: 15px;
}

.location-info-box p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.6;
}

.coordinates-area,
.directions-area {
  background: #f0f6fa;
  padding: 20px;
  border-left: 5px solid #007a79;
  margin-bottom: 25px;
  border-radius: 10px;
}

.coordinates-area h4,
.directions-area h4 {
  color: #033503;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.coordinates-area ul {
  list-style: none;
  padding-left: 0;
  color: #333;
}

.coordinates-area ul li {
  margin-bottom: 8px;
  font-size: 1rem;
}

.directions-area form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.directions-area form button {
  width: 100%;
  padding: 12px;
  background: #033503;
  color: #fff;
  border: none;
  font-size: 1rem;
  border-radius: 8px;
  transition: background 0.3s;
}

.directions-area form button:hover {
  background: #005fa3;
}

/* Right Side Image */
.location-map-box {
  flex: 1;
  background: #e4edf2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
  .location-wrapper-hero {
    flex-direction: column;
  }

  .location-map-box {
    height: 300px;
  }
}
.custom-location-header {
  text-align: center;
  padding: 30px 20px;
  background-color: #fdfdfdc9;
  
}

.custom-location-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #033503;
  margin-bottom: 20px;
  position: relative;
}

.custom-location-title::after {
     content: '';
    width: 60px;
    height: 4px;
    background-color: #FF9D00;
    display: block;
    margin: 20px auto 0;
    border-radius: 2px;
}

.custom-location-description {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
    max-width: 1200px;
  margin: 0 auto;
 
}
/* 1. Contact Header Section */
.custom-contact-header {
  text-align: center;
  padding: 30px 20px;
  background-color: #fdfdfdc9;
}

.custom-contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #033503;
  margin-bottom: 20px;
  position: relative;
}

.custom-contact-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background-color: #FF9D00;
  display: block;
  margin: 20px auto 0;
  border-radius: 2px;
}

.custom-contact-description {
  font-size: 20px;
  line-height: 1.8;
  color: #333;
  max-width: 1200px;
  margin: 0 auto;
}

/* 2. Main Contact Info Section */
.contact-section-hero {
  background: #fdfdfdc9;
  padding: 30px 20px;
}

.contact-wrapper-hero {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
}

.contact-info-box {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-box h2 {
  font-size: 2.6rem;
  color: #033503;
  margin-bottom: 15px;
}

.contact-info-box p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-details-area {
  background: #f0f6fa;
  padding: 20px;
  border-left: 5px solid #007a79;
  margin-bottom: 25px;
  border-radius: 10px;
}

.contact-details-area h4 {
  color: #033503;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contact-details-area ul {
  list-style: none;
  padding-left: 0;
  color: #333;
}

.contact-details-area ul li {
  margin-bottom: 12px;
  font-size: 1rem;
}

.contact-details-area a {
  color: #007a79;
  font-weight: 600;
  text-decoration: none;
}

.contact-details-area a:hover {
  color: #005f5c;
  text-decoration: underline;
}

/* 3. Right Side Image */
.contact-image-box {
  flex: 1;
  background: #e4edf2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;

}

/* 4. Responsive Design */
@media (max-width: 992px) {
  .contact-wrapper-hero {
    flex-direction: column;
  }

  .contact-image-box {
    height: 300px;
  }

  .custom-contact-title {
    font-size: 2rem;
  }

  .custom-contact-description {
    font-size: 1rem;
  }

  .contact-info-box h2 {
    font-size: 2rem;
  }
}



/* 📍 Comfort Inn Herndon-Reston Sitemap Section */
.sitemap-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #ffffff, #fdfdfdc9, #ffffff); /* Soft white to tinted fade */
    text-align: center;
}

.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sitemap-title {
    font-size: 3rem;
    color: #003DA5; /* Primary Brand Blue */
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.sitemap-subtitle {
    font-size: 1.2rem;
    color: #333; /* Clean 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-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 61, 165, 0.08);
    border: 1px solid #d8e8ff;
}

.sitemap-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 61, 165, 0.15);
}

.sitemap-block h2 {
    font-size: 1.8rem;
    color: #F4C542; /* Comfort Gold */
    margin-bottom: 15px;
    font-weight: 600;
}

.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: #003DA5;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    font-weight: 500;
}

.sitemap-block ul li a i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: #F4C542;
}

.sitemap-block ul li a:hover {
    color: #012c61; /* Soft navy for 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 - Herndon-Reston Deep Blue & Warm Gold Theme */
.faq-section {
    padding: 100px 20px;
    background: #f8fbff; /* Soft white-blue background */
    color: #1a1a1a;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-title a{
    font-size: 3rem;
    font-weight: 700;
    color: #033503; /* Herndon Deep Blue */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
}

.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: 12px;
    border: 1px solid #e1ecff;
    box-shadow: 0 8px 20px rgba(1, 44, 97, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(1, 44, 97, 0.12);
}

.faq-item h2 {
    font-size: 1.8rem;
    color: #012c61; /* Deep Blue for FAQ headers */
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px dashed #F4C542; /* Gold dashed underline */
}

.faq-item p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.75;
    margin-bottom: 10px;
}

.faq-item a {
    color: #012c61;
    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: #F4C542; /* Gold underline */
    transition: width 0.3s ease;
}

.faq-item a:hover {
    color: #F4C542;
}

.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.5rem;
    }

    .faq-item p {
        font-size: 1rem;
    }
}


.title5{
	 font-family: 'Montserrat', sans-serif;
	font-size: 1.8rem;
    color: #FFD369;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
	text-decoration:none;
}

.cgsl{
	color: #FFD369;
    text-decoration: none;
    font-weight: 500;
}

.cgsl:hover{
	color: #fbee6f;
   
    font-weight: 500;
}



/* 🌟 Cookie Banner Styling */
.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(34, 45, 50, 0.95); /* Darker gray-blue translucent */
    color: #ffffff; /* White text color */
    text-align: center;
    padding: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    z-index: 99999; /* ✅ Always on top */
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner .cookie-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cookie-banner p {
    margin: 0;
    line-height: 1.4;
}

.cookie-banner a {
    color: #F1C40F; /* Bright yellow for links */
    text-decoration: underline;
    font-weight: 500;
}

.cookie-banner button {
 border: none;
    color: #ffffff;
    background: linear-gradient(135deg, #4A90E2, #1C75BC);
    outline: 0;
    cursor: pointer;
    display: inline-flex
;
    padding: 14px 25px;
    font-weight: 600;
    transition: .3s ease-in-out;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cookie-banner button:hover {
     background: linear-gradient(135deg, #1C75BC, #4A90E2); /* Hover effect with reversed gradient */
    border-color: #A9C9F3; /* Light blue border on hover */
    color: #FFFFFF;
    transform: scale(1.05);
}

/* 📱 Responsive for Mobile */
@media (max-width: 768px) {
    .cookie-banner .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
.accessibility-banner {
  position: relative;
  background: url('../images/sketch-2.png') no-repeat center center/cover;
  color: #FFD369;
  text-align: center;
  padding: 12px 20px;
  font-size: 20px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
 
  overflow: hidden;
}

/* Overlay for faded color */
.accessibility-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #145d25de;
  z-index: 1;
}

/* Text sits above overlay */
.accessibility-banner * {
  position: relative;
  z-index: 2;
}

/* Links */
.accessibility-banner a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  margin-left: 6px;
}

.accessibility-banner a:hover {
  text-decoration: underline;
}

/* Icons */
.accessibility-banner em {
  color: #FFD369;
  margin-left: 8px;
  margin-right: 4px;
}























/*
  The .faq-section is the main container for your entire FAQ block.
  By adding "text-align: left;", we force this whole section and everything 
  inside it to align to the left, overriding any centering styles from 
  a parent element on your page.
*/
.faq-section {
    padding: 20px 20px;
    background-color: white;
    text-align: left; /* <-- ADDED THIS LINE TO FIX CENTERING */
}

/* 
  We are also keeping the changes from before to ensure the header
  text and its underline are also aligned to the left.
*/
.faq-header {
    text-align: left; /* This reinforces the left alignment for the header */
    margin-bottom: 40px;
}

.faq-header h2 {
    color: #246853; /* <-- UPDATED COLOR */
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.faq-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0; /* Ensures underline starts from the left */
    transform: none; /* Removed the transform that centered it */
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #246853, #e89b48); /* <-- UPDATED GRADIENT */
    border-radius: 2px;
}

.faq-header p {
    color: black;
    font-size: 18px;
    max-width: 700px;
    margin: 0; /* Removes the "auto" margin that was centering it */
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
}

.faq-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 4px solid #246853; /* <-- UPDATED BORDER COLOR */
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.faq-question {
    padding: 25px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: #e89b48; /* <-- UPDATED BACKGROUND */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 18px;
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.faq-answer {
    padding: 25px;
    position: relative;
}

.faq-answer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    right: 25px;
    height: 1px;
    background: linear-gradient(to right, transparent, #246853, transparent); /* <-- UPDATED GRADIENT */
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.faq-answer a {
    color: #246853; /* <-- UPDATED LINK COLOR */
    font-weight: 600;
    text-decoration: none !important;
}

.faq-answer a:hover {
    color: #f7dc93; /* <-- UPDATED LINK HOVER COLOR */
    border-bottom-color: #f7dc93; /* <-- UPDATED BORDER COLOR */
}

.faq-answer .fa-caret-right {
    color: #f7dc93; /* <-- UPDATED ICON COLOR */
    margin-right: 8px;
}

@media (max-width: 600px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-header h2 {
        font-size: 28px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer {
        padding: 20px;
    }
}













/* Main Container */
.split-attractions-container {
    max-width: 1300px;
    margin: 50px auto;
}

/* Section Header */
.split-header {
    text-align: center;
    margin-bottom: 50px;
}

.split-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a2a4c;
    margin: 0;
}

.split-header p {
    font-size: 1.1rem;
    color: #6a737d;
}

/* Three-Column Grid Layout */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr; /* Center column is wider */
    align-items: center;
    gap: 30px;
}

/* Shared Attraction Box Styles */
.attraction-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    /* height: 100%;  <-- THIS LINE HAS BEEN REMOVED TO FIX THE HEIGHT */
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 10px;
}

.attraction-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.box-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a2a4c;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.box-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: black;
    margin-bottom: 20px;
}

/* Distance Tag */
.distance-tag {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    background-color: #4a6fa5; /* A complementary blue */
}

/* Unique Icon Colors */
.icon-teal { color: #1abc9c; margin-right: 12px; }
.icon-orange { color: #f39c12; margin-right: 12px; }

/* Center Image Styles */
.center-image-box {
    border-radius: 15px;
    overflow: hidden;
    height: 500px; /* Taller, more prominent image */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px !important;
}

.center-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.center-image-box:hover img {
    transform: scale(1.05);
}

/* Responsive Design for Tablets and Mobiles */
@media (max-width: 992px) {
    .split-grid {
        grid-template-columns: 1fr; /* Stack columns */
        gap: 30px;
    }
    
    .center-image-box {
        /* Place image first in the visual order on mobile */
        order: -1; 
        height: 350px; /* Adjust height for smaller screens */
    }
    
    .attraction-box {
        text-align: center;
    }

    .box-content h3 {
        justify-content: center; /* Center heading and icon */
    }
}

@media (max-width: 576px) {
    .split-header h2 {
        font-size: 2.2rem;
    }
    .box-content h3 {
        font-size: 1.5rem;
    }
}


















.location-container {
    width: 100%;
    max-width: 100%;
    padding: 40px 0;
    background: white;
}

.location-title {
    text-align: center;
    color: #246853;
    font-size: 2.4rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #014886;
}

.location-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 90%;
    margin: 0 auto;
    align-items: stretch; /* CHANGED: This makes both child containers the same height */
}

.location-info {
    flex: 1;
    min-width: 300px;
}

.coordinates-box {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(1, 72, 134, 0.1);
    border: 1px solid rgba(1, 72, 134, 0.1);
}

.coordinates-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #246853;
    font-size: 1.4rem;
    font-weight: 600;
}

.coordinate {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 12px;
    font-size: 19px;
}

.coordinate i {
    color: #f7dc93;
    font-size: 1.2rem;
}

.directions-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(1, 72, 134, 0.1);
    border: 1px solid rgba(1, 72, 134, 0.1);
}

.directions-form label {
    font-weight: 600;
    color: #246853;
    font-size: 20px;
    text-align: left;
}

.directions-form input {
    padding: 9px;
    border: 1px solid #ddd;
    border-radius: 6px;
    width: 100%;
    box-sizing: border-box; /* Added for better padding control */
    font-size: 1rem;
    transition: all 0.3s ease;
}

.directions-form input:focus {
    outline: none;
    border-color: #014886;
    box-shadow: 0 0 0 3px rgba(1, 72, 134, 0.2);
}

.directions-form button {
    background: #246853;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.directions-form button:hover {
    background: #f7dc93; /* Slightly darker shade on hover */
    transform: translateY(-2px);
}

.location-map {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(1, 72, 134, 0.1);
    border: 1px solid rgba(1, 72, 134, 0.1);
    transition: transform 0.3s ease;
}

.location-map:hover {
    transform: translateY(-5px);
}

.location-map iframe {
    width: 100%;
    height: 100%; /* CHANGED: Height now correctly fills its parent */
    border: 0;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .location-content {
      flex-direction: column;
    }
    
    .location-info, .location-map {
      width: 100%;
    }
}




.content-wrapper {
    display: flex;
    gap: 30px;
    padding: 30px;
}
.contact-card {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
    height: 450px;
}
@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}
.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.contact-card h2 {
    color: #246853;
    margin-bottom: 25px;
    font-size: 1.8rem;
    position: relative;
}
.contact-card h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
}
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
}
.info-item i {
    color: #e89b48;
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 25px;
}
.info-text h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--hampton-blue);
}
.info-text p, .info-text a {
    font-size: 20px;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s;
}
.info-text a:hover {
    color: var(--hampton-blue);
}
.map-container {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
    height: 450px;
}
.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    .content-wrapper {
        flex-direction: column;
    }
    .contact-card, .map-container {
        width: 100%;
        height: auto;
    }
    .map-container {
        height: 350px;
    }
}





/* New Facility Section */
.new-facility-section {
    padding: 40px 20px;
    /* Light clean background */
    text-align: center;
    color: #333; /* Dark grey for general text */
}

.new-facility-title {
    font-size: 3rem;
    color: #2C2C2C;
    margin-bottom: 40px;
    text-transform: uppercase;
    position: relative;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5);
}

.new-facility-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #246853; /* Changed to new primary accent color */
    margin: 15px auto;
}

/* Grid Styling */
.facility-grid-creative {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    justify-items: center;
    margin-top: 20px;
}

/* Facility Box */
.facility-box-creative {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.facility-box-creative:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.icon-background {
    background: linear-gradient(to right, #246853, #FFD369); /* New color gradient */
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: #ffffff;
    position: relative;
    border-bottom: 5px solid rgba(0, 122, 121, 0.3); /* Transparent version of new primary color */
}

.facility-box-creative:hover .icon-background {
    background: linear-gradient(to right, #FFD369, #246853); /* Reversed gradient on hover */
}

.facility-info {
    padding: 30px;
    text-align: center;
}

.facility-info h3 {
    font-size: 1.6rem;
    color: #246853; /* Changed to new primary accent color */
    margin-bottom: 15px;
}

.facility-info p {
    color: #2C2C2C;
    font-size: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .facility-grid-creative {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .facility-grid-creative {
        grid-template-columns: 1fr;
    }

    .facility-box-creative {
        max-width: 100%;
    }

    .icon-background {
        padding: 20px;
    }
}

/* General Facilities Section */
.facility-section {
    text-align: center;
    background-color: #ffffff;
}

.facility-container {
    max-width: 1200px; /* The main container */
    margin: 0 auto;
}

.facility-title {
    font-size: 45px;
    color: #033503;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    font-weight: 700;
    padding-top: 20px;
}

.facility-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FF9D00; /* Changed to new primary accent color */
    margin: 10px auto;
    border-radius: 2px;
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    justify-content: center;
}

.facility-column {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.facility-column h3 {
    font-size: 1.6rem;
    color: #246853; /* Changed to new primary accent color */
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 2px solid #246853; /* Changed to new primary accent color */
    padding-bottom: 8px;
}

.facility-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.facility-list li {
    font-size: 1.1rem;
    color: #333;
    padding: 10px 0;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.facility-list li em {
    font-size: 1.5rem;
    color: #246853; /* Changed to new primary accent color */
    margin-right: 10px;
}

.facility-list li:hover {
    background-color: rgba(0, 122, 121, 0.1); /* Transparent version of new primary color */
    border-radius: 5px;
    padding-left: 10px;
    transition: 0.3s ease-in;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .facility-grid {
        grid-template-columns: 1fr; /* On small screens, stack columns into a single column */
    }
}








/* 
    Recommendation: Add this to your HTML <head> for proper mobile rendering!
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
*/

.things-to-do {
    padding: 40px 0;
    /* Retaining white-based gradient for the top section */
    text-align: center;
    /* Review this on small screens if you see layout issues */
    margin-top: -50px; 
}

.things-title {
    font-size: 3rem;
    color: #2C2C2C;
    margin-bottom: 40px;
    text-transform: uppercase;
    position: relative;
    font-weight: 800;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5);
}

.things-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #246853;
    margin: 10px auto;
    border-radius: 2px;
}

/* Container for the things-to-do section */
.things-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px; /* Default gap for larger screens */
    padding-top: 45px;
    flex-wrap: wrap;
}

/* Slider Styling */
.things-slider {
    flex: 1;
    max-width: 50%;
    min-width: 300px;
    position: relative;
}

.custom-hero-slide {
    display: none;
    position: relative;
    background-size: cover;
    background-position: center;
    height: 400px;
    border-radius: 8px;
}

.custom-hero-slide.active {
    display: block;
}

.custom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
}

.custom-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    max-width: 90%;
}

.custom-hero-content h1 {
    font-size: 22px;
    margin-bottom: 4px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: #f1f1f1;
}

.custom-hero-content p {
    font-size: 19px;
    margin-bottom: 8px;
    color: #e0e0e0;
    font-weight: 400;
    line-height: 1.4;
}

.custom-hero-btn {
    margin-top: 5px;
    padding: 8px 16px;
    background-color: #246853;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.custom-hero-btn:hover {
    background-color: #A31A1D;
    transform: scale(1.05);
}

/* Content Box Styling */
.things-content-box {
    flex: 1;
    max-width: 40%;
    min-width: 300px;
    padding: 20px;
    color: #2C2C2C;
    border-radius: 8px;
    background: white;
}

.content-inner h2 {
    font-size: 35px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #246853;
}

.content-inner p {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2C2C2C;
}

.content-inner ul {
    list-style: none;
    padding: 0;
}

.content-inner ul li {
    font-size: 14px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.content-inner ul li:before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: #246853;
}
.slide-title {
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: #f1f1f1;
}

/* Responsive Design for Tablets and Mobiles */
@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;
    }
}

@media (max-width: 768px) {
    .things-container {
        flex-direction: column;
        /* Refinement: Reduce vertical gap when stacking items */
        gap: 20px; 
    }

    .things-slider, .things-content-box {
        max-width: 90%;
        margin: 0 auto;
    }

    .custom-hero-slide {
        height: 250px;
    }

    /* --- THIS IS THE FIX --- */
    .custom-hero-content {
        width: auto;
        max-width: none;
        left: 15px;
        right: 15px;
        transform: translateY(-50%);
        padding: 8px; /* Optional: adjust padding slightly for smaller screens */
    }
    /* --- END OF FIX --- */

    .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: 100%;
    }

    .custom-hero-slide {
        height: 200px;
    }

    .custom-hero-content h1 {
        font-size: 18px;
    }

    .custom-hero-content p {
        font-size: 12px;
    }

    .custom-hero-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
}
 /* Attractions Full Width Wrapper */
  .attractions-wrapper {
    padding: 5px;
  }

  /* Grid Layout */
  .attractions-grid {
    max-width: 1400px;
    margin: 50px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  /* Individual Attraction Card */
  .attractions-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    width: 100%;
    border-radius: 10px;
  }

  .attractions-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .attractions-card:hover img {
    transform: scale(1.05);
  }

  /* Text Content Box */
  .attractions-info {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 0 0 10px 10px;
    width: 100%;
    height: 100%;
  }

  /* Title */
  .attractions-subtitle {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #246853;
  }

  /* Description */
  .attractions-description {
    font-size: 16px;
    margin-bottom: 10px;
    color: #2C2C2C;
  }

  /* Bullet List */
  .attractions-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 20px;
    text-align: left;
  }

  .attractions-list li {
    font-size: 20px;
    margin-bottom: 6px;
    color: #2C2C2C;
    position: relative;
    padding-left: 25px;
  }

  .attractions-list li::before {
    content: "\2192";
    position: absolute;
    left: 0;
    color: #246853;
    font-weight: bold;
    font-size: 16px;
  }

  /* Button */
  .attractions-read-more-btn {
    padding: 10px 20px;
    background-color: #246853;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
  }

  .attractions-read-more-btn:hover {
    background-color: #A31A1D;
  }

  /* Section Header */
  .attractions-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .custom-header-title {
    font-size: 3rem;
    color: #2C2C2C; 
    margin-bottom: 40px;
    text-transform: uppercase;
    position: relative;
    font-weight: 800;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5);
  }

  .custom-header-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #246853;
    margin: 10px auto;
    border-radius: 2px;
  }

  /* Responsive Design for Attractions Grid */
  @media (max-width: 1024px) {
    .attractions-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .attractions-grid {
      grid-template-columns: 1fr;
    }

    .custom-header-title {
      font-size: 36px;
    }
  }
















  /* Scoped styles using section ID */
        
        #hotel-navigation-section .container {
            margin: 0 auto;
            padding: 0 20px;
        }
        
        #hotel-navigation-section .navigation-grid {
            display: flex;
            flex-direction: column;
        }
        
        #hotel-navigation-section .nav-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            padding: 20px;
        }
        
        #hotel-navigation-section .nav-item {
            display: flex;
            height: 100%;
        }
        
        #hotel-navigation-section .nav-link {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #333;
            text-decoration: none;
            background: white;
            border-radius: 8px;
            padding: 25px 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid #e0e0e0;
            height: 120px; /* Fixed height for rectangular format */
        }
        
        #hotel-navigation-section .nav-link:hover {
            background: #246853;
            color: white;
            box-shadow: 0 8px 16px rgba(0, 98, 204, 0.2);
            transform: translateY(-3px);
        }
        
        #hotel-navigation-section .nav-icon {
            font-size: 24px;
            margin-bottom: 12px;
            color: #f7dc93;
            transition: all 0.3s ease;
        }
        
        #hotel-navigation-section .nav-link:hover .nav-icon {
            color: white;
            transform: scale(1.1);
        }
        
        #hotel-navigation-section .nav-text {
            font-weight: 600;
            font-size: 20px;
            margin-bottom: 5px;
        }
        
        #hotel-navigation-section .nav-desc {
            font-size: 15px;
            opacity: 0.8;
            line-height: 1.4;
        }
        
        /* Responsive styles */
        @media (max-width: 992px) {
            #hotel-navigation-section .nav-row {
                grid-template-columns: repeat(2, 1fr);
            }
            
            #hotel-navigation-section .nav-link {
                height: 110px;
                padding: 20px 10px;
            }
        }
        
        @media (max-width: 576px) {
            #hotel-navigation-section .nav-row {
                grid-template-columns: 1fr;
            }
            
            #hotel-navigation-section .nav-link {
                height: 100px;
                padding: 15px 10px;
            }
            
            #hotel-navigation-section {
                padding: 30px 0;
            }
        }