﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Rubik:wght@400;500;700&display=swap');

/* Reset & Base Layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
background: linear-gradient(135deg, #2F5D9D, #4DB6AC, #FFB74D);
  color: #333;
 
}

h1, h2, h3, h4 {
  font-family: 'Rubik', sans-serif;
  color: #222;
}

/* TOP BAR */
.top-bar {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 120px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px;
  border-radius: 999px;
  background: rgba(10, 61, 120, 0.95);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 15px;
  z-index: 1001;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.top-left {
  display: flex;
  align-items: center;
  font-weight: 500;
}

.top-left i {
  margin-right: 10px;
  color: #f5c400;
  font-size: 16px;
}

.top-right a {
  margin-left: 18px;
  color: #ffffff;
  font-size: 18px;
  text-decoration: none;
}

.top-right a:hover {
  color: #f5c400;
}




/* MAIN HEADER */
.site-header {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  padding: 0 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  z-index: 1000;
}


.logo img {
  height:80px;
}


/* MENU PILL */
.menu-box {
  display: flex;
  gap: 36px;
  padding: 30px 44px;
  border-radius: 9px;
  background: rgba(10, 61, 120, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.menu-box a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  font-size: 17px;
  position: relative;
}

.menu-box a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #f5c400;
  transition: width 0.3s ease;
}

.menu-box a:hover::after {
  width: 100%;
}

/* RIGHT SIDE */
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}


/* PHONE PILL */
.phone-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 30px 26px;
  border-radius:9px;
  background: rgba(10, 61, 120, 0.95);
  color: #ffffff;
  font-weight: 400;
  font-size: 17px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.15);
}

.phone-box span {
  letter-spacing: 0.4px;
}
.phone-box a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.4px;
}

.phone-box a:hover {
  color: #f5c400;
}


/* BOOK NOW CTA */
.book-btn {
   padding: 30px 26px;
  border-radius:9px;
  
  background: linear-gradient(135deg, #f5c400, #ffd84d);
  color: #0a3d78;
  font-weight: 900;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 1px;
  box-shadow: 0 12px 30px rgba(245, 196, 0, 0.45);
  transition: all 0.3s ease;
}

.book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(245, 196, 0, 0.6);
}

/* MOBILE HEADER */
.mobile-header {
  display: none;
  padding: 18px 20px;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}


.mobile-header img {
  height: 56px;
}

/* HAMBURGER */
.menu-toggle {
  background: none;
  border: none;
  width: 32px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 100%;
  background: #0a3d78;
  border-radius: 2px;
}

/* OVERLAY */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 2000;
}

/* MENU PANEL */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 90%;
  max-width: 380px;
  height: 100%;
  background: #ffffff;
  padding: 24px 20px 120px;
  transition: 0.4s ease;
  z-index: 2001;
  overflow-y: auto;
  border-left: 6px solid transparent;
}

.mobile-menu::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(
    180deg,
    #0a3d78 0%,
    #1c5fa8 50%,
    #0a3d78 100%
  );
}


/* ACTIVE */
.mobile-menu.active {
  right: 0;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* HEADER INSIDE MENU */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.mobile-menu-header img {
  height: 52px;
}

.menu-close {
  background: #f5c400;
  color: #0a3d78;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(245,196,0,0.45);
  transition: transform 0.2s ease;
}

.menu-close:hover {
  transform: rotate(90deg);
}

/* NAV */
.mobile-nav {
  list-style: none;
  margin: 40px 0 30px;
  padding: 0;
}

.mobile-nav li {
  margin-bottom: 10px;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 500;
  color: #0a3d78;
  text-decoration: none;
  background: #f7f9fc;
  transition: all 0.3s ease;
  position: relative;
}

/* ACTIVE / HOVER */
.mobile-nav a:hover {
  background: #eaf1fb;
  padding-left: 26px;
}
.mobile-nav a::before {
  content: '';
  position: absolute;
  left: 14px;
  width: 8px;
  height: 8px;
  background: #f5c400;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.mobile-nav a:hover::before {
  opacity: 1;
  transform: scale(1);
}


/* CONTACT */
.mobile-contact {
  margin-top: 30px;
  padding: 22px 20px;
  background: #f7f9fc;
  border-radius: 16px;
}

.mobile-contact h4 {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
  color: #0a3d78;
}

.mobile-contact p {
  display: flex;
  align-items: flex-start;
  font-size: 15px;
  margin-bottom: 14px;
  color: #333;
  line-height: 1.5;
}

.mobile-contact i {
  margin-right: 10px;
  color: #f5c400;
  font-size: 16px;
  margin-top:4px;
}
.mobile-social i {
  margin-right: 0px;
  color: #f5c400;
  font-size: 16px;
  margin-top:-2px;
}
.mobile-number a {
    color: #333;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.4px;
}
.mobile-number a:hover {
    color: #f5c400;
}

/* SOCIAL */
.mobile-social {
  margin-top: 18px;
  display: flex;
  gap: 14px;
}

.mobile-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #0a3d78;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a3d78;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-social a:hover {
  background: #0a3d78;
  color: #ffffff;
}


/* RESPONSIVE SWITCH */
@media (max-width: 1024px) {
  .top-bar {
    display: none !important;
  }

  .site-header {
    display: none !important;
  }

  .mobile-header {
    display: flex;
  }
}

/* DEFAULT (ON HERO) */
.site-header {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  padding: 0 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  z-index: 1000;
  transition: transform 0.45s ease, background 0.3s ease;
}

/* STICKY MODE */
.site-header.is-sticky {
  position: fixed;
  top: 0;
  background: transparent;
}

/* HIDE WHEN SCROLLING DOWN */
.site-header.header-hidden {
  transform: translateY(-120%);
}

/* SHOW WHEN SCROLLING UP */
.site-header.header-visible {
  transform: translateY(0);
}
.site-header {
  will-change: transform;
}

/* MENU PILL */
.menu-box {
  display: flex;
  gap: 36px;
  padding: 30px 44px;
  border-radius: 9px;
  background: rgba(10, 61, 120, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.menu-box a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  font-size: 17px;
  position: relative;
}

.menu-box a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #f5c400;
  transition: width 0.3s ease;
}

.menu-box a:hover::after {
  width: 100%;
}

/* ACTIVE LINK */
.menu-box a.active {
  color: #f5c400; /* Change color for active link */
  font-weight: 700; /* Optional: make the active link bold */
  text-decoration: underline; /* Optional: underline the active link */
}

/* RIGHT SIDE */
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

/* ===============================
   HERO BASE
================================= */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
 
  overflow: hidden;
  
}

/* ===============================
   WEBGL WATER LAYER
================================= */
#water-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none; 
}

/* ===============================
   PARALLAX LAYERS
================================= */
.parallax {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.layer-mid {
  background-image: url("../images/new/exterior.webp");
  z-index: 2;
  opacity: 0.18;
}

/* ===============================
   HERO OVERLAY (BLUE TINT)
================================= */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 61, 120, 0.45) 0%,
    rgba(10, 61, 120, 0.25) 45%,
    rgba(10, 61, 120, 0.15) 100%
  );
  z-index: 3;
}

/* ===============================
   SIGNATURE TEXT
================================= */
.hero-signature {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 180px;
  font-weight: 400;
  color: rgba(255, 248, 235, 0.35);
  letter-spacing: 6px;
  z-index: 4;
  pointer-events: none;
  text-transform: capitalize;
  text-shadow: 0 20px 60px rgba(10, 61, 120, 0.25);
  bottom: 200px;
}

/* ===============================
   LEFT CONTENT (Ensure it is on top of all layers) */
.hero-content {
  position: absolute;
  left: 80px;
  bottom: 80px;
  z-index: 10; /* Ensure this layer is above others */
  color: #ffffff;
  max-width: 520px;
}

.hero-content h4 {
  font-size: 20px;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 10px;
  letter-spacing: 1px;
  color: #f9cc1e;
}

.hero-content h1 {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 26px;
  color: #fff;
}

.hero-subtext {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 22px;
  max-width: 460px;
  line-height: 1.5;
}

.hero-btn {
  display: inline-block;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* ===============================
   FACILITIES PANEL (GLASS)
================================= */
.hero-facilities {
  position: absolute;
  right: 60px;
  bottom: 80px;
  width: 820px;
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(18px) saturate(120%);
  padding: 28px;
  border-radius: 20px;
  z-index: 10; /* Ensure this panel is above other elements */
  color: #0a3d78;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 30px 60px rgba(10, 61, 120, 0.25);
}

.hero-facilities h3 {
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 18px;
  color: #0a3d78;
}

/* ===============================
   SWIPER FACILITIES SLIDER
================================= */
.facility-slider {
  width: 100%;
}

.facility-slider .swiper-wrapper {
  display: flex;
  gap: 16px;
}

.facility-slider .swiper-slide {
  width: 200px;
  flex-shrink: 0;
}

.facility-slider img {
  width: 90%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(10, 61, 120, 0.25);
}

.facility-slider span {
  display: block;
  margin-top: 10px;
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  color: #0a3d78;
}

/* ===============================
   RESPONSIVE – TABLET & MOBILE
   (Unified approach for better alignment)
================================= */
@media (max-width: 1024px) {
  /* 1. Switch Hero to Flexbox for vertical stacking */
  .hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Aligns content to bottom */
    align-items: center;       /* Centers content horizontally */
    height: auto;              /* Remove fixed height so content fits */
    min-height: 60vh;         /* Ensure it fills the screen */
    padding-top: 140px;        /* Space for header/signature */
    padding-bottom: 40px;      /* Space at the bottom */
  }

  #water-wrap {
    display: none;
  }

  /* 2. Move Signature to the top background */
  .hero-signature {
    top: 40%;
    bottom: auto;
    font-size: 100px;
    letter-spacing: 4px;
    width: 100%;
    text-align: center;
  }

  /* 3. Reset Content Position (Stacking) */
  .hero-content {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    max-width: 600px;
    padding: 0 40px;
    margin-bottom: 40px; /* Space between text and slider */
    text-align: center;  /* Center text for cleaner vertical look */
    z-index: 5;
  }

  .hero-content h1 {
    font-size: 44px;
  }
  
  .hero-subtext {
    margin-left: auto;
    margin-right: auto; /* Centers the subtext block */
  }

  /* 4. Reset Facilities Position (Stacking) */
  .hero-facilities {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 60px); /* Full width with margins */
    max-width: 500px;         /* Cap width so it doesn't look stretched */
    margin: 0;
    z-index: 5;
  }

  .facility-slider img {
    height: 150px;
  }
}

/* ===============================
   RESPONSIVE – MOBILE SPECIFIC
================================= */
@media (max-width: 767px) {
  .hero-signature {
    font-size: 90px;
    letter-spacing: 2px;
    top: 40%;
  }

  .hero-content {
    padding: 0 24px;
    margin-bottom: 30px;
  }

  .hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .hero-facilities {
    width: calc(100% - 40px); /* Tighter margins for mobile */
    padding: 20px;            /* Reduce padding inside the glass box */
  }

  .facility-slider img {
    height: 150px;
  }
}



/* ===============================
   WELCOME SECTION
================================= */
.welcome-section {
  background: #fbf7f2;
  padding: 80px 80px;
  position: relative;
  overflow: hidden; /* IMPORTANT */
}

.welcome-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
  max-width: 1400px;
  margin: auto;
}

/* IMAGE WRAPPER */
.welcome-image {
  position: relative;
  height: 100%;               /* match content column height */
  min-height: 520px;          /* adjust to match right content */
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(10, 61, 120, 0.18);
}

/* IMAGE */
.welcome-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* keeps image proportional */
  border-radius: 18px;
}

/* CONTENT */
.welcome-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 14px;
  letter-spacing: 2px;
  color: #b08b57; /* warm gold */
  font-weight: 600;
}

.welcome-content h2 {
 
  font-size: 48px;
  line-height: 1.2;
  color: #0a3d78;
  margin-bottom: 22px;
}

.welcome-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #4a4a4a;
  max-width: 760px;
  margin-bottom: 30px;
}

/* FEATURES */
.welcome-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 30px;
  margin-bottom: 36px;
}

.welcome-features div {
  font-size: 15px;
  color: #0a3d78;
  display: flex;
  align-items: center;
  gap: 10px;
}

.welcome-features span {
  color: #b08b57;
  font-weight: bold;
}

/* ===============================
   WELCOME MEDIA CARD
================================= */
.welcome-media-card {
  position: relative;
  margin-top: 40px;
  height: 110px;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
}

/* Background image */
.welcome-media-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
  z-index: 0;
}

/* Dark overlay */
.welcome-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 61, 120, 0.65),
    rgba(10, 61, 120, 0.35)
  );
  z-index: 1;
}

/* LEFT SIDE */
.welcome-media-left {
  position: relative;
  z-index: 2;
}

.welcome-media-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #fcca31; /* warm gold */
  color: #000;
  font-weight: 400;
  font-size: 17px;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: 0.6px;
  transition: all 0.3s ease;
}

.welcome-media-btn:hover {
  background: #b88a4f;
  transform: translateY(-1px);
}

/* RIGHT SIDE */
.welcome-media-right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
}

.welcome-media-label {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Play Button */
.welcome-play-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.welcome-play-btn:hover {
  background: #ffffff;
  color: #0a3d78;
  transform: scale(1.05);
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 768px) {
  .welcome-media-card {
    height: auto;
    padding: 20px;
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }

  .welcome-media-right {
    justify-content: center;
  }
}


/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 1024px) {
  .welcome-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .welcome-section {
    padding: 80px 40px;
  }

  .welcome-content h2 {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .welcome-section {
    padding: 60px 24px;
  }

  .welcome-content h2 {
    font-size: 32px;
  }

  .welcome-features {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   ANIMATION INITIAL STATES
================================= */
.welcome-image,
.welcome-eyebrow,
.welcome-content h2,
.welcome-content p,
.welcome-features div,
.welcome-media-card {
  opacity: 0;
}

.welcome-image {
  transform: translateY(40px);
}

.welcome-eyebrow,
.welcome-content h2,
.welcome-content p {
  transform: translateX(40px);
}

.welcome-features div {
  transform: translateY(20px);
}

.welcome-media-card {
  transform: translateY(40px);
}
/* ===============================
   READ MORE PANEL
================================= */
.welcome-readmore {
  position: absolute;
  inset: 0;
  background: #fbf7f2;
  padding: 80px 60px;
  overflow-y: auto;
  z-index: 10;

  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: all 0.6s ease;
}

/* ACTIVE STATE */
.welcome-section.readmore-active .welcome-readmore {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Right column wrapper */
.welcome-right {
  position: relative;
}

/* Read more panel */
.welcome-readmore {
  position: absolute;
  inset: 0;
  background: #fbf7f2;
  padding: 80px 60px;
  overflow-y: auto;
  z-index: 5;

  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: all 0.6s ease;
}

/* Activate read more */
.welcome-section.readmore-active .welcome-readmore {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hide ONLY the welcome content */
.welcome-section.readmore-active .welcome-content {
  opacity: 0;
  transform: translateY(-30px);
  pointer-events: none;
}

/* Smooth transition */
.welcome-content {
  transition: all 0.4s ease;
}


/* Smooth hide */
.welcome-content,
.welcome-image {
  transition: all 0.4s ease;
}

/* Close button */
.welcome-close-btn {
  position: sticky;
  top: 0;
  margin-left: auto;
  display: block;
  background: #0a3d78;
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  margin-bottom: 30px;
}

/* Read more typography */
.welcome-readmore h3 {
  font-size: 28px;
  color: #0a3d78;
  margin-bottom: 18px;
}

.welcome-readmore p {
  font-size: 16px;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 26px;
}

/* Mobile */
@media (max-width: 768px) {
  .welcome-readmore {
    padding: 40px 24px;
  }
}
/* ===============================
   LEFT VIDEO REPLACEMENT
================================= */

.welcome-image {
  position: relative;
  overflow: hidden;
}

/* Video hidden initially */
.welcome-left-video {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.95);
  transition: all 0.6s ease;
  z-index: 2;
}

.welcome-left-video iframe {
  width: 100%;
  height: 100%;
  border-radius: 18px;
}

/* ACTIVE ONLY ON IMAGE */
.welcome-image.video-active .welcome-left-video {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.welcome-image.video-active img {
  opacity: 0;
  transform: scale(1.05);
  transition: all 0.6s ease;
}
/* ===============================
   VIDEO CLOSE BUTTON
================================= */

.welcome-video-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 16px;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
}

.welcome-video-close:hover {
  background: #ffffff;
  color: #0a3d78;
  transform: scale(1.1);
}

/* ===============================
   LUXURY MARQUEE SECTION
================================= */
.marquee-section {
  position: relative;
  overflow: hidden;
  padding: 28px 0;
  background:
    linear-gradient(
      90deg,
      rgba(10, 61, 120, 0.95) 0%,
      rgba(28, 95, 168, 0.95) 50%,
      rgba(10, 61, 120, 0.95) 100%
    );
}

/* subtle glass layer */
.marquee-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  z-index: 0;
}

/* animated gold accent line */
.marquee-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #f5c400,
    transparent
  );
  animation: goldLine 6s linear infinite;
}

@keyframes goldLine {
  to {
    left: 100%;
  }
}

/* TRACK */
.marquee-track {
  position: relative;
  display: flex;
  align-items: center;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
  z-index: 1;
}

/* TEXT */
.marquee-item {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: #fff;
  white-space: nowrap;
  padding: 0 30px;
  letter-spacing: 0.8px;
  text-shadow:
    0 6px 18px rgba(0, 0, 0, 0.35);
  position: relative;
}

/* subtle glow behind text */
.marquee-item::after {
  content: '';
  position: absolute;
  inset: -10px -20px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.12),
    transparent 70%
  );
  opacity: 0.4;
  z-index: -1;
}

/* STAR */
.marquee-star {
  color: #f5c400;
  font-size: 20px;
  margin: 0 14px;
  transform: translateY(-2px);
  text-shadow: 0 4px 12px rgba(245, 196, 0, 0.5);
}

/* SCROLL */
@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* PAUSE ON HOVER */
.marquee-section:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-item {
  position: relative;
  overflow: hidden;
}

.marquee-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );
  animation: textShimmer 6s ease-in-out infinite;
}

@keyframes textShimmer {
  0% { left: -150%; }
  50% { left: 150%; }
  100% { left: 150%; }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .marquee-item {
    font-size: 18px;
    padding: 0 20px;
  }
}
.rooms-section {
  position: relative;
  padding: 120px 80px;
  overflow: hidden;
}


/* HEADER */
.rooms-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  
}
/* ===============================
   BACKGROUND VIDEO
================================= */
.rooms-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.rooms-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DARK FADE OVERLAY */
.rooms-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.78) 0%,
    rgba(15, 23, 42, 0.65) 45%,
    rgba(15, 23, 42, 0.55) 100%
  );
  z-index: 1;
}
.rooms-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}


/* CONTENT LAYER */
.rooms-inner {
  position: relative;
  z-index: 2;
}
.rooms-header {
  color: #f8fafc;
}
.rooms-eyebrow {
  font-size: 14px;
  letter-spacing: 2px;
  color: #e6c78a;
  font-weight: 600;
}

.rooms-text h2 {
  
  font-size: 56px;
   color: #ffffff;
  margin: 14px 0 18px;
}

.rooms-text p {
  max-width: 1020px;
  font-size: 17px;
  line-height: 1.6;
  opacity: 1.9;
  color: rgba(255,255,255,0.85);
}

/* ARROWS */
.rooms-arrows {
  display: flex;
  gap: 14px;
}

.rooms-arrows button {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  border: none;
  background: #ffffff;
  color: #0a1e3c;
  font-size: 22px;
  cursor: pointer;
}

.rooms-arrows button:last-child {
  background: #fcca31;
  color: #fff;
}

/* SLIDER */
.rooms-slider .swiper-slide {
  width: auto;
}

/* ROOM CARD */
.room-card {
  width: 360px;
  background: #fbf7f2;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 35px 90px rgba(2, 6, 23, 0.35);

  display: flex;
  flex-direction: column;

  /* FIXED PREMIUM HEIGHT */
  min-height: 620px;
}



.room-card-image {
  position: relative;
  height: 260px;
}

.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-price {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(135deg, #e6c78a, #d4af6a);
  color: #1e293b;
  padding: 6px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}


/* CONTENT */
.room-card-content {
  padding: 26px 24px 28px;
  background: #ffffff;

  flex: 1; /* THIS IS KEY */
}


.room-tag {
  display: inline-block;
  font-size: 13px;
  color: #123e75;
  border: 1px solid #123e75;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  background: rgba(236, 217, 183, 0.25);
}


.room-card-content h3 {
  
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 18px;
  color: #0f172a;
}


/* META */
.room-meta {
  display: flex;
  gap: 22px;
  font-size: 14px;
  color: #475569;
}

.room-meta i {
  color: #c8a85d;
  margin-right: 6px;
}


/* FOOTER */
.room-card-footer a{
  background: linear-gradient(135deg, #123e75, #020617);
  color: #e5e7eb;
  padding: 18px 22px;

  display: flex;
  justify-content: space-between;
  align-items: center;
text-decoration:none;
  font-size: 14px;
  letter-spacing: 1px;
}
.room-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 16px;

  /* LIMIT TEXT LINES */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =========================================
   RESPONSIVE STYLES (Mobile & Tablet)
========================================= */

/* Tablet & iPad (1024px and below) */
@media (max-width: 1024px) {
  .rooms-section {
    padding: 80px 40px; /* Reduce padding for tablets */
  }

  .rooms-text h2 {
    font-size: 42px; /* Smaller heading for tablet */
  }
}

/* Mobile Devices (768px and below) */
@media (max-width: 768px) {
  .rooms-section {
    padding: 60px 20px; /* Much smaller padding for mobile */
    /* Optional: Keep the dark background if you want to hide video, 
       or remove this line to keep video visible on mobile */
    background: linear-gradient(180deg, #0a1e3c, #07172d); 
  }

  /* Hide video on mobile to save data/battery (from your original code) */
  .rooms-bg-video {
    display: none;
  }

  /* Stack Header Elements */
  .rooms-header {
    flex-direction: column;
    align-items: flex-start; /* Align to left */
    gap: 30px; /* Add space between text and arrows */
    margin-bottom: 40px;
  }

  .rooms-text {
    width: 100%;
  }

  .rooms-text p {
    max-width: 100%; /* Let text fill the screen width */
    font-size: 15px;
  }
  
  .rooms-text h2 {
    font-size: 36px; /* Smaller heading for mobile */
    line-height: 1.2;
  }

  /* Adjust Arrows to sit nicely on mobile */
  .rooms-arrows {
    width: 100%;
    justify-content: flex-start; /* Or 'center' if you prefer */
  }

  /* MAKE CARDS RESPONSIVE */
  .rooms-slider .swiper-slide {
    width: 100%; /* Slide takes full width on mobile */
    display: flex;
    justify-content: center;
  }

  .room-card {
    width: 100%; /* Fluid width instead of fixed 360px */
    max-width: 400px; /* Cap it so it doesn't get too huge on big phones */
    min-height: auto; /* Allow height to adjust naturally */
  }

  .room-card-image {
    height: 220px; /* Slightly shorter image on mobile */
  }

  .room-card-content {
    padding: 20px;
  }

  .room-card-content h3 {
    font-size: 22px;
  }
}
/* ===============================
   AMENITIES SECTION – WYNDHAM STYLE
================================ */

.amenities-section {
  padding: 100px 80px;
  background: #f4f8fc; /* light blue-gray */
}

/* CONTAINER */
.amenities-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* ===============================
   AMENITIES GRID
================================ */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* CARD BASE */
.amenity-card {
  height: 180px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #dbe7f3;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* HOVER */
.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(13, 59, 102, 0.18);
}

/* ICON */
.amenity-icon {
  font-size: 34px;
  color: #0b4f8a; /* Wyndham blue */
}

/* TITLE */
.amenity-card h4 {
  font-size: 17px;
  font-weight: 400;
  color: #0f172a;
}

/* FEATURED CARD (BLUE) */
.amenity-card.gold {
  background: linear-gradient(135deg, #123e75, #020617);
  border-color: #0b4f8a;
}

.amenity-card.gold h4,
.amenity-card.gold .amenity-icon {
  color: #ffffff;
}

/* ===============================
   CONTENT AREA
================================ */
.amenities-eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  color: #b08b57;
  font-weight: 600;
}

.amenities-content h2 {
  font-size: 48px;
  font-weight: 600;
  margin: 14px 0 18px;
  color: #0a3d78;
}

.amenities-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #475569;
  max-width: 520px;
}

/* ===============================
   ACTIONS
================================ */
.amenities-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

/* PHONE */
.amenities-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 14px 20px;
  border-radius: 10px;
  color: #0f172a;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #dbe7f3;
}

.amenities-phone i {
  color: #0b4f8a;
}

/* BUTTON */
.amenities-btn {
  padding: 14px 26px;
  background: #f7c400; /* Wyndham yellow */
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  color: #0f172a;
}

.amenities-btn:hover {
  background: #e6b800;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .amenities-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenities-content h2 {
    font-size: 38px;
  }
}

@media (max-width: 576px) {
  .amenities-section {
    padding: 70px 24px;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .amenity-card {
    height: 160px;
  }
}
/* ===============================
   STICKY CINEMATIC GALLERY
================================ */
.sticky-gallery {
  position: relative;
  height: 420vh;
  background: linear-gradient(135deg, #123e75, #020617);
}

.sticky-gallery-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ===============================
   IMAGE LAYER
================================ */
.gallery-image {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(140px) scale(0.97);
  transition:
    opacity 0.9s ease,
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-image.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 2;
}

/* ===============================
   ACCENT COLOR SYSTEM
================================ */
.gallery-image[data-accent="gold"] {
  --accent: #d6b36a;
  --accent-soft: rgba(214,179,106,0.25);
}

.gallery-image[data-accent="blue"] {
  --accent: #6fa8dc;
  --accent-soft: rgba(111,168,220,0.25);
}

.gallery-image[data-accent="teal"] {
  --accent: #5fc9c2;
  --accent-soft: rgba(95,201,194,0.25);
}

.gallery-image[data-accent="sand"] {
  --accent: #e0c097;
  --accent-soft: rgba(224,192,151,0.25);
}

/* ===============================
   FRAME
================================ */
.gallery-frame {
  width: 88%;
  max-width: 1300px;
  height: 88vh;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow:
    0 60px 140px rgba(0,0,0,0.55),
    inset 0 0 0 1px rgba(255,255,255,0.08);
}

.gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 1.6s ease;
    position: relative;
  z-index: 1;
}

.gallery-image.active .gallery-frame img {
  transform: scale(1);
}

/* CINEMATIC OVERLAY */
/* IMAGE FADE LAYER (ONLY IMAGE) */
.gallery-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(6, 10, 20, 0.15),
    rgba(6, 10, 20, 0.75)
  );
  pointer-events: none;
}


/* ===============================
   CONTENT OVERLAY
================================ */
.gallery-content {
  position: absolute;
  z-index: 3;
  left: 60px;
  bottom: 60px;
  max-width: 440px;
  color: #f8fafc;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  
}
.gallery-content {
  padding: 18px 20px;
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(11, 18, 32, 0.45),
    rgba(11, 18, 32, 0.25)
  );
  backdrop-filter: blur(6px);
}


.gallery-image.active .gallery-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

/* BADGE */
.gallery-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 14px;
  backdrop-filter: blur(6px);
  letter-spacing: 0.6px;
}

/* HEADING */
.gallery-content h3 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 400;
  position: relative;
  color:#fff;
}

.gallery-content h3::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  background: var(--accent);
  margin-top: 10px;
  border-radius: 3px;
align-items:center;
}

/* TEXT */
.gallery-content p {
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.9;
}

/* CTA */
.gallery-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 13px 26px;
  background: var(--accent);
  color: #0b1220;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* ===============================
   PROGRESS INDICATOR
================================ */
.gallery-progress {
  position: absolute;
  right: 60px;
  bottom: 90px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gallery-progress span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
}

.gallery-progress span.active {
  height: 26px;
  border-radius: 8px;
  background: #fff;
}

/* SCROLL HINT */
.gallery-scroll-hint {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0% { opacity: 0.3; transform: translate(-50%, 0); }
  50% { opacity: 1; transform: translate(-50%, -6px); }
  100% { opacity: 0.3; transform: translate(-50%, 0); }
}


.collage-frame {
  padding: 26px;
  background: linear-gradient(
    180deg,
    rgba(11,18,32,0.6),
    rgba(11,18,32,0.3)
  );
}
.collage-grid {
  display: grid;
  grid-template-columns: 1fr 0.3fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 100%;
}
.collage-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  transform: scale(1.05);
  transition: transform 1.6s ease;
}
.collage-grid img:nth-child(1) {
  grid-row: span 4;
}

.collage-grid img:nth-child(2),
.collage-grid img:nth-child(3),
.collage-grid img:nth-child(4) {
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}
.collage-content {
  left: 50%;
  bottom: 30%;
  transform: translate(-50%, 50%);
  text-align: center;
  max-width: 520px;
}
.gallery-image.active .collage-content {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ===============================
   MOBILE & iPAD – STICKY ENABLED
================================ */
@media (max-width: 1024px) {

  .sticky-gallery {
    height: 360vh; /* slightly shorter but still sticky */
  }

  .gallery-frame {
    width: 92%;
    height: 80vh;
    border-radius: 20px;
  }

  .gallery-content {
    left: 20px;
    right: 20px;
    bottom: 28px;
    max-width: none;
    padding: 16px 18px;
  }

  .gallery-content h3 {
    font-size: 26px;
  }

  .gallery-content p {
    font-size: 14px;
  }

  .gallery-progress {
    right: 24px;
    bottom: 70px;
  }
}
@media (max-width: 1024px) {
  .collage-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
  }

  .collage-content {
    left: 20px;
    right: 20px;
    bottom: 32px;
    transform: none;
    text-align: left;
  }
}
/* ===============================
   MOBILE – FIX COLLAGE LOOK
================================ */
@media (max-width: 600px) {

  .sticky-gallery {
    height: 420vh; /* keep full length on mobile for smooth switching */
  }

  .gallery-frame {
    width: 94%;
    height: 72vh; /* prevent oversized frame */
    border-radius: 18px;
  }

  /* COLLAGE SLIDE: make it tiles (2x2) */
  .collage-frame {
    padding: 16px;
  }

  .collage-grid {
    grid-template-columns: 1fr 1fr;  /* 2 columns */
    grid-template-rows: 1fr 1fr;     /* 2 rows */
    gap: 10px;
  }

  /* remove the big-left-image rule that causes the strip layout */
  .collage-grid img:nth-child(1) {
    grid-row: auto;
  }

  .collage-grid img {
    border-radius: 14px;
    transform: none;
  }

  /* collage content placement */
  .collage-content {
    left: 180px;
    right: 0px;
    bottom: 208px;
    max-width: 500px;
    text-align: left;
    padding: 14px 14px;
  }

  .gallery-content h3 {
    font-size: 22px;
  }

  .gallery-content p {
    font-size: 13px;
    line-height: 1.55;
  }

  .gallery-progress {
    right: 16px;
    bottom: 58px;
  }

  .gallery-scroll-hint {
    bottom: 22px;
  }
}
/* ===============================
   ATTRACTIONS SECTION
================================ */
.attractions-section {
  padding: 120px 80px;
  background: #ffffff;
}

.attractions-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-eyebrow {
  font-size: 14px;
  letter-spacing: 2px;
  color: #b08955;
  font-weight: 600;
}

.attractions-header h2 {
  font-size: 52px;
  margin-top: 14px;
  font-weight: 400;
  color: #0a3d78;
}

/* ===============================
   WRAPPER
================================ */
.attractions-wrapper {
  display: flex;
  gap: 22px;
  height: 520px;
}

/* ===============================
   CARD
================================ */
.attraction-card {
  position: relative;
  flex: 1;
  border-radius: 26px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  transition:
    flex 1s cubic-bezier(0.22,1,0.36,1),
    box-shadow .6s ease;
}

.attraction-card.is-active {
  flex: 3.5;
  box-shadow:
    0 50px 120px rgba(0,0,0,0.35),
    0 0 0 1px rgba(176,137,85,0.35);
}

/* IMAGE */
.attraction-media {
  position: absolute;
  inset: 0;
}

.attraction-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 2.2s cubic-bezier(0.22,1,0.36,1);
  will-change: transform;
}

.attraction-card.is-active img {
  transform: scale(1.12) translateY(-12px);
}

/* OVERLAY */
.attraction-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,15,25,0.25),
    rgba(10,15,25,0.85)
  );
  z-index:0;
}

/* VERTICAL TEXT */
.attraction-vertical {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%) rotate(-90deg);
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 3px;
  opacity: 0.85;
  transition: opacity .4s ease;
   z-index:1;
}

.attraction-card.is-active .attraction-vertical {
  opacity: 0;
}

/* CONTENT */
.attraction-overlay {
  position: absolute;
  left: 48px;
  bottom: 48px;
  max-width: 360px;
  color: #ffffff;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
  z-index: 2;
}

.attraction-card.is-active .attraction-overlay {
  opacity: 1;
  transform: translateY(0);
}

.attraction-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(176,137,85,0.25);
  color: #f3e7c4;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 14px;
}

.attraction-name {
  font-size: 34px;
  margin-bottom: 10px;
  font-weight: 400;
  color:#fff;
}

.attraction-desc {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

.attraction-link {
  display: inline-block;
  margin-top: 16px;
  color: #b08955;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .attractions-section {
    padding: 90px 40px;
  }

  .attractions-wrapper {
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 20px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .attraction-card {
    flex: 0 0 70%;
    height: 420px;
    scroll-snap-align: center;
    transition: transform .6s ease, box-shadow .6s ease;
  }

  .attraction-card.is-active {
    flex: 0 0 70%;
  }

  .attraction-overlay {
    left: 32px;
    bottom: 32px;
    max-width: 300px;
  }

  .attraction-name {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .attractions-section {
    padding: 70px 24px;
  }

  .attractions-header h2 {
    font-size: 34px;
  }

  .attractions-wrapper {
    flex-direction: column;
    gap: 26px;
    overflow: visible;
  }

  .attraction-card {
    flex: none;
    width: 100%;
    height: 380px;
    border-radius: 22px;
  }

  .attraction-card.is-active {
    flex: none;
  }

  .attraction-media img {
    transform: scale(1.05);
  }

  .attraction-overlay {
    left: 24px;
    bottom: 24px;
    max-width: calc(100% - 48px);
  }

  .attraction-name {
    font-size: 26px;
  }

  .attraction-desc {
    font-size: 14px;
  }

  .attraction-vertical {
    display: none;
  }
}
@media (max-width: 480px) {
  .attractions-header h2 {
    font-size: 30px;
  }

  .attraction-card {
    height: 340px;
  }

  .attraction-name {
    font-size: 24px;
  }
}
/* ================= BASE ================= */
/* ================= BASE WITH BACKGROUND IMAGE ================= */
.lux-footer {
  position: relative;
  color: #e5ecf3;
  font-family: "Poppins", sans-serif;
  overflow: hidden;

  /* Background image */
  background-image:
    linear-gradient(
      180deg,
      rgba(7, 26, 47, 0.92) 0%,
      rgba(5, 14, 26, 0.97) 100%
    ),
    url("../images/new/exterior.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.lux-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255,255,255,0.05),
    rgba(0,0,0,0.55)
  );
  pointer-events: none;
  z-index: 0;
}


/* ================= CONTENT ================= */
.lux-footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 90px 80px 70px;
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr;
  gap: 80px;
}

/* ================= HEADINGS ================= */
.lux-footer h3,
.lux-footer h4 {
  font-family: "Playfair Display", serif;
  color: #fff;
  margin-bottom: 22px;
  position: relative;
}

.lux-footer h3 {
  font-size: 30px;
}

.lux-footer h4 {
  font-size: 30px;
}

.lux-footer h3::after,
.lux-footer h4::after {
  content: "";
  width: 36px;
  height: 2px;
  background: #d4af6d;
  position: absolute;
  left: 0;
  bottom: -10px;
}

/* ================= PROPERTY ================= */
.lux-footer-address {
  line-height: 1.7;
  margin-bottom: 14px;
  opacity: 0.9;
  font-size:17px;
}

.lux-footer-contact a {
  color: #d4af6d;
  text-decoration: none;
  font-size:18px;
}

.lux-footer-contact a:hover {
  text-decoration: underline;
}

/* ================= LINKS ================= */
.lux-footer-links ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 30px;
}

.lux-footer-links li {
  list-style: none;
  position: relative;
  padding-left: 14px;
  opacity: 0.9;
  font-size: 18px;
  line-height: 1.7;
}

.lux-footer-links li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d4af6d; /* Gold color for the bullet points */
}

.lux-footer-links a {
  text-decoration: none;
  color: #ffffff; /* Make the links white for better visibility */
  font-weight: 400;
  transition: color 0.3s ease;
}

.lux-footer-links a:hover {
  color: #d4af6d; /* Change link color on hover */
}

/* ================= CHECK IN ================= */
.lux-footer-time p {
  margin: 10px 0;
}

.lux-footer-time strong {
  color: #d4af6d;
  font-weight: 500;
  font-size:17px;
}

/* ================= LEGAL ================= */
.lux-footer-legal {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 24px 80px;
  text-align: center;
  font-size: 16px;
  background: rgba(0,0,0,0.25);
}

.lux-license {
  margin-bottom: 10px;
  opacity: 0.85;
}

.lux-legal-links a {
  color: #e5ecf3;
  text-decoration: none;
  margin: 0 6px;
}

.lux-legal-links a:hover {
  color: #d4af6d;
}

/* ================= LOGO ================= */
.lux-footer-logo {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 32px 0;
  text-align: center;
  background: #050e1a;
}

.lux-footer-logo img {
  height: 64px;
  opacity: 0.95;
}

/* ================= RESPONSIVE IMPROVEMENTS ================= */

/* Tablet / iPad (Portrait) */
@media (max-width: 1024px) {
  .lux-footer-content {
    grid-template-columns: 1fr 1fr; /* 2 Columns */
    gap: 50px;
    padding: 70px 40px;
  }

  /* Make the 3rd item (Check In/Time) span full width to balance the grid */
  .lux-footer-content > div:nth-child(3) {
    grid-column: 1 / -1; 
    text-align: center;
    display: flex;
    flex-direction: column;
   text-align: left;
  }

  /* Center the underline for the 3rd item only */
  .lux-footer-content > div:nth-child(3) h4::after {
    left: 10%;
    transform: translateX(-50%);
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .lux-footer-content {
    grid-template-columns: 1fr; /* Stack everything */
    text-align: left;
    padding: 60px 20px;
    gap: 50px;
  }

  /* Center the headings underline */
  .lux-footer h3::after,
  .lux-footer h4::after {
    left: 10%;
    transform: translateX(-50%);
  }

  /* Fix Links Alignment: Remove bullets and side padding for clean centering */
  .lux-footer-links ul {
    grid-template-columns: 1fr 1fr; /* Stack links */
    padding: 0;
    gap: 15px;
  }

  .lux-footer-links li {
    padding-left: 0; /* Remove space reserved for bullet */
  }

  .lux-footer-links li::before {
    content: none; /* Hide the bullet point on mobile */
  }

  /* Add some breathing room between sections */
  .lux-footer-address, 
  .lux-footer-contact, 
  .lux-footer-time {
    margin-bottom: 10px;
	 
  }
}
.title{
	font-family: "Playfair Display", serif;
    color: #fff;
    margin-bottom: 22px;
    position: relative;
	text-decoration:none;
}
/* ===============================
   BACK TO TOP BUTTON STYLE (Cinematic)
================================= */
.back-to-top {
  position: fixed;
  bottom: 30px;  /* Distance from bottom */
  right: 30px;   /* Distance from right */
  background-color: #d49c1e; /* Accent color */
  color: white;
  padding: 20px 22px;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 999;
  display: none;  /* Hidden by default */
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;  /* Initially invisible */
  animation: popIn 1s ease-out forwards;  /* Add animation */
}

.back-to-top:hover {
  background-color: #c8a015;  /* Darker gold on hover */
  transform: scale(1.1) rotate(15deg);  /* Cinematic hover effect */
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: translateY(30px);  /* Start from below the screen */
  }
  60% {
    opacity: 1;
    transform: translateY(-10px); /* Pop up from bottom */
  }
  100% {
    opacity: 1;
    transform: translateY(0);  /* Settles at the correct position */
  }
}

/* ===============================
   UNIQUE HERO SECTION (For Inner Page)
================================= */
.unique-hero-section {
  position: relative;
  height: 70vh; /* Adjust the height as per the design you want */
  width: 100%;
  overflow: hidden;
  text-align: center;
}

/* ===============================
   HERO BACKGROUND IMAGE
================================= */
.unique-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.unique-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===============================
   HERO OVERLAY (Gradient Effect)
================================= */
.unique-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:linear-gradient(to left, rgb(11 60 115) 0%, rgb(9 35 65 / 45%) 50%, rgba(0, 0, 0, 0.25) 100%);
  z-index: 1;
}

/* ===============================
   HERO CONTENT (Centering Text and Button)
================================= */
.unique-hero-content {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centering */
  z-index: 2;
  text-align: center;
  color: white;
  width: 80%; /* Ensuring text fits well */
  max-width: 800px;
}

.hero-heading1 {
  font-size: 78px;
  font-weight: 300;
  font-family: "Playfair Display", serif;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  color: #d49c1e; /* Using a gold/yellow tone */
}

.hero-subtext1 {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 25px;
  opacity: 0.85;
  color: #f5f7fa; /* Light greyish text for contrast */
}

.hero-book-btn {
  padding: 14px 35px;
  background-color: #d49c1e; /* Gold/yellow accent color */
  color: white;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hero-book-btn:hover {
  background-color: #c8a015; /* Slightly darker gold/yellow for hover */
  transform: scale(1.05);
}

/* ===============================
   RESPONSIVE DESIGN
================================= */
@media (max-width: 1024px) {
	.unique-hero-section {
 
  height: 40vh; /* Adjust the height as per the design you want */
 
}
  .hero-heading {
    font-size: 36px;
  }

  .hero-subtext {
    font-size: 16px;
  }

  .hero-book-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
	.unique-hero-section {
 
  height: 40vh; /* Adjust the height as per the design you want */
 
}

  .hero-heading {
    font-size: 28px;
  }

  .hero-subtext {
    font-size: 14px;
  }

  .hero-book-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}
.hotelamenities-section {
  background: #e8f2f8; /* Light blue background similar to the image */
  padding: 40px 20px;
  font-family: 'Montserrat', sans-serif;
  color: #1a3151; /* Dark blue text color */
  
}

.hotelamenities-container {
  max-width: 1280px;
  margin: auto;
}

.hotelamenities-header {
  text-align: center;
  margin-bottom: 50px;
}

.hotelamenities-subtitle {
  font-size: 17px;
  color: #ff9e00; /* Orange accent color */
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.hotelamenities-title {
  font-size: 40px;
  margin: 10px 0;
  font-weight: 700;
  color: #2d3d56; /* Darker shade of blue for the title */
}

.hotelamenities-desc {
  font-size: 18px;
  color: #555;
  max-width: 1500px;
  margin: 0 auto;
  line-height: 1.6;
}

.hotelamenities-block {
  margin-bottom: 60px;
}

.hotelamenities-heading {
  font-size: 24px;
  margin-bottom: 25px;
  font-weight: 600;
  color: #2d3d56; /* Dark blue for headings */
  position: relative;
  text-align: left;
}

.hotelamenities-heading.accessible {
  color: #006F96; /* A bright blue for accessibility section */
}

.hotelamenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px 30px;
  list-style: none;
  padding: 0;
}

.hotelamenities-grid li {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  font-size: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.hotelamenities-grid li:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hotelamenities-grid li em {
  color: #ff9e00; /* Orange for icons */
  margin-right: 12px;
  font-size: 18px;
}

.hotelamenities-heading.accessible + .hotelamenities-grid li em {
  color: #006F96; /* Bright blue for accessible features icons */
}

@media (max-width: 768px) {
  .hotelamenities-title {
    font-size: 26px;
  }

  .hotelamenities-heading {
    font-size: 20px;
  }

  .hotelamenities-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== THINGS TO DO GRID – PREMIUM VERSION ===== */
.things-grid-section {
  padding: 10px 70px;
  background: linear-gradient(180deg, #e8f2f8 0%, #e8f2f8 100%); /* Same light blue background */
}

.things-grid-section .container {
  max-width: 1200px;
  margin: auto;
}

/* Section titles */
.things-title {
  font-size: 26px;
  font-weight: 600;
  margin: 60px 0 35px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #2d3d56; /* Dark blue from the amenities section */
  position: relative;
}

/* Title icon */
.things-title i {
  font-size: 22px;
  background: linear-gradient(135deg, #ff9e00, #00aaff); /* Orange to bright blue gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Grid layout */
.things-grid.two-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 70px;
}

/* Card */
.thing-card {
  position: relative;
  background: #ffffff;
  padding: 22px 24px 22px 26px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(10, 32, 80, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

/* Accent rail */
.thing-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 9px;
  height: 100%;
  background: linear-gradient(180deg, #ff9e00, #00aaff); /* Orange to blue gradient */
}

/* Hover */
.thing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(10, 32, 80, 0.18);
}

/* Card title */
.thing-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: #2d3d56; /* Dark blue text for the card title */
  margin-bottom: 6px;
}

/* Distance */
.thing-card p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .things-grid-section {
    padding: 40px 20px;
  }

  .things-grid.two-cols {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .things-title {
    font-size: 22px;
  }
}

/* ===== Thing Card Link Styling ===== */

.thing-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.thing-link:hover,
.thing-link:focus {
  text-decoration: none;
  color: inherit;
}
/* ===============================
   NEARBY EXPERIENCES SECTION
================================ */
.nearby-experiences-section {
  padding: 40px 80px;
  background: linear-gradient(180deg, #e8f2f8 0%, #e8f2f8 100%);
}

/* ===========================
   NEARBY EXPERIENCES HEADER
=========================== */
.nearby-experiences-header {
  text-align: center;
  margin-bottom: 70px;
}

/* Eyebrow text (Subtitle) */
.nearby-experiences-eyebrow {
  font-size: 17px;
  color: #ff9e00; /* Orange accent color */
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Main heading (Title) */
.nearby-experiences-title {
  font-size: 40px;
  margin: 10px 0;
  font-weight: 700;
  color: #2d3d56; /* Darker shade of blue for the title */
}

/* Divider */
.nearby-experiences-divider {
  width: 70px;
  height: 3px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #ff9e00, #00aaff); /* Orange to bright blue gradient */
  border-radius: 3px;
}

/* Description text */
.nearby-experiences-text {
  font-size: 17px;
  line-height: 1.8;
  color: #444; /* Slightly muted color for readability */
  max-width: 1400px;
  margin: 0 auto;
}


/* ===============================
   WRAPPER
================================ */
.nearby-experiences-wrapper {
  display: flex;
  gap: 22px;
  height: 520px;
  flex-wrap: wrap; /* Allow cards to wrap on smaller screens */
}

/* ===============================
   CARD
================================ */
.nearby-experience-card {
  position: relative;
  flex: 1;
  border-radius: 26px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  transition:
    flex 1s cubic-bezier(0.22,1,0.36,1),
    box-shadow .6s ease;
}

.nearby-experience-card.is-active {
  flex: 3.5;
  box-shadow:
    0 50px 120px rgba(0,0,0,0.35),
    0 0 0 1px rgba(176,137,85,0.35);
}

/* IMAGE */
.nearby-experience-media {
  position: absolute;
  inset: 0;
}

.nearby-experience-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 2.2s cubic-bezier(0.22,1,0.36,1);
  will-change: transform;
}

.nearby-experience-card.is-active img {
  transform: scale(1.12) translateY(-12px);
}

/* OVERLAY */
.nearby-experience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,15,25,0.25),
    rgba(10,15,25,0.85)
  );
  z-index: 0;
}

/* VERTICAL TEXT */
.nearby-experience-vertical {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%) rotate(-90deg);
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 3px;
  opacity: 0.85;
  transition: opacity .4s ease;
  z-index: 1;
}

.nearby-experience-card.is-active .nearby-experience-vertical {
  opacity: 0;
}

/* CONTENT */
.nearby-experience-overlay {
  position: absolute;
  left: 48px;
  bottom: 48px;
  max-width: 360px;
  color: #ffffff;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
  z-index: 2;
}

.nearby-experience-card.is-active .nearby-experience-overlay {
  opacity: 1;
  transform: translateY(0);
}

.nearby-experience-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(176,137,85,0.25);
  color: #f3e7c4;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 14px;
}

.nearby-experience-name {
  font-size: 34px;
  margin-bottom: 10px;
  font-weight: 400;
  color: #fff;
}

.nearby-experience-desc {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

.nearby-experience-link {
  display: inline-block;
  margin-top: 16px;
  color: #b08955;
  font-weight: 600;
  text-decoration: none;
}

/* Tablets (≤ 1024px) */
@media (max-width: 1024px) {
  .nearby-experiences-section {
    padding: 40px 30px;
  }
  
  .nearby-experiences-wrapper {
    height: auto;
    flex-direction: column;
    gap: 16px;
  }
  
  .nearby-experience-card {
    flex: 1 1 auto !important;
    height: 100%;
    min-height: 400px;
  }
  
  .nearby-experience-card.is-active {
    flex: 1 1 auto !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  }
  
  .nearby-experience-overlay {
    left: 24px;
    bottom: 32px;
    max-width: 85%;
  }
  
  .nearby-experience-name {
    font-size: 28px;
  }
  
  .nearby-experience-vertical {
    font-size: 20px;
    bottom: 50px;
	 transform: translateX(-50%) rotate(360deg);
  }
}

/* Phones (≤ 768px) */
@media (max-width: 768px) {
  .nearby-experiences-section {
    padding: 30px 20px;
  }
  
  .nearby-experiences-header {
    margin-bottom: 50px;
  }
  
  .nearby-experiences-title {
    font-size: 32px;
  }
  
  .nearby-experiences-eyebrow {
    font-size: 15px;
  }
  
  .nearby-experience-card {
    height: 440px;
    border-radius: 20px;
  }
  
  .nearby-experience-overlay {
    left: 20px;
    bottom: 28px;
  }
  
  .nearby-experience-name {
    font-size: 24px;
  }
  
  .nearby-experience-desc {
    font-size: 14px;
  }
  
  .nearby-experience-vertical {
    font-size: 20px;
    letter-spacing: 2.5px;
    bottom: 45px;
	 transform: translateX(-50%) rotate(360deg);
  }
  
  .nearby-experience-card.is-active img {
    transform: scale(1.1) translateY(-8px);
  }
}


/* ===============================
   LOCATION INTRO SECTION
================================ */
.location-intro {
  padding: 40px 80px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
  text-align: center;
}

.location-intro-inner {
  max-width: 1400px;
  margin: 0 auto;
}

/* Eyebrow */
.location-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #f47b20;
  margin-bottom: 12px;
}

/* Heading */
.location-heading {
  font-size: 42px;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 22px;
  background: linear-gradient(to right, #0a2050, #ffb703);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Divider */
.location-divider {
  width: 70px;
  height: 3px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #f47b20, #ffb703);
  border-radius: 3px;
}

/* Description */
.location-text {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  max-width: 1200px;
  margin: 0 auto;
}


/* ===============================
   LOCATION SECTION HERO
================================ */
.location-section-hero {
  padding: 50px 70px;
  background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%);
}

.location-wrapper-hero {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(10, 32, 80, 0.12);
  overflow: hidden;
}

/* Left content */
.location-info-box {
  flex: 1;
  padding: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Description */
.location-description {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
}

/* Info cards */
.coordinates-area,
.directions-area {
  background: #f9fbfe;
  padding: 25px;
  border-left: 4px solid #ffb703;
  border-radius: 10px;
  margin-bottom: 25px;
}

/* Card titles */
.coordinates-area h4,
.directions-area h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0a2050;
  display: flex;
  align-items: center;
  gap: 10px;
}

.coordinates-area h4 i,
.directions-area h4 i {
  color: #f47b20;
}

/* Coordinates list */
.coordinates-area ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.coordinates-area ul li {
  font-size: 15px;
  color: #333;
  margin-bottom: 8px;
}

/* Form */
.directions-area form input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #d0d7e2;
  font-size: 15px;
}

.directions-area form button {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #f47b20, #ffb703);
  color: #ffffff;
  border: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 8px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.directions-area form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(244, 123, 32, 0.4);
}

/* Map */
.location-map-box {
  flex: 1;
  background: #eef3f9;
}

.location-map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

/* ===============================
   RESPONSIVE STYLES
================================ */
@media (max-width: 992px) {
  .location-section-hero {
    padding: 40px 20px;
  }

  .location-wrapper-hero {
    flex-direction: column;
  }

  .location-map-box iframe {
    min-height: 300px;
  }

  .location-heading {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .location-intro {
    padding: 30px 20px;
  }

  .location-heading {
    font-size: 32px;
  }

  .location-text {
    font-size: 16px;
  }

  .location-section-hero {
    padding: 40px 20px;
  }

  .location-wrapper-hero {
    flex-direction: column;
    gap: 20px;
  }

  .location-map-box iframe {
    min-height: 300px;
  }

  .location-description {
    font-size: 16px;
  }

  .location-info-box {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .location-intro {
    padding: 20px 15px;
  }

  .location-heading {
    font-size: 28px;
  }

  .location-text {
    font-size: 14px;
  }

  .location-section-hero {
    padding: 30px 15px;
  }

  .location-wrapper-hero {
    flex-direction: column;
  }

  .location-map-box iframe {
    min-height: 250px;
  }

  .location-description {
    font-size: 14px;
  }
}
/* === CONTACT INTRO SECTION === */
.contact-intro {
  padding: 40px 80px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
  text-align: center;
}

.contact-intro-inner {
  max-width: 1400px;
  margin: 0 auto;
}

/* Eyebrow text */
.contact-eyebrow {
      font-size: 17px;
    color: #ff9e00;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
  
}

/* Main heading */
.contact-heading {
 font-size: 40px;
    margin: 10px 0;
    font-weight: 700;
    color: #2d3d56;
}

/* Divider */
.contact-divider {
 width: 70px;
  height: 3px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #f47b20, #ffb703);
  border-radius: 3px;
}

/* Description text */
.contact-text {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  max-width: 1200px;
  margin: 0 auto;
}

/* === Responsive === */
@media (max-width: 768px) {
  .contact-intro {
    padding: 30px 20px;
  }

  .contact-heading {
    font-size: 32px;
  }

  .contact-text {
    font-size: 16px;
  }
}

/* ===== CONTACT INFO SECTION – HOTEL STYLE ===== */

.contact-section-hero {
  padding: 50px 70px;
  background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%);
}

.contact-wrapper-hero {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(10, 32, 80, 0.12);
  overflow: hidden;
}

/* Left content */
.contact-info-box {
  flex: 1;
  padding: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Intro text */
.contact-intro-text {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 30px;
}

/* Details card */
.contact-details-area {
  background: #f9fbfe;
  padding: 25px;
  border-left: 4px solid #ffb703;
  border-radius: 10px;
}

/* Heading */
.contact-details-area h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0a2050;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-details-area h4 i {
  color: #f47b20;
}

/* List */
.contact-details-area ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-details-area ul li {
  font-size: 15px;
  color: #333;
  margin-bottom: 14px;
  line-height: 1.6;
}

/* Links */
.contact-details-area a {
  color: #0a2050;
  font-weight: 600;
  text-decoration: none;
}

.contact-details-area a:hover {
  color: #f47b20;
  text-decoration: underline;
}

/* Right image */
.contact-image-box {
  flex: 1;
  background: #eef3f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .contact-section-hero {
    padding: 40px 20px;
  }

  .contact-wrapper-hero {
    flex-direction: column;
  }

  .contact-image-box {
    height: 280px;
  }

  .contact-info-box {
    padding: 35px 25px;
  }
}

/* ===== SITEMAP SECTION – COMFORT INN JONESBORO STYLE ===== */

.sitemap-section {
  padding: 70px 20px;
  background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%);
  text-align: center;
}

.sitemap-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Title */
.sitemap-title {
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 18px;
  text-transform: uppercase;
  background: linear-gradient(to right, #0a2050, #ffb703);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtitle */
.sitemap-subtitle {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  max-width: 1280px;
  margin: 0 auto 60px;
}

/* Grid */
.sitemap-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.sitemap-block {
  background: #ffffff;
  padding: 36px 34px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(10, 32, 80, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Accent bar */
.sitemap-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #f47b20, #ffb703);
}

/* Hover */
.sitemap-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(10, 32, 80, 0.18);
}

/* Block heading */
.sitemap-block h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #0a2050;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* List */
.sitemap-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-block ul li {
  margin-bottom: 14px;
}

/* Links */
.sitemap-block ul li a {
  font-size: 18px;
  font-weight: 500;
  color: #0a2050;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Chevron icon */
.sitemap-block ul li a i {
  font-size: 13px;
  color: #f47b20;
  transition: transform 0.3s ease;
}

/* Hover link */
.sitemap-block ul li a:hover {
  color: #f47b20;
  transform: translateX(4px);
}

.sitemap-block ul li a:hover i {
  transform: translateX(4px);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .sitemap-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sitemap-links {
    grid-template-columns: 1fr;
  }

  .sitemap-title {
    font-size: 32px;
  }

  .sitemap-subtitle {
    font-size: 16px;
  }
}
/* ===== FAQ SECTION – COMFORT INN JONESBORO STYLE ===== */

.faq-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%);
  text-align: center;
  position: relative;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Title */
.faq-title a {
  font-size: 42px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  background: linear-gradient(to right, #0a2050, #ffb703);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 20px;
}

/* FAQ List */
.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  text-align: left;
  margin-top: 60px;
}

/* FAQ Card */
.faq-item {
  background: #ffffff;
  padding: 34px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(10, 32, 80, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Accent rail */
.faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #f47b20, #ffb703);
}

/* Hover */
.faq-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(10, 32, 80, 0.18);
}

/* Question */
.faq-item h2 {
  font-size: 22px;
  font-weight: 600;
  color: #0a2050;
  margin-bottom: 14px;
  line-height: 1.4;
}

/* Answer */
.faq-item p {
  font-size: 16.5px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 0;
}

/* Links inside answers */
.faq-item a {
  color: #f47b20;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.faq-item a:hover {
  color: #0a2050;
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .faq-title a {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 20px;
  }

  .faq-title a {
    font-size: 30px;
  }

  .faq-item {
    padding: 26px;
  }

  .faq-item h2 {
    font-size: 20px;
  }

  .faq-item p {
    font-size: 15.5px;
  }
}


.reservation {
  background: linear-gradient(135deg, rgba(0, 33, 60, 0.85), rgba(22, 56, 112, 0.85));
  padding: 40px 10px;
}

/* Reservation box wrapper */
.reservation-box {
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 2;
  position: relative;
  bottom: 50px;
}

.reservation-container {
  display: flex;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  background: #0C2A45; /* dark navy blue */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 1200px;
  height: auto;
}

/* Flex layout */
.reservation-container form {
  display: flex;
  width: 100%;
}

.res-flex {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  align-items: stretch;
}

/* Form items */
.res-item {
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  flex: 1;
  background: transparent;
}

.res-item.small {
  width: auto;
  min-width: 100px;
  text-align: left;
  flex: 0 0 auto;
}

/* Labels */
.res-item label {
  font-size: 12px;
  color: #FFD700; /* warm gold */
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4); /* Text shadow for depth */
}

/* Inputs & icons */
.res-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.res-content.center {
  justify-content: left;
}

.res-date,
.res-number {
  font-size: 22px;
  font-weight: 600;
  color: #FFFFFF; /* white */
  font-family: 'Montserrat', Arial, sans-serif;
}

.res-content i {
  font-size: 22px;
  color: #FFD700; /* warm gold */
  margin-left: 15px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.res-content i:hover {
  color: #fff; /* white hover */
}

/* Inputs & selects */
.res-input,
.res-select {
  background: #0c2a45; /* dark blue with a touch of teal */
  border: none;
  color: #FFFFFF; /* white */
  font-size: 20px;
  font-weight: 400;
  font-family: 'Montserrat', Arial, sans-serif;
  appearance: none;
  outline: none;
  text-align: left;
  cursor: pointer;
}

.res-select option {
  color: #FFFFFF; /* white */
}

/* Button */
.res-button {
  background: #F5A623; /* warm orange for contrast */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  min-width: 200px;
  flex: 0 0 auto;
}

.res-button button {
  background: none;
  border: none;
  color: #fff;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 30px;
  font-size: 16px;
  height: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.res-button:hover {
  background: #FF8C00; /* bright orange hover */
}

.res-button:hover button {
  color: #FFFFFF; /* white */
}

/* =========================================
   RESPONSIVE STYLES (Mobile & Tablet)
   ========================================= */

/* Triggers for screens smaller than 991px (Tablets & Mobile) */
@media screen and (max-width: 991px) {
  
  /* 1. Adjust the Wrapper Position */
  .reservation-box {
    bottom: 40px; /* Remove negative positioning on mobile to prevent overlap */
    margin-top: 30px; /* Slight overlap is okay, but less than desktop */
    padding: 0 15px; /* Add side padding so it doesn't touch screen edges */
  }

  /* 2. Stack items vertically */
  .res-flex {
    flex-direction: column; /* Stack items top to bottom */
    width: 100%;
  }

  /* 3. Adjust Form Items */
  .res-item {
    width: 100%; /* Full width */
    border-right: none; /* Remove side border */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Add bottom separator */
    padding: 15px 20px; /* Reduce padding slightly for mobile */
  }

  /* Remove border from the last item before the button */
  .res-item:last-of-type {
    border-bottom: none;
  }
  
  /* Reset "Small" items (like guest count) to full width too */
  .res-item.small {
    min-width: 100%;
    flex: 1 1 auto;
  }

  /* 4. Fix Inputs & Selects */
  .res-input,
  .res-select {
    width: 100%; /* Ensure inputs take available space */
  }

  /* 5. Adjust the Button */
  .res-button {
    width: 100%; /* Full width button */
    min-height: 60px; /* Make it tall enough to tap easily */
    border-radius: 0 0 12px 12px; /* Round bottom corners only */
  }
  
  /* Optional: If container needs to be scrollable or fit better */
  .reservation-container {
    flex-direction: column;
    height: auto;
  }
}
/* Accessibility Assistance Section with Gradient Background */
.accessibility-assistance {
    background:linear-gradient(
      90deg,
      rgba(10, 61, 120, 0.95) 0%,
      rgba(28, 95, 168, 0.95) 50%,
      rgba(10, 61, 120, 0.95) 100%
    ); /* Gradient using colors from your logo */
    padding: 28px 20px;
    text-align: center;
    border-top:2px solid #fff000;/* Optional: Adding rounded corners for a sleeker look */
}

.accessibility-assistance p {
    margin: 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.2px;
	font-family:"Playfair Display", serif;
	
}

.accessibility-assistance .phone-number {
    color: #ffd700; /* Gold color to highlight the phone number */
    text-decoration: none;
    font-weight: bold;
}

.accessibility-assistance .phone-number:hover {
    color: #ffffff; /* Change color on hover */
}

@media (max-width: 768px) {
    .accessibility-assistance p {
        font-size: 0.9rem;
    }
}