﻿@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;
}


/* ========== 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: transparent;
  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: #003B7C;
  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: #003B7C; /* 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: #003B7C;
  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: #003B7C;
  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: #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.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, rgba(0, 59, 124, 0.7), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

.welcome-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  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: 60px;
  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: #003B7C;
  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: 90%;
  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;
}


/* 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: #003B5C;
  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: transparent;
  color: #007BFF;
  border: 2px solid #007BFF;
  border-radius: 6px;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.3s ease;
}

.book-btn:hover {
  background: #007BFF;
  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: #007BFF;
    border: 2px solid #007BFF;

  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, #1B262C, #0F4C75);
  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.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: #B0C4DE;
}
.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;
}


/* Initial state */
.footer-section.animate-on-scroll {
  opacity: 0;
  transform: translateY(60px);
  transition: none; /* We will control with animation */
}

/* Footer IN animation */
.footer-section.footer-in {
  animation: fadeInUp 0.8s ease forwards;
}

/* Footer OUT animation */
.footer-section.footer-out {
  animation: fadeOutDown 0.6s ease forwards;
}

/* Keyframes for IN */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Keyframes for OUT */
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(60px);
  }
}
.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: 450px;
  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(255 185 0 / 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;
}

.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;
}

@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: 1200px;
  margin: 0 auto;
}

.custom-amenities-title {
  font-size: 36px;
  color: #003B7C;
  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: #003B7C;
  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: #003B7C;
  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: #003B7C;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.custom-amenities-description {
  font-size: 20px;
  line-height: 1.8;
  color: #333;
  max-width: 1200px;
 margin-bottom:-20px;
}



/*Things to do  */
.custom-things-header {
  background-color: #fdfdfdc9;
  padding: 30px 20px;
  text-align: center;
 
}

.custom-things-title {
  font-size: 36px;
  color: #003B7C;
  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: #003B7C;
  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: #003B7C;
  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: #003B7C;
  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: #003B7C;
  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: #003B7C;
  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: #003b7c;
  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: #003b7c;
  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: #003B7C;
  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: #003B7C;
  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: #003B7C; /* 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.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: rgba(9, 45, 94, 0.8); /* adjust 0.8 → 0.5 for lighter fade */
  z-index: 1;
}

/* Text sits above overlay */
.accessibility-banner * {
  position: relative;
  z-index: 2;
}

/* Links */
.accessibility-banner a {
  color: #F9F871;
  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;
}

