﻿@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;
}
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: url('../images/texture.jpg') no-repeat center center fixed;
  background-size: cover;
  background-attachment: fixed;
  color: #333;
  position: relative; /* For positioning the overlay */
}



/* ========== Topbar ========== */
.topbar {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 8px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.95); /* faded white */
  color: #003B5C;
  font-size: 16px;
  z-index: 999;
}

.topbar a {
  color: #003B5C;
  margin-right: 15px;
  text-decoration: none;
  transition: color 0.3s;
}

.topbar a:hover {
  color: #3788a8;
}

.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: rgba(255, 255, 255, 0.95);
  }

  .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(0, 59, 92, 0.15);
    margin-top: 8px;
  }
}

/* ========== Main Header ========== */
.main-header {
  position: absolute;
  top: 37px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  background: rgb(255 255 255 / 72%); /* faded white */
  z-index: 999;
  border-top: #3788a8 solid 4px;
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-img {
  height: 50px;
  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: #05212b; /* main link color */
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
 
  font-size: 18px;
  transition: color 0.3s;
}

.main-nav ul li a:hover {
  color: #003B5C; /* Orange accent on hover */
}
/* ========== Minimalist Dropdown Menu Styles with Bottom Border ========== */
.main-nav .dropdown {
  position: relative;
  display: inline-block;
}

.main-nav .dropdown .dropdown-menu {
  display: none; /* Hidden by default */
  position: absolute;
  top: 100%; /* Space below the parent */
  left: -18%;
  background: #003b5cc9; /* Clean white background */
  border-radius: 10px 100px; /* Rounded corners for a minimalist feel */
  padding: 10px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 999;
  min-width: 250px;
  
}

.main-nav .dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.main-nav .dropdown-menu li {
  padding: 10px 20px;
  margin-bottom: 5px;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
  border-bottom: 1px solid #e0e0e0; /* Light border below each item */
}

.main-nav .dropdown-menu li a {
  color: #fff; /* Deep blue color to match the logo */
  text-decoration: none;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif; /* Clean, modern font */
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%; /* Ensures full width for the links */
  transition: transform 0.3s ease, color 0.3s ease;
}

.main-nav .dropdown-menu li a:hover {
  color: #F4A300; /* Soft golden color for hover effect */
  background-color: rgba(0, 0, 0, 0.05); /* Light background on hover */
  transform: translateX(5px); /* Slight slide effect on hover */
}

.main-nav .dropdown-menu li a i {
  margin-left: 15px; /* Space between text and icon */
  color: #003B5C; /* Keep the icon color matching the text */
  font-size: 16px; /* Icon size consistent with text */
  transition: transform 0.3s ease;
}

.main-nav .dropdown-menu li a:hover i {
  transform: scale(1.1); /* Subtle icon zoom effect on hover */
}

@keyframes dropdownHover {
  0% {
    transform: scale(0.9);
    opacity: 0;
    visibility: hidden;
  }
  100% {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
}

.main-nav .dropdown:hover .dropdown-menu {
  animation: dropdownHover 0.3s ease-out forwards;
}



/* Responsive Main Header */
@media screen and (max-width: 991px) {
  .main-header {
    position: relative;
    top: 0;
    padding: 30px 20px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  /* Align logo and hamburger correctly */
  .logo {
    flex-grow: 1; /* Allows logo to take available space */
    display: flex;
    justify-content: flex-start; /* Align logo to the left */
  }

  .hamburger-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 26px;
    color: #003B5C;
    cursor: pointer;
    z-index: 1000;
  }

  .logo-img {
    height: 40px;
  }

  /* Hide navigation on mobile */
  .main-nav {
    display: none !important;
  }
}

/* Adjust hamburger and logo on smaller screen sizes */
@media screen and (max-width: 480px) {
  .main-header {
     padding: 30px 20px; /* Reduce padding on very small screens */
  }

  .logo-img {
    height: 35px; /* Make logo smaller on very small screens */
  }

  .hamburger-toggle {
    font-size: 28px; /* Make hamburger button slightly bigger on smaller screens */
  }
}


/* ========== Hamburger Button ========== */
.hamburger-toggle {
  display: none;
  position: absolute;
  right: 30px;
  top: 50px;
  z-index: 1000;
  background: none;
  border: none;
  font-size: 26px;
  color: #003B5C; /* Dark blue for the hamburger icon */
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  .hamburger-toggle {
    display: block;
    top: 40px;
    right: 20px;
  }
}

/* Mobile Menu: White Fade Background */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  max-width: 330px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.9); /* White fade background */
  color: #003B5C; /* Dark blue text for contrast */
  z-index: 9999;
  transition: left 0.4s ease;
  padding: 30px 25px;
  box-shadow: 6px 0 20px rgba(0, 0, 0, 0.3); /* Slight shadow for depth */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto; /* Enables vertical scrolling */
}

.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: 30px;
  filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.5)); /* White shadow for logo */
}

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: #3788a8; /* Orange for close button */
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.close-btn:hover {
  transform: rotate(90deg);
  color: #3788a8;
}

/* 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, #005C96, #0077B6, #00A9E0); /* Blue gradient */
  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: #3788a8; /* Orange hover accent */
  color: #fff;
  transform: translateY(-2px);
}

/* Contact Information */
.mobile-contact {
  margin-top: 25px;
  font-size: 18px;
  background: rgba(255, 255, 255, 0.06);
  padding: 15px;
  border-left: 4px solid #3788a8; /* Orange border for emphasis */
  border-radius: 6px;
}
.mobile-contact a {
  color: #3788a8; /* Match the phone link color with the border */
  text-decoration: none; /* Remove underline */
  font-weight: bold;
}

.mobile-contact a:hover {
  text-decoration: underline; /* Add underline on hover */
}


.mobile-contact p {
  margin-bottom: 12px;
}

.mobile-contact span {
  display: block;
  color: #3788a8;
  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: #003B5C; /* Dark blue icons */
  font-size: 20px;
  transition: color 0.3s, text-shadow 0.3s;
}

.mobile-social-icons a:hover {
  color: #00A9E0; /* Lighter blue for hover effect */
  text-shadow: 0 0 8px #00A9E0;
}
/* ========== Dropdown Menu Styles ========== */
.mobile-menu-links .dropdown {
  position: relative;
}

.mobile-menu-links .dropdown .dropdown-menu {
  display: none; /* Hidden by default */
  position: absolute;
  top: 100%; /* Position it below the parent list item */
  left: 0;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 10px;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

.mobile-menu-links .dropdown:hover .dropdown-menu {
  display: block; /* Show the dropdown on hover */
}

.mobile-menu-links .dropdown-menu li {
  padding: 10px;
  margin-bottom: 5px;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-links .dropdown-menu li:last-child {
  border-bottom: none; /* Remove border for last item */
}

.mobile-menu-links .dropdown-menu li a {
  text-decoration: none;
  color: #fff; /* Dark blue color */
  font-size: 14px;
  padding: 5px 0;
  text-align: left;
  display: block;
}

.mobile-menu-links .dropdown-menu li a:hover {
  background-color: #FF9D00; /* Highlight color */
  color: white;
}

/* 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 #3788a8; /* Yellow border for emphasis */
  }
}



/* Sticky Header */
.sticky-header {
  position: fixed;
  top: -100px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 15px 80px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  z-index: 999;
  transition: top 0.4s ease-in-out;
   border-bottom: #3788a8 solid 4px;
   border-radius:180px 0px;
}

.sticky-header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.sticky-header .logo-img {
  height: 40px;
  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;
}
/* ========== Dropdown Menu Styles ========== */
.sticky-header .dropdown {
  position: relative;
  display: inline-block;
}

.sticky-header .dropdown .dropdown-menu {
  display: none; /* Hidden by default */
  position: absolute;
  top: 100%; /* Position below the parent link */
  left: -18%;
  background-color: #ffffff; /* White background for dropdown */
  border-radius: 10px 100px;
  padding: 10px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
  min-width: 180px;
  z-index: 9999;
}

.sticky-header .dropdown:hover .dropdown-menu {
  display: block; /* Show dropdown on hover */
}

.sticky-header .dropdown-menu li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.sticky-header .dropdown-menu li:last-child {
  border-bottom: none; /* Remove border for last item */
}

.sticky-header .dropdown-menu li a {
  text-decoration: none;
  color: #003B7C;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  display: block;
  padding: 5px 0;
}

.sticky-header .dropdown-menu li a:hover {
  color: #FF9D00;
}
/* 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;
  }
}


/* ========== Hero Slider ========== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 130vh;
  overflow: hidden;
}

/* Slide fade overlay */
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 59, 92, 0.5), rgba(0, 0, 0, 0.7)); /* Darker overlay */
  z-index: 1;
}

/* Slide */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  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 Right Area */
.slide-right {
  width: 100%;
  color: #fff;
  z-index: 2;
  text-align: center;
  position: absolute;
  left: 5%; /* Align to the left side */
}

.slide-right .overlay-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 130px;
  -webkit-text-stroke: 1px #fff;
  color: transparent;
  opacity: 1.90;
  font-weight: 500;
}

/* Content Left Area */
.slide-left {
  width: 100%;
  color: #fff;
  z-index: 2;
  text-align: right;
}

.slide-left h5 {
  color: #76d9ff; /* Orange, matching the accent in your logo */
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 500;
}

.slide-left h1 {
  font-size: 60px;
  font-weight: 500;
  margin: 10px 0 20px;
  line-height: 1.2;
  color: #ffffff; /* White text for better contrast */
}

/* Book Button */
.book-btn1 {
  background: #003B5C; /* Dark blue for primary brand color */
  color: #fff;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 6px rgba(0, 59, 92, 0.4); /* Slight shadow in dark blue */
  transition: background 0.3s;
}

.book-btn1:hover {
  background: #438eab; /* Orange accent on hover */
}

/* 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; /* White for better visibility */
  opacity: 0.3;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.3s;
}

.slider-nav .dot.active {
  opacity: 1;
}

/* Button Styles for Next/Prev */
.slider-controls {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%); /* This centers the buttons horizontally */
  display: flex;
  gap: 15px;
  z-index: 10;
}

.prev-btn, .next-btn {
  border: 2px solid #fff; /* Border only, no fill */
  background: transparent;
  color: #fff; /* Dark blue */
  font-size: 16px;
  font-weight: 400;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
  background: #003B5C;
  color: #fff;
  border-radius: 20px;
}

/* Responsive Adjustments for mobile and tablet */
@media screen and (max-width: 1024px) {
  .hero-slider {
    height: 60vh;
  }

  .slide-heading {
    font-size: 2.5rem;
    font-weight: 300;
  }

  .slide-title {
    font-size: 18px;
    font-weight: 300;
  }
.slide-right{
	display:none;
	
}
  .slide-left {
    width: 100%;
    text-align: center;
    padding: 0 20px;
  }

  .slider-nav {
    right: 10px;
  }

  .slider-controls {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* 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;
  }
}
/* ===== GLOBAL STYLES ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ===== RESERVATION BOX SECTION ===== */
.below-section {
  position: relative;
  padding: 80px 0 20px;
  z-index: 5;
  text-align: center;
}

/* ===== RESERVATION BOX ===== */
.reservation-box {
  display: flex;
  justify-content: center;
  width: 100%;
  position: absolute;
  top: -50px;
  left: 0;
  z-index: 2;
  background-image: url('../images/texture.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
}

.reservation-container {
  display: flex;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  overflow: hidden;
  background-image: linear-gradient(to bottom right, rgba(255, 255, 255, 0.3), rgba(0, 0, 0, 0.6));
  width: 100%;
}

/* ===== FORM ITEM ===== */
.res-item {
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #eee;
  width: 100%;
}

/* Fix small items for desktop */
.res-item.small {
  width: 150px; /* Increased from 120px */
  text-align: center;
}

/* ===== INPUT & SELECT STYLES ===== */
.res-item input[type="date"],
.res-item select {
  font-size: 16px;
  font-weight: 500;
  color: #003B5C;
  font-family: 'Montserrat', Arial, sans-serif;
  border: 1px solid #9a7a39;
  border-radius: 4px;
  padding: 10px 40px 10px 15px;
  width: 100%;
  min-width: 100px;
  appearance: none;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg fill="%239a7a39" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  transition: border 0.3s ease;
}

/* Focus styles */
.res-item input[type="date"]:focus,
.res-item select:focus {
  border-color: #FF9D00;
  outline: none;
  box-shadow: 0 0 0 2px rgba(154, 122, 57, 0.2);
}

/* ===== BUTTON STYLES ===== */
.res-button {
  background: #003B5C;
  display: flex;
  align-items: center;
  justify-content: center;
}

.res-button button {
  background: none;
  border: none;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 40px;
  font-size: 16px;
  height: 100%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.res-button button:hover {
  background: rgba(0, 0, 0, 0.1);
}

/* ===== LABELS & ICONS ===== */
.res-item label {
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.res-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.res-content.center {
  justify-content: center;
}

.res-content i {
  font-size: 26px;
  color: #fff;
  margin-left: 15px;
}
/* Make calendar icon not block clicks */
.res-content i {
  pointer-events: none;
}


/* ===== RESPONSIVE: Tablets (<=1024px) ===== */
@media (max-width: 1024px) {
  .reservation-box {
    top: -50px;
    position: relative;
    margin: 0;
  }

  .reservation-container {
    flex-direction: column;
    padding: 10px;
    background: rgba(255, 255, 255, 0.8);
  }

  .res-item {
    width: 100%;
    padding: 10px;
    border-right: none;
  }

  .res-item.small {
    width: 100%;
  }

  .res-button button {
    width: 100%;
    padding: 15px 0;
    font-size: 18px;
  }

  .res-item input[type="date"],
  .res-item select {
    font-size: 14px;
    padding: 8px 15px;
  }

  .res-item label {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

/* ===== RESPONSIVE: Mobile (<=768px) ===== */
@media (max-width: 768px) {
  .reservation-box {
    top: -50px;
    position: relative;
    margin: 0;
  }

  .reservation-container {
    flex-direction: column;
    padding: 10px;
    background: rgba(255, 255, 255, 0.8);
  }

  .res-item {
    width: 100%;
    padding: 10px;
    border-right: none;
  }

  .res-item.small {
    width: 100%;
  }

  .res-button button {
    width: 100%;
    padding: 15px 0;
    font-size: 18px;
  }

  .res-item input[type="date"],
  .res-item select {
    font-size: 14px;
    padding: 8px 15px;
  }

  .res-item label {
    font-size: 14px;
    margin-bottom: 10px;
  }
}




/* ===== GLANCE SECTION ===== */
.glance-section { 
  background: #f9fbfc; /* Light gray/white background matching room section */
  padding: 100px 5%;
  color: #222; /* Dark text for readability */
  position: relative;
  margin-top: -100px;
}

.glance-header {
  text-align: left;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.glance-intro {
  font-size: 1.1rem;
  color: #007BFF; /* Accent blue same as room section */
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: inline-block;
}

.glance-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #003B5C; /* Deep navy */
}

.glance-divider {
  width: 60px;
  height: 3px;
  background: #007BFF; /* Accent blue */
  border-radius: 2px;
  margin-top: 10px;
}

/* First Row: Half and Half Layout */
.glance-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.glance-text {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
  font-size: 20px;
  line-height: 1.8;
  color: #222; /* Dark text */
}

.glance-link {
  display: inline-block;
  margin-top: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #007BFF; /* Accent blue for links */
  text-decoration: none;
  border-bottom: 2px solid #003B5C; /* Deep navy underline */
  transition: all 0.3s ease;
}

.glance-link:hover {
  color: #003B5C;
  border-color: #007BFF;
}

.glance-image-wrapper {
  position: relative;
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  text-align: center;
}

/* Ensure iframe is responsive */
.glance-image-wrapper iframe {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* subtle shadow */
}

/* Second Row: Full Width Content */
.glance-content.full-width {
  display: block;
}

.glance-text {
  max-width: 100%;
  font-size: 20px;
  line-height: 1.8;
  color: #222;
}

/* Read More Section */
.read-more-section {
  display: none;
  margin-top: 20px;
  animation: fadeIn 0.5s ease-in-out;
}

.read-more-section h3 {
  margin-top: 15px;
  font-size: 1.5rem;
  color: #003B5C; /* Deep navy */
  font-weight: 700;
}

.read-more-section ul {
  padding-left: 20px;
  margin-top: 10px;
}

.read-more-section ul li {
  margin-bottom: 8px;
  color: #222;
  font-size: 1rem;
}

/* Category Topics */
.category-topics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.category-item {
  background-color: #ffffff; /* White cards matching room section */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.category-item:hover {
  background-color: #f0f4f8; /* Slight light blue hover */
  transform: translateY(-5px);
}

.category-item h4 {
  font-size: 1.25rem;
  color: #003B5C; /* Dark navy */
  margin-bottom: 10px;
}

.category-item p {
  font-size: 1rem;
  color: #222;
  line-height: 1.6;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .category-topics {
    grid-template-columns: 1fr;
  }
  .glance-content {
    flex-direction: column;
    gap: 20px;
  }
  .glance-image-wrapper {
    max-width: 100%;
  }
  .glance-text {
    text-align: left;
  }
  .glance-title {
    font-size: 2.2rem;
  }
}

/* ===== GLANCE SECTION ANIMATION ===== */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animate entire section */
.glance-section {
  animation: fadeSlideUp 2s ease forwards;
}

/* Animate header */
.glance-header {
  opacity: 0;
  animation: fadeSlideUp 2s ease forwards;
  animation-delay: 0.7s;
}

/* Animate intro and title */
.glance-intro {
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards;
  animation-delay: 0.3s;
}

.glance-title {
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards;
  animation-delay: 0.4s;
}

.glance-divider {
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards;
  animation-delay: 0.5s;
}

/* Animate content row */
.glance-content {
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards;
  animation-delay: 0.6s;
}

/* Animate image */
.glance-image-wrapper {
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards;
  animation-delay: 0.7s;
}

/* Animate category items individually */
.category-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.8s ease forwards;
}

/* Stagger animation delays for category items */
.category-item:nth-child(1) { animation-delay: 0.8s; }
.category-item:nth-child(2) { animation-delay: 0.9s; }
.category-item:nth-child(3) { animation-delay: 1s; }
.category-item:nth-child(4) { animation-delay: 1.1s; }

/* Keep hover effect intact */
.category-item:hover {
  
  transform: translateY(-5px);
}

/* Section Styling */
.amenities-section {
  padding: 70px 20px;
  background: transparent; /* keep transparent for texture */
  color: #fff;
  text-align: center;
 border: 2px solid rgba(255,255,255,0.3);
 
}

/* Title Styling */
.section-title h2 {
  font-size: 40px;
  margin-bottom: 50px;
  color: #fff; /* Deep Navy Blue */
  font-weight: 700;
  text-transform: uppercase;
}

/* Grid Layout */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Amenity Cards with Frosted Glass Effect */
.amenity-card {
  background: rgba(0, 59, 92, 0.75); /* Semi-transparent dark blue */
  backdrop-filter: blur(10px); /* Frosted glass blur */
  border-radius:100px 1px;
  padding: 30px 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  color: #fff;
}

.amenity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Icon Wrapper */
.icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.4s ease;
}

/* Faded Icon */
.faded-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 60px;
  color: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Solid Icon */
.solid-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 40px;
  color: #fff;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* Amenity Text */
.amenity-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 500;
}

.amenity-card p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}

/* Hover Icon Effect */
.amenity-card:hover .solid-icon {
  transform: translate(-50%, -55%) scale(1.1);
}

.amenity-card:hover .faded-icon {
  opacity: 0.3;
}
/* ===== AMENITIES SECTION ANIMATION ===== */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animate entire section */
.amenities-section {
  animation: fadeSlideUp 0.8s ease forwards;
}

/* Animate section title */
.section-title h2 {
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

/* Animate each amenity card individually */
.amenity-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.8s ease forwards;
}

/* Stagger animation delays for the cards */
.amenity-card:nth-child(1) { animation-delay: 0.4s; }
.amenity-card:nth-child(2) { animation-delay: 0.5s; }
.amenity-card:nth-child(3) { animation-delay: 0.6s; }
.amenity-card:nth-child(4) { animation-delay: 0.7s; }
.amenity-card:nth-child(5) { animation-delay: 0.8s; }
.amenity-card:nth-child(6) { animation-delay: 0.9s; }

/* Hover effect remains intact */
.amenity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.amenity-card:hover .solid-icon {
  transform: translate(-50%, -55%) scale(1.1);
}

.amenity-card:hover .faded-icon {
  opacity: 0.3;
}

.room-slider-title-block {
  text-align: center;
  margin-bottom: 40px;
}

.room-slider-title {
  font-size: 40px;
  font-weight: 700;
  color: #003B5C; /* Dark Navy Blue */
  letter-spacing: 1px;
  text-transform: uppercase;
}

.room-slider-section {
  position: relative;
  background: #f0f4f7; /* Soft light blue background */
  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; /* White card background */
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 59, 92, 0.15); /* Soft navy shadow */
  transition: all 0.4s ease;
}

.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 #B2D8D8; /* Light blue stroke */
  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, #006F8E, #005F7C, #3399CC, #99CCFF); /* Blue gradient */
  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, 59, 92, 0.08); /* Navy shadow */
}

.corner-thumb-img {
  position: absolute;
  bottom: -30px;
  left: 240px;
  width: 240px;
  border-radius: 12px;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 59, 92, 0.15);
  z-index: 2;
  background: #ffffff;
}

.room-info {
  flex: 1;
  min-width: 320px;
  padding: 30px;
  background: #E6F0F5; /* Light blue card */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 59, 92, 0.05);
}

.room-info h2 {
  font-size: 32px;
  color: #003B5C; /* Navy blue heading */
  margin-bottom: 12px;
}

.room-info .price {
  font-size: 24px;
  color: #006F8E; /* Medium blue price */
  font-weight: bold;
  margin-bottom: 18px;
}

.room-features {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  color: #005F7C; /* Navy blue features */
  margin-bottom: 20px;
}

.room-features li {
  font-size: 17px;
}

.room-desc {
  font-size: 18px;
  color: #333; /* Dark grey text */
  margin-bottom: 20px;
  line-height: 1.6;
}

.book-btn {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: #003B5C; /* Navy button text */
  border: 2px solid #003B5C;
  border-radius: 6px;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.3s ease;
  text-decoration:none;
}

.book-btn:hover {
  background: #003B5C;
  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; -webkit-text-stroke: 1px #B2D8D8; }
  .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 #B2D8D8; }
  .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; }
}




.attraction-title-block {
  text-align: center;
  padding: 40px 20px;
  color: #003B5C; /* Dark Navy Blue */
}

.attraction-section-title { 
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: none; /* Normal capitalization for simplicity */
  color: #fff; /* Light Blue Title */
}

.attraction-subtitle {
  font-size: 18px;
  color: #fff; /* Light Blue Accent */
  margin-top: 4px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: none;
}

/* Section Background */
.attraction-highlight {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

/* Background Image */
.attraction-bg {
  background-image: url('../images/new/exterior.webp');
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
  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 Columns */
.attraction-row {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 40px 15px;
  color: #B2D8D8; /* Light Blue Text */
  cursor: pointer;
  position: relative;
  text-align: center;
  transition: background 0.3s ease, transform 0.3s ease;
  border-radius: 10px;
}

/* Vertical divider lines */
.attraction-row:not(:first-child)::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 0;
  width: 1px;
  background-color: rgba(178, 216, 216, 0.2); /* Light blue divider */
  z-index: 0;
}

.attraction-row:hover {
  background: rgba(0, 59, 92, 0.6); /* Darker overlay on hover */
  transform: translateY(-5px);
}

/* Type Text */
.attraction-row .type {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 6px;
  text-transform: uppercase;
  opacity: 0.85;
  color: #A1C6C6; /* Light Blue Accent */
}

/* Attraction Name */
.attraction-row h3 {
  font-size: 22px;
  font-weight: bold;
  color: #ffffff; /* White for better contrast */
}

/* Mobile/Tablet Responsive */
@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;
  }

  .attraction-overlay {
    flex-direction: column;
    height: auto;
  }

  .attraction-row {
    padding: 30px 20px;
    border-top: 1px solid rgba(178, 216, 216, 0.2);
    border-bottom: 1px solid rgba(178, 216, 216, 0.2);
    transform: none !important;
  }

  .attraction-row:hover {
    background: rgba(0, 59, 92, 0.6);
  }

  .attraction-row:not(:first-child)::before {
    display: none;
  }

  .attraction-row .type {
    font-size: 12px;
    color: #A1C6C6;
  }

  .attraction-row h3 {
    font-size: 18px;
  }
}


.gallery-section {
  padding: 40px 8%;
 background: #f0f4f7; /* Soft light blue background */
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.gallery-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #003B5C; /* Dark Navy Blue */
}

.gallery-header p {
  font-size: 18px;
  color: #005B7F; /* Medium Blue */
  max-width: 1250px;
  line-height: 1.6;
}

.gallery-controls {
  display: flex;
  align-items: center;
  gap: 25px;
}

.gallery-arrows {
  display: flex;
  gap: 12px;
}

.gallery-prev,
.gallery-next {
  cursor: pointer;
  font-size: 20px;
  color: #fff;
  background: #003B5C; /* Dark Navy */
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.gallery-prev:hover,
.gallery-next:hover {
  background: #005B7F; /* Medium blue on hover */
}

/* Main gallery images */
.swiper-slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.4s ease;
 
}

.swiper-slide:hover img {
  transform: scale(1.05);
 
}

/* Lightbox modal */
.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.lightbox.active {
  display: flex;
}

.lightbox .swiper {
  width: 90%;
  max-width: 1000px;
}

.lightbox img {
  width: 100%;
  height: 100vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
  transition: 0.3s;
}

.lightbox-close:hover {
  color: #003B5C;
}

/* Wrapper for gallery image */
.gallery-image {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-image:hover img {
  transform: scale(1.05);
}

/* Overlay for zoom icon */
.gallery-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
 
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
}

.gallery-image:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay em {
  font-size: 28px;
  color: #fff;
  background: #005B7F; /* Medium Blue */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Footer Section */
.aligned-footer {
    background: #f4f7f6; /* Light grey background */
    color: #2c3e50; /* Dark grey text */
    padding: 40px 5%;
    position: relative;
    overflow: hidden;
    border-top: 2px solid #3c8baa; /* Soft gold border */
   
}

/* Top Row: Logo and Social Media */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-logo-wrapper {
    flex: 1;
    text-align: left;
    margin-bottom: 20px;
    z-index: 5;
}

.footer-logo-wrapper img {
    max-width: 150px;
    height: auto;
}

/* Social Media Icons */
.footer-social-icons {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3c8baa; /* Soft gold background */
    border-radius: 50%;
    font-size: 1.2rem;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.footer-social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Footer Content */
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    text-align: left;
}

.footer-contact,
.footer-links,
.footer-follow {
    flex: 1;
    min-width: 250px;
}

/* Section Titles */
.footer-contact h4,
.footer-links h4,
.footer-follow h4,
.footer-section-heading {
    font-size: 22px;
    color: #2c3e50; /* Dark grey text */
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 2px solid #3c8baa; /* Soft gold underline */
    padding-bottom: 6px;
}

.footer-section-heading a {
    text-decoration: none;
    color: inherit;
}

/* Contact Info */
.footer-contact p,
.footer-contact span {
    font-size: 20px;
    color: #2c3e50; /* Dark grey text */
	
}

.cgsl {
    color: #2c3e50;
    font-weight: 400;
    text-decoration: none;
	
}

.cgsl:hover {
    color: #3c8baa; /* Soft gold color on hover */
    text-decoration: none;
}

.cgs2 {
    font-size: 22px;
    color: #2c3e50;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 2px solid #3c8baa; /* Soft gold underline */
    padding-bottom: 6px;
    text-decoration: none;
}

/* Quick Links */
.footer-links ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.footer-links ul li a {
    color: #555;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #3c8baa; /* Soft gold on hover */
    font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(255, 255, 255, 0.6); /* Semi-transparent background */
    padding: 20px 0;
    margin-top: 30px;
    color: #2c3e50; /* Dark grey text */
    text-align: center;
    font-size: 15px;
    border-top: 1px solid #3c8baa; /* Soft gold border */
}

.footer-bottom a {
    color: #3c8baa; /* Soft gold color for links */
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
    color: #D62828; /* Dark red on hover */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-social-icons {
        justify-content: center;
        margin-top: 15px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-contact,
    .footer-links,
    .footer-follow {
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-links ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .footer-links ul li a {
        font-size: 18px;
    }
}
/* Inner Page Hero Section */
.inner-page-hero {
  position: relative;
  width: 100%;
  height: 80vh; /* Full viewport height */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-align: center;
}

/* Overlay */
.inner-page-hero::before {
     content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 59, 92, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

/* Hero Content */
.hero-content {
  z-index: 2;
  padding: 20px;
  max-width: 900px;
}

/* Hero Heading */
.inner-page-hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  margin-top: 50px;
  color: #ffffff;
  text-transform: uppercase;
}

/* Hero Subheading */
.inner-page-hero h5 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 30px;
  color: #76d9ff; /* Slightly lighter for better contrast */
}

/* Book Now Button */
.inner-page-book-btn {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: #fff; /* Navy button text */
  border: 2px solid #76d9ff;
  border-radius: 6px;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.3s ease;
  text-decoration:none;
}

.inner-page-book-btn:hover {
  background: #003B5C;
  color: #fff;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .inner-page-hero {
    height: 50vh; /* Adjust height on smaller screens */
  }

  .inner-page-hero h1 {
    font-size: 2rem;
    text-align: center;
  }

  .inner-page-hero h5 {
    font-size: 16px;
    text-align: center;
  }

  .hero-content {
    padding: 20px;
  }
}
/* Luxury Amenities Section */
.luxury-amenities-section {
  padding: 100px 5% 100px;
  background: rgba(0, 0, 0, 0.5); /* Soft black transparent overlay */

  text-align: center;
  position: relative;
  backdrop-filter: blur(5px); /* Slight blur for readability */
  -webkit-backdrop-filter: blur(5px);
  border-radius: 0; /* Optional: remove if section needs to be soft-edged */
  margin-top:-100px;
}

/* Section Title */
.luxury-section-title h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.luxury-section-title p {
  font-size: 18px;
  color: #76d9ff;
  margin-bottom: 50px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* GRID */
.luxury-amenities-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

/* Amenity Card */
.luxury-amenity-card {
  flex: 2 1 250px;
  max-width: 280px;
  text-align: center;
  padding: 30px;
  border-radius: 120px 1px;
  background: rgba(255, 255, 255, 0.9); /* Soft white card with transparency */
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease-out;
}

.luxury-amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.luxury-amenity-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #003366;
  margin-bottom: 10px;
}

.luxury-amenity-card p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

/* Icon Circle */
.luxury-icon-background {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #003366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  border-radius: 1px 50px;
  transition: all 0.3s ease-out;
}

.luxury-icon-background:hover {
  background: #3788a8;
  color: #003366;
}

/* Responsive */
@media (max-width: 768px) {
  .luxury-amenities-grid {
    justify-content: center;
  }

  .luxury-amenity-card {
    max-width: 320px;
    margin-bottom: 40px;
  }

  .luxury-section-title h2 {
    font-size: 32px;
  }
}
/* Full Facilities Section */
.full-facilities-section {
  padding: 100px 5% 100px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  z-index: 1;
}

/* Full Facilities Container */
.full-facilities-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Heading */
.full-facilities-heading {
  text-align: center;
  font-size: 48px;
  font-weight: 900;
  color: #002244;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Gradient Divider */
.facilities-divider {
  width: 120px;
  height: 4px;
  margin: 20px auto 50px;
  background: linear-gradient(to right, #003366, #00bcd4);
  border-radius: 2px;
}

/* Grid Layout */
.facility-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  z-index: 2;
}

/* Facility Card */
.facility-category {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  padding: 30px 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.facility-category::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0, 60, 100, 0.05), transparent 70%);
  z-index: 0;
}

.facility-category:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* Card Title */
.facility-category h3 {
  font-size: 26px;
  font-weight: 800;
  color: #00309f;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

/* List */
.facility-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.facility-category ul li {
  font-size: 17px;
  color: #222;
  padding-left: 50px;
  position: relative;
  margin-bottom: 16px;
  line-height: 1.6;
  font-weight: 500;
}

/* Icon Badge Bullet */
.facility-category ul li::before {
  content: "\f00c"; /* Font Awesome check */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  background: linear-gradient(to bottom right, #00bcd4, #00309f);
  color: white;
  font-size: 14px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 2px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .full-facilities-heading {
    font-size: 32px;
  }

  .facility-category h3 {
    font-size: 20px;
  }

  .facility-category ul li {
    font-size: 15px;
  }
}

/* Unified Things to Do Section */
.things-to-do-section {
  padding: 90px 20px;
  background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,30,60,0.8)); /* Dark gradient overlay */
  position: relative;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-align: center;
  margin-top: -100px;
}

/* Container */
.things-to-do-section .container {
  max-width: 1140px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* Header */
.things-header {
  margin-bottom: 60px;
}

.things-title-main {
  font-size: 42px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
}

.things-description {
  font-size: 18px;
  color: #aadfff;
  max-width: 1300px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Section headers */
.things-title {
  font-size: 26px;
  color: #fff;
  margin: 40px 0 20px;
  font-weight: bold;
  text-align: left;
  border-left: 6px solid #00bcd4; /* Bright accent line */
  padding-left: 12px;
  text-transform: uppercase;
}

/* Grid */
.things-grid.two-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

/* Cards */
.thing-card {
  background: rgba(255,255,255,0.9);
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: all 0.35s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}

/* Hover effect */
.thing-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
  border-left: 6px solid #00bcd4;
}

/* Card title */
.thing-card h4 {
  font-size: 20px;
  color: #002b5c;
  margin-bottom: 6px;
  font-weight: 700;
}

/* Card text */
.thing-card p {
  color: #444;
  font-size: 15px;
  margin: 0;
}

/* Decorative icon circle (optional for each card) */
.thing-card::before {
  content: "★";
  position: absolute;
  top: 2px;
  right: 2px;
  background: #00bcd4;
  color: #fff;
  font-size: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .things-title-main {
    font-size: 28px;
  }
  .things-title {
    font-size: 20px;
    text-align: center;
  }
}
/* Location Section Alt */
.location-section-alt {
 padding: 90px 20px;
  background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,30,60,0.8)); /* Dark gradient overlay */
  position: relative;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
 
  margin-top: -100px;
}

.location-wrapper-alt {
  max-width: 1250px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
}

/* Left Side Info */
.location-info-alt {
  flex: 1;
  min-width: 320px;
}

.location-title {
  font-size: 40px;
  font-weight: 700;
  color: #fff; /* Dark blue for title */
  margin-bottom: 15px;
  position: relative;
}

.location-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #3788a8; /* Gold underline */
  margin-top: 15px;
  border-radius: 2px;
}

.location-description {
  font-size: 18px;
  color: #fff; /* Neutral text */
  margin-bottom: 30px;
  line-height: 1.6;
}

.location-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  gap: 15px;
  border: 2px solid;
  border-image: linear-gradient(to right, #3788a8, #003366) 1; /* Gold to Blue gradient */
  transition: all 0.3s ease;
  
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.info-card i {
  font-size: 22px;
  color: #003366; /* Dark blue icons */
  margin-top: 5px;
}

.info-card h4 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #003366; /* Blue headings */
}

.info-card p {
  font-size: 17px;
  color: #333; /* Dark gray details */
  line-height: 1.4;
}

/* Right Side Map */
.location-map-alt {
  flex: 1.3;
  min-height: 400px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

/* Floating Form */
.route-form-overlay {
  position: absolute;
  bottom: 20px;
  right: 30px;
  background: rgba(255, 255, 255, 0.95); /* Light transparent form */
  color: #333;
  padding: 20px;
  border-radius: 12px;
  max-width: 600px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  border: 2px solid;
  border-image: linear-gradient(to right, #3788a8, #003366) 1; /* Gold + Blue */
}

.route-form-overlay h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #003366; /* Dark blue title */
}

.route-form-overlay form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
}

.route-form-overlay form button {
  width: 100%;
  padding: 12px;
  background: #003366; /* Dark blue button */
  color: #fff;
  border: none;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.route-form-overlay form button:hover {
  background:#3788a8; /* Gold hover */
  color: #fff; /* Invert text for readability */
}

/* Responsive */
@media (max-width: 992px) {
  .location-wrapper-alt {
    flex-direction: column;
  }

  .location-map-alt {
    height: 350px;
  }

  .route-form-overlay {
    position: static;
    margin-top: 20px;
    max-width: 100%;
  }
}
/* === Contact Section === */
.contact-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,30,60,0.8)); /* Dark gradient overlay */
  position: relative;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-align: center;
  margin-top:-100px;
}

/* Wrapper */
.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.contact-header {
  margin-bottom: 70px;
}

.contact-title {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.contact-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #3788a8, #00bcd4);
  margin: 12px auto 0;
  border-radius: 2px;
}

.contact-description {
  font-size: 19px;
  color: #aadfff;
  max-width: 1300px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

/* Cards */
.contact-card {
  padding: 40px 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08); /* Glass effect */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  border: 2px solid transparent;
  border-image: linear-gradient(90deg, #3788a8, #00bcd4) 1;
}

/* Icon Circle */
.contact-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3788a8, #00bcd4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 38px;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

/* Card Title */
.contact-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

/* Card Text */
.contact-card p {
  font-size: 18px;
  color: #dfe9f3;
  line-height: 1.6;
}

/* Links inside cards */
.contact-card a {
  color: #00bcd4;
  font-weight: 600;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-title {
    font-size: 32px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-card {
    padding: 30px 20px;
  }
}
/* 🌐 Sitemap Section */
.sitemap-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,30,60,0.8)); /* Dark gradient overlay */
  position: relative;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-align: center;
  color: #fff; /* White text */
  z-index: 1;
  margin-top:-100px;
}

.sitemap-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sitemap-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff; /* White title */
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.sitemap-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #3788a8, #00bcd4);
  margin: 15px auto 0;
  border-radius: 2px;
}

.sitemap-subtitle {
  font-size: 18px;
  max-width: 1300px;
  margin: 0 auto 60px;
  color: #aadfff; /* Light cyan for subtitle */
  line-height: 1.7;
}

/* Sitemap Grid */
.sitemap-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* Block Styling */
.sitemap-block {
  background: rgba(255, 255, 255, 0.08); /* Glass effect */
  color: #fff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  text-align: left;
  border: 2px solid rgba(255,255,255,0.15);
}

.sitemap-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.5);
  border: 2px solid transparent;
  border-image: linear-gradient(to right, #3788a8, #00bcd4) 1;
}

.sitemap-block h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #3788a8; /* Gold headings */
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sitemap-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-block ul li {
  margin-bottom: 14px;
}

.sitemap-block ul li a {
  font-size: 18px;
  text-decoration: none;
  color: #aadfff; /* Light cyan for links */
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.sitemap-block ul li a:hover {
  color: #3788a8; /* Gold hover */
}

.sitemap-block ul li a i {
  color: #00bcd4; /* Cyan icons */
  font-size: 16px;
}

/* 📱 Responsive */
@media (max-width: 992px) {
  .sitemap-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .sitemap-links {
    grid-template-columns: 1fr;
  }
}
/* === FAQ Section - Hotel Blue Baytown === */
.faq-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,30,60,0.8)); /* Dark gradient overlay */
  position: relative;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-align: center;
  color: #fff; /* Default text color */
  margin-top:-100px;
}

.faq-container {
  max-width: 1100px;
  margin: 0 auto;
}

.faq-title {
  font-size: 42px;
  font-weight: 800;
  color: #fff; /* White title */
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.faq-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #3788a8; /* Accent underline */
  margin: 12px auto 0;
  border-radius: 2px;
}

.faq-subtitle {
  font-size: 18px;
  color: #aadfff; /* Soft blue subtitle */
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: left;
}

.faq-item {
  background: rgba(255, 255, 255, 0.08); /* Glass card effect */
  color: #e0e0e0;
  padding: 25px 30px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 2px solid rgba(255,255,255,0.1);
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid #3788a8;
}

.faq-item h2 {
  font-size: 23px;
  font-weight: 600;
  color: #aadfff; /* Light blue headings */
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 17px;
  line-height: 1.7;
  color: #f0f0f0; /* Softer light text */
}

.faq-item a {
  color: #aadfff; /* Accent blue links */
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.faq-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #3788a8; /* Blue underline */
  transition: width 0.3s ease;
}

.faq-item a:hover::after {
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-title {
    font-size: 30px;
  }
  .faq-subtitle {
    font-size: 15px;
  }
  .faq-item h2 {
    font-size: 18px;
  }
  .faq-item p {
    font-size: 14px;
  }
}
/* Container */
#backToTop{
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
  cursor: pointer; z-index: 999;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, box-shadow .3s ease;
  animation: float 3s ease-in-out infinite; /* floating animation */
  background: #0f1f2f0d; /* subtle to match hero overlay */
  box-shadow: 0 6px 20px rgba(212,175,55,.25);
}

/* Floating Animation */
@keyframes float{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-8px); }
}

/* Visible State */
#backToTop.show{ opacity:1; pointer-events:auto; }

/* Progress ring */
.progress-ring__bg{
  fill:none; stroke: rgba(255,255,255,.18); stroke-width:5;
}
.progress-ring__circle{
  fill:none; stroke:#aadfff; /* gold */
  stroke-width:5; stroke-linecap:round;
  stroke-dasharray:164; stroke-dashoffset:164;
  transform: rotate(-90deg); transform-origin:50% 50%;
  transition: stroke-dashoffset .25s linear;
}

/* Center arrow */
.arrow-up{
  position:absolute;
  width:26px; height:26px;
  color:#3788a8;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
  transition: transform .25s ease, color .25s ease;
}

/* Hover/active feedback */
#backToTop:hover{
  box-shadow: 0 10px 28px rgba(212,175,55,.45);
}
#backToTop:hover .arrow-up{
  transform: translateY(-2px);
  color:#000;
}

/* Optional: prefers-reduced-motion */
@media (prefers-reduced-motion: reduce){
  #backToTop{ animation:none; }
  .progress-ring__circle{ transition:none; }
}
/* === Assistance Bar (Soft Blue Background + Navy Border) === */
.dl-assistance-bar {
  background-color: #f9fbfc; /* Light bluish-white background */
  color: #0f1f2f; /* Navy text for readability */
  text-align: center;
  padding: 14px 20px;
  font-size: 17px;
  font-weight: 500;
  border-top: 1px solid #1a3a6b; /* Solid navy-blue border */
  border-bottom: 1px solid #1a3a6b; /* Solid navy-blue border */
  
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
  position: relative;
}

.dl-assistance-bar p {
  margin: 0;
  line-height: 1.6;
}

.dl-assistance-bar a {
  color: #1a3a6b; /* Medium blue link */
  font-weight: 700;
  text-decoration: none;
  margin-left: 5px;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.dl-assistance-bar a:hover {
  color: #D4AF37; /* Gold hover accent */
  text-decoration: underline;
}

.dl-assistance-bar i {
  margin-right: 6px;
  color: #1a3a6b; /* Matches link tone */
}

/* Attraction Section */
.attraction-wrap {
  padding: 100px 20px;
  background-color: #f9fafb; /* Lighter gray/white background for a softer look */
  border-top: 1px solid #e0e0e0; /* Soft light border for separation */
margin-top:-100px;
}

.attraction-box {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  gap: 40px;
}

.attraction-image {
  flex: 1 1 400px;
}

.attraction-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12); /* Slightly softer shadow for a subtle effect */
}

.attraction-content {
  flex: 1 1 600px;
}

.attraction-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #003b5c; /* Deep blue title color to match your logo */
  margin-bottom: 20px;
}

.attraction-content p {
  font-size: 1rem;
  color: #333333; /* Darker gray for readability */
  line-height: 1.7;
  margin-bottom: 15px;
}

.attraction-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #3788a8; /* Blue for the primary button (matches the header) */
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.attraction-btn:hover {
  background-color: #00e5a0; /* Lighter greenish-blue for hover effect */
}

/* Optional: Button active state (when clicked) */
.attraction-btn:active {
  background-color: #005f87; /* Darker shade when the button is pressed */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
