﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Rubik:wght@400;500;700&display=swap');

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }
/* Prevent potential horizontal scroll caused by transform */

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background-color:#1e1e2a;
overflow-x: hidden;
  color: #333;
}
/* ================================================
   TOPBAR STYLES - Comfort Inn White Header Theme
================================================ */
.topbar {
  width: 100%;
  background: linear-gradient(to right, #0a2050, #1b2b65);
  color: #fff;
  font-size: 0.9rem;
  padding: 6px 0;
  position: relative;
  z-index: 1000;
  letter-spacing: 0.3px;
  font-family: 'Montserrat', Arial, sans-serif;
}

.topbar-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 25px;
}

.topbar a {
  color: #fff;
  text-decoration: none;
  margin-right: 12px;
  font-weight: 500;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.topbar a i {
  margin-right: 6px;
  color: #ffb703;
}

.topbar a:hover {
  color: #f47b20;
}

.topbar-left,
.topbar-right {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-center {
  text-align: center;
  flex: 1;
  font-weight: 500;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .topbar-content {
    flex-direction: column;
    align-items: center;
    padding: 8px 15px;
    text-align: center;
  }

  .topbar-left,
  .topbar-right {
    justify-content: center;
    margin: 5px 0;
    flex-wrap: wrap;
  }

  .topbar-center {
    flex: 1 1 100%;
    margin: 5px 0;
  }

  .topbar a {
    margin-right: 10px;
    font-size: 0.85rem;
  }
}

@media (max-width: 575px) {
  .topbar a {
    font-size: 0.8rem;
  }
}
/* ========== Main Header - White Theme ========== */
.main-header {
  position: absolute;
  top: 30px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  background: #ffffff;
  border-bottom: 3px solid #ffb703;
  border-top: 3px solid #ffb703;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  z-index: 998;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* ========== Logo ========== */
.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-img {
  height: 100px;
  width: auto;
  max-height: 300px;
  transition: height 0.3s ease;
}

/* ========== Navigation ========== */
.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.main-nav ul li {
  margin-left: 25px;
}

.main-nav ul li a {
  text-decoration: none;
  color: #0a2050;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 16px;
  transition: color 0.3s ease;
}

.main-nav ul li a:hover {
  color: #f47b20;
}

/* ========== Book Now Button ========== */
.book-now-btn {
  background: linear-gradient(135deg, #f47b20, #ffb703);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: inline-block;
}

.book-now-btn:hover {
  background: linear-gradient(135deg, #ffb703, #f47b20);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

/* ========== 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;
    background: #ffffff;
    border-bottom: 2px solid #ffb703;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  }

  .main-nav {
    display: none !important;
  }

  .logo-img {
    height: 80px;
  }
}
/* ===== Fancy Dropdown ===== */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-toggle i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* Rotate arrow when hovered */
.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

/* Fancy dropdown style */
.dropdown-menu.fancy {
  position: absolute;
  top: 90%;
  left: 0;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 10px;
  border: 2px solid #ffb703;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  list-style: none;
  margin: 10px 0 0;
  padding: 10px 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.98);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
  z-index: 999;
}

/* Dropdown visible */
.dropdown:hover .dropdown-menu.fancy {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Fancy menu items */
.dropdown-menu.fancy li {
  opacity: 0;
  transform: translateY(10px);
  animation: dropItem 0.4s ease forwards;
}

/* Delay each item for staggered entrance */
.dropdown-menu.fancy li:nth-child(1) { animation-delay: 0.1s; }
.dropdown-menu.fancy li:nth-child(2) { animation-delay: 0.2s; }
.dropdown-menu.fancy li:nth-child(3) { animation-delay: 0.3s; }
.dropdown-menu.fancy li:nth-child(4) { animation-delay: 0.4s; }
.dropdown-menu.fancy li:nth-child(5) { animation-delay: 0.5s; }

/* Keyframe for stagger effect */
@keyframes dropItem {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Link styling */
.dropdown-menu.fancy li a {
  display: block;
  padding: 12px 20px;
  color: #0a2050;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

/* Unique hover effect with animated highlight bar */
.dropdown-menu.fancy li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #f47b20, #ffb703);
  transition: width 0.3s ease;
}

.dropdown-menu.fancy li a:hover::before {
  width: 100%;
}

.dropdown-menu.fancy li a:hover {
  color: #f47b20;
  background: rgba(255, 183, 3, 0.05);
}

/* Mobile adjustments */
@media screen and (max-width: 991px) {
  .dropdown-menu.fancy {
    position: static;
    border: none;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
  }

  .dropdown-menu.fancy li a {
    padding: 8px 15px;
    color: #0a2050;
  }

  .dropdown-menu.fancy li a:hover {
    background: none;
    color: #f47b20;
  }
}


/* ===== Active Page Highlight ===== */
.main-nav a.active,
.sticky-header .main-nav a.active {
  color: #f47b20 !important; /* bright orange text */
  font-weight: 400;
  position: relative;
}

.main-nav a.active::after,
.sticky-header .main-nav a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #f47b20, #ffb703);
  border-radius: 3px;
  transition: width 0.3s ease;
  
}

/* 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;
}
/* Hidden by default */
.sticky-header {
  top: -100px;
  opacity: 0;
  transition: top 0.4s ease, opacity 0.4s ease;
}

/* Show when scrolling up */
.sticky-header.show {
  top: 0;
  opacity: 1;
}

/* 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;
  }
}
/* ========== Sticky Dropdown Styles (Unique Classes) ========== */
.sticky-dropdown {
  position: relative;
}

.sticky-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.sticky-dropdown-toggle i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* Rotate arrow when hovered */
.sticky-dropdown:hover .sticky-dropdown-toggle i {
  transform: rotate(180deg);
}

/* Dropdown Menu Styling */
.sticky-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 2px solid #ffb703;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  list-style: none;
  margin: 10px 0 0;
  padding: 12px 0;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 9999;
  overflow: hidden;
  backdrop-filter: blur(6px);
}

/* Dropdown visible on hover */
.sticky-dropdown:hover .sticky-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown Items Animation (Staggered Fade-In) */
.sticky-dropdown-menu li {
  opacity: 0;
  transform: translateY(10px);
  animation: stickyDropItem 0.4s ease forwards;
}

.sticky-dropdown-menu li:nth-child(1) { animation-delay: 0.1s; }
.sticky-dropdown-menu li:nth-child(2) { animation-delay: 0.2s; }
.sticky-dropdown-menu li:nth-child(3) { animation-delay: 0.3s; }
.sticky-dropdown-menu li:nth-child(4) { animation-delay: 0.4s; }
.sticky-dropdown-menu li:nth-child(5) { animation-delay: 0.5s; }

@keyframes stickyDropItem {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dropdown Links */
.sticky-dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #003B7C;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

/* Glow underline hover effect */
.sticky-dropdown-menu li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #f47b20, #ffb703);
  box-shadow: 0 0 6px rgba(255, 183, 3, 0.6);
  transition: width 0.3s ease;
}

.sticky-dropdown-menu li a:hover::before {
  width: 100%;
}

.sticky-dropdown-menu li a:hover {
  color: #f47b20;
  background: rgba(255, 183, 3, 0.05);
}

/* ========== Mobile View ========== */
@media screen and (max-width: 768px) {
  .sticky-dropdown-menu {
    position: static;
    border: none;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .sticky-dropdown-menu li a {
    padding: 8px 15px;
    color: #003B7C;
  }

  .sticky-dropdown-menu li a:hover {
    background: none;
    color: #FF9D00;
  }
}

/* ========== Hamburger Button ========== */
.hamburger-toggle {
  display: none;
  position: absolute;
  right: 30px;
  top: 50px;
  z-index: 1000;
  background: none;
  border: none;
  font-size: 26px;
  color: #0a2050; /* navy icon */
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  .hamburger-toggle {
    display: block;
    top: 40px;
    right: 20px;
  }
}

/* ========== Mobile Menu - White & Gold Theme ========== */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  max-width: 330px;
  height: 100vh;
  background: #ffffff; /* white background */
  color: #0a2050; /* navy text */
  z-index: 9999;
  transition: left 0.4s ease;
  padding: 30px 25px;
  box-shadow: 6px 0 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.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 1px 3px rgba(0, 0, 0, 0.1));
}

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: #f47b20; /* orange */
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.close-btn:hover {
  transform: rotate(90deg);
  color: #ffb703; /* gold hover */
}

/* Navigation Links - Elegant White Theme */
.mobile-menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-links li {
  margin-bottom: 15px;
}

.mobile-menu-links li a {
  background: #0a2050; /* navy background */
  color: #fff;
  padding: 12px 20px;
  display: block;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.mobile-menu-links li a:hover {
  background: #f47b20; /* orange hover */
  color: #fff;
  transform: translateY(-2px);
}

/* Contact Information */
.mobile-contact {
  margin-top: 25px;
  font-size: 14px;
  background: #f8f8f8;
  padding: 15px;
  border-left: 4px solid #ffb703; /* gold accent */
  border-radius: 6px;
  color: #0a2050;
}

.mobile-contact a{
  
  color: #0a2050;
  text-decoration:none;
}

.mobile-contact p {
  margin-bottom: 12px;
  line-height: 1.5;
}

.mobile-contact span {
  display: block;
  color: #f47b20; /* orange label */
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Social Icons - Navy & Gold Glow */
.mobile-social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.mobile-social-icons a {
  color: #0a2050;
  font-size: 20px;
  transition: color 0.3s, text-shadow 0.3s;
}

.mobile-social-icons a:hover {
  color: #f47b20;
  text-shadow: 0 0 8px rgba(244, 123, 32, 0.6);
}

/* ========== Responsive Behavior ========== */
@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: #ffffff; /* white background */
    border-top: 4px solid #ffb703; /* gold top border */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  }
}
/* ========== Enhanced Mobile Dropdown - Refined Color Palette ========== */
.mobile-dropdown {
  text-align: left;
  background: #ffffff; /* white card background */
  border-radius: 8px;
  margin-bottom: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid rgba(10, 32, 80, 0.1);
}

/* Header Row: Link + Toggle Button */
.mobile-dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0a2050; /* navy bar */
}

.mobile-dropdown-link {
  flex: 1;
  padding: 14px 18px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: background 0.3s ease, color 0.3s ease;
}

.mobile-dropdown-link:hover {
  background: #f47b20; /* orange hover */
  color: #fff;
}

/* Dropdown toggle button (chevron) */
.mobile-dropdown-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  padding: 14px 16px;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-dropdown-toggle:hover {
  color: #ffb703; /* gold hover */
}

.mobile-dropdown-toggle.active i {
  transform: rotate(180deg);
  color: #ffb703;
}

/* Dropdown Menu (Hidden by default) */
.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  border-left: 4px solid #ffb703; /* gold accent */
  transition: max-height 0.4s ease, box-shadow 0.3s ease;
}

/* When Open */
.mobile-dropdown-menu.open {
  max-height: 500px; /* enough for all items */
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Dropdown Links */
.mobile-dropdown-menu li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-dropdown-menu li:last-child {
  border-bottom: none;
}

.mobile-dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: #0a2050; /* navy text */
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  background: #fff;
}

.mobile-dropdown-menu li a:hover {
  background: linear-gradient(90deg, #ffb70315, #f47b200f);
  color: #f47b20;
  padding-left: 25px;
}


/* Optional: Smooth gradient hover animation for links */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
/* Updated Hero - Warmer, Brighter Comfort Inn Theme */
.cinematic-hero {
  position: relative;
  width: 100%;
  height: 120vh;
  overflow: hidden;
  
  background: #000;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 0;
  transform: scale(1.05);
  filter: brightness(0.95) contrast(1.1);
}
.hero-slide.active { z-index: 2; animation: zoomInFade 1.8s ease-in-out forwards; }
.hero-slide.fade-out { z-index: 1; animation: zoomOutFade 1.8s ease-in-out forwards; }
@keyframes zoomInFade {
  0% { opacity: 0; transform: scale(1.08); }
  40% { opacity: 1; transform: scale(1.03); }
  100% { opacity: 1; transform: scale(1.10); }
}
@keyframes zoomOutFade {
  0% { opacity: 1; transform: scale(1.10); }
  100% { opacity: 0; transform: scale(1.13); }
}
/* Lighter black overlay for brighter feel */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 45%, rgba(0,0,0,0.3) 85%);
  z-index: 1;
}
.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  z-index: 2;
}
.hero-left {
  flex: 1;
  color: #fff;
  max-width: 650px;
}
.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-top: 200px;
  text-transform: capitalize;
  background: linear-gradient(90deg, #fff 0%, #ffb703 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(3px 3px 10px rgba(0,0,0,0.9));
  font-weight: 400;
}
.hero-title span { display: inline-block; }
@keyframes leafSwing {
  0% { opacity: 0; transform: rotateX(-40deg) rotateY(15deg) translateY(40px); }
  100% { opacity: 1; transform: rotateX(0) rotateY(0) translateY(0); }
}
.hero-nav {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.hero-nav button {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,183,3,0.8);
  color: #ffb703;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 0 12px rgba(255,183,3,0.5);
}
.hero-nav button:hover {
  background: #ffb703;
  color: #0a2050;
  transform: scale(1.15);
  box-shadow: 0 0 30px rgba(255,183,3,0.7);
}
.hero-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hero-desc {
  padding: 25px 30px;
  color: #fff;
  font-size: 18px;
  line-height: 1.7;
  max-width: 620px;
  opacity: 0;
  transform: translateY(40px);
  margin-top: 390px;
  background: rgba(255,183,3,0.15);
  border-left: 4px solid #ffb703;
  border-radius: 8px;
  backdrop-filter: blur(6px);
}
.cinematic-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,183,3,0.5), transparent);
  animation: shimmerSweep 12s ease-in-out infinite;
  z-index: 3;
}
@keyframes shimmerSweep {
  0% { left: -60%; }
  60% { left: 120%; }
  100% { left: 120%; }
}
/* Tablets (up to 1024px) */
@media (max-width: 1024px) {
  .cinematic-hero {
    height: 50vh;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    text-align: left;
  }

  .hero-left {
    flex: 1;
    max-width: 55%;
  }

  .hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin: 0;
  }

  .hero-nav {
    margin-top: 10px;
    gap: 10px;
  }

  .hero-nav button {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
  }

  .hero-desc {
    font-size: 1rem;
    max-width: 85%;
    line-height: 1.6;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(229,198,160,0.3);
    border-radius: 8px;
    margin: 0;
  }
}

/* Phones (up to 767px) */
@media (max-width: 767px) {
  .cinematic-hero {
    height: 50vh;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    text-align: left;
    margin: 10px;
  }

  .hero-left {
    flex: 1;
    max-width: 55%;
  }

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.2;
    margin: 10px;
    font-weight: 300;
    background: linear-gradient(90deg, #fff 0%, #e5c6a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
  }

  .hero-nav {
    margin-top: 8px;
    gap: 8px;
  }

  .hero-nav button {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
  }

  .hero-desc {
    font-size: 0.85rem;
    max-width: 90%;
    line-height: 1.4;
    padding: 10px 14px;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(229,198,160,0.25);
    border-radius: 8px;
    opacity: 0.95;
    text-align: right;
  }
}

/* WELCOME SECTION — Updated for Comfort Inn Orange/Navy Theme */
.welcome-glass {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}
.welcome-bg {
  position: absolute;
  inset: 0;
  background: url('../images/new/exterior2.webp') center center / cover no-repeat fixed;
  filter: brightness(0.6);
  z-index: 0;
}
.welcome-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,32,80,0.85) 25%, rgba(10,32,80,0.4) 70%);
  z-index: 1;
}
.welcome-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 85%;
  max-width: 1300px;
  gap: 60px;
  padding: 50px 0;
}
.welcome-image {
  flex: 1.2;
  position: relative;
  transition: transform 0.8s ease, opacity 0.8s ease;
}
.welcome-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.floating-thumb {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 40%;
}
.floating-thumb img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  transition: transform 0.8s ease;
}
.welcome-image:hover .floating-thumb img {
  transform: scale(1.05);
}
.welcome-image.hide {
  opacity: 0;
  transform: translateX(-100px);
  pointer-events: none;
}
.welcome-info {
  flex: 1;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  padding: 50px 60px;
  border-radius: 12px;
  border-left: 8px solid #ffb703;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: all 0.6s ease;
}
.welcome-info.fade {
  opacity: 0.3;
  transform: scale(0.97);
}
.welcome-info h5 {
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: #ffb703;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.welcome-info h2 {
  font-size: 2.6rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.welcome-info h2 span {
  color: #ffb703;
 
}
.welcome-info p {
  color: #f0f0f0;
  line-height: 1.7;
  font-size: 18px;
  margin-bottom: 15px;
}
.readmore-btn,
.readless-btn {
  display: inline-block;
  background: #f47b20;
  color: #fff;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  margin-top: 10px;
}
.readmore-btn:hover,
.readless-btn:hover {
  background: #ffb703;
  color: #0a2050;
}
.bullet-list {
  list-style-type: disc; /* Default bullet style */
  padding-left: 20px; /* Indentation for the list */
  color: #f0f0f0; /* Text color */
}

.bullet-list li {
  margin-bottom: 10px; /* Space between list items */
  font-size: 16px; /* Adjust text size */
  line-height: 1.7; /* Line spacing for better readability */
  color: #f0f0f0; /* Match text color */
  transition: all 0.3s ease; /* Smooth transition for hover effect */
}

/* Remove double bullet dots (if any) */
.bullet-list li::before {
  content: none; /* Prevent adding a second bullet point */
}

.bullet-list li:hover {
  color: #ffb703; /* Hover color matches the accent color */
}

.fullscreen-content {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 5%;
  overflow-y: auto;
  color: #fff;
  background: radial-gradient(circle at 30% 20%, rgba(10,32,80,0.95), rgba(0,0,0,0.98));
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05);
  transition: opacity 0.8s ease, transform 1s ease, visibility 0s linear 0.8s;
  z-index: 9999;
  backdrop-filter: blur(6px);
}
.fullscreen-content.open {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition-delay: 0s;
}
.fullscreen-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 60%, rgba(0,0,0,0.8) 100%);
  pointer-events: none;
  z-index: 0;
}
.content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1250px;
  text-align: left;
  animation: fadeInUp 1.2s ease forwards;
  padding: 40px 60px;
  border-radius: 12px;
  background: rgba(10,32,80,0.6);
  border-left: 6px solid #ffb703;
  box-shadow: 0 10px 40px rgba(0,0,0,0.7), 0 0 60px rgba(255,183,3,0.3);
}
.content-wrapper h2 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  color: #fff;
  text-shadow: 0 3px 10px rgba(0,0,0,0.8);
  border-bottom: 2px solid #ffb703;
  display: inline-block;
  padding-bottom: 6px;
  font-weight:400;
}
.content-wrapper h2 span {
  color: #ffb703;
   font-weight:400;
}
.content-wrapper p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 20px;
}
.fullscreen-content.open .content-wrapper {
  animation: fadeInUp 1.2s ease forwards, glowSoft 3s ease-in-out infinite alternate;
}
@keyframes glowSoft {
  from { box-shadow: 0 10px 40px rgba(0,0,0,0.7), 0 0 30px rgba(255,183,3,0.2); }
  to { box-shadow: 0 10px 40px rgba(0,0,0,0.8), 0 0 40px rgba(255,183,3,0.4); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.welcome-glass {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1.2s cubic-bezier(0.55, 0, 0.1, 1);
}
.welcome-glass.active {
  opacity: 1;
  transform: translateY(0);
}
/* Responsive unchanged, colors adapted */
/* ================================
   MOBILE OPTIMIZED FULLSCREEN CONTENT
   ================================ */
@media (max-width: 768px) {

  /* Main wrapper — reduce padding, remove heavy effects */
  .content-wrapper {
    padding: 20px 18px !important;
    border-radius: 10px;
    max-width: 100% !important;
    background: rgba(20,20,20,0.85) !important;
    border-left: 4px solid #b52239 !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5) !important;
  }

  /* Heading */
  .content-wrapper h2 {
    font-size: 1.7rem !important;
    text-align: left;
    margin-bottom: 15px !important;
    padding-bottom: 4px !important;
  }

  .content-wrapper h2 span {
    font-size: 1.7rem !important;
  }

  /* Paragraph text */
  .content-wrapper p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 15px !important;
  }

  /* Remove cinematic glow + heavy animation */
  .fullscreen-content.open .content-wrapper {
    animation: none !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4) !important;
  }

  /* Reduce fullscreen padding */
  .fullscreen-content {
    padding: 40px 5% !important;
  }
}
/* =========================================================
   ULTRA-MOBILE SCREENS (393px – 430px WIDTH)
   Pixel 7 Pro / iPhone 14 Pro Max / Similar Devices
   ========================================================= */
@media (max-width: 932px) {

  /* Fullscreen container */
  .fullscreen-content {
    padding: 40px 3% !important;
    align-items: flex-start !important;
  }

  /* Content wrapper */
  .content-wrapper {
    padding: 18px 15px !important;
    border-radius: 8px !important;
    border-left: 3px solid #b52239 !important;
    background: rgba(20,20,20,0.9) !important;
    box-shadow: 0 3px 15px rgba(0,0,0,0.45) !important;
  }

  /* Heading */
  .content-wrapper h2 {
    font-size: 1.45rem !important;
    line-height: 1.3 !important;
    margin-bottom: 12px !important;
  }

  .content-wrapper h2 span {
    font-size: 1.45rem !important;
  }

  /* Paragraph text */
  .content-wrapper p {
    font-size: 0.9rem !important;
    line-height: 1.55 !important;
    margin-bottom: 12px !important;
  }

  /* Remove glow animation fully */
  .fullscreen-content.open .content-wrapper {
    animation: none !important;
  }
}

@keyframes glowSoft {
  from {
    box-shadow: 0 10px 40px rgba(0,0,0,0.7), 0 0 30px rgba(181,34,57,0.2);
  }
  to {
    box-shadow: 0 10px 40px rgba(0,0,0,0.8), 0 0 40px rgba(229,198,160,0.25);
  }
}

/* === Smooth entry animation === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Entrance animation for section === */
.welcome-glass {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1.2s cubic-bezier(0.55, 0, 0.1, 1);
}
.welcome-glass.active {
  opacity: 1;
  transform: translateY(0);
}

/* === Responsive tweaks === */
@media (max-width: 768px) {
  .content-wrapper {
    padding: 25px;
  }

  .content-wrapper h2 {
    font-size: 2rem;
  }
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */
@media (max-width: 1200px) {
	 /* Fullscreen container */
  .fullscreen-content {
    padding: 20px 3% !important;
    
  }
  /* Remove glow animation fully */
  .fullscreen-content.open .content-wrapper {
    animation: none !important;
  }
  .welcome-inner {
    gap: 40px;
  }

  .welcome-info {
    padding: 40px 50px;
  }

  .welcome-info h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 1024px) {
	
  .welcome-inner {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }

  .welcome-info {
    padding: 40px;
    border-left: none;
    border-top: 3px solid #b52239;
  }

  .floating-thumb {
    position: static;
    width: 60%;
    margin: 30px auto 0;
  }

  .welcome-image img {
    border-radius: 8px;
  }
}

@media (max-width: 767px) {
  .welcome-glass {
    padding: 60px 0;
  }

  .welcome-inner {
    width: 90%;
  }

  .welcome-info {
    padding: 25px;
  }

  .welcome-info h2 {
    font-size: 1.8rem;
  }

  .welcome-info p {
    font-size: 0.95rem;
  }

  .content-wrapper h2 {
    font-size: 2rem;
  }
}
/* Section Styling */
.amenities-section {
  padding: 70px 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: #ffb703;
  letter-spacing: 1px;
  text-transform: uppercase;
}


.room-slider-section {
  position: relative;
  background: #0f172a;
  padding: 40px 20px;
}

.room-slider-container {
  position: relative;
  max-width: 1300px;
  margin: auto;
}

.room-slides-wrapper {
  position: relative;
}

.room-gallery-slide {
  display: none;
  padding: 50px 30px;
 background: #1e293b;
  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: 2px rgba(255,183,3,0.2);
  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 15px 40px rgba(0,0,0,0.7);
}

.corner-thumb-img {
  position: absolute;
  bottom: -30px;
  left: 240px;
  width: 240px;
  border-radius: 12px;
 border: 4px solid #f47b20;
 box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  z-index: 2;
 background: #1e293b
}

.room-info {
  flex: 1;
  min-width: 320px;
  padding: 30px;
 background: rgba(15,23,42,0.8);
  border-radius: 12px;
border-left: 6px solid #ffb703;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.room-info h2 {
  font-size: 32px;
  color: #ffb703;
  margin-bottom: 12px;
}

.room-info .price {
  font-size: 24px;
  color: #cbd5e1;
  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: #fff;
  margin-bottom: 20px;
  line-height: 1.6;
}

.book-btn {
display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #f47b20, #ffb703);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(244,123,32,0.4);
  transition: all 0.3s ease;
  text-decoration:none;
}

.book-btn:hover {
 transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(255,183,3,0.5);
}

.nav-btn {
 position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15,23,42,0.9);
  color: #ffb703;
  border: 2px solid #ffb703;
  font-size: 28px;
  padding: 15px 22px;
  cursor: pointer;
  z-index: 20;
  border-radius: 50%;
  opacity: 0.9;
}

.nav-btn:hover {
background: #ffb703;
  color: #0a2050;
  opacity: 1;
}

.room-prev {
  left: -10px;
}

.room-next {
  right: -10px;
}

/* ✅ 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: 280px;
    transform: none;
  }

  .room-prev {
    left: 0%;
	
  }

  .room-next {
    right: 0%;
  }
}
@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: 280px;
    transform: none;
  }

 .prev {
    left: 70%;
  }

  .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;
  }

}
/* ACCESSIBILITY / CONTACT BAR — Orange Gradient Theme */
.accessibility-bar {
  background: linear-gradient(90deg, #f47b20 0%, #ffb703 60%, #e67e22 100%);
  color: #0a2050;
  text-align: center;
  padding: 12px 20px;
  font-size: 17px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
  font-weight: 500;
  position: relative;
  z-index: 99;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  background-attachment: fixed;
  overflow: hidden;
}
.accessibility-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05), rgba(255,255,255,0.15));
  mix-blend-mode: overlay;
  opacity: 0.3;
  animation: shimmerFlow 8s infinite linear;
}
@keyframes shimmerFlow {
  0% { background-position: -200px 0; }
  100% { background-position: 200px 0; }
}
.accessibility-bar p {
  margin: 0;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.accessibility-bar a {
  color: #0a2050;
  font-weight: 700;
  margin-left: 5px;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.accessibility-bar a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(255,255,255,0.8);
}
.accessibility-bar i {
  color: #0a2050;
  margin-right: 6px;
  font-size: 17px;
}
@media (max-width: 768px) {
  .accessibility-bar {
    font-size: 15px;
    padding: 10px 15px;
  }
}
@media (max-width: 480px) {
  .accessibility-bar {
    font-size: 14px;
  }
  .accessibility-bar i {
    font-size: 15px;
  }
}
.cgs2, .cgsl {
  color: #0a2050;
  text-decoration: none;
}

/* NEARBY PLACES SECTION — Dark Comfort Inn Theme */
.places-section {
  position: relative;
  background: #0f172a;
  color: #e2e8f0;
 
  overflow: hidden;
  border-top: 1px solid rgba(255,183,3,0.3);
  border-bottom: 1px solid rgba(255,183,3,0.3);
}
.places-section::before,
.places-section::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffb703, #f47b20, transparent);
  opacity: 0.8;
}
.places-section::before { top: 0; }
.places-section::after { bottom: 0; }
.places-container {
  width: 100%;
  margin: 0 auto;
}
.places-content {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}
.places-info {
  flex: 1 1 50%;
  padding: 120px 8%;
  background: rgba(15,23,42,0.85);
  backdrop-filter: blur(10px);
  z-index: 2;
}
.places-subtitle {
  color: #ffb703;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.places-title {
   font-weight: 400;
  font-size: 2.8rem;
  color: #ffffff;
  margin-bottom: 20px;
}
.places-text {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}
.places-list {
  list-style: none;
  padding: 0;
  margin: 0 0 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 25px;
}
.places-list li {
  font-size: 0.95rem;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.places-list li:hover {
  color: #ffb703;
}
.places-list i {
  color: #f47b20;
}
.places-list li:hover i {
  transform: scale(1.2);
  color: #ffb703;
}
.places-btn {
  display: inline-block;
  background: #f47b20;
  color: #fff;
  text-decoration: none;
  padding: 14px 38px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(244,123,32,0.4);
}
.places-btn:hover {
  background: #ffb703;
  color: #0a2050;
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(255,183,3,0.6);
}
.places-gallery {
  flex: 1 1 50%;
  display: flex;
  align-items: stretch;
}
.places-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  height: 100%;
}
.places-img {
  position: relative;
  overflow: hidden;
}
.places-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(15,23,42,0.6), rgba(244,123,32,0.2));
  transition: opacity 0.5s ease;
}
.places-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.places-img:hover img {
  transform: scale(1.1);
}
.places-img:hover::after {
  opacity: 0.7;
}
.fade-in { animation: fadeIn 1.5s ease forwards; }
.fade-up { animation: fadeUp 1.5s ease forwards; }
@keyframes fadeIn { from { opacity: 0; transform: scale(1.02); } to { opacity: 1; transform: scale(1); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
/* Responsive */
@media (max-width: 992px) {
  .places-content { flex-direction: column; }
  .places-info { padding: 80px 6%; text-align: center; }
  .places-list { grid-template-columns: 1fr; justify-items: center; }
  .places-title { font-size: 2.2rem; }
}
/* =====================================================
   AMAZING MEMORIES — CINEMATIC WHITE GALLERY
   ===================================================== */
.gallery-section {
  position: relative;
  background: #ffffff; /* Clean white background */
  color: #333;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  padding: 100px 5%;
  overflow: hidden;
  z-index: 1;
}

/* === Overlays Removed for Clean Layout === */
.gallery-overlay,
.light-overlay {
  display: none;
}

/* === Container === */
.gallery-container {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
}

/* === Header === */
.gallery-header {
  max-width: 750px;
  margin: 0 auto 70px;
  animation: fadeInUp 1s ease forwards;
}

.gallery-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #0a2050; /* Deep navy blue */
  text-shadow: none;
  margin-bottom: 15px;
}

.gallery-subtext {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  opacity: 0.9;
}

/* === Grid Layout === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
  justify-content: center;
  animation: fadeInUp 1.2s ease forwards;
}

/* === Gallery Items === */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.6s ease;
  transform: scale(1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1);
  transition: transform 0.7s ease, filter 0.7s ease;
}

/* === Layout Variants === */
.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

/* === Hover Effects === */
.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(244, 123, 32, 0.15); /* soft golden shadow */
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

/* === Subtle Gold Glow Overlay === */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(244, 197, 66, 0.2),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* === Clean Edge — Remove Dark Vignette === */
.gallery-section::after {
  display: none;
}

/* === Animations === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === Responsive === */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
}

/* === Links (Clickable Image Area) === */
.gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.gallery-item a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

/* Maintain hover animation */
.gallery-item:hover a img {
  transform: scale(1.1);
  filter: brightness(1.15);
  cursor: pointer;
}


/* FOOTER — Light Comfort Inn Theme */
.bw-footer {
  position: relative;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  color: #333;
  padding: 80px 20px 50px;
  overflow: hidden;
 font-size: 19px;
  border-top: 2px solid rgba(244,123,32,0.3);
}
.bw-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,183,3,0.1) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.bw-footer-top {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.bw-footer-logo {
  width: 180px;
  margin-bottom: 18px;
  display: block;
  margin-inline: auto;
  animation: footerFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 5px 15px rgba(244,123,32,0.2)) brightness(1.1);
  transition: all 0.4s ease;
}
@keyframes footerFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.bw-footer-logo:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 12px 28px rgba(255,183,3,0.3)) brightness(1.2);
}
.bw-footer-tagline {
  color: #f47b20;
  font-size: 10px;
  font-weight: 400;
 
  letter-spacing: 1px;
}

.bw-footer-middle {
  display: flex;
  justify-content: space-between;
  max-width: 1350px;
  margin: 0 auto 60px;
  gap: 60px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.bw-footer-col {
  flex: 1 1 300px;
  min-width: 250px;
}
.bw-footer-heading {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 22px;
  color: #0a2050;
  position: relative;
  
}
.bw-footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 45px;
  height: 2px;
  background: linear-gradient(90deg, #f47b20, #ffb703);
  border-radius: 2px;
}
.bw-footer-link {
  color: #555;
  text-decoration: none;
  font-size: 19px;
  transition: all 0.3s ease;
  position: relative;
}
.bw-footer-link:hover {
  color: #f47b20;
  text-shadow: 0 0 8px rgba(244,123,32,0.2);
}
.bw-footer-links-columns {
  display: flex;
  gap: 50px;
}
.bw-footer-links-columns ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.bw-footer-links-columns li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}
.bw-footer-links-columns li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #ffb703;
  font-size: 18px;
  transition: transform 0.3s ease;
}
.bw-footer-links-columns li:hover::before {
  transform: translateX(3px);
}
.bw-social-icons {
  display: flex;
  gap: 14px;
  margin-top: 15px;
}
.bw-footer-social {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1.5px solid #f47b20;
  border-radius: 50%;
  color: #f47b20;
  font-size: 22px;
  transition: all 0.4s ease;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.bw-footer-social:hover {
  background: #f47b20;
  color: #fff;
  transform: translateY(-4px) scale(1.05);
  border-color: #f47b20;
  box-shadow: 0 6px 18px rgba(244,123,32,0.4);
}
.bw-footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 25px;
  max-width: 1150px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 15px;
  color: #666;
  position: relative;
  z-index: 2;
}
.bw-footer-bottom-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.bw-footer-sep {
  margin: 0 6px;
  color: #777;
}
.bw-footer-credit {
  font-size: 15px;
  color: #888;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.footer-dev-link {
  color: #555;
  text-decoration: none;
  transition: 0.3s;
}
.footer-dev-link:hover {
  color: #f47b20;
}
.gen {
  color: #666;
  font-size: 15px;
}
/* Responsive */
@media (max-width: 1024px) {
  .bw-footer { padding: 60px 15px 40px; }
  .bw-footer-middle { flex-wrap: wrap; justify-content: left; gap: 40px; }
  .bw-footer-col { flex: 1 1 45%; min-width: 280px; text-align: left; }
  .bw-footer-link { font-size: 16px; }
  .bw-footer-social { width: 44px; height: 44px; font-size: 20px; }
  .bw-footer-heading::after { display: none; }
}
@media (max-width: 768px) {
  .bw-footer-middle { flex-direction: column; align-items: center; text-align: center; gap: 45px; }
  .bw-footer-col { flex: 1 1 100%; max-width: 480px; }
  .bw-footer-links-columns { flex-wrap: wrap; justify-content: center; gap: 25px; }
  .bw-footer-links-columns ul { flex: 1 1 45%; min-width: 160px; text-align: left; }
  .bw-footer-heading { font-size: 22px; margin-bottom: 20px; }
  .bw-footer-heading::after { left: 50%; transform: translateX(-50%); }
  .bw-footer-social { width: 42px; height: 42px; font-size: 20px; }
  .bw-social-icons { justify-content: center; }
  .bw-footer-bottom { flex-direction: column; text-align: center; gap: 15px; margin-top: 30px; }
  .bw-footer-bottom-links { justify-content: center; }
}
@media (max-width: 480px) {
  .bw-footer { padding: 50px 10px 30px; }
  .bw-footer-logo { width: 130px; margin-bottom: 12px; }
  .bw-footer-tagline { font-size: 13px; line-height: 1.5; }
  .bw-footer-heading { font-size: 19px; margin-bottom: 16px; }
  .bw-footer-link { font-size: 15px; }
  .bw-footer-links-columns { gap: 15px; justify-content: center; }
  .bw-footer-links-columns ul { flex: 1 1 45%; min-width: 160px; text-align: left; }
  .bw-footer-social { width: 38px; height: 38px; font-size: 18px; }
  .bw-footer-bottom { padding-top: 20px; gap: 10px; }
}

/* ===== Inner Page Hero Section (Sticky Background) ===== */
.inner-hero {
  position: relative;
  width: 100%;
  height: 65vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* ✅ Key change: keeps background fixed while scrolling */
  background-attachment: fixed;

  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  margin-top: 140px;
}

/* Overlay with gold shimmer tint */
.inner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 32, 80, 0.8) 10%,
    rgba(10, 32, 80, 0.5) 45%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 1;
}

/* Shimmer effect like homepage */
.inner-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,183,3,0.45), transparent);
  animation: shimmerSweep 10s ease-in-out infinite;
  z-index: 2;
}

/* Hero Content */
.inner-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1200px;
  animation: fadeUpHero 1.2s ease-out both;
}

@keyframes fadeUpHero {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Main Title */
.inner-title {
  font-size: 3.2rem;
  text-transform: capitalize;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #ffffff 0%, #ffb703 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(3px 3px 12px rgba(0,0,0,0.5));
  margin-bottom: 15px;
  font-weight: 400;
}

/* Subtitle */
.inner-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto 25px;
  line-height: 1.6;
  font-weight: 400;
}

/* Breadcrumb */
.breadcrumb-nav {
  font-size: 0.95rem;
  color: #ffb703;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.breadcrumb-nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
  color: #ffb703;
}

.breadcrumb-nav span {
  color: #ffb703;
  margin: 0 6px;
}

/* Responsive Design */
@media (max-width: 991px) {
  .inner-hero {
    height: 50vh;
    background-attachment: scroll; /* disable fixed for tablets to prevent jitter */
	margin-top:-90px;
  }

  .inner-title {
    font-size: 2.2rem;
  }

  .inner-subtitle {
    font-size: 0.95rem;
    max-width: 90%;
  }
}

@media (max-width: 600px) {
  .inner-hero {
    height: 45vh;
    text-align: center;
    background-attachment: scroll; /* mobile browsers ignore fixed properly */
  }

  .inner-title {
    font-size: 1.8rem;
  }

  .inner-subtitle {
    font-size: 0.85rem;
  }

  .breadcrumb-nav {
    font-size: 0.8rem;
  }
}

/* ===== Custom Amenities Header Section ===== */
.custom-amenities-header {
  background: #f9f9f9; /* Soft neutral background for contrast */
  padding: 20px 20px;
  text-align: center;
  
}

/* ===== Title ===== */
.custom-amenities-title {
  font-size: 38px;
  color: #0a2050; /* deep navy for titles */
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 1px;
  position: relative;
  text-decoration:none;
}

/* Decorative underline */
.custom-amenities-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #f47b20, #ffb703); /* orange-to-gold accent */
  display: block;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* ===== Description ===== */
.custom-amenities-description {
  font-size: 18px;
  line-height: 1.8;
  color: #333; /* comfortable reading contrast */
  max-width: 1300px;
  margin: 0 auto 0;
  margin-top:20px;
}

.custom-amenities-description strong {
  color: #f47b20; /* subtle highlight for key terms */
  font-weight: 600;
}

.custom-amenities-description a {
  color: #0a2050; /* navy links */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.custom-amenities-description a:hover {
  color: #f47b20; /* orange hover */
  text-decoration: none;
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
  .custom-amenities-header {
    padding: 40px 15px;
  }

  .custom-amenities-title {
    font-size: 28px;
  }

  .custom-amenities-description {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* ===== Custom Amenities Section ===== */
.custom-amenities {
  padding: 20px 20px;
  background: #f9f9f9; /* softer neutral background */
}

.custom-amenities-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== Section Title ===== */
.custom-amenities-title {
  font-size: 36px;
  color: #00145f; /* navy */
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
}

.custom-amenities-title::after {
  content: '';
  width: 70px;
  height: 4px;
  background-color: #ffb703; /* gold underline accent */
  display: block;
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ===== Subtitle ===== */
.custom-amenities-subtitle {
  font-size: 26px;
  color: #00145f; /* warm orange for section headers */
  text-align: center;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ===== Amenities Grid ===== */
.custom-amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 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 #ffb703; /* gold accent bar */
  padding: 14px 18px;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 500;
  color: #0a2050; /* deep navy text */
  display: flex;
  align-items: center;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.custom-amenities-grid li:hover {
  background-color: #fff6e3; /* light gold hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 183, 3, 0.2);
}

/* ===== Icons ===== */
.custom-amenities-grid li i {
  margin-right: 12px;
  color: #f47b20; /* orange icons */
  font-size: 18px;
}

/* ===== Notes / Links ===== */
.custom-amenities-note {
  text-align: center;
  font-size: 0.95rem;
  color: rgba(10, 32, 80, 0.8);
  margin-top: 25px;
  font-style: italic;
}

.custom-link1 {
  color: #0a2050;
  text-decoration: none;
  transition: color 0.3s ease;
}

.custom-link1:hover {
  color: #f47b20;
  text-decoration: underline;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 767px) {
  .custom-amenities {
    padding: 40px 15px;
  }

  .custom-amenities-title {
    font-size: 28px;
  }
  
  .custom-amenities-subtitle {
    font-size: 22px;
  }

  .custom-amenities-grid li {
    font-size: 15px;
    padding: 10px 12px;
  }
}
/* ===== Things to Do Section ===== */
.custom-things-header {
  background-color: #f9f9f9; /* soft, clean background */
  padding: 20px 20px;
  text-align: center;
 
}

/* ===== Title ===== */
.custom-things-title {
  font-size: 38px;
  color: #0a2050; /* deep navy for brand consistency */
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  text-decoration: none;
}

/* gold-orange underline accent */
.custom-things-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, #f47b20, #ffb703);
  border-radius: 3px;
}

/* ===== Description ===== */
.custom-things-description {
  font-size: 18px;
  color: #0a2050; /* soft navy text for comfortable reading */
  max-width: 1200px;
  margin: 30px auto 0;
  line-height: 1.8;
  font-weight: 400;
}

/* Highlight important words */
.custom-things-description strong {
  color: #f47b20; /* warm orange for emphasis */
  font-weight: 600;
}

/* Links styled with subtle brand accent */
.custom-things-description a {
  color: #f47b20;
  text-decoration: none;
  transition: color 0.3s ease;
}

.custom-things-description a:hover {
  color: #f47b20; /* orange hover for interactive feel */
  text-decoration: none;
}

/* ===== Responsive Design ===== */
@media (max-width: 767px) {
  .custom-things-header {
    padding: 40px 15px;
  }

  .custom-things-title {
    font-size: 28px;
  }

  .custom-things-description {
    font-size: 16px;
    line-height: 1.6;
  }
}
/* ===== Top 5 Attractions Section ===== */
.top-attractions-title {
  font-size: 24px;
  font-weight: 600;
  color: #0a2050;
  margin-top: 40px;
  margin-bottom: 20px;
}

/* Container for the attraction cards */
.top-attractions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Card Style */
.attraction-card {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  width: 30%;
  text-align: center;
  position: relative; /* Required for the ::before pseudo-element */
  overflow: hidden; /* Ensures the pseudo-element stays inside the card */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Pseudo-element for border-left highlight */
.attraction-card::before {
   content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,183,3,0.25), transparent);
  transition: all 0.6s ease;
}

/* Hover Effect for the Card */
.attraction-card:hover::before {
  left: 100%; /* Moves the pseudo-element to the right side of the card */
}

.attraction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(255,183,3,0.25);
  border-left-color: #f47b20; /* changes to orange highlight on hover */
}

/* Image Style */
.attraction-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Title Style */
.attraction-card h4 {
  font-size: 18px;
  color: #0a2050;
  margin-bottom: 10px;
}

.attraction-card h4 a {
  color: #0a2050;
  text-decoration: none;
}

.attraction-card h4 a:hover {
  color: #f47b20; /* Highlight on hover */
}
/* Description Style */
.attraction-description {
  font-size: 14px;
  color: #000; /* Slightly lighter color for the description text */
  margin-bottom: 15px;
  line-height: 1.6; /* Better readability */
}

/* Button Style */
.attraction-btn {
  display: inline-block;
  background-color: #f47b20;
  color: #fff;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.attraction-btn:hover {
  background-color: #ffb703;
  color: #0a2050;
}

/* Distance Style */
.attraction-card p {
  font-size: 16px;
  color: #0a2050;
}

/* Tablet and Mobile Styles */
@media (max-width: 1024px) {
  .attraction-card {
    width: 48%; /* Two cards per row on tablet screens */
  }
}

@media (max-width: 767px) {
  .attraction-card {
    width: 100%; /* Full width for cards on mobile screens */
    margin-bottom: 20px; /* Adds space between stacked cards */
  }
}

/* ===== Things to Do Grid Section ===== */
.things-grid-section {
  padding: 20px 20px;
  background: #f9f9f9; /* clean, soft background */
}

.things-grid-section .container {
  max-width: 1240px;
  margin: 0 auto;
}

/* ===== Section Title ===== */
.things-title {
  font-size: 26px;
  color: #0a2050; /* deep navy */
  margin: 40px 0 25px;
  font-weight: 700;
  border-left: 5px solid #ffb703; /* gold accent bar */
  padding-left: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

/* ===== Grid Layout ===== */
.things-grid.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

/* ===== Individual Card ===== */
.thing-card {
  background: #ffffff;
  border-left: 4px solid #ffb703; /* gold accent */
  padding: 25px 28px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Subtle shimmer effect on hover */
.thing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,183,3,0.25), transparent);
  transition: all 0.6s ease;
}

.thing-card:hover::before {
  left: 120%;
}

.thing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(255,183,3,0.25);
  border-left-color: #f47b20; /* changes to orange highlight on hover */
}

/* ===== Card Title ===== */
.thing-card h4 {
  font-size: 20px;
  color: #0a2050; /* deep navy */
  margin-bottom: 8px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.thing-card:hover h4 {
  color: #f47b20; /* orange highlight on hover */
}

/* ===== Card Description ===== */
.thing-card p {
  color: #333;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .things-grid.two-cols {
    grid-template-columns: 1fr;
  }

  .things-title {
    font-size: 22px;
  }

  .thing-card {
    padding: 20px;
  }

  .thing-card h4 {
    font-size: 18px;
  }
}
/* ===== Location Section ===== */
.custom-location-header {
  text-align: center;
  padding: 20px 20px;
  background-color: #f9f9f9; /* soft neutral background */
  
}

/* ===== Title ===== */
.custom-location-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #0a2050; /* deep navy brand color */
  margin-bottom: 25px;
  position: relative;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
}

/* Decorative underline in gold–orange gradient */
.custom-location-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #f47b20, #ffb703);
  display: block;
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ===== Description Text ===== */
.custom-location-description {
  font-size: 18px;
  line-height: 1.8;
  color: #0a2050; /* navy text for readability */
  max-width: 1280px;
  margin: 30px auto 0;
  font-weight: 400;
}

/* Highlight key words */
.custom-location-description strong {
  color: #f47b20; /* warm orange for emphasis */
  font-weight: 600;
}

/* ===== Links ===== */
.custom-location-description a {
  color: #0a2050;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.custom-location-description a:hover {
  color: #f47b20; /* orange hover accent */
  text-decoration: none;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 767px) {
  .custom-location-header {
    padding: 40px 15px;
  }

  .custom-location-title {
    font-size: 2rem;
  }

  .custom-location-description {
    font-size: 16px;
    line-height: 1.6;
  }
}
/* ===== Location Section Hero ===== */
.location-section-hero {
  background: #f9f9f9; /* soft neutral tone */
  padding: 60px 20px;
}

.location-wrapper-hero {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* ===== Left Content Box ===== */
.location-info-box {
  flex: 1;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-info-box h2 {
  font-size: 2.6rem;
  color: #0a2050; /* deep navy */
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.location-info-box p {
  font-size: 1.1rem;
  color: #0a2050;
  margin-bottom: 30px;
  line-height: 1.8;
}

/* ===== Coordinates & Directions Panels ===== */
.coordinates-area,
.directions-area {
  background: #fff8e6; /* soft gold tint */
  padding: 22px;
  border-left: 5px solid #ffb703; /* gold accent */
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coordinates-area:hover,
.directions-area:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(255, 183, 3, 0.25);
}

.coordinates-area h4,
.directions-area h4 {
  color: #0a2050; /* navy headings */
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.coordinates-area ul {
  list-style: none;
  padding-left: 0;
  color: #0a2050;
}

.coordinates-area ul li {
  margin-bottom: 8px;
  font-size: 1rem;
}

/* ===== Form Styling ===== */
.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: linear-gradient(90deg, #f47b20, #ffb703);
  color: #fff;
  border: none;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.directions-area form button:hover {
  background: linear-gradient(90deg, #ffb703, #f47b20);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(244, 123, 32, 0.25);
}

/* ===== Map Box (Right Side) ===== */
.location-map-box {
  flex: 1;
  background: #fff6db; /* pale gold background */
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 3px solid #ffb703;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .location-wrapper-hero {
    flex-direction: column;
  }

  .location-info-box {
    padding: 30px 25px;
  }

  .location-map-box {
    height: 300px;
  }

  .location-info-box h2 {
    font-size: 2rem;
  }
}
/* ===== Contact Header Section (Oxford Theme) ===== */
.custom-contact-header {
  text-align: center;
  padding: 20px 20px;
  background-color: #f9f9f9; /* soft neutral background */
 
}

/* ===== Title Styling ===== */
.custom-contact-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #0a2050; /* deep navy text */
  margin-bottom: 25px;
  position: relative;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
}

/* Elegant orange-gold underline accent */
.custom-contact-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #f47b20, #ffb703);
  display: block;
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ===== Description Text ===== */
.custom-contact-description {
  font-size: 18px;
  line-height: 1.8;
  color: #0a2050; /* brand navy for readability */
  max-width: 1100px;
  margin: 30px auto 0;
  font-weight: 400;
}

/* Highlighted text emphasis */
.custom-contact-description strong {
  color: #f47b20;
  font-weight: 600;
}

/* ===== Inline Links ===== */
.custom-contact-description a {
  color: #0a2050;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.custom-contact-description a:hover {
  color: #f47b20; /* orange hover highlight */
  text-decoration: none;
}

/* ===== Responsive Design ===== */
@media (max-width: 767px) {
  .custom-contact-header {
    padding: 40px 15px;
  }

  .custom-contact-title {
    font-size: 2rem;
  }

  .custom-contact-description {
    font-size: 16px;
    line-height: 1.6;
  }
}
/* ===== Main Contact Info Section (Oxford Theme) ===== */
.contact-section-hero {
  background: #f9f9f9; /* soft neutral background */
  padding: 20px 20px;
}

/* Wrapper Box */
.contact-wrapper-hero {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* ===== Left Content Box ===== */
.contact-info-box {
  flex: 1;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-box h2 {
  font-size: 2.6rem;
  color: #0a2050; /* deep navy */
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-box p {
  font-size: 1.1rem;
  color: #0a2050;
  margin-bottom: 30px;
  line-height: 1.8;
  font-weight: 400;
}

/* ===== Contact Details Box ===== */
.contact-details-area {
  background: #fff8e6; /* warm gold tint */
  padding: 22px;
  border-left: 5px solid #ffb703; /* gold border accent */
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-details-area:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(255, 183, 3, 0.25);
}

.contact-details-area h4 {
  color: #0a2050; /* navy */
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-details-area ul {
  list-style: none;
  padding-left: 0;
  color: #0a2050;
}

.contact-details-area ul li {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.6;
}

/* ===== Links ===== */
.contact-details-area a {
  color: #f47b20; /* orange accent */
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details-area a:hover {
  color: #ffb703; /* gold hover */
  text-decoration: underline;
}

/* ===== Right Side Image ===== */
.contact-image-box {
  flex: 1;
  background: #fff6db; /* subtle gold hue */
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 3px solid #ffb703;
}

.contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .contact-wrapper-hero {
    flex-direction: column;
  }

  .contact-info-box {
    padding: 30px 25px;
  }

  .contact-image-box {
    height: 300px;
  }

  .contact-info-box h2 {
    font-size: 2rem;
  }

  .contact-info-box p {
    font-size: 1rem;
  }
}
/* ===== Comfort Inn & Suites, Oxford Sitemap Section ===== */
.sitemap-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #ffffff, #f9f9f9, #ffffff); /* soft white blend */
  text-align: center;
}

/* ===== Container ===== */
.sitemap-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== Title ===== */
.sitemap-title {
  font-size: 3rem;
  color: #0a2050; /* deep navy */
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
}

.sitemap-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #f47b20, #ffb703);
  display: block;
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ===== Subtitle ===== */
.sitemap-subtitle {
  font-size: 1.2rem;
  color: #0a2050; /* navy for readability */
  margin-bottom: 50px;
  font-weight: 400;
  line-height: 1.8;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Sitemap Links Grid ===== */
.sitemap-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ===== Sitemap Blocks ===== */
.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(10, 32, 80, 0.08);
  border: 1px solid rgba(255, 183, 3, 0.25);
}

.sitemap-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(244, 123, 32, 0.2); /* orange hover glow */
}

/* ===== Headings ===== */
.sitemap-block h2 {
  font-size: 1.8rem;
  color: #f47b20; /* warm orange */
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

/* ===== List Styles ===== */
.sitemap-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-block ul li {
  margin-bottom: 15px;
}

/* ===== Link Styles ===== */
.sitemap-block ul li a {
  font-size: 18px;
  color: #0a2050; /* navy text */
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.3s ease, transform 0.3s ease;
  font-weight: 500;
}

.sitemap-block ul li a em {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #ffb703; /* gold icons */
  transition: color 0.3s ease;
}

.sitemap-block ul li a:hover {
  color: #f47b20; /* orange hover */
  transform: translateX(5px);
}

.sitemap-block ul li a:hover i {
  color: #f47b20; /* icon matches hover */
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .sitemap-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .sitemap-links {
    grid-template-columns: 1fr;
  }

  .sitemap-title {
    font-size: 2.2rem;
  }

  .sitemap-block h2 {
    font-size: 1.4rem;
  }

  .sitemap-block ul li a {
    font-size: 16px;
  }
}
/* 🎯 FAQ Section - Comfort Inn & Suites, Oxford Theme */
.faq-section {
    padding: 20px 20px;
    background: #f9f9f9; /* Soft white background */
    color: #0a2050; /* Deep Navy */
    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: 400;
    color: #0a2050; /* Deep Navy */
    
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
}

.faq-subtitle {
    font-size: 1.3rem;
    color: #333; /* Dark gray for readability */
    margin-bottom: 50px;
}

.faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
	margin-top: 60px;
}

.faq-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #ffb703; /* Gold border accent */
    box-shadow: 0 8px 20px rgba(10, 32, 80, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(10, 32, 80, 0.12); /* Hover effect */
}

.faq-item h2 {
    font-size: 1.8rem;
    color: #0a2050; /* Deep Navy for FAQ headers */
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px dashed #ffb703; /* Gold dashed underline */
	
}

.faq-item p {
    font-size: 1.1rem;
    color: #333; /* Dark gray for readability */
    line-height: 1.75;
    margin-bottom: 10px;
}

.faq-item a {
    color: #0a2050; /* Deep Navy links */
    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: #f47b20; /* Warm Orange underline */
    transition: width 0.3s ease;
}

.faq-item a:hover {
    color: #f47b20; /* Hover color - Warm Orange */
}

.faq-item a:hover::after {
    width: 100%; /* Full-width underline effect on hover */
}

/* 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;
    }
}
/* ===== Back to Top Button ===== */
.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #f47b20;  /* Orange background color */
  color: #fff;  /* White text */
  border: none;
  border-radius: 50%;
  padding: 15px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index:9999;
}

.back-to-top-btn:hover {
  background-color: #ffb703;  /* Lighter orange on hover */
  transform: scale(1.1);  /* Slight zoom on hover */
}

.back-to-top-btn.show {
  opacity: 1;
  visibility: visible;  /* Make it visible when the user scrolls down */
}
/* Smooth scroll to top */
html {
  scroll-behavior: smooth;
}