﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Rubik:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;700&display=swap');
/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }
/* Prevent potential horizontal scroll caused by transform */

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background-color:#000;
overflow-x: hidden;
  color: #333;
}

/* ===== TOPBAR ===== */
.topbar {
  background-color: #003366; /* Best Western deep blue */
  color: #ffffff;

  font-size: 14px;
  padding: 10px 0;
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  z-index:;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.topbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 200px;
  flex-wrap: wrap;
}
.topbar-left i {
  color: #ffffff;
  font-size: 16px;
}
.topbar-left span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #ffffff;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  white-space: nowrap;
}
.topbar-right i {
  color: #ffffff;
  font-size: 16px;
}
.topbar-right a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}
.topbar-right a:hover {
  color: #a0c4ff;
}
@media (max-width: 768px) {
  .topbar { display: none; }
}
/* ===== HEADER (Best Western color scheme) ===== */
.main-header {
  position: relative;
  width: 100%;
  background: transparent;
  padding: 20px 0;
  z-index: 10;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
/* Solid color appears after scrolling */
.main-header.scrolled {
  background-color: rgba(30, 64, 124, 0.95); /* Deep blue overlay #1E407C */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Logo Image */
/* Logo Image */
.logo-img {
  height: 100px;
  display: block;
   filter: drop-shadow(0 4px 12px rgba(0,0,0,50.0)) brightness(1.8);
  transition: transform 0.3s ease, filter 0.3s ease;
}
.logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.7)) brightness(1.5);
}
/* Navigation */
.nav-list {
  display: flex;
  gap: 30px;
  list-style: none;
}
.nav-list a {
  color: #ffffff;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  position: relative;
  letter-spacing: 0.3px;
  font-size:18px;
}
.nav-list a::after {
  content: "";
  display: block;
  height: 2px;
  background-color: #4A90E2; /* Lighter blue underline */
  width: 0;
  transition: width 0.3s ease;
  margin-top: 5px;
}
.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}
.nav-list a:hover,
.nav-list a.active {
  color: #4A90E2;
}
/* Social Media Icons */
.social-icons a {
  color: #ffffff;
  margin-left: 15px;
  font-size: 18px;
  transition: color 0.3s ease, transform 0.2s ease;
}
.social-icons a:hover {
  color: #4A90E2;
  transform: translateY(-2px);
}
.social-icons i {
  color: #fff !important;
  font-size: 1.4rem;
  font-weight:300;
}
/* Responsive (mobile) */
@media (max-width: 900px) {
  .nav-list {
    display: none;
  }
}
/* ===== HEADER CONTAINER ADJUSTMENT ===== */
.left-header {
  display: flex;
  align-items: center;
  gap: 15px;
}
/* Hamburger Styling */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 26px;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
  padding: 6px;
}
.hamburger:hover {
  color: #4A90E2;
  transform: scale(1.1);
}
/* Align Hamburger with Logo on Mobile/Tablets */
@media (max-width: 1024px) {
  .hamburger {
    display: block;
  }
  .nav-list,
  .social-icons {
    display: none;
  }
  .left-header {
    justify-content: space-between;
    width: 100%;
  }
  .header-container {
    justify-content: space-between;
  }
}
/* Optional tweak for small phones */
@media (max-width: 600px) {
  .logo-img {
    height: 100px;
  }
  .hamburger {
    font-size: 24px;
  }
}
/* On mobile: since topbar is hidden, move header to very top */
@media (max-width: 768px) {
  .main-header {
  margin-top: 10px;
}
}
/* ===== BACKGROUND OVERLAY ===== */
.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 1500;
}
.menu-backdrop.visible {
  opacity: 1;
  pointer-events: auto;
}
/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100%;
  background: linear-gradient(145deg, #1E407C, #0d1b3a 80%);
  background-size: 200% 200%;
  animation: bgFlow 12s ease infinite;
  color: #fff;
  z-index: 2000;
  opacity: 0;
  transition: all 0.7s cubic-bezier(.25,.8,.25,1);
  box-shadow: -12px 0 25px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px) saturate(120%);
  overflow-y: auto;
}
@keyframes bgFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.mobile-menu-overlay.open {
  right: 0;
  opacity: 1;
}
/* Inner wrapper */
.mobile-menu-content {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 40px 35px 30px;
  animation: menuSlideIn 0.7s ease forwards;
}
@keyframes menuSlideIn {
  from {opacity: 0; transform: translateX(60px);}
  to {opacity: 1; transform: translateX(0);}
}
/* ===== HEADER ===== */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 12px;
}
.mobile-menu-header img {
  height: 70px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
  animation: logoReveal 0.8s 0.3s forwards ease;
  opacity: 0;
  transform: scale(0.9);
}
@keyframes logoReveal {
  to {opacity:1; transform:scale(1);}
}
.close-menu {
  background: none;
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  transition: transform 0.4s ease, color 0.3s ease;
}
.close-menu:hover {transform: rotate(180deg); color:#fff;}
/* ===== NAVIGATION ===== */
.mobile-nav-list {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 30px;
}
.mobile-nav-list li {
  position: relative;
}
.mobile-nav-list a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
 
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-decoration: none;
  padding: 12px 18px 12px 32px;
  transition: color 0.3s ease, transform 0.3s ease;
  overflow: hidden;
  line-height: 1.3;
}
/* icon alignment fix */
.mobile-nav-list a i {
  font-size: 1.1rem;
  width: 22px;
  text-align: center;
  color: #4A90E2;
  transition: color 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
  position: relative;
  left: -5px;
}
/* text span for perfect vertical centering */
.mobile-nav-list a span {
  display: inline-block;
  vertical-align: middle;
}
/* BORDER ANIMATION - "snake" style */
.mobile-nav-list a::before,
.mobile-nav-list a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #4A90E2;
  transition: all 0.3s ease;
}
.mobile-nav-list a::before {
  top: 0;
  left: 10px;
}
.mobile-nav-list a::after {
  bottom: 0;
  right: 10px;
}
.mobile-nav-list a .border-left,
.mobile-nav-list a .border-right {
  position: absolute;
  width: 2px;
  height: 0%;
  background: #4A90E2;
}
.mobile-nav-list a .border-left {
  left: 10px;
  bottom: 0;
}
.mobile-nav-list a .border-right {
  right: 10px;
  top: 0;
}
/* Hover animation + motion */
.mobile-nav-list a:hover {
  color: #fff;
  transform: translateX(6px);
}
.mobile-nav-list a:hover i {
  color: #fff;
  transform: scale(1.2);
}
/* Snake motion timing */
.mobile-nav-list a:hover::before {
  animation: snakeTop 1.2s linear forwards;
}
.mobile-nav-list a:hover::after {
  animation: snakeBottom 1.2s linear 0.3s forwards;
}
.mobile-nav-list a:hover .border-left {
  animation: snakeLeft 1.2s linear 0.6s forwards;
}
.mobile-nav-list a:hover .border-right {
  animation: snakeRight 1.2s linear 0.9s forwards;
}
/* Keyframes */
@keyframes snakeTop {
  0% {width: 0; left: 10px;}
  50% {width: calc(100% - 20px); left: 10px;}
  100% {width: 0; left: calc(100% - 10px);}
}
@keyframes snakeBottom {
  0% {width: 0; right: 10px;}
  50% {width: calc(100% - 20px); right: 10px;}
  100% {width: 0; right: calc(100% - 10px);}
}
@keyframes snakeLeft {
  0% {height: 0; bottom: 0;}
  50% {height: 100%; bottom: 0;}
  100% {height: 0; bottom: 100%;}
}
@keyframes snakeRight {
  0% {height: 0; top: 0;}
  50% {height: 100%; top: 0;}
  100% {height: 0; top: 100%;}
}
/* Updated Dropdown with Snake Border Effect */
.nav-list .dropdown {
  position: relative;
}
.dropdown-link i {
  margin-left: 6px;
  font-size: 12px;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(30,64,124,0.95);
  padding: 15px 0;
  list-style: none;
  min-width: 220px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  border-top: 3px solid #4A90E2;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
/* Snake Border Elements */
.dropdown-menu::before,
.dropdown-menu::after,
.dropdown-menu span::before,
.dropdown-menu span::after {
  content: '';
  position: absolute;
  background: #4A90E2;
  z-index: 1;
}
.dropdown-menu::before { /* Top */
  height: 2px;
  top: 0;
  animation: snakeTop 2.5s infinite linear;
}
.dropdown-menu::after { /* Bottom */
  height: 2px;
  bottom: 0;
  animation: snakeBottom 2.5s infinite linear;
}
.dropdown-menu span::before { /* Left */
  width: 2px;
  left: 0;
  animation: snakeLeft 2.5s infinite linear;
}
.dropdown-menu span::after { /* Right */
  width: 2px;
  right: 0;
  animation: snakeRight 2.5s infinite linear;
}
/* Required wrapper for left/right borders */
.dropdown-menu span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s ease;
  position: relative;
  z-index: 2;
}
.dropdown-menu li a:hover {
  background: rgba(74,144,226,0.3);
  color: #ffffff;
  padding-left: 25px;
}
/* Show on Hover */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* Responsive (mobile) */
@media (max-width: 900px) {
  .nav-list {
    display: none;
  }
}
/* Responsive adjustments */
@media (max-width: 600px) {
  .mobile-nav-list { gap: 22px; }
  .mobile-nav-list a { font-size: 17px; padding: 10px 15px 10px 28px; }
  .mobile-nav-list a i { width: 20px; left: -4px; }
}
/* ===== FOOTER ===== */
.mobile-menu-footer {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 25px;
  text-align: center;
 
}
.mobile-phone {
  display:block;
  color:#fff;
  margin-bottom:10px;
  text-decoration:none;
}
.mobile-book-btn {
  display:inline-block;
  background:linear-gradient(90deg,#1E407C,#4A90E2);
  color:#fff;
  padding:12px 30px;
  border-radius:30px;
  text-transform:uppercase;
  letter-spacing:.8px;
  text-decoration:none;
  transition:transform .3s ease,box-shadow .3s ease;
  box-shadow:0 3px 10px rgba(30,64,124,.4);
  animation: pulseGlow 3s infinite;
}
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(74,144,226,0.6); }
  70% { box-shadow: 0 0 0 15px rgba(74,144,226,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,144,226,0); }
}
/* Mobile Dropdown */
.mobile-dropdown {
  position: relative;
}
.mobile-dropdown > a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
/* Toggle Button (arrow) */
.mobile-dropdown-toggle {
  position: absolute;
  right: 10px;
  top: 14px;
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  padding: 5px;
  transition: transform 0.3s ease;
}
/* Rotate arrow when open */
.mobile-dropdown.open .mobile-dropdown-toggle i {
  transform: rotate(180deg);
}
/* Submenu hidden */
.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border-left: 2px solid #4A90E2;
  margin-left: 40px;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  transition: max-height 0.35s ease;
}
/* Submenu items */
.mobile-submenu li a {
  padding: 10px 0;
  color: #A0C4FF;
  font-weight: 600;
  font-size: 15px;
  display: block;
  border-bottom: 1px solid rgba(74,144,226,0.2);
}
.mobile-submenu li:last-child a {
  border-bottom: none;
}
.mobile-submenu li a:hover {
  color: #fff;
}
/* When submenu open */
.mobile-dropdown.open .mobile-submenu {
  max-height: 400px;
}
.mobile-book-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(30,64,124,.6);
}
.mobile-address {
  margin-top: 15px;
  font-size: 14px;
  color: #ddd;
}
.mobile-address i {
  color: #4A90E2;
  margin-right: 6px;
}
@media(max-width:600px){
  .mobile-menu-content{padding:30px 25px;}
  .mobile-nav-list a{font-size:18px;}
}
/* =========================================================
   STICKY SIDE HEADER — CINEMATIC DARK BLUE DESIGN
   ========================================================= */
.sticky-side-header {
  position: fixed;
  top: 0;
  left: -360px;
  width: 240px;
  height: 100vh;
  background: linear-gradient(180deg, #0a1529 0%, #1E407C 40%, #000 100%);
  color: #fff;
  z-index: 3000;
  border-right: 1px solid rgba(74, 144, 226, 0.2);
  box-shadow: 8px 0 20px rgba(0, 0, 0, 0.8);
  transition: left 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow-y: auto;
  backdrop-filter: blur(10px);
}
/* === Active State (slide in) === */
.sticky-side-header.show {
  left: 0;
  box-shadow: 12px 0 40px rgba(30, 64, 124, 0.4);
}
/* === Subtle inner blue edge === */
.sticky-side-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: -2px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #4A90E2 0%, #1E407C 50%, #4A90E2 100%);
  opacity: 0.6;
}
/* === Inner Content === */
.sticky-header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 15px 60px;
  width: 100%;
  text-align: center;
}
/* === Logo === */
.sticky-logo img {
  height: 85px;
  width: auto;
  margin-bottom: 35px;
  transition: transform 0.5s ease, filter 0.5s ease;
   filter: drop-shadow(0 4px 12px rgba(0,0,0,50.0)) brightness(1.8);
}
.sticky-logo img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 20px rgba(74, 144, 226, 0.5));
}
/* === Navigation === */
.sticky-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 0;
  margin: 0;
}
.sticky-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f5f5f5;
  text-decoration: none;
 
  font-size: 17px;
  padding: 12px 20px;
  border-radius: 8px;
  position: relative;
  transition: all 0.4s ease;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(4px);
}
/* === Icon Styling === */
.sticky-nav a i {
  color: #4A90E2;
  font-size: 18px;
  transition: color 0.3s ease, transform 0.3s ease;
}
/* === Hover / Active State === */
.sticky-nav a:hover,
.sticky-nav a.active {
  background: rgba(30, 64, 124, 0.25);
  color: #A0C4FF;
  transform: translateX(5px);
  box-shadow: 0 0 15px rgba(30, 64, 124, 0.3);
}
.sticky-nav a:hover i,
.sticky-nav a.active i {
  color: #A0C4FF;
  transform: scale(1.25);
}
/* === Cinematic underline animation === */
.sticky-nav a::before {
  content: "";
  position: absolute;
  left: 10%;
  bottom: 6px;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #1E407C, #4A90E2);
  transition: width 0.4s ease;
  border-radius: 2px;
}
.sticky-nav a:hover::before,
.sticky-nav a.active::before {
  width: 80%;
}
/* === Scrollbar === */
.sticky-side-header::-webkit-scrollbar {
  width: 6px;
}
.sticky-side-header::-webkit-scrollbar-thumb {
  background: rgba(74, 144, 226, 0.25);
  border-radius: 6px;
}
/* FINAL PERFECTED LUXURY DROPDOWN */
.luxury-dropdown {
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(4px);
  margin: 6px 0;
  transition: all 0.4s ease;
}
.luxury-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  color: #f5f5f5;
 
  font-size: 17px;
  text-decoration: none;
  transition: all 0.4s ease;
}
.luxury-trigger i:first-child { color: #4A90E2; }
.menu-text { flex: 1; text-align: left; }
.luxury-arrow {
  font-size: 13px;
  color: #A0C4FF;
  transition: transform 0.4s ease;
}
/* Hover trigger */
.luxury-dropdown:hover .luxury-trigger {
  background: rgba(30, 64, 124, 0.25);
  color: #A0C4FF;
  transform: translateX(5px);
  box-shadow: 0 0 15px rgba(30, 64, 124, 0.3);
}
.luxury-dropdown:hover .luxury-trigger i,
.luxury-dropdown:hover .luxury-arrow { color: #A0C4FF; }
.luxury-dropdown:hover .luxury-arrow { transform: rotate(180deg); }
/* Panel */
.luxury-panel {
  max-height: 0;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(10,21,41,0.6), rgba(13,27,58,0.4));
  transition: max-height 0.6s cubic-bezier(0.77, 0, 0.175, 1), padding 0.5s ease;
}
.luxury-panel a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px 13px 52px;
  color: #A0C4FF;
  font-size: 15.5px;

  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.35s ease;
  border-bottom: 1px solid rgba(74,144,226,0.1);
}
.luxury-panel a i {
  font-size: 14px;
  width: 18px;
  color: #4A90E2;
}
.luxury-panel a:hover {
  background: #1E407C;
  color: #fff;
  padding-left: 60px;
  box-shadow: inset 5px 0 0 #A0C4FF;
}
.luxury-panel a:hover i { color: #fff; }
/* Expand */
.luxury-dropdown:hover .luxury-panel {
  max-height: 400px;
  padding: 10px 0;
}
/* Blue underline */
.luxury-trigger::before {
  content: "";
  position: absolute;
  left: 10%; bottom: 8px;
  width: 0; height: 2px;
  background: linear-gradient(to right, #1E407C, #4A90E2);
  transition: width 0.4s ease;
}
.luxury-dropdown:hover .luxury-trigger::before { width: 80%; }
/* === Mobile Responsive (hide) === */
@media (max-width: 768px) {
  .sticky-side-header {
    display: none;
  }
}
/* Cinematic Hero Slider - Clean, Organized & Mobile Optimized */
.cinematic-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #000;
  margin-top: -140px;
}
.slides {
  height: 100%;
  position: relative;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide.active {
  opacity: 1;
  z-index: 1;
}
.slide-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.2) rotate(0.5deg);
  filter: brightness(0.85);
  transition: transform 18s ease, filter 2s ease;
}
.slide.active .slide-bg {
  transform: scale(1) rotate(0);
  filter: brightness(1);
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,64,124,0.6), rgba(0,0,0,0.9));
  mix-blend-mode: multiply;
  opacity: 0.8;
}
.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  max-width: 1100px;
  width: 100%;
  z-index: 5;
  padding: 40px 20px;
  box-sizing: border-box;
text-transform: uppercase;
}
.slide-content h1 {
  font-size: clamp(30px, 4.5vw, 65px);
  line-height: 1.15;
  margin-bottom: 30px;
  text-shadow: 0 5px 25px rgba(0,0,0,0.9);
  opacity: 0;
  transform: translateY(80px);
  transition: all 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 1px;
  word-wrap: break-word;
  font-weight:400;
  font-family: 'Oswald', sans-serif;
}
.slide-content p {
  font-size: clamp(10px, 1.5vw, 22px);
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(60px);
  transition: all 1.5s ease 0.4s;
  text-shadow: 0 3px 15px rgba(0,0,0,0.6);
}
.btn-primary {
  display: inline-block;
  background: linear-gradient(90deg, #4A90E2, #1E407C);
  padding: 18px 50px;
  border-radius: 60px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all 1.5s ease 0.8s, background 0.4s;
  box-shadow: 0 6px 20px rgba(74,144,226,0.5);
}
.btn-primary:hover {
  background: linear-gradient(90deg, #1E407C, #4A90E2);
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(74,144,226,0.7);
}
.slide.active h1,
.slide.active p,
.slide.active .btn-primary {
  opacity: 1;
  transform: translateY(0) scale(1);
}
/* Updated Slide Indicators */
.slide-indicators {
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10;
}

.slide-indicators span {
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.4s, transform 0.4s;
}

.slide-indicators span img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
  transition: transform 0.4s, border-color 0.4s, opacity 0.4s;
}

.slide-indicators span.active img {
  border-color: #4A90E2;
  opacity: 1;
  transform: scale(1.2);
}

/* On hover */
.slide-indicators span:hover img {
  opacity: 1;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 767px) {
  .slide-indicators {
    flex-direction: row;
    top: auto;
    bottom: 100px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .slide-indicators span img {
    width: 35px;
    height: 35px;
  }
}

/* Scroll Down */
.scroll-down {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  animation: bounce 2.5s infinite ease-in-out;
  z-index: 10;
}
.scroll-down:hover {
  border-color: #4A90E2;
  color: #4A90E2;
}
.scroll-down i {
  font-size: 32px;
  line-height: 54px;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(20px); }
}
/* Social Left - With Shadow & Background */
.social-left {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 25px;
  z-index: 15;
  padding: 20px 10px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.social-icon {
  color: #fff;
  font-size: 30px;
  opacity: 0.8;
  transition: opacity 0.3s, transform 0.3s, color 0.3s;
}
.social-icon:hover {
  opacity: 1;
  transform: scale(1.3) rotate(15deg);
  color: #4A90E2;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
/* Responsive */
@media (max-width: 1200px) {
  .slide-content { max-width: 95%; width: 95%; }
  .slide-content h1 { font-size: clamp(25px, 4vw, 50px); }
  .social-icon {
 
  font-size: 20px;
  
}
.slide-indicators span { font-size: 20px; }
.slide-indicators span.active {
  opacity: 1;
  color: #4A90E2;
  transform: scale(1.2);
  font-size: 25px;
}
}
@media (max-width: 768px) {
  .cinematic-hero { height: 40vh; min-height: 600px; margin-top:-150px;}
  .slide-content { top: 55%; padding: 20px; max-width: 90%; }
  .slide-content h1 { font-size: 25px; margin-bottom: 20px; }
  .slide-content p { font-size:17px; margin-bottom: 40px; }
  .btn-primary { padding: 14px 40px; font-size: 10px; }
  .slide-indicators { right: 20px; gap: 15px; }
  .slide-indicators span { font-size: 18px; }
  .slide-indicators span.active { font-size: 36px; }
  .scroll-down { width: 50px; height: 50px; bottom: 40px; }
  .scroll-down i { font-size: 28px; line-height: 46px; }
  .social-left { Display:none; }
  .social-icon { Display:none;}
  .whatsapp-bottom a { font-size: 50px; }
}
@media (max-width: 480px) {
  .cinematic-hero { height: 40vh; min-height: 500px;margin-top:-150px; }
  .slide-content h1 { font-size:25px; }
  .slide-content p { font-size: 18px; }
}
@media (max-width: 767px) { /* Mobile only */
  .slide-indicators {
    top: auto;
    bottom: 120px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    flex-direction: row;
    gap: 20px;
  }
  .slide-indicators span {
    font-size: 20px;
  }
  .slide-indicators span.active {
    font-size: 28px;
    transform: scale(1.3);
  }
}
@media (max-width: 480px) {
  .slide-indicators {
    bottom: 100px;
    gap: 15px;
  }
  .slide-indicators span {
    font-size: 18px;
  }
  .slide-indicators span.active {
    font-size: 24px;
  }
}
/* WELCOME SECTION — Enhanced Attractive Blue Theme */
.welcome-glass {
  position: relative;
  min-height: 140vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, #001f3f 0%, #000 100%);
}
.welcome-bg {
  position: fixed;
  inset: 0;
  background: url('../images/new/new/lobby1.webp') center/cover no-repeat fixed;
  filter: brightness(0.75) contrast(1.1);
  z-index: 0;
  transform: scale(1.05);
  transition: transform 1.5s ease-out;
}
.welcome-glass.scrolled .welcome-bg {
  transform: scale(1);
}
.welcome-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,30,80,0.9) 20%, rgba(0,0,0,0.5) 70%);
  z-index: 1;
}
.welcome-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  gap: 40px;
  padding: 10px 0;
}
.welcome-image {
  flex: 1.3;
  position: relative;
  transition: transform 0.8s ease, opacity 0.8s ease;
 
}
/* === Control the Pool Image Position === */
.pool-image {
  position: relative;
  top: 110px; /* move up */
  transition: top 0.5s ease;
}

/* Example: for small screens, reset position */
@media (max-width: 1024px) {
  .pool-image {
    top: 0;
  }
}

.welcome-image img {
  width: 100%;
   
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  transition: transform 0.8s ease;
}
.welcome-image:hover img {
  transform: scale(1.05);
  
}
.floating-thumb {
  position: absolute;
  bottom: -650px;
  right: -10px;
  width: 65%;
  z-index: 3;
  height:600px;
}
.floating-thumb img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.5);
  transition: transform 0.8s ease;
}
.welcome-image:hover .floating-thumb img {
  transform: scale(1.1);
}
.welcome-image.hide {
  opacity: 0;
  transform: translateX(-100px);
  pointer-events: none;
}
/* Welcome Section - Improved Content Background */
.welcome-info {
  flex: 1;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
  backdrop-filter: blur(15px);
  padding: 60px 70px;
  border-radius: 20px;
  border: 1px solid rgba(74,144,226,0.3);
  box-shadow: 
    0 20px 50px rgba(0,0,0,0.4),
    inset 0 0 30px rgba(74,144,226,0.1);
  transition: all 0.7s ease;
}
.welcome-info::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(74,144,226,0.1) 50%, transparent 70%);
  border-radius: 20px;
  pointer-events: none;
}


.welcome-info h1 {
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 400;
  margin-bottom: 25px;
  line-height: 1.2;
  font-family: 'Oswald', sans-serif;
}
.welcome-info h1 span {
  color: #4A90E2;
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
}
.welcome-info p {
  color: #e8f0ff;
  line-height: 1.8;
  font-size: 18px;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.readmore-btn,
.readless-btn {
  display: inline-block;
  background: linear-gradient(90deg, #4A90E2, #003366);
  color: #fff;
  font-size: 1.1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  letter-spacing: 1px;
  margin-top: 15px;
  box-shadow: 0 8px 25px rgba(74,144,226,0.5);
}
.readmore-btn:hover,
.readless-btn:hover {
  background: linear-gradient(90deg, #003366, #4A90E2);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(74,144,226,0.7);
}
/* FULLSCREEN EXPANDED MODE — CINEMATIC DESIGN (Blue Theme) */
.fullscreen-content {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 5%;
  overflow-y: auto;
  color: #fff;
  background: radial-gradient(circle at 30% 20%, rgba(0,30,80,0.9), rgba(0,0,0,0.98));
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05);
  transition: opacity 0.8s ease, transform 1s ease, visibility 0s linear 0.8s;
  z-index: 9999;
  backdrop-filter: blur(6px);
}
.fullscreen-content.open {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition-delay: 0s;
}
.fullscreen-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 60%, rgba(0,0,0,0.8) 100%);
  pointer-events: none;
  z-index: 0;
}
.content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1250px;
  text-align: left;
  animation: fadeInUp 1.2s ease forwards;
  padding: 40px 60px;
  border-radius: 12px;
  background: rgba(20,20,40,0.6);
 
  box-shadow: 0 10px 40px rgba(0,0,0,0.7), 0 0 60px rgba(74,144,226,0.25);
}
.content-wrapper h2 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  color: #fff;
  text-shadow: 0 3px 10px rgba(0,0,0,0.8);
  border-bottom: 2px solid #4A90E2;
  display: inline-block;
  padding-bottom: 6px;
}
.content-wrapper h2 span {
  color: #A0C4FF;
}
.content-wrapper p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 20px;
}
.fullscreen-content.open .content-wrapper {
  animation: fadeInUp 1.2s ease forwards, glowSoft 3s ease-in-out infinite alternate;
}
@keyframes glowSoft {
  from { box-shadow: 0 10px 40px rgba(0,0,0,0.7), 0 0 30px rgba(74,144,226,0.2); }
  to { box-shadow: 0 10px 40px rgba(0,0,0,0.8), 0 0 40px rgba(74,144,226,0.3); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.welcome-glass {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1.2s cubic-bezier(0.55, 0, 0.1, 1);
}
.welcome-glass.active {
  opacity: 1;
  transform: translateY(0);
}
/* Hide welcome images on mobile and tablet */
@media (max-width: 1024px) {
  .welcome-image img,
  .welcome-image .floating-thumb {
    display: none !important;
  }

  /* Keep reservation box visible and full width */
  .welcome-image .reservation-box {
    position: relative;
    top: 0;
    max-width: 100%;
    margin: 0 auto;
  }
}
/* === Improved Reservation Box Width for iPad & Tablet === */
@media (min-width: 768px) and (max-width: 1024px) {
  /* Stack layout vertically for breathing space */
  .welcome-inner {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  /* Make reservation box larger and centered */
  .welcome-image .reservation-box {
    position: relative;
    top: 0;
    width: 100%;
	Left:0px;
    max-width: 950px;
    margin: 10px auto;
    padding: 40px 50px;
    border-radius: 20px;
	margin-top:50px;
  }

  /* Optional: increase form field size for touch comfort */
  .form-group input,
  .form-group select {
    font-size: 1rem;
    padding: 14px 16px;
  }

  .reserve-btn {
    font-size: 1.1rem;
    padding: 14px 0;
  }
}

/* ================================
   MOBILE OPTIMIZED FULLSCREEN CONTENT
   ================================ */
@media (max-width: 768px) {
.welcome-glass {
    min-height: 100vh;
    padding: 100px 20px 80px;
    align-items: flex-start;
  }
  

  /* Main wrapper — reduce padding, remove heavy effects */
  .content-wrapper {
    padding: 20px 18px !important;
    border-radius: 10px;
    max-width: 100% !important;
    background: rgba(20,20,20,0.85) !important;
   
    box-shadow: 0 4px 20px rgba(0,0,0,0.5) !important;
  }

  /* Heading */
  .content-wrapper h2 {
    font-size: 1.7rem !important;
    text-align: left;
    margin-bottom: 15px !important;
    padding-bottom: 4px !important;
  }

  .content-wrapper h2 span {
    font-size: 1.7rem !important;
  }

  /* Paragraph text */
  .content-wrapper p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 15px !important;
  }

  /* Remove cinematic glow + heavy animation */
  .fullscreen-content.open .content-wrapper {
    animation: none !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4) !important;
  }

  /* Reduce fullscreen padding */
  .fullscreen-content {
    padding: 40px 5% !important;
  }
}
/* =========================================================
   ULTRA-MOBILE SCREENS (393px – 430px WIDTH)
   Pixel 7 Pro / iPhone 14 Pro Max / Similar Devices
   ========================================================= */
@media (max-width: 932px) {

  /* Fullscreen container */
  .fullscreen-content {
    padding: 40px 3% !important;
    align-items: flex-start !important;
  }

  /* Content wrapper */
  .content-wrapper {
    padding: 18px 15px !important;
    border-radius: 8px !important;
   
    background: rgba(20,20,20,0.9) !important;
    box-shadow: 0 3px 15px rgba(0,0,0,0.45) !important;
  }

  /* Heading */
  .content-wrapper h2 {
    font-size: 1.45rem !important;
    line-height: 1.3 !important;
    margin-bottom: 12px !important;
  }

  .content-wrapper h2 span {
    font-size: 1.45rem !important;
  }

  /* Paragraph text */
  .content-wrapper p {
    font-size: 0.9rem !important;
    line-height: 1.55 !important;
    margin-bottom: 12px !important;
  }

  /* Remove glow animation fully */
  .fullscreen-content.open .content-wrapper {
    animation: none !important;
  }
}
.reservation-box {
    position: absolute;
    top: -450px;
    left: 0;
    width: 100%;
    max-width: 680px;
    background: rgba(0, 20, 50, 0.85);
    border: 1px solid rgba(74,144,226,0.4);
    backdrop-filter: blur(10px);
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.6);
    z-index: 5;
    color: #fff;
  }

  .reservation-box h3 {
    font-size: 1.6rem;
    font-family: 'Oswald', sans-serif;
    color: #4A90E2;
    text-align: center;
    margin-bottom: 20px;
  }

  .reservation-box form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .form-group label {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: #A0C4FF;
    margin-bottom: 5px;
  }

  .form-group input,
  .form-group select {
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid rgba(74,144,226,0.3);
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 0.95rem;
    transition: border 0.3s, background 0.3s;
  }

  .form-group input:focus,
  .form-group select:focus {
    outline: none;
    border-color: #4A90E2;
    background:#A0C4FF;
  }

  .reserve-btn {
    background: linear-gradient(90deg, #4A90E2, #003366);
    color: #fff;
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(74,144,226,0.4);
  }

  .reserve-btn:hover {
    background: linear-gradient(90deg, #003366, #4A90E2);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(74,144,226,0.6);
  }

  /* Responsive */
  @media (max-width: 992px) {
    .reservation-box {
      position: relative;
      top: 0;
      max-width: 100%;
      margin-bottom: 30px;
    }
  }

/* === Responsive tweaks === */
@media (max-width: 768px) {
  .content-wrapper {
    padding: 25px;
  }

  .content-wrapper h2 {
    font-size: 2rem;
  }
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */
@media (max-width: 1200px) {
	 /* Fullscreen container */
  .fullscreen-content {
    padding: 20px 3% !important;
    
  }
  /* Remove glow animation fully */
  .fullscreen-content.open .content-wrapper {
    animation: none !important;
  }
  .welcome-inner {
    gap: 40px;
  }

  .welcome-info {
    padding: 40px 50px;
  }

  .welcome-info h2 {
    font-size: 2.2rem;
  }
  
}

@media (max-width: 1024px) {
	
  .welcome-inner {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }

  .welcome-info {
    padding: 40px;
    border-left: none;
   
  }

  .floating-thumb {
    position: static;
    width: 60%;
    margin: 30px auto 0;
  }

  .welcome-image img {
    border-radius: 8px;
  }
}

@media (max-width: 767px) {
  .welcome-glass {
    padding: 60px 0;
  }

  .welcome-inner {
    width: 90%;
  }

  .welcome-info {
    padding: 25px;
  }

  .welcome-info h2 {
    font-size: 1.8rem;
  }

  .welcome-info p {
    font-size: 0.95rem;
  }

  .content-wrapper h2 {
    font-size: 2rem;
  }
  
}
/* Amenities Section - Little Bit Dark Version */
.amenities-section {
  padding: 40px 8%;
  background: #e8f0f8; /* slightly darker light blue */
  text-align: center;
}
.section-title2 h2 {
  font-size: clamp(40px, 5vw, 60px);'
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 15px;
  color: #002b5c; /* darker deep blue */
   font-family: 'Oswald', sans-serif;
   
}
.section-title2 p {
  font-size: 18px;
  color: #444; /* darker gray */
  margin-bottom: 60px;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
}
.amenity-card {
  text-align: center;
}
.circle-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  background: #002b5c; /* darker deep blue icon background */
  color: #fff;
  border-radius: 35% 65% 70% 30% / 40% 30% 70% 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18); /* darker shadow */
  transition: all 0.3s ease;
}
.circle-icon:hover {
  background: #003366; /* even darker on hover */
  transform: scale(1.05);
}
.amenity-card h4 {
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #002b5c; /* darker blue */
}
.amenity-card p {
  font-size: 18px;
  color: #444; /* darker gray */
}
@media (max-width: 1024px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 50px; }
}
@media (max-width: 768px) {
  .amenities-grid { grid-template-columns: 1fr; gap: 40px; }
}
.attractions-section {
  position: relative;
  padding: 140px 20px;
  text-align: center;
  overflow: hidden;
}
.bg-video {
  position: fixed; /* Sticky background */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.attractions-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 20, 60, 0.7);
  z-index: 1;
}
.container1 {
  position: relative;
  z-index: 2;
}
.section-title {
 font-size: clamp(40px, 5vw, 60px);'
  line-height: 1.2;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
   font-family: 'Oswald', sans-serif;
}
.section-subtitle {
  font-size: 20px;
  color: #fff;
  margin-bottom: 60px;
}
.slider-wrapper {
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  cursor: grab;
}
.slider-wrapper:active { cursor: grabbing; }
.slider-wrapper:hover .slider-track,
.slider-wrapper:active .slider-track {
  animation-play-state: paused;
}
.slider-track {
  display: flex;
  gap: 30px;
  animation: scrollHorizontal 10s linear infinite;
}
@keyframes scrollHorizontal {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.attraction-item {
  flex: 0 0 450px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform 0.4s ease;
}
.attraction-item:hover {
  transform: translateY(-10px);
}
.attraction-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.attraction-item h3 {
  font-size: 22px;
  color: #fff;
  padding: 15px 15px 8px;
}
.attraction-item p {
  font-size: 15px;
  color: #ddd;
  padding: 0 15px 20px;
}
@media (max-width: 1024px) {
  .attraction-item { flex: 0 0 300px; }
   .bg-video {
  Display:none;
}
}
@media (max-width: 768px) {
  .section-title { font-size: 40px; }
  .section-subtitle { font-size: 16px; margin-bottom: 40px; }
  .attraction-item { flex: 0 0 280px; }
  .attraction-item img { height: 180px; }
  .attraction-item h3 { font-size: 20px; padding: 12px 12px 6px; }
  .attraction-item p { font-size: 14px; padding: 0 12px 15px; }
  .bg-video {
  Display:none;
}
}
@media (max-width: 480px) {
  .attraction-item { flex: 0 0 260px; }
  .slider-track { gap: 20px; }
}
/* Rooms Section - Light Blue Theme */
.rooms-section {
  padding: 80px 8% 100px;
  background: #e8f0f8;
  text-align: center;
}
.section-title1 h2 {
  font-size: clamp(40px, 5vw, 60px);'
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 15px;
  color: #003366; /* Deep blue */
   font-family: 'Oswald', sans-serif;
}
.section-title1 p {
  font-size: 18px;
  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;
  border-radius: 16px;
  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 */
.room-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  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: #003366;
  font-weight: 700;
}
.room-card:hover .room-info {
  opacity: 0;
  transform: translateY(30px);
}
/* Hover Overlay */
.room-hover {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,51,102,0.92); /* Deep blue overlay */
  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;
}
.room-hover p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.book-btn {
  background: #4A90E2; /* Accent blue */
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.book-btn:hover {
  background: #003366;
  transform: scale(1.05);
}
/* 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;
  }
}

/* Media Section - #e8f0f8 Theme */
.media-section {
  padding: 60px 8%;
  background: #e8f0f8;
}
.media-header {
  text-align: center;
  margin-bottom: 40px;
}
.media-title {
 font-size: clamp(40px, 5vw, 60px);'
  line-height: 1.2;
  font-weight: 400;
  text-transform: uppercase;
  color: #003366;
   font-family: 'Oswald', sans-serif;
}
.media-subtitle {
  font-size: 18px;
  color: #555;
  margin-top: 10px;
  line-height: 1.6;
}
.media-flex {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.media-video {
  flex: 1 1 50%;
}
/* === Cinematic YouTube Overlay === */
.media-video {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.property-video {
  width: 100%;
  height: 513px;
  object-fit: cover;
  filter: brightness(0.8);
  transition: filter 0.5s ease;
}

.video-fade-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.75));
  z-index: 2;
  transition: opacity 0.8s ease;
}

.play-button {
  background: radial-gradient(circle at center, #4A90E2, #1E407C);
  border: none;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  color: #fff;
  cursor: pointer;
  font-size: 36px;
  box-shadow: 0 0 30px rgba(74,144,226,0.8);
  transition: all 0.4s ease;
  position: relative;
  z-index: 3;
}
.play-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 60px rgba(74,144,226,0.9), 0 0 20px rgba(255,255,255,0.3);
}
.play-button i {
  margin-left: 5px;
}

/* Pulsing glow animation */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 30px rgba(74,144,226,0.8); }
  50% { box-shadow: 0 0 50px rgba(74,144,226,1); }
}
.play-button {
  animation: pulseGlow 2s infinite ease-in-out;
}

/* YouTube iframe styling */
.youtube-frame-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
  transition: all 1s ease;
  z-index: 3;
  border-radius: 8px;
  overflow: hidden;
}

.youtube-frame-wrapper.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.youtube-frame-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* When playing - dim background video */
.media-video.playing .property-video {
  filter: brightness(0.3);
}
.media-video.playing .video-fade-overlay {
  opacity: 0;
  pointer-events: none;
}

.media-gallery {
  flex: 1 1 50%;
}
.media-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.media-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.media-gallery-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.media-gallery-item:hover img {
  transform: scale(1.05);
}
.media-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,51,102,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.media-gallery-item:hover .media-overlay {
  opacity: 1;
}
.media-overlay em {
  font-size: 28px;
  color: #fff;
  background: #4A90E2;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.media-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 10000;
}
.media-lightbox.active {
  display: flex;
}
.media-lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
}
.media-lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
}
/* Tablet */
@media (max-width: 992px) {
  .media-flex {
    flex-direction: column;
    gap: 30px;
  }

  .media-video,
  .media-gallery {
    flex: 1 1 100%;
    width: 100%;   /* ✅ force full width */
  }

  .video-placeholder {
    height: 350px; /* smaller height for tablets */
    width: 100%;   /* ✅ fills container */
  }

  .media-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .media-gallery-item img {
    height: 140px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .media-video,
  .media-gallery {
    flex: 1 1 100%;
    width: 100%;   /* ✅ ensures full width */
  }

  .video-placeholder {
    height: auto;             /* ✅ make it flexible */
    aspect-ratio: 16 / 9;     /* ✅ keep proper video proportions */
    max-height: 220px;        /* limit for small devices */
    width: 100%;
  }

  .media-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .media-gallery-item img {
    height: 120px;
  }

  .media-title {
    font-size: 1.8rem;
  }
}
/* Footer Section - Gradient Transparent Dark */
.aligned-footer {
  background: linear-gradient(135deg, rgba(0,31,63,0.9), rgba(0,0,0,0.9));
  color: #e8f0ff;
  padding: 60px 5% 40px;
  border-top: 4px solid #4A90E2;
  backdrop-filter: blur(5px); /* Slight blur for depth */
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.footer-logo-wrapper img {
  max-width: 180px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,50.0)) brightness(1.8);
  transition: transform 0.3s ease;
}
.footer-logo-wrapper img:hover {
  transform: scale(1.05);
}
.footer-social-icons {
  display: flex;
  gap: 15px;
}
.footer-social-icon {
  width: 45px;
  height: 45px;
  background: #4A90E2;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s;
  text-decoration:none;
}
.footer-social-icon:hover {
  background: #fff;
  color: #003366;
  transform: scale(1.1);
}
.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-contact,
.footer-links {
  flex: 1;
  min-width: 300px;
}
.footer-contact h3,
.footer-links h3 {
  font-size: 30px;
  color: #fff;
  margin-bottom: 20px;
  border-bottom: 2px solid #4A90E2;
  padding-bottom: 8px;
  font-weight:400;
  font-family: 'Oswald', sans-serif;
}
.title5 {
	font-size: 30px;
  color: #fff;
  margin-bottom: 20px;
 font-weight:200;
   padding-bottom: 8px;
  font-family: 'Oswald', sans-serif;
  text-decoration:none;
}
.footer-contact p,
.footer-contact a,
.footer-contact {
  font-size: 20px;
  color: #ddd;
  text-decoration:none;
  
}
.cgsl {
  color: #A0C4FF;
  text-decoration: none;
}
.cgsl:hover {
  color: #fff;
}
.footer-links ul {
  list-style: none;
  columns: 2;
  gap: 20px;
}
.footer-links ul li a {
  color: #ddd;
  text-decoration: none;
  font-size: 20px;
  display: block;
  margin-bottom: 12px;
  transition: color 0.3s;
}
.footer-links ul li a:hover {
  color: #4A90E2;
}
.footer-bottom {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(74,144,226,0.3);
  text-align: center;
  font-size: 15px;
  color: #A0C4FF;
}
.footer-bottom a {
  color: #4A90E2;
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .footer-top { flex-direction: column; text-align: center; }
  .footer-social-icons { margin-top: 20px; }
  .footer-content { flex-direction: column; align-items: center; text-align: center; }
  .footer-links ul { columns: 2;text-align: left;  }
  iframe {
    width: 100% !important;
    height: 250px !important;
    margin-top: 0 !important;
    margin-bottom: 30px;
  }
}
.footer-contact-form {
  flex: 1;
  min-width: 300px;
}

.footer-contact-form h3 {
  font-size: 30px;
  color: #fff;
  margin-bottom: 25px;
  border-bottom: 2px solid #4A90E2;
  padding-bottom: 8px;
  font-weight: 400;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 380px;
}

.form-input,
.form-textarea {
  padding: 14px 16px;
  font-size: 18px;
  border: none;
  border-radius: 6px;
  background: #ffffff;
  color: #003366;
}

.form-textarea {
  min-height: 110px;
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
  outline: 2px solid #4A90E2;
}

.recaptcha-wrapper {
  margin: 12px 0;
  display: flex;
  justify-content: center;
  background: #fff;
  padding: 8px;
  border-radius: 6px;
}

.form-submit {
  padding: 16px;
  font-size: 18px;
  background: #4A90E2;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.form-submit:hover {
  background: #357ABD;
}

@media (max-width: 1024px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 50px;
  }

  .footer-contact,
  .footer-links,
  .footer-contact-form {
    width: 100%;
    max-width: 500px;
  }

  .contact-form {
    max-width: 100%;
    width: 100%;
  }

  .footer-contact-form h3 {
    font-size: 26px;
  }

  .form-input,
  .form-textarea {
    font-size: 16px;
    padding: 12px 14px;
  }

  .form-submit {
    font-size: 16px;
    padding: 14px;
  }

  .recaptcha-wrapper {
    transform: scale(0.92);
    transform-origin: center;
  }
}

@media (max-width: 600px) {
  .footer-contact-form h3 {
    font-size: 24px;
  }

  .form-input,
  .form-textarea {
    font-size: 15px;
    padding: 11px 13px;
  }

  .form-submit {
    font-size: 15px;
    padding: 13px;
  }

  .recaptcha-wrapper {
    transform: scale(0.85);
  }
}
/* === CINEMATIC BACK TO TOP BUTTON === */
#backToTop {
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  background: radial-gradient(circle at 30% 30%, #4A90E2, #001f3f 70%);
  box-shadow:
    0 0 20px rgba(74,144,226,0.5),
    0 0 50px rgba(0,0,0,0.6),
    inset 0 0 30px rgba(255,255,255,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px) scale(0.9);
  transition: all 0.8s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: 9999;
  overflow: hidden;
}

/* Glowing ring animation */
#backToTop .glow-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(74,144,226,0.7),
    rgba(160,196,255,0.6),
    rgba(0,48,128,0.7),
    rgba(74,144,226,0.7)
  );
  animation: rotateRing 4s linear infinite;
  z-index: 1;
  filter: blur(8px);
  opacity: 0.5;
}

/* Icon animation */
#backToTop i {
  position: relative;
  z-index: 2;
  font-size: 26px;
  animation: floatIcon 2s ease-in-out infinite;
}

/* Hover Effects — cinematic lift */
#backToTop:hover {
  transform: translateY(0) scale(1.1);
  box-shadow:
    0 0 35px rgba(74,144,226,0.8),
    0 0 80px rgba(74,144,226,0.6),
    inset 0 0 25px rgba(255,255,255,0.15);
}
#backToTop:hover .glow-ring {
  opacity: 0.9;
}

/* Show when scrolled */
#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* === Keyframes for animations === */
@keyframes rotateRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Responsive */
@media (max-width: 768px) {
  #backToTop {
    width: 55px;
    height: 55px;
    right: 20px;
    bottom: 30px;
    font-size: 22px;
  }
  #backToTop i {
    font-size: 20px;
  }
}
/* === CINEMATIC COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, rgba(0, 31, 63, 0.98), rgba(0, 0, 0, 0.95));
  color: #fff;
  z-index: 9999;
  box-shadow: 0 -5px 30px rgba(74,144,226,0.3);
  backdrop-filter: blur(10px);
  transform: translateY(100%);
  opacity: 0;
  transition: all 1s cubic-bezier(0.55, 0, 0.1, 1);
  border-top: 1px solid rgba(74,144,226,0.4);
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}

/* Content Layout */
.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 25px 40px;
  font-size: 16px;
  line-height: 1.6;
}

.cookie-content p {
  flex: 1;
  margin: 0;
  color: #dce9ff;
  font-weight: 300;
}

.cookie-link {
  color: #4A90E2;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}
.cookie-link:hover {
  color: #a0c4ff;
  text-decoration: underline;
}

/* Buttons */
.cookie-buttons {
  display: flex;
  gap: 15px;
}

.cookie-btn {
  border: none;
  border-radius: 50px;
  padding: 10px 28px;
  font-size: 15px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
  box-shadow: 0 0 20px rgba(74,144,226,0.3);
}

.cookie-btn.accept {
  background: linear-gradient(90deg, #4A90E2, #003366);
  color: #fff;
}
.cookie-btn.accept:hover {
  background: linear-gradient(90deg, #003366, #4A90E2);
  box-shadow: 0 0 30px rgba(74,144,226,0.7);
  transform: translateY(-3px);
}

.cookie-btn.decline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #a0c4ff;
}
.cookie-btn.decline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #4A90E2;
  color: #fff;
}

/* === Responsive (Tablet + Mobile Optimized) === */
@media (max-width: 1024px) {
  .cookie-banner {
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 150%);
    width: 90%;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.4), 0 0 30px rgba(74,144,226,0.4);
  }

  .cookie-banner.show {
    transform: translate(-50%, 0);
  }

  .cookie-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 25px;
    gap: 12px;
    text-align: center;
  }

  .cookie-content p {
    font-size: 14px;
    line-height: 1.5;
  }

  .cookie-buttons {
    justify-content: center;
    gap: 10px;
  }

  .cookie-btn {
    width: 110px;
    padding: 8px 0;
    font-size: 14px;
  }
}

/* Smaller mobile screens */
@media (max-width: 600px) {
  .cookie-banner {
    width: 92%;
    padding: 10px 0;
    bottom: 15px;
  }

  .cookie-content {
    padding: 15px 20px;
  }

  .cookie-content p {
    font-size: 13.5px;
  }

  .cookie-btn {
    width: 100px;
    padding: 7px 0;
  }
}
/* === CINEMATIC INNER HERO SECTION === */
.cinematic-inner-hero {
  position: relative;
  height: 65vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin-top: -140px;
  animation: fadeInHero 1.5s ease-in-out forwards;
}

/* Overlay with cinematic gradient */
.inner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,64,124,0.6), rgba(0,0,0,0.85));
  mix-blend-mode: multiply;
  z-index: 1;
}

/* Content Styling */
.inner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  text-transform: uppercase;
  animation: heroRise 1.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.inner-title {
  font-size: clamp(36px, 5vw, 70px);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  text-shadow: 0 5px 25px rgba(0,0,0,0.8);
  color: #fff;
  font-weight: 400;
}

.inner-subtitle {
  font-size: clamp(16px, 1.5vw, 24px);
  color: #A0C4FF;
  letter-spacing: 1px;
  font-weight: 300;
  text-shadow: 0 3px 15px rgba(0,0,0,0.6);
}

/* Fade-in Animations */
@keyframes fadeInHero {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll Down Button */
.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  animation: bounce 2.5s infinite ease-in-out;
  z-index: 5;
}
.scroll-down:hover {
  border-color: #4A90E2;
  color: #4A90E2;
}
.scroll-down i {
  font-size: 28px;
  line-height: 56px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cinematic-inner-hero {
    height: 45vh;
    min-height: 400px;
    margin-top: -120px;
  }
  .inner-title {
    font-size: 32px;
  }
  .inner-subtitle {
    font-size: 16px;
  }
  .scroll-down {
    width: 50px;
    height: 50px;
    bottom: 30px;
  }
}


/* =========================================
   CINEMATIC AMENITIES SECTION (Blue Theme)
   ========================================= */
.cin-amenities {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  z-index: 10;
  background: #000;
}

/* ===== BACKGROUND ===== */
.cin-bg {
  position: absolute;
  inset: 0;
  background: url('../images/new/hotel-pool.jpg') center center / cover no-repeat;
  filter: brightness(0.7);
  z-index: 0;
}

/* ===== SUBTLE GLOW OVERLAY ===== */
.cin-amenities::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(74,144,226,0.15) 0%, transparent 70%);
  z-index: 1;
}

/* ===== INNER CONTENT ===== */
.cin-inner {
  position: relative;
  z-index: 2;
  width: 1500px;
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

/* ===== INFO CARD ===== */
.cin-info {
  background: rgba(10,20,40,0.7);
  backdrop-filter: blur(12px);
  padding: 60px;
  border-radius: 16px;
  border: 2px solid rgba(74,144,226,0.3);
  text-align: center;
  width: 100%;
  box-shadow: 0 15px 50px rgba(0,0,0,0.5);
  animation: cinFadeIn 1.5s ease forwards;
}

@keyframes cinFadeIn {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== TAG ===== */
.cin-tag {
  font-size: 1rem;
  letter-spacing: 3px;
  color: #A0C4FF;
  text-transform: uppercase;
}

.cin-tag span {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #4A90E2;
  margin-right: 10px;
  vertical-align: middle;
}

/* ===== TITLE ===== */
.cin-info h2 {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 15px;
  color: #fff;
  font-family: 'Oswald', sans-serif;
}

.cin-info h2 span {
  color: #4A90E2;
  
}

/* ===== ADDRESS ===== */
.cin-address {
  font-size: 1.2rem;
  color: #d0e3ff;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* ===== DESCRIPTION ===== */
.cin-info p {
  color: #e8f0ff;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* ===== AMENITIES GRID ===== */
.cin-amenities-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
}

.cin-amenity {
  flex: 1;
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s;
  min-width: 200px;
  border: 1px solid rgba(74,144,226,0.2);
}

.cin-amenity:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 8px 25px rgba(74,144,226,0.3);
}

/* ===== ICONS ===== */
.cin-icon {
  font-size: 2.5rem;
  color: #4A90E2;
  margin-bottom: 10px;
  transition: color 0.4s;
}
.cin-amenity:hover .cin-icon {
  color: #A0C4FF;
}

/* ===== HEADINGS ===== */
.cin-amenity h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 8px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5px;
}

.cin-amenity p {
  font-size: 0.95rem;
  color: #d0e3ff;
  line-height: 1.6;
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */
@media (max-width: 1500px) {
  .cin-inner { width: 95%; }
  .cin-info { padding: 50px; }
  .cin-info h2 { font-size: 2.5rem; }
  .cin-amenities-grid { flex-wrap: wrap; }
  .cin-amenity { flex: 1 1 45%; min-width: 180px; }
}

@media (max-width: 1024px) {
  .cin-info { padding: 40px; }
  .cin-amenity { flex: 1 1 100%; }
}

@media (max-width: 767px) {
  .cin-amenities { padding: 50px 0; }
  .cin-inner { width: 90%; }
  .cin-info { padding: 30px; }
  .cin-info h2 { font-size: 2rem; }
  .cin-info p { font-size: 1rem; }
  .cin-address { font-size: 1rem; }
  .cin-amenities-grid { flex-direction: column; }
}
/* =========================================
   LUXURY FEATURES SECTION (Blue Cinematic Theme)
   ========================================= */
.lux-features {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  z-index: 10;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ===== BACKGROUND ===== */
.lux-bg {
  position: absolute;
  inset: 0;
 
  background-color: #001f3f; /* Fallback */
  filter: brightness(0.7) contrast(1.1);
  z-index: 0;
}

/* ===== SUBTLE BLUE GLOW ===== */
.lux-features::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 30%, rgba(74,144,226,0.15) 0%, transparent 60%);
  z-index: 1;
}

/* ===== WRAPPER ===== */
.lux-wrapper {
  position: relative;
  z-index: 2;
  width: 1500px;
  padding: 30px 0;
  display: flex;
  justify-content: center;
}

/* ===== PANEL ===== */
.lux-panel {
  background: rgba(10, 20, 40, 0.8);
  backdrop-filter: blur(14px);
  padding: 50px;
  border-radius: 20px;
  border: 2px solid rgba(74,144,226,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(74,144,226,0.25);
  width: 100%;
  animation: luxFadeIn 1.8s ease-out forwards;
}

@keyframes luxFadeIn {
  from { opacity: 0; transform: scale(0.95) translateY(40px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ===== GRID: 3 COLUMN ===== */
.lux-triple-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
.lux-triple-grid1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
/* ===== CATEGORY ===== */
.lux-category {
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-left: 5px solid #4A90E2;
  border-radius: 10px;
  transition: all 0.4s ease;
}

.lux-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(74,144,226,0.3);
}

/* ===== HEADINGS ===== */
.lux-heading {
  font-size: 1.8rem;
  color: #A0C4FF;
  margin-bottom: 15px;
  text-align: left;
  padding-left: 10px;
  font-family: 'Oswald', sans-serif;
}

.lux-subheading {
  font-size: 1.3rem;
  color: #fff;
  margin: 15px 0 10px;
  text-align: left;
  padding-left: 10px;
  font-family: 'Oswald', sans-serif;
}

/* ===== LISTS ===== */
.lux-column {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lux-column li {
  font-size: 1rem;
  color: #d0e3ff;
  line-height: 1.7;
  padding: 8px 15px;
  display: flex;
  align-items: flex-start;
  transition: color 0.3s ease;
}

.lux-column li:hover {
  color: #A0C4FF;
}

.lux-column li i {
  color: #4A90E2;
  margin-right: 12px;
  font-size: 1.2rem;
  min-width: 22px;
  margin-top: 3px;
}

/* ===== POLICY GRID ===== */
.lux-policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 30px;
}

.lux-policy-item {
  background: rgba(255,255,255,0.07);
  padding: 18px;
  border-radius: 8px;
  border-left: 3px solid #4A90E2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lux-policy-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(74,144,226,0.3);
}

.lux-policy-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lux-policy-item li {
  font-size: 1rem;
  color: #d0e3ff;
  line-height: 1.6;
  padding: 5px 10px;
  display: flex;
  align-items: flex-start;
}

.lux-policy-item li i {
  color: #4A90E2;
  margin-right: 10px;
  font-size: 1.1rem;
  min-width: 20px;
}

/* ===== RESPONSIVE DESIGN FIX ===== */
@media (max-width: 1500px) {
  .lux-wrapper {
    width: 95%;
  }
  .lux-panel {
    padding: 40px;
  }
  .lux-triple-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .lux-triple-grid1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .lux-policy-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* ===== TABLET VIEW (iPad) ===== */
@media (max-width: 1024px) {
  .lux-features {
    padding: 60px 0;
  }

  .lux-wrapper {
    width: 90%;
    flex-direction: column;
    align-items: center;
  }

  .lux-panel {
    padding: 35px 25px;
  }

  .lux-triple-grid,
  .lux-triple-grid1,
  .lux-policy-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .lux-category,
  .lux-policy-item {
    padding: 20px;
    text-align: left;
  }

  .lux-heading {
    font-size: 1.6rem;
  }

  .lux-subheading {
    font-size: 1.2rem;
  }

  .lux-column li {
    font-size: 0.95rem;
  }
}

/* ===== MOBILE VIEW (Phones) ===== */
@media (max-width: 767px) {
  .lux-features {
    padding: 60px 0;
  }

  .lux-wrapper {
    width: 92%;
    padding: 0;
  }

  .lux-panel {
    padding: 25px 18px;
  }

  /* Stack all grids into single column */
  .lux-triple-grid,
  .lux-triple-grid1,
  .lux-policy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lux-category,
  .lux-policy-item {
    padding: 18px;
    text-align: left;
  }

  /* Adjust text sizes for mobile readability */
  .lux-heading {
    font-size: 1.4rem;
    text-align: center;
  }

  .lux-subheading {
    font-size: 1.1rem;
    text-align: center;
  }

  .lux-column li {
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 6px 10px;
  }

  .lux-column li i {
    font-size: 1rem;
    margin-right: 10px;
  }

  .lux-policy-item li {
    font-size: 0.9rem;
  }

  .lux-policy-item li i {
    font-size: 0.95rem;
  }
}

/* =========================================
   THINGS TO DO SECTION (Blue Cinematic Theme)
   ========================================= */
.tour-things-to-do {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  z-index: 10;
  font-family: 'Montserrat', sans-serif;
  background-color: #001f3f; /* Deep fallback tone */
}

/* ===== BACKGROUND ===== */
.tour-bg {
  position: absolute;
  inset: 0;
  background: url('../images/fishing1.jpg') center center / cover no-repeat,
              linear-gradient(135deg, #001f3f 0%, #000814 100%);
  background-color: #001f3f;
  filter: brightness(0.75) contrast(1.1);
  z-index: 0;
}

/* ===== SUBTLE BLUE GLOW ===== */
.tour-things-to-do::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 30%, rgba(74,144,226,0.15) 0%, transparent 70%);
  z-index: 1;
}

/* ===== WRAPPER ===== */
.tour-wrapper {
  position: relative;
  z-index: 2;
  width: 1500px;
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

/* ===== PANEL ===== */
.tour-panel {
  background: rgba(10, 20, 40, 0.85);
  backdrop-filter: blur(14px);
  padding: 40px;
  border-radius: 15px;
  border: 2px solid rgba(74,144,226,0.3);
  box-shadow: 0 15px 45px rgba(0,0,0,0.6), 0 0 40px rgba(74,144,226,0.25);
  width: 100%;
  animation: tourFadeIn 1.5s ease-out forwards;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@keyframes tourFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ===== TAG ===== */
.tour-tag {
  font-size: 1rem;
  letter-spacing: 3px;
  color: #A0C4FF;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: 'Oswald', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tour-tag span {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #4A90E2;
  margin-right: 8px;
  vertical-align: middle;
}

/* ===== HEADING ===== */
.tour-heading {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  text-align: center;
}

/* ===== DESCRIPTION ===== */
.tour-address {
  font-size: 1.1rem;
  color: #d0e3ff;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 1300px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ===== ATTRACTIONS GRID ===== */
.tour-attractions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.tour-card {
  flex: 1 1 calc(30% - 20px);
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(74,144,226,0.3);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  min-width: 250px;
}

.tour-card:hover {
  transform: translateY(-10px);
  border-color: #4A90E2;
  box-shadow: 0 10px 30px rgba(74,144,226,0.35);
}

/* ===== ICON ===== */
.tour-icon {
  font-size: 2.5rem;
  color: #4A90E2;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.tour-card:hover .tour-icon {
  color: #A0C4FF;
}

/* ===== TITLE ===== */
.tour-title {
  font-size: 1.3rem;
  color: #A0C4FF;
  margin-bottom: 10px;
  font-family: 'Oswald', sans-serif;
}

/* ===== DESCRIPTION ===== */
.tour-desc {
  font-size: 0.95rem;
  color: #d0e3ff;
  line-height: 1.6;
  font-family: 'Montserrat', sans-serif;
}
/* ===== TOUR CARD IMAGES ===== */
.tour-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid rgba(74,144,226,0.3);
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover .tour-img {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(74,144,226,0.4);
}

/* ===== CONTACT & WEBSITE INFO ===== */
.tour-info {
  font-size: 0.9rem;
  color: #cde2ff;
  line-height: 1.5;
  margin: 4px 0;
}

.tour-info a {
  color: #4A90E2;
  text-decoration: none;
}

.tour-info a:hover {
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .tour-attractions {
    justify-content: center;
    gap: 20px;
  }

  .tour-card {
    flex: 1 1 calc(50% - 25px);
    max-width: 350px;
  }

  .tour-panel {
    padding: 25px;
  }

  .tour-heading {
    font-size: 2rem;
  }

  .tour-address {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .tour-attractions {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    width: 100%;
  }

  .tour-card {
    width: 90%;
    max-width: 330px;
    margin: 0 auto;
    flex: none;
  }
}
/* ===== LOCATION SECTION (CINEMATIC BLUE THEME) ===== */
.location-section-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  z-index: 10;
  
  background: #001f3f;
  background-attachment: fixed;
}

/* ===== WRAPPER ===== */
.location-wrapper-hero {
  position: relative;
  z-index: 2;
  width: 1500px;
  padding: 60px 0;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

/* ===== INFO BOX ===== */
.location-info-box {
  background: rgba(10, 25, 55, 0.85);
  backdrop-filter: blur(15px);
  padding: 45px;
  border-radius: 15px;
  border: 2px solid rgba(74, 144, 226, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  width: 60%;
  animation: tourFadeIn 1.5s ease-out forwards;
}

/* ===== HEADING ===== */
.location-info-box h5.tour-tag {
  font-size: 1rem;
  letter-spacing: 3px;
  color: #A0C4FF;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.location-info-box h5.tour-tag span {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #4A90E2;
  margin-right: 8px;
  vertical-align: middle;
}

.location-info-box h2.tour-heading {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
  text-transform: capitalize;
}

/* ===== PARAGRAPH ===== */
.location-info-box p.tour-address {
  font-size: 1.1rem;
  color: #dce9ff;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

/* ===== COORDINATES & DIRECTIONS ===== */
.coordinates-area, 
.directions-area {
  margin-bottom: 25px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 15px;
  border-left: 4px solid #4A90E2;
}

.coordinates-area h4, 
.directions-area h4 {
  font-size: 1.4rem;
  color: #A0C4FF;
  margin-bottom: 10px;
  
}

.coordinates-area ul {
  list-style: none;
  padding: 0;
}

.coordinates-area ul li {
  font-size: 1rem;
  color: #d0e3ff;
  line-height: 1.6;
  padding: 5px 0;
  font-family: 'Montserrat', sans-serif;
}

/* ===== FORM ===== */
.directions-area form {
  display: flex;
  gap: 10px;
}

.directions-area input[type="text"] {
  padding: 10px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #dce9ff;
  flex: 1;
  transition: all 0.3s ease;
}

.directions-area input[type="text"]:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.directions-area button {
  padding: 10px 22px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  background: linear-gradient(90deg, #4A90E2, #003366);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(74,144,226,0.4);
}

.directions-area button:hover {
  background: linear-gradient(90deg, #003366, #4A90E2);
  color: #eaf3ff;
  box-shadow: 0 0 20px rgba(74,144,226,0.6);
}

/* ===== MAP BOX ===== */
.location-map-box {
  width: 40%;
  height: 740px;
  background: rgba(0, 31, 63, 0.9);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  border: 2px solid rgba(74,144,226,0.3);
}

.location-map-box iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

/* ===== ANIMATION ===== */
@keyframes tourFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1500px) {
  .location-wrapper-hero {
    width: 95%;
    flex-direction: column;
    align-items: center;
  }
  .location-info-box,
  .location-map-box {
    width: 100%;
  }
  .location-map-box {
    height: 400px;
  }
}

@media (max-width: 1024px) {
  .location-info-box {
    padding: 25px;
  }
  .location-info-box h2.tour-heading {
    font-size: 2rem;
  }
  .location-info-box p.tour-address {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .location-section-hero {
    padding: 40px 0;
  }
  .location-info-box {
    padding: 18px;
  }
  .location-info-box h2.tour-heading {
    font-size: 1.5rem;
  }
  .location-info-box p.tour-address {
    font-size: 0.9rem;
  }
  .directions-area form {
    flex-direction: column;
  }
  .directions-area button {
    width: 100%;
  }
  .location-map-box {
    height: 300px;
  }
}
/* =========================================
   CONTACT US SECTION (BLUE CINEMATIC THEME)
   ========================================= */
.con-contact-us {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  z-index: 10;
  
}

.con-bg {
  position: absolute;
  inset: 0;
  background: url('../images/HERO-MASK.png') center center / cover no-repeat,
              linear-gradient(135deg, #001f3f 0%, #0a223f 100%);
  background-color: #001f3f; /* Fallback */
  filter: brightness(0.75);
  z-index: 0;
}

.con-contact-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 30%, rgba(74,144,226,0.2) 0%, transparent 60%);
  z-index: 1;
}

.con-wrapper {
  position: relative;
  z-index: 2;
  width: 1500px;
  padding: 60px 0;
  display: flex;
  justify-content: center;
}

.con-panel {
  background: rgba(10, 20, 40, 0.9);
  backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: 15px;
  border: 2px solid rgba(74,144,226,0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  width: 100%;
  display: flex;
  gap: 30px;
  animation: conFadeIn 1.5s ease-out forwards;
}

@keyframes conFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ===== TAG ===== */
.tour-tag {
  font-size: 1rem;
  letter-spacing: 3px;
  color: #A0C4FF;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight:400;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tour-tag span {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #4A90E2;
  margin-right: 8px;
  vertical-align: middle;
}

/* ===== HEADING ===== */
.tour-heading {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  text-align: center;
}

.con-info-box {
  width: 60%;
}

.con-info-box p {
  font-size: 1.1rem;
  color: #dce9ff;
  line-height: 1.7;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

/* ===== DETAILS AREA ===== */
.con-details-area {
  margin-bottom: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 15px 20px;
  border-left: 4px solid #4A90E2;
}

.con-details-area h4 {
  font-size: 1.5rem;
  color: #A0C4FF;
  
  margin-bottom: 10px;
}

.con-details-area ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.con-details-area ul li {
  font-size: 1rem;
  color: #d0e3ff;
  line-height: 1.6;
  padding: 3px 0;
  font-family: 'Montserrat', sans-serif;
}

.con-details-area ul li a {
  color: #A0C4FF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.con-details-area ul li a:hover {
  color: #4A90E2;
  text-decoration: underline;
}

/* ===== IMAGE BOX ===== */
.con-image-box {
  width: 40%;
  height: 500px;
  background: rgba(0, 31, 63, 0.85);
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid rgba(74,144,226,0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.con-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1500px) {
  .con-wrapper {
    width: 95%;
    flex-direction: column;
    gap: 20px;
  }
  .con-info-box,
  .con-image-box {
    width: 100%;
  }
  .con-image-box {
    height: 400px;
  }
}

@media (max-width: 1024px) {
  .con-panel {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }
  .con-info-box,
  .con-image-box {
    width: 100% !important;
  }
  .con-image-box {
    height: 380px;
  }
  .tour-heading {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .con-contact-us {
    padding: 30px 0;
  }
  .con-panel {
    flex-direction: column !important;
    padding: 20px;
    gap: 20px;
    text-align: center;
    align-items: center;
  }
  .con-info-box,
  .con-image-box {
    width: 100% !important;
  }
  .con-image-box {
    height: 260px;
  }
  .tour-heading {
    font-size: 1.6rem;
  }
  .con-info-box p {
    font-size: 0.9rem;
  }
  .con-details-area h4 {
    font-size: 1.2rem;
  }
  .con-details-area ul li {
    font-size: 0.9rem;
  }
}

@media (max-width: 1500px) {
  .con-wrapper {
    width: 90%;
  }
}
/* =========================================
   SITEMAP SECTION (BLUE CINEMATIC THEME)
   ========================================= */
.sit-sitemap {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  z-index: 10;
  
}

.sit-bg {
  position: absolute;
  inset: 0;
  background: url('../images/HERO-MASK.png') center center / cover no-repeat,
              linear-gradient(135deg, #001f3f 0%, #0a223f 100%);
  background-color: #001f3f; /* Deep navy fallback */
  filter: brightness(0.75);
  z-index: 0;
}

/* Subtle cinematic blue glow overlay */
.sit-sitemap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 30%, rgba(74,144,226,0.2) 0%, transparent 60%);
  z-index: 1;
}

/* ===== WRAPPER ===== */
.sit-wrapper {
  position: relative;
  z-index: 2;
  width: 1400px;
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.sit-panel {
  background: rgba(10, 20, 40, 0.9);
  backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: 15px;
  border: 2px solid rgba(74,144,226,0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(74,144,226,0.2);
  width: 100%;
  animation: sitFadeIn 1.5s ease-out forwards;
}

@keyframes sitFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ===== TAG ===== */
.sit-tag {
  font-size: 1rem;
  letter-spacing: 3px;
  color: #A0C4FF;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sit-tag span {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #4A90E2;
  margin-right: 8px;
  vertical-align: middle;
}

/* ===== MAIN HEADING ===== */
.sit-main-heading {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  text-align: center;
}

/* ===== DESCRIPTION ===== */
.sit-description {
  font-size: 1.1rem;
  color: #dce9ff;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 1400px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

/* ===== NAV CONTAINER ===== */
.sit-nav-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* ===== NAV SECTION ===== */
.sit-nav-section {
  flex: 1;
  background: rgba(15, 30, 60, 0.85);
  padding: 20px;
  border-radius: 10px;
  border-left: 5px solid #4A90E2;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.sit-nav-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(74,144,226,0.3);
  border-color: #A0C4FF;
}

.sit-section-title {
  font-size: 1.5rem;
  color: #A0C4FF;
  margin-bottom: 15px;
  
  text-align: center;
}

/* ===== NAV LINKS ===== */
.sit-nav-list {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
}

.sit-nav-list li {
  font-size: 1.05rem;
  color: #d0e3ff;
  line-height: 1.9;
  padding: 5px 0;
  transition: color 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.sit-nav-list li:hover {
  color: #A0C4FF;
}

.sit-nav-list li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sit-nav-list li a:hover {
  color: #4A90E2;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1500px) {
  .sit-wrapper { width: 95%; }
  .sit-panel { padding: 30px; }
  .sit-nav-container { flex-direction: column; gap: 15px; }
  .sit-nav-section { padding: 15px; }
}

@media (max-width: 1024px) {
  .sit-panel { padding: 20px; }
  .sit-tag { font-size: 0.9rem; }
  .sit-main-heading { font-size: 2rem; }
  .sit-description { font-size: 1rem; }
  .sit-section-title { font-size: 1.3rem; }
  .sit-nav-list li { font-size: 1rem; }
}

@media (max-width: 767px) {
  .sit-sitemap { padding: 30px 0; }
  .sit-panel { padding: 15px; }
  .sit-tag { font-size: 0.8rem; }
  .sit-main-heading { font-size: 1.6rem; }
  .sit-description { font-size: 0.9rem; }
  .sit-section-title { font-size: 1.1rem; }
  .sit-nav-section { padding: 10px; }
  .sit-nav-list li { font-size: 0.9rem; line-height: 1.6; }
}
/* =========================================
   FAQ SECTION (BLUE CINEMATIC THEME)
   ========================================= */
.faq-faq {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  z-index: 10;
  
}

.faq-bg {
  position: absolute;
  inset: 0;
  background: url('../images/HERO-MASK.png') center center / cover no-repeat,
              linear-gradient(135deg, #001f3f 0%, #0a223f 100%);
  background-color: #001f3f;
  filter: brightness(0.75);
  z-index: 0;
}

/* Subtle cinematic blue glow overlay */
.faq-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 30%, rgba(74,144,226,0.15) 0%, transparent 60%);
  z-index: 1;
}

/* ===== WRAPPER ===== */
.faq-wrapper {
  position: relative;
  z-index: 2;
  width: 1400px;
  padding: 60px 0;
  display: flex;
  justify-content: center;
}

.faq-panel {
  background: rgba(10, 20, 40, 0.9);
  backdrop-filter: blur(15px);
  padding: 40px;
  border-radius: 15px;
  border: 2px solid rgba(74,144,226,0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(74,144,226,0.25);
  width: 100%;
  animation: faqFadeIn 1.5s ease-out forwards;
}

@keyframes faqFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ===== TAG ===== */
.faq-tag {
  font-size: 1rem;
  letter-spacing: 3px;
  color: #A0C4FF;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight:400;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-tag span {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #4A90E2;
  margin-right: 8px;
  vertical-align: middle;
}

/* ===== MAIN HEADING ===== */
.faq-main-heading {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 25px;
  color: #fff;
  text-align: center;
    font-family: 'Oswald', sans-serif;
}

/* ===== QUESTIONS CONTAINER ===== */
.faq-questions {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* ===== FAQ ITEM ===== */
.faq-item {
  background: rgba(15, 30, 60, 0.9);
  padding: 18px;
  border-radius: 10px;
  border-left: 5px solid #4A90E2;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(74,144,226,0.3);
  border-left-color: #A0C4FF;
}

/* ===== QUESTION ===== */
.faq-question {
  font-size: 1.3rem;
  color: #A0C4FF;
  
  margin-bottom: 10px;
}

/* ===== ANSWER ===== */
.faq-answer {
  font-size: 1rem;
  color: #d0e3ff;
  line-height: 1.7;
  font-family: 'Montserrat', sans-serif;
}

.faq-answer a {
  color: #A0C4FF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.faq-answer a:hover {
  color: #4A90E2;
  text-decoration: underline;
}

/* ===== Responsive Design ===== */
@media (max-width: 1500px) {
  .faq-wrapper { width: 95%; }
  .faq-panel { padding: 30px; }
  .faq-questions { gap: 18px; }
  .faq-item { padding: 14px; }
  .faq-question { font-size: 1.2rem; }
  .faq-answer { font-size: 0.95rem; }
}

@media (max-width: 1024px) {
  .faq-panel { padding: 20px; }
  .faq-tag { font-size: 0.9rem; }
  .faq-main-heading { font-size: 2rem; }
  .faq-question { font-size: 1.1rem; }
  .faq-answer { font-size: 0.9rem; }
}

@media (max-width: 767px) {
  .faq-faq { padding: 40px 0; }
  .faq-panel { padding: 15px; }
  .faq-tag { font-size: 0.8rem; }
  .faq-main-heading { font-size: 1.6rem; }
  .faq-question { font-size: 1rem; }
  .faq-answer { font-size: 0.85rem; }
}
