﻿@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-color: #ffffff;
  color: #333;
}
/* === HEADER WRAPPER === */
.site-header {
  margin-top: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1000;
  position: sticky;
  top: 0;
  transition: top 0.3s ease, transform 0.3s ease;
}

/* === STICKY BEHAVIOR === */
.hide-header {
  transform: translateY(-100%);
}

/* === HEADER CONTAINER === */
.site-header .container {
  background: linear-gradient(90deg, #00269d 0%, #0033a0 100%);
  max-width: 1200px;
  width: 100%;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 120px;
  border-top: 4px solid #ffff00;
  border-radius: 6px;
}

/* === LOGO === */
.logo img {
  height: 90px;
  width: auto;
  display: block;
}

/* === NAVIGATION === */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.main-nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  padding-bottom: 5px;
  position: relative;
}

.main-nav ul li a:hover {
  color: #ffff00;
}

.main-nav ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #ffff00;
  transition: width 0.3s ease;
}

.main-nav ul li a:hover::after {
  width: 100%;
}

/* === CONTACT & CTA BUTTON === */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone {
  font-weight: 500;
  color: #ffffff;
}

.btn-primary {
  padding: 10px 20px;
  background: #ffff00;
  color: #0033A0;
  text-decoration: none;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #FFC400;
}

/* === MOBILE MENU TOGGLE === */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
/* Hide on mobile / show on desktop */
.desktop-only {
  display: flex;
}
.mobile-only {
  display: none;
}

/* Responsive Fixes */
@media (max-width: 992px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    gap: 15px;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
    background: #0033a0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 30px;
    z-index: 999;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .main-nav ul li a {
    display: block;
    padding: 10px 0;
    width: 100%;
    color: #fff;
    font-weight: 500;
  }

  .site-header .container {
    flex-wrap: wrap;
    flex-direction: row;
    height: auto;
    padding: 20px;
  }

  .logo img {
    height: 60px;
  }
}
/* Dropdown Container */
.main-nav ul li.dropdown {
  position: relative;
}

/* Dropdown Link Style */
.main-nav ul li.dropdown .dropdown-toggle {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding-bottom: 5px;
  position: relative;
}

/* Dropdown Menu */
.main-nav ul li.dropdown .dropdown-menu {
  display: none; /* Initially hidden */
  position: absolute;
  top: 100%;
  left: 0;
  background: #0033a0;
  min-width: 200px;
  padding: 10px 0;
  list-style: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  border-top: 5px solid #ffff00;
}

.main-nav ul li.dropdown .dropdown-menu li a {
  color: #ffffff;
  padding: 10px 20px;
  display: block;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #ffff00;
}

.main-nav ul li.dropdown .dropdown-menu li a:hover {
  color: #fff;
}

/* Hover effect for desktop */
.main-nav ul li.dropdown:hover .dropdown-menu {
  display: block;
}

/* Responsive Dropdown Menu for Mobile (Click functionality) */
@media (max-width: 992px) {
  .main-nav ul li.dropdown .dropdown-menu {
    position: relative;
    min-width: 100%;
  }

  /* Show dropdown menu when 'open' class is added for mobile */
  .main-nav ul li.dropdown.open .dropdown-menu {
    display: block;
  }
}

/* Style for dropdown icon */
.main-nav ul li.dropdown .dropdown-toggle i {
  margin-left: 5px;
  font-size: 12px;
  /* Remove the rotation as it's not required anymore */
}


.hero-slider {
  position: relative;
  width: 100%;
  height: 120vh;
  overflow: hidden;
  margin-top:-150px;
}

/* Overlay fade */
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 38, 157, 0.3), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

/* Slides */
.slide {
  position: absolute;
  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 1.5s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

/* Left content */
.slide-left {
  width: 100%;
  color: #fff;
  z-index: 2;
}

.slide-left h5 {
  color: #ffff00;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.slide-left h1 {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 25px;
}

/* Book Now Button */
.book-btn {
  background: #FFD700;
  color: #0033A0;
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 6px rgba(255, 215, 0, 0.4);
  transition: background 0.3s, transform 0.2s;
}
.book-btn:hover {
  background: #0033A0;
  color: #FFD700;
  transform: scale(1.05);
}

/* Right overlay title */
.slide-right .overlay-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 130px;
  -webkit-text-stroke: 1px #0033A0;
  color: transparent;
  opacity: 0.15;
  font-weight: 800;
}

/* Dots */
.slider-nav {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}
.slider-nav .dot {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 0.3;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.3s;
}
.slider-nav .dot.active {
  opacity: 1;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .hero-slider {
    height: 50vh;
	margin-top:5px;
  }
  .slide-left h1 {
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
  }
  .slide-left h5 {
    font-size: 16px;
    text-align: center;
  }
  .slide-left {
    text-align: center;
  }
  .slide-right {
    display: none;
  }
  .slider-nav {
    right: 10px;
  }
}
/* Slide Base State */
.slide {
  position: absolute;
  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;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 1.2s ease;
  z-index: 0;
}

/* Active Slide */
.slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  position: relative;
  z-index: 2;
}
.slide-right .overlay-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 130px;
  -webkit-text-stroke: 5px #fff;
  color: #fff;
  opacity: 0;
  font-weight: 800;
  transition: opacity 1s ease;
}

.slide.active .overlay-title {
  opacity: 0.50;
}

.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
  z-index: 5;
  margin-top: -90px;
}
.wave-divider1 {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
  z-index: 5;
  margin-top: -10px;
}

.wave-divider2 {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
  z-index: 5;
  margin-bottom:-100px;
}

.wave-divider img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

/* Flip for bottom wave */
.wave-divider1.bottom img {
  transform: rotate(180deg);
}
/* Flip for bottom wave */
.wave-divider2.bottom img {
  transform: rotate(180deg);
}

/* Optional: Flip horizontally */
.wave-divider.flip-x img {
  transform: scaleX(-1);
}

/* Optional: Flip vertically */
.wave-divider.flip-y img {
  transform: scaleY(-1);
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .wave-divider {
    margin-top: -40px;
  }
  .wave-divider img {
    max-height: 120px;
  }
}

@media (max-width: 600px) {
  .wave-divider {
    margin-top: -20px;
  }
  .wave-divider img {
    max-height: 80px;
  }
}


/* Welcome Section */
.welcome-section {
  position: relative;
  padding: 30px 8%;
  background: #fff;
  overflow: hidden;
  z-index: 1;
}

.welcome-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.welcome-left {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.image-stack {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 520px; /* fixed height to allow layering */
}

.image-stack .img {
  position: absolute;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  overflow: hidden;
}

.img-large {
  width: 320px;
  top: 0;
  right: 0;
  z-index: 3;
}

.img-medium {
  width: 260px;
  top: 120px;
  left: 0;
  z-index: 2;
}

.img-small {
  width: 200px;
  top: 280px;
  right: 40px;
  z-index: 2;
}

/* Heartbeat overlay */
.heartbeat-overlay {
  position: absolute;
  top: 30%;
  left: 20%;
  width: 400px;
  height: 400px;
  background: url('../images/10.png') center/contain no-repeat;
  transform: translate(-50%, -50%);
  animation: pulse-line 2s infinite;
  z-index: 1;
}

/* Right content */
.welcome-right {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.welcome-right h2 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.3;
  color: #002f9f; /* updated header color */
}

.welcome-right p {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.welcome-right ul {
  padding-left: 0;
  margin-bottom: 30px;
}

.welcome-right ul li {
  list-style: none;
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #444;
}

.welcome-right ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #002f9f; /* updated list dash color */
}

/* Read More Button */
.read-more-btn {
  display: inline-block;
  background: #002f9f;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.read-more-btn:hover {
  background: #001d66;
}

/* Heartbeat bottom corner */
.corner-heartbeat {
  position: absolute;
  bottom: 10px;
  right: -150px;
  width: 300px;
  height: 300px;
  background: url('../images/10.png') center/contain no-repeat;
  animation: pulse-line 2s infinite;
  z-index: 1;
}

/* Heartbeat animation */
@keyframes pulse-line {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* Rotating circles */
.rotating-circles {
  position: absolute;
  top: 10%;
  right: -80px;
  z-index: 0;
}
.circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 38, 157, 0.06);
}
.circle.big {
  width: 220px;
  height: 220px;
  animation: rotate 20s linear infinite;
}
.circle.small {
  width: 130px;
  height: 130px;
  top: 40px;
  left: 50px;
  animation: rotate-reverse 35s linear infinite;
}

@keyframes rotate { 0% { transform: rotate(0); } 100% { transform: rotate(360deg); } }
@keyframes rotate-reverse { 0% { transform: rotate(360deg); } 100% { transform: rotate(0); } }

/* Responsive */
@media (max-width: 991px) {
  .welcome-container { flex-direction: column; }
  .image-stack { margin-bottom: 60px; height: 420px; }
  .welcome-right h2 { font-size: 34px; }
}
/* Read More & Read Less Buttons */
.read-more-btn, .read-less-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #ffff00;
  color: #002f9f;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
  margin-top: 20px;
}
.read-more-btn:hover, .read-less-btn:hover {
	color: #fff;
  background: #001c66;
}

/* Fullscreen Overlay */
.read-more-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 47, 159, 0.95);
  color: #fff;
  z-index: 9999;
  overflow-y: auto;
  padding: 60px 20px;
}

.read-more-overlay.active {
  display: block;
}

.overlay-content {
  max-width: 800px;
  margin: auto;
  text-align: left;
  animation: fadeIn 0.5s ease-in-out;
}

.overlay-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.overlay-content p, .overlay-content ul {
  font-size: 18px;
  line-height: 1.8;
}

.overlay-content ul {
  margin-top: 20px;
  list-style: disc;
  padding-left: 20px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  cursor: pointer;
  color: #fff;
  transition: 0.3s;
}
.close-btn:hover {
  color: #ffcc00;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Responsive */
@media (max-width: 991px) {
  .welcome-container {
    flex-direction: column;
    text-align: center;
  }

  .image-stack {
    margin: 0 auto 50px;
    height: auto;
    min-height: 320px;
  }

  .img-large {
    width: 70%;
    position: relative;
    top: -10px;
    right: 10px;
    margin: 0 auto;
  }

  .img-medium {
    width: 55%;
    top: 80px;
    left: -30px;
  }

  .img-small {
    width: 45%;
    top: 200px;
    right: -30px;
  }

  .heartbeat-overlay {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
  }

  .welcome-right {
    text-align: center;
    margin-top: 20px;
  }

  .welcome-right h2 {
    font-size: 28px;
  }

  .welcome-right p {
    font-size: 17px;
    line-height: 1.6;
  }

  .welcome-right ul {
    text-align: left;
    display: inline-block;
    margin: 20px auto;
  }

  .read-more-btn {
    display: inline-block;
    margin: 0 auto;
  }

  .corner-heartbeat {
    display: none; /* hide on small screens to avoid overlap */
  }

  .rotating-circles {
    display: none; /* hide circles on mobile for clean layout */
  }
}

/* Overlay content mobile */
@media (max-width: 768px) {
  .overlay-content {
    max-width: 95%;
    padding: 20px;
    text-align: center;
  }

  .overlay-content h2 {
    font-size: 26px;
  }

  .overlay-content p,
  .overlay-content ul {
    font-size: 15px;
    line-height: 1.6;
  }

  .read-less-btn {
    margin: 20px auto 0;
    display: inline-block;
  }
}
/* Reservation Box */
.reservation-box {
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 47, 159, 0.15); /* soft blue shadow */
  padding: 40px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  max-width: 1400px;
  margin: 10px auto 60px; /* overlap effect */
  position: relative;
  z-index: 10;
  border-top: 4px solid #002f9f; /* brand accent */
}

.reservation-box form {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
}

.form-group {
  flex: 1;
  min-width: 200px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #002f9f; /* logo blue for headings */
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  color: #333;
  background: #fdfdfd;
  transition: border 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  border: 1px solid #002f9f;
  outline: none;
}

/* Button */
.check-btn {
  background:#ffff00; /* primary logo color */
  color: #001d66;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 47, 159, 0.25);
}

.check-btn:hover {
	color:#fff;
  background: #001d66; /* darker blue hover */
}

/* Accent version if you want Yellow */
.check-btn.accent {
  background: #ffff00; /* yellow accent */
  color: #002f9f;
}

.check-btn.accent:hover {
  background: #f5e800;
  color: #001d66;
}

/* Responsive */
@media (max-width: 991px) {
  .reservation-box {
    flex-direction: column;
    align-items: stretch;
    padding: 30px 20px;
  }
  .reservation-box form {
    flex-direction: column;
  }
}



.amenities-section {
  padding: 170px 8% 100px;
  background: #f5f8fd; /* light background like other sections */
  text-align: center;
  margin-top: -200px;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #002f9f; /* deep blue */
}

.section-title p {
  font-size: 16px;
  color: #555;
  margin-bottom: 60px;
}

/* GRID */
.amenities-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}

.amenity-card {
  flex: 1 1 220px;
  max-width: 250px;
  text-align: center;
}

/* ICON CIRCLE */
.circle-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  background: #002f9f; /* blue theme */
  color: #fff;
  border-radius: 35% 65% 70% 30% / 40% 30% 70% 60%; /* organic shape */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
}

.circle-icon:hover {
  background:#ffff00; /* yellow on hover */
  color: #002f9f;
  transform: scale(1.05);
}

.amenity-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.amenity-card p {
  font-size: 14px;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .amenities-grid {
    justify-content: center;
  }
}

.attractions-showcase {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.showcase-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.showcase-slide {
  display: flex;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 100%;
  opacity: 0;
  transition: all 0.8s ease;
  background: #f5f8fd; /* light background for smooth blending */
}

.showcase-slide.active {
  left: 0;
  opacity: 1;
}

/* LEFT PANEL */
.showcase-left {
  width: 50%;
  background: #fff;
  color: #002f9f;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 4px 0 20px rgba(0,0,0,0.05);
}

.showcase-left h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 15px 0;
  color: #002f9f;
}

.showcase-left p {
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
}

.showcase-left ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.showcase-left ul li {
  font-size: 18px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 40px;
  color: #333;
}

.showcase-left ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #ffff00;
  font-weight: bold;
}

/* BUTTON */
.btn-offer {
  display: inline-block;
  background: #ffff00;
  color: #002f9f;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-offer:hover {
  background: #002f9f;
  color: #fff;
}

.price {
  font-size: 14px;
  color: #666;
}

.price strong {
  color: #002f9f;
}

/* RIGHT PANEL */
.showcase-right {
  width: 50%;
  background-size: cover;
  background-position: center;
}

/* NAVIGATION */
.showcase-nav {
  position: absolute;
  bottom: 30px;
  left: 40px;
  display: flex;
  gap: 15px;
}

.showcase-nav span {
  cursor: pointer;
  color: #002f9f;
  font-size: 32px;
  padding: 10px 15px;
  transition: 0.3s;
}

.showcase-nav span:hover {
  color: #ffcc00;
}

/* ========================= */
/* 📱 RESPONSIVE FIXES */
/* ========================= */
@media (max-width: 991px) {
  .showcase-slide {
    flex-direction: column;
    height: auto;
  }

  .showcase-left,
  .showcase-right {
    width: 100%;
    height: auto;
  }

  .showcase-left {
    padding: 40px 25px;
    text-align: center;
    box-shadow: none;
  }

  .showcase-left h2 {
    font-size: 28px;
  }

  .showcase-left p {
    font-size: 16px;
  }

  .showcase-left ul li {
    font-size: 16px;
    padding-left: 25px;
  }

  .showcase-right {
    min-height: 300px; /* keeps image visible on smaller screens */
  }

  .showcase-nav {
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 600px) {
  .showcase-left h2 {
    font-size: 24px;
  }
  .showcase-left p,
  .showcase-left ul li {
    font-size: 14px;
  }
  .btn-offer {
    padding: 10px 20px;
    font-size: 14px;
  }
  .showcase-right {
    min-height: 220px;
  }
}


.rooms-section {
  padding: 80px 8% 100px;
  background: #fff;
  text-align: center;
  
}

.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #002f9f;
}

.section-title p {
  font-size: 17px;
  color: #555;
  margin-bottom: 20px;
}

/* COLLAGE GRID */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 25px;
}

.room-card {
  position: relative;
  overflow: hidden;
  
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover img {
  transform: scale(1.05);
}

/* Tall middle card */
.room-card.tall {
  grid-row: span 2;
}

/* Room Info (default small white tag at bottom) */
.room-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fff;
  padding: 12px 18px;
 
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
}

.room-info h3 {
  font-size: 16px;
  margin: 0;
  color: #111;
  font-weight: 700;
}

/* Hide room-info on hover */
.room-card:hover .room-info {
  opacity: 0;
  transform: translateY(30px);
}

/* Hover Overlay (slides from top) */
.room-hover {
  position: absolute;
  top: -100%;  /* start hidden above */
  left: 0;
  width: 100%; 
  height: 100%;
  background: rgba(0,47,159,0.95);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
  transition: all 0.5s ease;
}

.room-card:hover .room-hover {
  top: 0;  /* slides down into view */
}

.room-hover p {
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.book-btn {
  background: #ffff00;
  color: #002f9f;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.book-btn:hover {
  background: #001d66;
  color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .room-card.tall {
    grid-row: span 1;
  }
}

@media (max-width: 600px) {
  .rooms-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}

/* Section */
.video-showcase {
  position: relative;
  height: 520px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.video-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 29, 102, 0.75);
  backdrop-filter: blur(2px);
}

/* Content */
.video-inner {
  position: relative;
  z-index: 2;
  color: #fff;
}

.video-inner h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.3;
}

.video-inner h2 span {
  color: #ffff00;
}

/* Transparent Play Button */
.play-btn {
  position: relative;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: transparent;         /* ✅ transparent background */
  border: 3px solid #ffff00;       /* ✅ yellow border instead */
  color: #ffff00;                  /* ✅ play icon color */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 42px;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(255, 204, 0, 0.4); /* softer glow */
  z-index: 2;
  transition: all 0.3s ease;
  text-decoration:none;
}

.play-btn:hover {
  background: rgba(255, 204, 0, 0.1); /* subtle hover effect */
  transform: scale(1.05);
}

.play-btn i {
  margin-left: 3px; /* keeps the play arrow centered */
}


/* Animated Waves */
.wave {
  position: absolute;
  border: 2px solid #ffcc00;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  animation: waveAnim 2.5s infinite;
  opacity: 0;
}

.wave:nth-child(2) { animation-delay: 0.5s; }
.wave:nth-child(3) { animation-delay: 1s; }

@keyframes waveAnim {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Modal */
.video-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 40px; /* gives clickable outside area */
  box-sizing: border-box;
}

.video-container {
  position: relative;
  width: 80%;
  max-width: 900px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  animation: scaleIn 0.4s ease;
}

.video-container iframe {
  width: 100%;
  height: 500px;
}

@keyframes scaleIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ✅ Unique close button */
.video-close-btn {
  position: absolute;
  top: -50px;
  right: 0;
  font-size: 38px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
  transition: 0.3s ease;
}

.video-close-btn:hover {
  color: #ffcc00;
}




.gallery-section {
  padding: 40px 8%;
  background: #fff;
}

.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: #002f9f;
}

.gallery-header p {
  font-size: 16px;
  color: #555;
  max-width: 650px;
  line-height: 1.6;
}

.gallery-controls {
  display: flex;
  align-items: center;
  gap: 25px;
}

.gallery-pagination {
  font-size: 16px;
  font-weight: 600;
  color: #002f9f;
}

.gallery-arrows {
  display: flex;
  gap: 12px;
}

.gallery-prev,
.gallery-next {
  cursor: pointer;
  font-size: 20px;
  color: #111;
  background: #fff;
  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.1);
}

.gallery-prev:hover,
.gallery-next:hover {
  background: #002f9f;
  color: #fff;
}

/* 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: 80vh;
  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: #ffcc00;
}
/* 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);
}

/* Plus overlay */
.gallery-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 47, 159, 0.6); /* dark blue overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-image:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay em {
  font-size: 28px;
  color: #fff;
  background: #ffcc00;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-footer {
  background: #002f9f;
  padding: 60px 20px 30px;
  color: #fff;
 
  font-size: 18px;
  line-height: 1.7;
   border-top: 4px solid #ffff00;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.footer-col {
  flex: 1 1 320px;
}

.footer-title {
  font-size: 28px;
  color: #ffff00;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 6px;
  display: inline-block;
  min-width: 180px;
  font-weight:500;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #ffff00;
}

.footer-info address,
.footer-info p {
  font-style: normal;
  margin: 10px 0;
  line-height: 1.6;
}

.footer-info a {
  color: #ffff00;
  text-decoration: none;
  font-weight: 500;
}

.footer-links-columns {
  display: flex;
  gap: 40px;
}

.footer-links-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-columns li {
  margin-bottom: 12px;
}

.footer-links-columns a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
  font-size: 18px;
}

.footer-links-columns a:hover {
  color: #ffff00;
  border-color:#ffff00;
  transform: translateY(-2px);
}

.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social li {
  margin-bottom: 12px;
}

.footer-social a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
}

.footer-social i {
  margin-right: 8px;
  color: #fff;
}

.footer-social a:hover {
  color: #ffff00;
}

.footer-bottom {
  max-width: 1200px;
  margin: 50px auto 0;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
  color: #fff;
  border-top: 1px solid #ffff00;
}

.footer-bottom-left small {
  display: block;
  font-size: 0.85rem;
  margin-top: 4px;
}

.footer-bottom-right {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 0.95rem;
}

.footer-bottom-right a,
.footer-bottom-right span,
.footer-bottom-right small {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom-right a:hover {
  text-decoration: underline;
}

.footer-bottom-right span {
  margin: 0 8px;
}



@media (max-width:580px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
    text-align: left;
  }

  .footer-col {
    width: 100%;
  }

  .footer-links-columns {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .footer-links-columns ul {
    width: 45%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer-bottom-right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* Luxury Amenities Section */
.luxury-amenities-section {
  padding: 10px 5% 100px;
  background: #fff; /* Soft gradient from light blue to white */
  text-align: center;
 position: relative;
 
}

/* Section Title */
.luxury-section-title h2 {
  font-size: 50px;
  font-weight: 800;
  color: #003366;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.luxury-section-title p {
  font-size: 18px;
  color: #555;
  margin-bottom: 60px;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* GRID */
.luxury-amenities-grid {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 50px;
}

/* Amenity Card */
.luxury-amenity-card {
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
  
  padding: 30px;
  border-radius: 15px;
  border-top: 4px solid #ffff00; /* accent gold */
  transition: all 0.3s ease-out;
  position: relative;
}

.luxury-amenity-card:hover {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(-15px);
}

.luxury-amenity-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: #003366;
  margin-bottom: 15px;
}

.luxury-amenity-card p {
  font-size: 18px;
  color: #333;
  margin-bottom: 0;
  line-height: 1.8;
}

/* Custom Icon Background (Unique Shape) */
.luxury-icon-background {
  width: 130px;
  height: 130px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #00309f, #00309f96); /* Gradient background for icon */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  border-radius: 25% 50% 50% 25% / 35% 50% 50% 35%; /* Custom organic shape */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease-out;
  border-top: 6px solid #ffff00;
  
}

.luxury-icon-background:hover {
	color: #00309f;
  background: #ffff00; /* Yellow hover background */
  transform: scale(1.1); /* Icon grows on hover */
}

.luxury-icon-background em {
  transition: transform 0.4s ease-out;
}

.luxury-icon-background:hover em {
  transform: rotate(15deg); /* Slight rotation effect on icon hover */
}

/* 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: 40px;
  }
}
/* Full Facilities Section */
.full-facilities-section {
 padding: 10px 5% 100px;
  background: #fff; /* Soft gradient from light blue to white */
  text-align: left;
 
 
  position: relative;
  
}

/* Full Facilities Container */
.full-facilities-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading */
.full-facilities-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #1e3d58; /* Deep blue for the main heading */

}

/* Divider between Heading and Content */
.facilities-divider {
  width: 80px;
  height: 2px;
  background-color: #3b8d99; /* Muted blue for divider */
  margin: 16px auto 40px;
}

/* 🟩 Grid Layout */
.facility-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Flexible grid columns */
  gap: 30px;
  
}

/* ⬛ Facility Cards */
.facility-category {
  background: #ffffff; /* White background for each card */
  padding: 24px 20px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1); /* Slight shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #ffff00; /* accent gold */
  
}

.facility-category:hover {
  transform: translateY(-5px); /* Slight hover effect for interactivity */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12); /* Increase shadow on hover */'
  border-top: 4px solid #ffff00; /* accent gold */
}

/* Facility Category Title */
.facility-category h3 {
  font-size: 30px;
  color: #00309f; /* Darker blue for category titles */
  margin-bottom: 14px;
  font-weight: 600;
  border-left: 4px solid #ffff00; /* Muted teal color for border */
  padding-left: 10px;
}

/* ⬜ List Styling */
.facility-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.facility-category ul li {
  font-size: 18px;
  color: #333; /* Soft gray for list items */
  padding-left: 16px;
  position: relative;
  margin-bottom: 8px;
}

.facility-category ul li::before {
  content: "•";
  color: #b08a40; /* Gold color for bullet points */
  font-size: 16px;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .full-facilities-heading {
    font-size: 28px; /* Adjusting heading size on smaller screens */
  }

  .facility-category h3 {
    font-size: 18px; /* Adjusting title size for smaller screens */
  }

  .facility-category ul li {
    font-size: 16px; /* Adjusting list item size */
  }
}

/* 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: #fff;
  text-align: center;
  margin-top:-150px;
}

/* Overlay */
.inner-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgb(0 48 159 / 54%); /* Dark overlay to make text more readable */
  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: #fff;
  text-transform: uppercase;
}

/* Hero Subheading */
.inner-page-hero h5 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 30px;
  color: #fff;
}

/* Book Now Button */
.book-btn {
  background: #FFD700;
  color: #0033A0;
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 6px rgba(255, 215, 0, 0.4);
  transition: background 0.3s, transform 0.2s;
}

.book-btn:hover {
  background: #0033A0;
  color: #FFD700;
  transform: scale(1.05);
}

/* 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;
  }
}
/*Things to do  */
.custom-things-header {
  background-color: #fdfdfd; /* light warm white */
  padding: 20px 20px;
  text-align: center;
}

.custom-things-title {
  font-size: 36px;
  color: #003B7C; /* property primary dark blue */
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}

.custom-things-description {
  font-size: 18px;
  color: #333;
  max-width: 1300px;
  margin: 0 auto;
  line-height: 1.6;
}

.things-grid-section {
  padding: 20px 20px;
  background: #fdfdfd; /* same warm white */
}

.things-grid-section .container {
  max-width: 1140px;
  margin: auto;
}

/* Section headers inside the grid */
.things-title {
  font-size: 28px;
  color: #003B7C; /* property primary dark blue */
  margin: 40px 0 20px;
  font-weight: bold;
  border-bottom: 2px solid #ffff00; /* property accent gold */
  padding-left: 15px;
  text-transform: uppercase;
}

/* Grid layout */
.things-grid.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

/* Cards */
.thing-card {
  background: #fff; /* clean white for cards */
  border-top: 4px solid #ffff00; /* accent gold */
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Card text */
.thing-card h4 {
  font-size: 18px;
  color: #003B7C; /* property primary dark blue */
  margin-bottom: 6px;
  font-weight: 600;
}

.thing-card p {
  color: #555; /* softer grey for secondary text */
  font-size: 14px;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .things-grid.two-cols {
    grid-template-columns: 1fr;
  }

  .custom-things-title {
    font-size: 28px;
  }

  .things-title {
    font-size: 20px;
  }
}
/* Location Section Header */
.location-section-hero {
  background: #fff; /* Soft light background */
  padding: 30px 20px;
}

.location-wrapper-hero {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  background: #fff; /* Clean white background for the container */
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
}

.location-info-box {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-info-box h2 {
  font-size: 2.6rem;
  color: #0033A0; /* Primary blue */
  margin-bottom: 15px;
}

.location-info-box p {
  font-size: 1.2rem;
  color: #333333; /* Dark grey text */
  margin-bottom: 30px;
  line-height: 1.6;
}

.coordinates-area,
.directions-area {
  background: #e8f2fa; /* Light blue background for these sections */
  padding: 20px;
  border-left: 5px solid #ffff00; /* Gold border */
  margin-bottom: 25px;
  border-radius: 10px;
}

.coordinates-area h4,
.directions-area h4 {
  color: #0033A0; /* Primary blue for headings */
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.coordinates-area ul {
  list-style: none;
  padding-left: 0;
  color: #333333; /* Dark grey text */
}

.coordinates-area ul li {
  margin-bottom: 8px;
  font-size: 1rem;
}

.directions-area form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.directions-area form button {
  width: 100%;
  padding: 12px;
  background: #0033A0; /* Primary blue */
  color: #fff;
  border: none;
  font-size: 1rem;
  border-radius: 8px;
  transition: background 0.3s;
}

.directions-area form button:hover {
  background: #005fa3; /* Darker blue on hover */
}

/* Right Side Map */
.location-map-box {
  flex: 1;
  background: #e4edf2; /* Very light blue background for the map */
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 992px) {
  .location-wrapper-hero {
    flex-direction: column;
  }

  .location-map-box {
    height: 300px;
  }
}

/* Custom Location Header */
.custom-location-header {
  text-align: center;
  padding: 10px 20px;
  background-color: #fff; /* Light grey background */
}

.custom-location-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0033A0; /* Primary blue */
  margin-bottom: 20px;
  position: relative;
}

.custom-location-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background-color: #ffff00; /* Accent gold */
  display: block;
  margin: 20px auto 0;
  border-radius: 2px;
}

.custom-location-description {
  font-size: 18px;
  line-height: 1.8;
  color: #333333; /* Dark grey text */
  max-width: 1300px;
  margin: 0 auto;
}
/* 1. Contact Header Section */
.custom-contact-header {
  text-align: center;
  padding: 20px 20px;
  background-color: #fff; /* Soft light gray background */
}

.custom-contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0033A0; /* Deep blue for title */
  margin-bottom: 20px;
  position: relative;
}

.custom-contact-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background-color: #FFD700; /* Gold accent */
  display: block;
  margin: 20px auto 0;
  border-radius: 2px;
}

.custom-contact-description {
  font-size: 20px;
  line-height: 1.8;
  color: #333; /* Dark gray text for readability */
  max-width: 1200px;
  margin: 0 auto;
}

/* 2. Main Contact Info Section */
.contact-section-hero {
  background: #fff; /* Soft light gray background */
  padding: 30px 20px;
}

.contact-wrapper-hero {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  background: #fff; /* White background for the content box */
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
}

.contact-info-box {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-box h2 {
  font-size: 2.6rem;
  color: #0033A0; /* Primary blue */
  margin-bottom: 15px;
}

.contact-info-box p {
  font-size: 1.2rem;
  color: #444; /* Dark gray for description */
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-details-area {
  background: #e4f0fa; /* Light blue background for details area */
  padding: 20px;
  border-left: 5px solid #FFD700; /* Gold border accent */
  margin-bottom: 25px;
  border-radius: 10px;
}

.contact-details-area h4 {
  color: #0033A0; /* Primary blue for subheadings */
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contact-details-area ul {
  list-style: none;
  padding-left: 0;
  color: #333; /* Dark gray text */
}

.contact-details-area ul li {
  margin-bottom: 12px;
  font-size: 1rem;
}

.contact-details-area a {
  color: #007a79; /* Teal color for links */
  font-weight: 600;
  text-decoration: none;
}

.contact-details-area a:hover {
  color: #005f5c; /* Darker teal on hover */
  text-decoration: underline;
}

/* 3. Right Side Image */
.contact-image-box {
  flex: 1;
  background: #e4edf2; /* Very light blue background */
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* 4. Responsive Design */
@media (max-width: 992px) {
  .contact-wrapper-hero {
    flex-direction: column;
  }

  .contact-image-box {
    height: 300px;
  }

  .custom-contact-title {
    font-size: 2rem;
  }

  .custom-contact-description {
    font-size: 1rem;
  }

  .contact-info-box h2 {
    font-size: 2rem;
  }
}
/* 📍 Budget Inn Dothan Sitemap Section */
.sitemap-section {
    padding: 30px 20px;
    background: linear-gradient(to bottom, #ffffff, #f7f7f7, #ffffff); /* Light gray gradient */
    text-align: center;
}

.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sitemap-title {
    font-size: 3rem;
    color: #0033A0; /* Primary blue */
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.sitemap-subtitle {
    font-size: 18px;
  line-height: 1.8;
  color: #333333; /* Dark grey text */
  max-width: 1300px;
  margin: 0 auto;
  margin-bottom:30px;
}

.sitemap-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sitemap-block {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 51, 160, 0.08); /* Primary blue shadow */
    border: 1px solid #e3e3e3; /* Light gray border */
}

.sitemap-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 51, 160, 0.15); /* Darker blue shadow on hover */
}

.sitemap-block h2 {
    font-size: 1.8rem;
    color: #FFD700; /* Gold accent */
    margin-bottom: 15px;
    font-weight: 600;
}

.sitemap-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-block ul li {
    margin-bottom: 15px;
}

.sitemap-block ul li a {
    font-size: 18px;
    color: #0033A0; /* Primary blue for links */
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    font-weight: 500;
}

.sitemap-block ul li a i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: #FFD700; /* Gold for icons */
}

.sitemap-block ul li a:hover {
    color: #001e70; /* Darker blue for hover effect */
}

/* 📱 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 - Budget Inn Dothan */
.faq-section {
    padding: 30px 20px;
    background: #fff; /* Light gray background */
    color: #1a1a1a;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-title a{
    font-size: 3rem;
    font-weight: 700;
    color: #0033A0; /* Deep Blue for titles */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
}

.faq-subtitle {
    font-size: 1.3rem;
    color: #333333; /* Dark gray text for subtitle */
    margin-bottom: 50px;
}

.faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
}

.faq-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e1ecff; /* Soft blue border */
    box-shadow: 0 8px 20px rgba(0, 51, 160, 0.06); /* Blue shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	 border-top: 4px solid #ffff00; /* accent gold */
}

.faq-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 51, 160, 0.12); /* Darker blue shadow on hover */
}

.faq-item h2 {
    font-size: 1.8rem;
    color: #0033A0; /* Deep Blue for FAQ headers */
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px dashed #ffff00; /* Gold dashed underline */
}

.faq-item p {
    font-size: 1.1rem;
    color: #333333; /* Dark gray text */
    line-height: 1.75;
    margin-bottom: 10px;
}

.faq-item a {
    color: #0033A0; /* Deep Blue links */
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.faq-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffff00; /* Gold underline */
    transition: width 0.3s ease;
}

.faq-item a:hover {
    color: #FFD700; /* Gold on hover */
}

.faq-item a:hover::after {
    width: 100%; /* Full width gold underline on hover */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .faq-title {
        font-size: 2.5rem;
    }

    .faq-item h2 {
        font-size: 1.5rem;
    }

    .faq-item p {
        font-size: 1rem;
    }
}


.attraction-section {
  padding: 30px 20px;
  background-color: #ffffff; /* White background for clarity */
}

.attraction-container {
  max-width: 1200px;
  margin: 0 auto;
}

.attraction-header {
  text-align: center;
  margin-bottom: 50px;
}

.attraction-heading {
  font-size: 30px;
  font-weight: 700;
  color: #0033A0; /* Blue color from the logo */
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

.attraction-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #ffff00; /* Yellow color from the logo */
  margin: 8px auto 0;
  border-radius: 2px;
}

.attraction-subheading {
  font-size: 20px;
  color: #0033A0; /* Yellow accent for subheading */
  margin-top: 10px;
}

.attraction-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  background-color: #f3f4f9; /* Lighter background for contrast */
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  padding: 40px;
}

.attraction-img {
  flex: 1;
  min-width: 500px;
  margin-top: 10px;
}

.attraction-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.attraction-img img:hover {
  transform: scale(1.03);
}

.attraction-details {
  flex: 2;
  font-size: 16px;
  color: #333; /* Dark text for readability */
  line-height: 1.7;
}

.attraction-details p {
  margin-bottom: 18px;
}

.distance-highlight {
  background-color: #ffffb2; /* Light yellow background for contrast */
  padding: 12px 18px;
  border-left: 4px solid #ffff00; /* Yellow accent border */
  border-radius: 6px;
  font-weight: 600;
}

/* Styling for the Booking Link */
.booking-link {
  text-decoration: none; /* Remove underline */
  color: #0033A0; /* Yellow color from logo */
  font-weight: bold; /* Make it bold for emphasis */
  transition: color 0.3s ease; /* Smooth transition for color change on hover */
}

.booking-link:hover {
  color: #0033A0; /* Change to blue color when hovered, for contrast */
}


@media (max-width: 768px) {
  .attraction-wrapper {
    flex-direction: column;
    padding: 25px;
  }

  .attraction-img img {
    max-width: 100%;
  }

  .attraction-heading {
    font-size: 24px;
  }

  .attraction-subheading {
    font-size: 16px;
  }
}
