﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Rubik:wght@400;500;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* General Styles */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #fff; /* Light background for a clean feel */
  color: #1A1A1A; /* Dark Grey for text to ensure good readability */
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
 font-family: 'Montserrat', sans-serif;
  font-weight: 600; /* Slightly lighter for headings */
  color: #003B5C; /* Deep Blue for headings */
  font-size: 70%; margin: 0, ;
}

/* ========== Topbar ========== */
.topbar {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 8px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  color: #fff;
  font-size: 16px;
  z-index: 999;
}

.topbar a {
  color: #fff;
  margin-right: 15px;
  text-decoration: none;
  transition: color 0.3s;
}

.topbar a:hover {
  color: #FFB74D; /* warm gold highlight */
}

.topbar-right span {
  margin-left: 20px;
  display: inline-block;
}

.topbar em {
  margin-right: 6px;
}
/* Regular Active */
.main-menu li a.active {
  color: #00A17A;
  font-weight: bold;
  position: relative;
}
.main-menu li a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #00A17A;
}

/* Sticky Active */
.sticky-menu li a.sticky-active {
  color: #FFD700;
  font-weight: bold;
  position: relative;
}
.sticky-menu li a.sticky-active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #FFD700;
}


/* Responsive Topbar Fix */
@media screen and (max-width: 991px) {
   .topbar {
    position: relative;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
    gap: 8px;
    background-color: #002366; /* ✅ Keep dark background */
    color: #fff;
  }

  .topbar a {
    color: #fff;
  }
  .topbar-left {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
	
  }

  .topbar-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
  }

  .topbar-right span {
    margin: 0;
    font-size: 16px;
	
  }

  .topbar::after {
    content: "";
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin-top: 8px;
  }
}

/* Transparent Header - Screenshot Inspired */
.main-header.transparent-header {
  position: absolute;
  top: 20px;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: transparent;
  font-family: 'Montserrat', sans-serif;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 100px;
  width: auto;
}

.header-center .main-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.header-center .main-menu li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-center .main-menu li a:hover {
  color: #FFB74D;
}

.header-right {
  display: flex;
  align-items: center;
  color: #00e5a0; /* headset green */
  font-size: 15px;
  font-weight: 600;
  gap: 10px;
}

.header-right i {
  font-size: 30px;
}


.header-right a {
  color: #00e5a0;
  text-decoration: none;
  font-weight: 400;
  font-size: 25px;
}

.header-right a:hover {
  color: #FFB74D;
}
.main-menu li {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;   /* ✅ attach right below the parent link */
  left: 0;
  background: rgba(0, 0, 0, 0.85);
  padding: 10px 0;
  list-style: none;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  min-width: 200px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown-menu li {
  padding: 8px 20px;
}

.dropdown-menu li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  display: block;
  transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-menu li a:hover {
 color: #fff;
  border-radius: 4px;
}

/* ✅ Keep dropdown open when hovering over it */
.dropdown:hover .dropdown-menu {
  display: block;
    opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Sticky Header - Separate Styling */
.sticky-header {
  position: fixed;
  top: -100px;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  z-index: 999;
  transition: top 0.4s ease-in-out;
  font-family: 'Montserrat', sans-serif;
  padding: 15px 0;
}

.sticky-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sticky-logo {
  height: 60px;
  width: auto;
}

.sticky-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.sticky-menu li a {
  text-decoration: none;
  color: #2F5D9D;
  font-weight: 500;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.sticky-menu li a:hover {
  color: #FFB74D;
}

.sticky-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-right i {
  color: #2F5D9D;
  font-size: 30px;
}

.sticky-right a {
  color: #2F5D9D;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
}

.sticky-right a:hover {
  color: #FFB74D;
}

/* --- Dropdown for Sticky Header --- */
.sticky-menu li {
  position: relative;
}

.sticky-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;  /* attaches directly below Things To Do link */
  left: 0;
  background: rgba(47, 93, 157, 0.95);
  padding: 10px 0;
  list-style: none;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  z-index: 1000;

  /* Optional: Smooth dropdown animation */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-dropdown-menu li {
  padding: 8px 20px;
}

.sticky-dropdown-menu li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  display: block;
  transition: all 0.3s ease;
}

/* Hover Effects */
.sticky-dropdown-menu li a:hover {
 
  color: #FFB74D;
  border-radius: 4px;
  padding-left: 25px; /* slight hover slide */
}

/* ✅ Show dropdown on hover */
.sticky-dropdown:hover .sticky-dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  position: absolute;
  top: 25px;
  right: 25px;
  background: none;
  border: none;
  font-size: 30px;
  color: #3366a6;
  z-index: 1001;
}

/* Slide-in Mobile Menu (Left - Brand Styled) */
.mobile-menu-left {
  position: fixed;
  top: 0;
  left: -100%;
  width: 70%;
  max-width: 360px;
  height: 100vh;
  background: 
  linear-gradient(to bottom, rgba(47, 93, 157, 0.85), rgba(44, 106, 170, 0.9)),
  url('../images/new/sketch.png') no-repeat;
background-size: cover;
background-position: 7% center; /* move image left or right */

  color: #fff;
  z-index: 1000;
  transition: left 0.4s ease;
  box-shadow: 4px 0 12px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.mobile-menu-left.open {
  left: 0;
}

.mobile-menu-inner {
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

/* Logo + Close */
.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.mobile-header img {
  height: 90px;
}

.mobile-close {
  background: none;
  border: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

/* Navigation List */
.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.mobile-nav li {
  margin: 40px 0;
}

.mobile-nav li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.mobile-nav li a span {
  font-size: 20px;
  color: #FFB74D;
}

.mobile-nav li a:hover {
  color: #FFB74D;
}

/* CTA Section */
.mobile-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 15px;
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.book-btn {
  background: #FFB74D;
  padding: 14px;
  border-radius: 30px;
  color: #2F5D9D;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s;
}

.book-btn:hover {
  background: #ffc769;
}

.mobile-phone {
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.mobile-phone i {
  margin-right: 8px;
  color: #FFB74D;
}
/* Mobile Dropdown */
.mobile-dropdown {
  position: relative;
}

.mobile-dropdown-menu {
  display: none;
  list-style: none;
  padding-left: 20px;
  margin-top: 10px;
  border-left: 2px solid rgba(255, 255, 255, 0.2);

 
  border-radius: 6px;
}

/* Show dropdown on hover */
.mobile-dropdown:hover .mobile-dropdown-menu {
  display: block;
}

.mobile-dropdown-menu li {
  margin: 15px 0;
}

.mobile-dropdown-menu li a {
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-dropdown-menu li a:hover {
  color: #FFB74D;
}

/* Optional: rotate chevron icon on hover */
.mobile-dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
  transition: transform 0.3s;
}

/* Responsive Trigger */
@media (max-width: 1024px) {
  .mobile-toggle {
    display: block;
  }

  .main-header nav,
  .header-right,
  .sticky-header nav,
  .sticky-right {
    display: none !important;
  }
}

@media (max-width: 1024px) {
	
  .mobile-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 120px;
    z-index: 1001;
    font-size: 26px;
    background: none;
    border: none;
   
  }
.sticky-header {
  display: none !important;
}

  .main-header .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
	margin-top:60px;
	background:#fff;
  }

  .logo-img {
    height: 60px; /* smaller for mobile */
  }

  .header-center,
  .header-right {
    display: none;
  }

  .sticky-header .sticky-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }

  .sticky-logo {
    height: 50px;
  }

  .sticky-center,
  .sticky-right {
    display: none;
  }
}

/* ========== Hero Slider ========== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #002366; /* deep navy blue background */
  font-family: 'Montserrat', sans-serif;
}

/* Overlay Text Wrapper */
.hero-overlay {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 8%;
  background: rgba(0, 0, 0, 0.3);
}

/* Hero Text Container */
.hero-content {
  color: #fff;
  max-width: 1250px;
  padding: 40px;
  border-radius: 20px;
}

/* Title */
.hero-content h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

/* Description */
.hero-content p {
  font-size: 20px;
  margin: 20px 0 30px;
  color: #f0f0f0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Call To Action Button */
.hero-btn {
  background: #FDBE34; /* golden yellow */
  color: #002366; /* navy blue text */
  padding: 14px 36px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 20px rgba(253, 190, 52, 0.4);
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #ffffff;
  color: #002366;
  box-shadow: 0 4px 30px rgba(255, 255, 255, 0.3);
}

/* ========== Background Slides ========== */
.hero-images {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Gradient Overlay on Each Slide */
.slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45));
  z-index: 1;
}

/* Navigation Arrows */
@keyframes arrowPulseLeft {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(-8px); }
}
@keyframes arrowPulseRight {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(8px); }
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 50px;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.hero-slider:hover .nav {
  opacity: 1;
}

.nav.prev {
  left: 30px;
}
.nav.next {
  right: 30px;
}

.nav.prev:hover {
  animation: arrowPulseLeft 1s ease-in-out infinite;
}
.nav.next:hover {
  animation: arrowPulseRight 1s ease-in-out infinite;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .hero-slider {
    height: 50vh;
  }

  .hero-content {
    padding: 30px 25px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-overlay {
    padding-left: 0;
    justify-content: center;
  }

  .nav {
    padding: 10px 0px;
    font-size: 34px;
  }

  .hero-btn {
    padding: 10px 24px;
    font-size: 15px;
  }
}


/* Reservation Bar */
.reservation-bar {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 20px 0;
      background: rgb(206 222 234);
  z-index: 10;
}

.reservation-bar-form {
  background: linear-gradient(90deg, #f4f4f4 0%, #ffffff 100%); /* Light grey gradient */
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 18px 20px;
  max-width: 1400px;
  width: 95%;
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fields */
.field {
  display: flex;
  flex-direction: column;
  flex: 1 1 60px;
  min-width: 180px;
  margin: 0 10px;
}

.field label {
 font-family: 'Poppins', sans-serif; 
  font-weight: 600;
  color: #555; /* Dark grey for labels */
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.field input,
.field select {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #cedeea; /* Light grey border */
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Poppins', sans-serif; 
}

.field input:focus,
.field select:focus {
  border-color: #004B87; /* Deep Navy Blue on focus */
  box-shadow: 0 0 8px rgba(0, 51, 102, 0.3); /* Slight shadow effect */
  outline: none;
}

/* Button */
.reservation-bar-form button {
  background: #004B87; 
  color: #fff; /* White text */
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0, 51, 102, 0.3); /* Shadow with deep blue */
  transition: background 0.3s ease, transform 0.3s ease;
  
    margin-top: 17px;
}

.reservation-bar-form button:hover {
  background: #002643; /* Darker navy blue on hover */
  transform: translateY(-2px); /* Slight movement on hover */
}

.reservation-bar-form button i {
  margin-right: 8px;
}


/* Responsive */
@media (max-width: 1024px) {
  .reservation-bar-form {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .reservation-bar-form {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }

  .field {
    width: 100%;
    margin: 0 0 10px;
  }

  .reservation-bar-form button {
    width: 100%;
    margin-top: 8px;
  }
}

/* About Section */
.about-section {
  background: #fff; /* White background */
  padding: 60px 20px;
  width: 100%;
  text-align: center;
  color: #222; /* Dark text */
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #002643; /* Deep Navy Blue */
  margin: 0 0 30px 0;
}

.about-header h2 span {
  color: #8ea6b8; /* Gold accent for highlighted text */
}

.about-header p {
  max-width: 700px;
  margin: 10px auto 40px;
  font-size: 18px;
  color: #555; /* Softer gray for paragraph text */
}

.about-main {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
}

.about-text {
  flex: 1 1 500px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.1s;
}

.about-text h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: #002643; /* Deep Navy Blue for subheading */
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 16px;
  line-height: 1.6;
  color: #555; /* Softer gray for text */
  font-size: 18px;
}

.about-btn {
  display: inline-block;
  margin-top: 10px;
 background: #004b85; /* Lighter Navy Blue for button */
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.about-btn:hover {
  background: #002643; /* Darker navy on hover */
   color: #fff;
}

.about-images {
  flex: 1 1 400px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.about-images img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #ddd;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Individual image heights */
.about-images .img-one {
  height: 200px;
  margin-top: 50px;
  border-radius: 8px;
}

.about-images .img-two {
  height: 250px;
  border-radius: 8px;
}

.about-images .img-three {
  width: 200px;
  border-radius: 8px;
  margin-left: 50px;
}

.about-images .img-four {
  height: 220px;
  border-radius: 8px;
}

.more-about-text {
  display: none;
  margin-top: 20px;
  color: #555;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.about-main.expanded {
  justify-content: center;
}

.about-main.expanded .about-text {
  flex: 1 1 100%;
  max-width: 100%;
  text-align: left;
}

@media (max-width: 768px) {
  .about-main.expanded .about-text {
    text-align: center;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .about-main {
    flex-direction: column;
    text-align: center;
  }

  .about-text, .about-images {
    flex: 1 1 100%;
  }

  .about-text {
    text-align: center;
  }
}
@media (max-width: 850px) {
  .reservation-box {
    position: relative;
    z-index: 1000;
  }
  .about-section {
    margin-top: 30px;
  }
}

@media (min-width: 600px) and (max-width: 850px) {
  .about-section {
    margin-top: 10px;
  }
}
/* Individual image heights */
.about-images .img-one {
  height: 200px;
  margin-top: 50px;
  border-radius: 0px;
  animation: fadeInLeft 1s ease forwards;
  animation-delay: 0.2s;
}

.about-images .img-two {
  height: 250px;
  border-radius: 0px;
  animation: fadeInDown 1s ease forwards;
  animation-delay: 0.4s;
}

.about-images .img-three {
  width: 200px;
  border-radius: 0px;
  margin-left: 50px;
  animation: fadeInRight 1s ease forwards;
  animation-delay: 0.6s;
}

.about-images .img-four {
  height: 220px;
  border-radius: 0px;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.8s;
}
/* iPad and larger mobile screens (max-width: 1024px) */
@media (max-width: 1024px) {
  /* Individual image heights */
.about-images .img-one {
  height: 200px;
  margin-top: 50px;
  border-radius: 8px;
  animation: fadeInLeft 1s ease forwards;
  animation-delay: 0.2s;
}

.about-images .img-two {
  height: 250px;
  border-radius: 8px;
  animation: fadeInDown 1s ease forwards;
  animation-delay: 0.4s;
}

.about-images .img-three {
  width: 250px;
  border-radius: 8px;
  margin-left: 150px;
  animation: fadeInRight 1s ease forwards;
  animation-delay: 0.6s;
}

.about-images .img-four {
  height: 190px;
  border-radius: 8px;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.8s;
}
}
/* Mobile screens (max-width: 768px) */
@media (max-width: 768px) {
   /* Individual image heights */
.about-images .img-one {
  height: 100px;
  margin-top: 50px;
  border-radius: 8px;
  animation: fadeInLeft 1s ease forwards;
  animation-delay: 0.2s;
}

.about-images .img-two {
  height: 150px;

  border-radius: 8px;
  animation: fadeInDown 1s ease forwards;
  animation-delay: 0.4s;
}

.about-images .img-three {
  width: 130px;
  
  border-radius: 8px;
  margin-left: 100px;
  animation: fadeInRight 1s ease forwards;
  animation-delay: 0.6s;
}

.about-images .img-four {
  height: 100px;
  border-radius: 8px;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.8s;
}
}



@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Amenities Section */
.amenities-section {
  padding: 90px 20px;
  background: #ffffff; /* Light grey background */
  color: #222; /* Dark text */
  text-align: center;
   border-top: 1px solid #cedeea; /* Light grey border */
}

.amenities-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #002643; /* Deep Navy Blue */
}

.amenities-header h2 span {
  color: #8ea6b8; /* Light blue accent for span */
}

.amenities-header p {
  font-size: 18px;
  max-width: 700px;
  margin: 10px auto 40px;
  color: #555; /* Softer grey for paragraphs */
}

.amenities-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 40px;
}

.amenity-item {
  background: #ffffff; /* White background for clean look */
  border: 1px solid #cedeea; /* Light grey border for card */
  padding: 20px;
  border-radius: 12px;
  width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.amenity-item i {
  font-size: 32px;
  margin-bottom: 12px;
  color: #004b85; /* Lighter Navy Blue for icons */
}

.amenity-item h4 {
  font-size: 18px;
  color: #222; /* Dark text for titles */
}

.amenity-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1); /* Slight shadow on hover */
}

/* Button */
.amenities-btn {
  background: #004b85; /* Lighter Navy Blue for button */
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease;
}
.amenities-btn:hover {
  background: #002643; /* Darker navy on hover */
  color: #fff;
}



@media (max-width: 768px) {
  .amenity-item {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .amenity-item {
    width: 100%;
  }
}

/* Room Section */
.room-section.styled {
  background: #f4f4f4; /* Light grey background */
  color: #002643; /* Deep Navy Blue text */
  padding: 90px 20px;
  text-align: center;
  border-top: 1px solid #cedeea; /* Light grey border */
  
}

.room-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #002643; /* Deep Navy Blue */
}

.room-header h2 span {
  color: #8ea6b8; /* Light Blue for accent */
}

.room-header p {
  color: #555;
  max-width: 700px;
  margin: 10px auto 40px;
  font-size: 18px;
}

.room-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.room-card.fancy {
  background: #ffffff; /* White background for contrast */
  border: 1px solid #cedeea; /* Light grey border */
  border-radius: 16px;
  overflow: hidden;
  width: 320px;
  box-shadow: 0 4px 15px rgba(0, 51, 102, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column; /* Flex to stack content */
  height: 100%; /* Ensure consistent height */
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 51, 102, 0.15); /* On hover */
}

.room-image {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.room-content {
  padding: 20px;
  flex-grow: 1; /* Allow content to grow */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Align content properly */
}

.room-content h4 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #002643; /* Deep Navy Blue for titles */
}

.room-content p {
  color: #555;
  font-size: 16px;
  margin-bottom: 15px;
}

.room-btn {
  background: #004b85; /* Lighter Navy Blue */
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  align-self: center; /* Center align the button */
  transition: background 0.3s ease;
}

.room-btn:hover {
  background: #002643; /* Darker navy blue on hover */
}

@media (max-width: 768px) {
  .room-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* Video Section */
.video-section {
  display: flex;
  flex-wrap: wrap;
  background: #ffffff; /* Light grey background */
  border-top: 1px solid #cedeea; /* Light grey border */
  border-bottom: 1px solid #cedeea; /* Light grey border */
  color: #222;
  padding: 60px 60px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.video-content {
  flex: 1 1 50%;
  max-width: 600px;
}

.video-content h2 {
  font-size: 2.6rem;
  font-weight: bold;
  color: #002643; /* Deep Navy Blue */
}

.video-content h2 span {
  color: #8ea6b8; /* Light Blue for accent */
}

.video-content p {
  margin: 20px 0;
  line-height: 1.6;
  color: #555; /* Softer grey for paragraph text */
}

.video-thumbnail {
  position: relative;
  flex: 1 1 40%;
  min-width: 320px;
  height: 350px;
  cursor: pointer;
}

.video-thumbnail .thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  border: 1px solid #cedeea; /* Light grey border */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: #fff;
  background: rgba(0, 75, 133, 0.7); /* Lighter Navy Blue */
  border: 2px solid #fff;
  border-radius: 10%;
  padding: 25px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.play-button:hover {
  background: rgba(0, 75, 133, 0.9); /* Darker hover effect */
}

/* Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.video-wrapper {
  position: relative;
  width: 90%;
  max-width: 900px;
  height: 500px;
  background: #000;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
}

.close-btn1 {
  position: absolute;
  top: -30px;
  right: -30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}


/* iPad / Small Laptop */
@media (max-width: 1180px) {
  .video-section {
    flex-direction: column;
    align-items: center;
    padding: 50px 30px;
    gap: 30px;
  }

  .video-content {
    max-width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .video-content h2 {
    font-size: 2.2rem;
  }

  .video-thumbnail {
    width: 100%;
    height: 300px;
  }

  .play-button {
    font-size: 40px;
    padding: 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .video-section {
    padding: 40px 20px;
    gap: 20px;
  }

  .video-content h2 {
    font-size: 1.8rem;
  }

  .video-content p {
    font-size: 16px;
  }

  .video-thumbnail {
    height: 220px;
  }

  .play-button {
    font-size: 36px;
    padding: 16px;
  }
}



.media-gallery-section {
  max-width: 1300px;
  margin: auto;
  padding: 30px 20px;
  color: #1a1a1a;
}

.media-container {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.media-left,
.media-right {
  flex: 1 1 48%;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  border-bottom: 2px solid #002366; /* navy blue */
  display: inline-block;
  padding-bottom: 6px;
  color: #002366;
  text-transform: uppercase;
}

.gallery-heading {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #002366;
  text-transform: uppercase;
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* =============================
   LOCATION GALLERY - SCOPED CSS
   ============================= */

.location-gallery-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  border-bottom: 1px solid #ccc;
}

.location-tab {
  background: none;
  border: none;
  font-size: 1.2rem;
  padding: 10px 0;
  cursor: pointer;
  color: #666;
  transition: all 0.3s ease;
}

.location-tab.active {
  color: #FDBE34;
  border-bottom: 2px solid #FDBE34;
}

.location-gallery-slider {
  position: relative;
  height: 320px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.location-gallery-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.location-gallery-slider img.active {
  opacity: 1;
}

.location-gallery-controls {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.location-gallery-controls button {
  background: transparent;
  border: 1px solid #002366;
  color: #002366;
  padding: 8px 16px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.location-gallery-controls button:hover:not(:disabled) {
  background-color: #002366;
  color: #fff;
}

.location-gallery-controls button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.gallery-desc {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  padding-top: 10px;
  border-top: 1px solid #ddd;
  min-height: 60px;
}

/* =============================
   Responsive
   ============================= */
@media (max-width: 768px) {
  .media-container {
    flex-direction: column;
  }

  .location-gallery-slider {
    height: 220px;
  }

  .map-wrapper {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .media-container {
    flex-direction: column;
  }

  .gallery-slider {
    height: 220px;
  }

  .map-wrapper {
    height: 250px;
  }
}


/* Footer Section */
.aligned-footer {
    background: #002643; /* Deep Navy Blue as the solid background */
    color: #fff; /* White text for contrast */
    padding: 60px 5%;
    position: relative;
    overflow: hidden;

    border-top: 1px solid #cedeea; /* Light grey border */
}

/* Top Row: Logo and Social Media */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.footer-logo img {
    max-width: 120px;
    height: auto;
    display: block;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.1));
}

/* Footer Social Icons */
.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icon {
    width: 50px; /* Increased size for better visibility */
    height: 50px; /* Increased size for better visibility */
    background: #002643; /* Deep Navy Blue */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid #fff; /* White border to match the screenshot */
}

.footer-social-icon:hover {
    background: #99c4e5; /* Light Blue on hover */
    border-color: #99c4e5; /* Light Blue on hover */
    transform: scale(1.1);
}


/* Footer Main Content */
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

.footer-contact,
.footer-links,
.footer-follow {
    flex: 1;
    min-width: 240px;
}

.footer-contact h4,
.footer-links h4,
.footer-follow h4 {
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 15px;
    color: #fff; /* White text for the header */
    display: inline-block;
    padding-bottom: 1px;
}

.footer-contact p,
.footer-contact span,
.footer-contact a {
    color: #fff; /* Light grey for content text */
    text-decoration: none;
	
}


.footer-contact a:hover {
    text-decoration: underline;
    color: #fff; /* Light Blue hover effect */
}

.cgsl {
    color: #99c4e5; /* Light Blue for the link */
    font-weight: bold;
}

.cgsl:hover {
    color: #ffffff; /* White on hover */
}

.cgs2 {
    color: #cedeea; /* Light grey for secondary text */
    font-weight: 600;
}

/* Quick Links */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.footer-links ul li {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 20px;
}

.footer-links ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.footer-links ul li a {
    color: #fff; /* Light grey for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #cadae5; /* Light Blue on hover */
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 45px;
    padding-top: 40px;
    text-align: center;
    color: #fff;
    font-size: 1rem;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
    color: #99c4e5; /* Light Blue on hover */
}




/* Inner Hero Section */
.inner-hero-section {
  position: relative;
  width: 100%;
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  background-color: #001d3d;
}

/* Background Image Overlay */
.inner-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5) contrast(1.2) saturate(1.1);
  z-index: 0;
}

/* Content Box */
.inner-hero-content {
  position: relative;
  z-index: 1;
  padding: 30px;
  max-width: 960px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.inner-slider-title {
  font-size: 54px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  color: #ffffff;
}

.inner-slider-description {
  font-size: 22px;
  margin-top: 16px;
  font-weight: 400;
  color: #e1e9f2;
}



/* Responsive Design */
@media (max-width: 1024px) {
    .inner-slider-title {
        font-size: 38px;
    }
    .inner-slider-description {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .inner-hero-section {
        height: 50vh;
    }
    .inner-slider-title {
        font-size: 32px;
    }
    .inner-slider-description {
        font-size: 16px;
    }
}

@media (max-width: 430px) {
    .inner-hero-section {
        height: 40vh;
    }
    .inner-slider-title {
        font-size: 28px;
    }
    .inner-slider-description {
        font-size: 14px;
    }
}


/* New Facility Section */
.new-facility-section {
    padding: 60px 20px;
   background: linear-gradient(to bottom, #ffffff, #f4f4f4); 
    text-align: center;
    color: #002643; /* Navy for contrast */
}

.new-facility-title {
    font-size: 3rem;
    color: #002643; /* Dark navy text */
    margin-bottom: 40px;
    text-transform: uppercase;
    position: relative;
	 font-weight: 800;
}

.new-facility-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #007a79; /* Teal underline for consistency */
    margin: 15px auto;
}

/* Grid Styling */
.facility-grid-creative {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    justify-items: center;
	
}

/* Facility Box */
.facility-box-creative {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.facility-box-creative:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* Icon Background */
.icon-background {
    background: linear-gradient(to bottom, #004b85, #004d5a);
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: #ffffff;
    position: relative;
    border-bottom: 5px solid #004d5a;
}

.facility-box-creative:hover .icon-background {
    background: linear-gradient(to right, #004d5a, #004b85);
}

/* Facility Information */
.facility-info {
    padding: 30px;
    text-align: center;
}

.facility-info h3 {
    font-size: 1.6rem;
    color: #002643; /* Navy text */
    margin-bottom: 15px;
}

.facility-info p {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .facility-grid-creative {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .facility-grid-creative {
        grid-template-columns: 1fr;
    }

    .facility-box-creative {
        max-width: 100%;
    }

    .icon-background {
        padding: 20px;
    }
}

/* Facility Section Wrapper */
.facility-section {
    padding: 60px 20px;
    background: linear-gradient(to top, #ffffff, #f4f4f4); 
    color: #002643;
    text-align: center;
	
}

/* Title */
.facility-title {
    font-size: 2.8rem;
     font-weight: 800;
    color: #002643;
    margin-bottom: 40px;
    position: relative;
}

.facility-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #007a79; /* Teal underline */
    margin: 12px auto;
    border-radius: 2px;
}

/* Grid */
.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Column Boxes */
.facility-column {
    background: #f9f9f9; /* Light grey card background for separation */
    color: #002643;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    text-align: left;
}

.facility-column:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

/* Category Title */
.facility-column h3 {
    font-size: 1.5rem;
    color: #004d5a;
    margin-bottom: 16px;
    border-bottom: 2px solid #007a79; /* Teal accent */
    padding-bottom: 6px;
    text-transform: uppercase;
}

/* Facility List */
.facility-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.facility-list li {
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    line-height: 1.5;
    transition: 0.3s ease;
}

.facility-list li em {
    font-size: 1.3rem;
    color: #004b85; /* Teal icon */
    margin-right: 12px;
}

.facility-list li:hover {
    background-color: #eef8f8; /* Very light teal hover */
    padding-left: 8px;
    border-radius: 6px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .facility-title {
        font-size: 2rem;
    }

    .facility-column h3 {
        font-size: 1.3rem;
    }

    .facility-list li {
        font-size: 1rem;
    }
}



.highlighted-attractions-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #fff, #cfdde2); /* Soft blue gradient */
  text-align: center;
}

.attractions-container {
  max-width: 1200px;
  margin: 0 auto;
}

.main-title {
  font-size: 2.5rem;
  color: #2c3e50; /* Deep slate */
  margin-bottom: 20px;
   font-weight: 800;
}

.main-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #007a79; /* Teal underline */
    margin: 12px auto;
    border-radius: 2px;
}

.things-description {
  color: #3d566e;
  font-size: 1.2rem;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.nearby-list-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.nearby-category {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(44, 62, 80, 0.1);
}

.category-title {
  font-size: 1.5rem;
  color: #004d5a; /* Soft teal blue */
  margin-bottom: 15px;
  text-transform: uppercase;
  border-bottom: 2px solid #2980b9;
  padding-bottom: 10px;
}

.nearby-item {
  font-size: 1.1rem;
  color: #34495e;
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.nearby-item i {
  font-size: 1.5rem;
  color: #004b85; /* Sky blue */
  margin-right: 10px;
}

.nearby-item:hover {
  background-color: #ebf5fb;
  border-radius: 5px;
  transition: 0.3s ease-in;
}

@media (max-width: 768px) {
  .nearby-list-container {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  .nearby-list-container {
    grid-template-columns: 1fr 1fr;
  }
}




/* Modern Location Section */
.modern-location-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
    background: linear-gradient(to bottom, #fff, #cfdde2);
    color: #2c3e50;
}

.location-header {
    text-align: center;
    margin-bottom: 40px;
}

.location-main-title {
    font-size: 2.8rem;
    color: #2c3e50;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.location-main-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #007a79;
    margin: 12px auto 0;
    border-radius: 2px;
}

.location-description {
    font-size: 1.2rem;
    color: #4a6572;
    margin-top: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Container */
.modern-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
    max-width: 1200px;
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	margin-top:-50px;
}

/* Left Text */
.location-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Coordinates */
.coordinates-box {
    background: #ccd9df;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.coordinates-title {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.coordinate-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coordinate {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: #2c3e50;
}

.coordinate em {
    font-size: 1.3rem;
    margin-right: 10px;
    color: #002643;
}

/* Form */
.directions-form {
    margin-top: 20px;
}

.input-field {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ccd9df;
    background-color: #f9f9f9;
    color: #2c3e50;
    font-size: 1rem;
}

.directions-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(to right, #004b87, #004b87);
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.directions-btn:hover {
    background: linear-gradient(to right, #004b87, #002643);
    color: #ffffff;
}

/* Right Image (optional if needed) */
.location-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.location-image .image {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-image .image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1180px) {
    .modern-container {
        flex-direction: column;
        padding: 30px;
    }

    .location-text {
        margin-bottom: 20px;
    }

    .location-image {
        margin-top: 30px;
    }

    .coordinates-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 932px) {
    .location-title {
        font-size: 2.4rem;
    }

    .location-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 538px) {
    .coordinates-box {
        padding: 15px;
    }

    .coordinates-title {
        font-size: 1.5rem;
    }

    .coordinate-container {
        flex-direction: column;
    }

    .coordinate {
        font-size: 20px;
    }

    .directions-btn {
        font-size: 1rem;
    }

    .location-image .image {
        max-width: 400px;
    }
}

@media (max-width: 393px) {
    .location-title {
        font-size: 2rem;
    }

    .location-description {
        font-size: 1rem;
    }

    .input-field {
        font-size: 0.9rem;
    }

    .directions-btn {
        font-size: 1rem;
    }

    .location-image .image {
        max-width: 350px;
    }
}

/* 1. Full-width Title Section */
.contact-hero-banner {
  background: linear-gradient(to bottom, #eaf6f9, #cfdde2); /* Light blue gradient */
  padding: 60px 20px 40px;
  text-align: center;
}

.contact-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.custom-contact-title {
  font-size: 3rem;
  color: #2c3e50; /* Deep blue */
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 800;
  position: relative;
}

.custom-contact-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #00a3c4; /* Aqua line */
  margin: 12px auto 0;
  border-radius: 2px;
}

.custom-contact-description {
  font-size: 20px;
  color: #2f4f60; /* Medium-dark blue */
  font-weight: 400;
}

/* 2. Contact Info + Image Section */
.futuristic-contact-section {
  padding: 40px 20px 80px;
  background:  linear-gradient(to top, #eaf6f9, #cfdde2); /* Softer section */
}

.futuristic-contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.futuristic-contact-info {
  flex: 1;
  max-width: 520px;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 76, 109, 0.15); /* Blue tone shadow */
  text-align: left;
  color: #2c3e50;
}

.futuristic-contact-info p {
  font-size: 18px;
  line-height: 1.6;
  color: #2c3e50;
}

.futuristic-info-block {
  margin-top: 20px;
}

.futuristic-info-block h2,
.futuristic-info-block h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: #2c3e50; /* Light blue highlight */
  font-weight: 600;
}

.futuristic-info-block a {
  color: #007a9b;
  font-weight: bold;
  text-decoration: none;
}

.futuristic-info-block a:hover {
  color: #005f78;
}

/* Image Block */
.futuristic-image-block {
  flex: 1;
  max-width: 410px;
}

.contact-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 76, 109, 0.2);
  transition: transform 0.3s ease;
}

.contact-image:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 768px) {
  .custom-contact-title {
    font-size: 2.2rem;
  }

  .contact-hero-banner,
  .futuristic-contact-section {
    padding: 40px 20px;
  }

  .futuristic-contact-container {
    flex-direction: column;
  }

  .futuristic-contact-info,
  .futuristic-image-block {
    max-width: 100%;
  }

  .custom-contact-description {
    font-size: 1rem;
  }

  .contact-image {
    margin-bottom: 40px;
  }
}




/* 📍 Updated Sitemap Section */
.sitemap-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #eaf6f9, #cfdde2); /* Light blue gradient */
    text-align: center;
}

.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sitemap-title {
    font-size: 3rem;
    color: #2c3e50; /* Deep teal-blue */
    margin-bottom: 20px;
   font-weight: 800;
    
}

.sitemap-subtitle {
    font-size: 1.4rem;
    color: #3a6d84; /* Muted blue-gray */
    margin-bottom: 50px;
    font-weight: 400;
}

.sitemap-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sitemap-block {
    background-color: rgba(255, 255, 255, 0.6); /* soft white background */
    padding: 40px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 91, 127, 0.1); /* soft shadow */
    border: 1px solid #bdd7df; /* light border */
}

.sitemap-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 91, 127, 0.2);
    border-color: #7dbacb; /* deeper blue border on hover */
}

.sitemap-block h2 {
    font-size: 1.8rem;
    color:#2c3e50;
    margin-bottom: 15px;
    font-weight: 500;
    
}

.sitemap-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-block ul li {
    margin-bottom: 15px;
}

.sitemap-block ul li a {
    font-size: 20px;
    color: #2c3e50; /* dark gray-blue */
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.sitemap-block ul li a i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: #007a99; /* brighter teal */
    text-shadow: 0 0 4px rgba(0, 122, 153, 0.2);
}

.sitemap-block ul li a:hover {
    color: #007a99;
}

/* 📱 Responsive Design */
@media (max-width: 1024px) {
    .sitemap-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .sitemap-links {
        grid-template-columns: 1fr;
    }
}



/* 📘 FAQ Section — */
.faq-section {
  padding: 30px 20px;
  background: linear-gradient(to top, #eaf6f9, #cfdde2);
  color: #2c3e50; /* Deep slate text */
  text-align: center;
  position: relative;
  overflow: hidden;
}
.faq-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(44, 62, 80, 0.1); /* soft slate accent */
  border-radius: 50%;
  z-index: 0;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-title {
  font-size: 3rem;
  font-weight: 800;
  color: #007a79; /* Teal headline */
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  
}

.faq-subtitle {
  font-size: 1.4rem;
  color: #4a6572; /* slate gray */
  margin-bottom: 50px;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: left;
}

.faq-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  border: 1px solid #d1e5e8; /* light teal border */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.faq-item h2 {
  font-size: 1.8rem;
  color: #004d5a; /* deeper teal */
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #007a79;
}

.faq-item p {
  font-size: 1.1rem;
  color: #2c3e50;
  line-height: 1.8;
  margin-bottom: 15px;
}

.faq-item a {
  color: #007a79;
  font-weight: bold;
  text-decoration: none;
  position: relative;
}

.faq-item a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #4a6572;
  transition: width 0.3s ease;
}

.faq-item a:hover {
  color: #004d5a;
}

.faq-item a:hover::after {
  width: 100%;
}

/* 🔧 Responsive */
@media (max-width: 1024px) {
  .faq-list {
    grid-template-columns: 1fr;
  }

  .faq-title {
    font-size: 2.5rem;
  }

  .faq-item h2 {
    font-size: 1.6rem;
  }

  .faq-item p {
    font-size: 1rem;
  }
}

.well1 {
	color: #3d566e;
    font-size: 1.2rem;
   max-width: 1200px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}
.well {
	color: #3d566e;
    font-size: 1.2rem;
  
    margin: 0 auto 40px auto;
    line-height: 1.6;
}























/* Main Amenities Section (Roosevelt Specific) */
.roosevelt-amenities {
    --primary-text-color: #c63332;
    --secondary-text-color: #555;
    --accent-color: #feda44; /* Goldenrod - Local to Roosevelt section */
    --light-bg-color: #f9f8f4;
    --card-bg-color: #fff;
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    
    width: 100%;
    padding: 2rem 0;
    box-sizing: border-box; 
}

.roosevelt-amenities-container {
    width: 100%;
    max-width: 1280px; /* Slightly wider container */
    margin: 0 auto;
    padding: 0 2rem;
}

/* New Grid Container for Categories */
.roosevelt-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); /* 2 columns for wider screens */
    gap: 3rem; /* Spacing between grid items (category cards) */
}

/* Individual Category Section (now a grid item) */
.roosevelt-category-section {

    padding: 2.5rem; /* Padding inside each category card */
    display: flex; /* Flexbox for internal stacking of title, image, features */
    flex-direction: column;
    align-items: center; /* Center items horizontally within the card */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center; /* Center text within the card */
    overflow: hidden; /* Ensures border-radius cuts content correctly */
}

.roosevelt-category-section:hover {
    transform: translateY(-8px); /* Lift effect on hover */
    box-shadow: var(--shadow-medium); /* Stronger shadow on hover */
}

/* Category Title */
.roosevelt-category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem; 
    color: #002643;
    margin-top: 0; /* Reset default margin */
    margin-bottom: 1.5rem; 
    position: relative;
    font-weight: 700;
    width: 100%; /* Ensures title takes full width in column */
}

.roosevelt-category-title:after {
    content: '';
    display: block;
    width: 80px; /* Shorter line */
    height: 4px; /* Thicker line */
    background: var(--accent-color);
    margin: 0.8rem auto 0; /* Adjust margin below title */
    border-radius: 2px;
}

/* Category Image Block */
.roosevelt-category-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency in grid */
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 2rem; /* Spacing between image and features */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); /* Slight shadow for image itself */
}

.roosevelt-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1); 
}

.roosevelt-category-image:hover img {
    transform: scale(1.08); 
}

/* Features Grid (Column Holder) - now the content section of the card */
.roosevelt-amenities-features-grid {
    width: 100%;
}

.roosevelt-amenities-feature-column {
    padding: 0; /* Remove padding as the main category-section has padding */
    background: none; /* Remove background, main card has it */
    box-shadow: none; /* Remove shadow, main card has it */
    border-top: none; /* Remove border, this is for inner columns if multiple existed */
    border-radius: 0; /* Remove border-radius */
}

.roosevelt-amenities-feature-column:hover {
    transform: none; /* Disable transform on inner column */
    box-shadow: none; /* Disable shadow on inner column */
}

/* Feature List */
.roosevelt-amenities-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left; /* Align feature list items to the left */
}

.roosevelt-amenities-feature-list li {
    padding: 1rem 0; /* Padding for each list item */
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(184, 134, 11, 0.2); 
    transition: all 0.3s ease-in-out;
}

.roosevelt-amenities-feature-list li:hover {
    background-color: rgba(184, 134, 11, 0.05); 
    padding-left: 15px; 
}

.roosevelt-amenities-feature-list li:last-child {
    border-bottom: none;
}

.roosevelt-amenities-feature-icon {
    color: var(--accent-color);
    margin-right: 1.5rem; 
    font-size: 1.6rem; 
    min-width: 28px; 
    text-align: center;
}

.roosevelt-amenities-feature-text {
    color: var(--secondary-text-color); 
    font-size: 1.15rem; 
    font-weight: 500;
}

/* The divider is removed as grid gaps provide separation */
.roosevelt-amenities-divider {
    display: none; 
}

/* Responsive adjustments */
@media (max-width: 1280px) {
    .roosevelt-amenities-container {
        padding: 0 1.5rem;
    }
    .roosevelt-category-title {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .roosevelt-amenities {
        padding: 4rem 0;
    }
    .roosevelt-categories-grid {
        grid-template-columns: 1fr; /* Stack into a single column */
        gap: 2.5rem;
    }
    .roosevelt-category-section {
        padding: 2rem;
    }
    .roosevelt-category-image {
        height: 220px; /* Adjust height when stacked */
        margin-bottom: 1.5rem;
    }
    .roosevelt-category-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .roosevelt-amenities-container {
        padding: 0 1rem;
    }
    .roosevelt-category-section {
        padding: 1.8rem;
    }
    .roosevelt-category-image {
        height: 200px;
    }
    .roosevelt-category-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    .roosevelt-amenities-feature-list li {
        padding: 0.8rem 0;
    }
    .roosevelt-amenities-feature-icon {
        font-size: 1.4rem;
        min-width: 24px;
        margin-right: 1rem;
    }
    .roosevelt-amenities-feature-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .roosevelt-amenities {
        padding: 3rem 0;
    }
    .roosevelt-categories-grid {
        gap: 2rem;
    }
    .roosevelt-category-section {
        padding: 1.5rem;
    }
    .roosevelt-category-title {
        font-size: 1.5rem;
    }
    .roosevelt-category-title:after {
        width: 50px;
        height: 3px;
        margin-top: 0.5rem;
    }
    .roosevelt-category-image {
        height: 180px;
        margin-bottom: 1rem;
    }
}




/* Location Section */
.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.location-info {
  flex: 1;
  min-width: 300px;
}

.coordinates-box {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(1, 72, 134, 0.1);
  border: 1px solid rgba(1, 72, 134, 0.1);
}

.coordinates-box h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--brand-red); /* Using global brand-red */
  font-size: 1.4rem;
  font-weight: 600;
}

.coordinate {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 12px;
  font-size: 1.05rem;
}

.coordinate i {
  color: var(--dark-gold); /* Using global dark-gold */
  font-size: 1.2rem;
}

.directions-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(1, 72, 134, 0.1);
  border: 1px solid rgba(1, 72, 134, 0.1);
}

.directions-form label {
  font-weight: 600;
  color: var(--brand-red); /* Using global brand-red */
  font-size: 1.05rem;
}

.directions-form input {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 100%;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.directions-form input:focus {
  outline: none;
  border-color: var(--brand-red); /* Using global brand-red */
  box-shadow: 0 0 0 3px rgba(1, 72, 134, 0.2);
}

.directions-form button {
  background: var(--brand-red); /* Using global brand-red */
  color: white;
  border: none;
  padding: 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.directions-form button:hover {
  background: var(--dark-gold); /* Using global dark-gold */
  transform: translateY(-2px);
}

.location-map {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(1, 72, 134, 0.1);
  border: 1px solid rgba(1, 72, 134, 0.1);
  transition: transform 0.3s ease;
}

.location-map:hover {
  transform: translateY(-5px);
}

.location-map img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .location-content {
    flex-direction: column;
  }
  
  .location-info, .location-map {
    width: 100%;
  }
}









/* Contact Section */
.content-wrapper {
    display: flex;
    gap: 30px;
    margin: 0 auto;
    padding: 20px;
}

.contact-card {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
    transform: translateY(20px);
    height: 450px;
}

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-card h2 {
    color: #002643; /* Using global brand-red */
    margin-bottom: 25px;
    font-size: 1.8rem;
    position: relative;
    text-align: center;
}

.contact-card h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--dark-gold); /* Using global dark-gold */
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    color: #FDBE34; /* Using global dark-gold */
    font-size: 1.5rem;
    margin-right: 15px;
    min-width: 24px;
    text-align: center;
}

.info-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #002643; /* Assuming var(--hampton-blue) meant to use a main brand color here */
}

.info-text p, .info-text a {
    font-size: 1.1rem;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s;
}

.info-text a:hover {
    color: var(--brand-red); /* Assuming var(--hampton-blue) meant to use a main brand color here */
    text-decoration: underline;
}

.map-container {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateY(20px);
    height: 450px;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .contact-card, .map-container {
        width: 100%;
        height: auto;
    }
    
    .map-container {
        height: 350px;
    }
}








/* Hotel Navigation Section */
#hotel-navigation-section .container {
    margin: 0 auto;
    padding: 0 20px;
}

#hotel-navigation-section .navigation-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#hotel-navigation-section .nav-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

#hotel-navigation-section .nav-item {
    display: flex;
    height: 100%;
}

#hotel-navigation-section .nav-link {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #333;
    text-decoration: none;
    background: white;
    border-radius: 8px;
    padding: 25px 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    height: 120px; /* Fixed height for rectangular format */
}

#hotel-navigation-section .nav-link:hover {
    background: #002643; /* Using global brand-red */
    color: white;
    box-shadow: 0 8px 16px rgba(0, 98, 204, 0.2);
    transform: translateY(-3px);
}

#hotel-navigation-section .nav-icon {
    font-size: 24px;
    margin-bottom: 12px;
    color: #FDBE34; /* Using global dark-gold */
    transition: all 0.3s ease;
}

#hotel-navigation-section .nav-link:hover .nav-icon {
    color: white;
    transform: scale(1.1);
}

#hotel-navigation-section .nav-text {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

#hotel-navigation-section .nav-desc {
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.4;
}

/* Responsive styles */
@media (max-width: 992px) {
    #hotel-navigation-section .nav-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    #hotel-navigation-section .nav-link {
        height: 110px;
        padding: 20px 10px;
    }
}

@media (max-width: 576px) {
    #hotel-navigation-section .nav-row {
        grid-template-columns: 1fr;
    }
    
    #hotel-navigation-section .nav-link {
        height: 100px;
        padding: 15px 10px;
    }
    
    #hotel-navigation-section {
        padding: 30px 0;
    }
}