﻿@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Lato:wght@300;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Rubik:wght@400;500;700&display=swap');

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #222;
	background: linear-gradient(
    120deg,
    rgba(249,250,251,0.85),
    rgba(241,243,245,0.85)
  );
}
/* Headings */
h1, h2, h3, h4, h5, h6 {
   font-family: 'Cinzel', serif;
    font-weight: 700;
    /* Dark Brown */
	
}
/* SVG Header Shape */
.svg-header {
  position: relative;
  width: 100%;
  height: 200px; /* increased to accommodate top bar */
  overflow: hidden;
}

.svg-header .svg-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}

/* Header Content Positioned Above SVG */
.header-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 10px; /* reduced to lift content */
}

/* Layout Container */
.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  gap: 10px; /* slightly reduced for tighter alignment */
}

/* Logo */
.logo {
  margin-bottom: 0;
}
.logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Nav and Button in One Row */
.nav-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Navigation Menu */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 45px;
  padding: 0;
  margin: 0;
}

.nav-menu li a {
  color: #000;
  text-decoration: none;
  font-weight: 400;
  font-size: 19px;
  transition: color 0.3s ease;
}

.nav-menu li a.active,
.nav-menu li a:hover {
  color: #02347c;
}

/* Book Now Button */
.btn-book {
  background-color: #02347c;
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.btn-book:hover {
  background-color: #19b0d5;
}

/* ============================= */
/*        TOP BAR STYLING       */
/* ============================= */

.header-top-bar {
 

  padding: 5px 0;
  font-size: 14px;
  color: #333;
}

.header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Address left */
.header-top-content .top-left {
  font-weight: 500;
  font-size: 18px;
}

/* Social icons right */
.header-top-content .top-right a {
  color: #0f2d3f;
  text-decoration: none;
  margin-left: 15px;
  font-size: 18px;
  transition: color 0.3s ease;
}

.header-top-content .top-right a:hover {
  color: #1ec7ec;
}
/* 1. Ensure the top bar is actually on the very top layer */


/* 2. Prevent the header content from blocking clicks in the top area */
.header-content {
  position: relative;
  z-index: 2;
  height: auto;       /* Change from 100% to auto */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 10px;
  pointer-events: none; /* Allows clicks to pass through the container... */
}

/* 3. Re-enable clicks for the actual nav and logo inside the container */
.header-inner {
  pointer-events: auto; /* ...but restores them for the actual menu and buttons */
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  gap: 10px;
}

/* 4. Ensure the SVG doesn't capture clicks meant for the top bar */
.svg-bg {
  pointer-events: none;
}
/* ============================= */
/*     HEADER BORDER ANIMATION   */
/* ============================= */

.svg-border-animation {
  transform-origin: center top;
  transform: scale(1.5);
  opacity: 0;
  animation: stampOut 0.6s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes stampOut {
  0% {
    transform: scale(1.5);
    opacity: 0;
  }
  70% {
    transform: scale(0.95);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* ============================= */
/*       Logo Stamp Animation    */
/* ============================= */
.stamp-logo {
  transform: scale(1.5);
  opacity: 0;
  animation: logoStamp 0.6s ease-out forwards;
  animation-delay: 0.4s;
}

@keyframes logoStamp {
  0% {
    transform: scale(1.5);
    opacity: 0;
  }
  70% {
    transform: scale(0.95);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* ============================= */
/* MOBILE & TABLET ADJUSTMENTS */
/* ============================= */

@media (max-width: 768px) {
  .header-top-content .top-left {
    display:none;
  }

  .header-top-content .top-right a {
    display:none;
  }
}

@media (max-width: 480px) {
  /* For very small phones, hide the "NJ 07458" if it still overflows, 
     or just keep the font small */
  .header-top-content .top-left {
    font-size: 11px;
  }
}
/* ============================= */
/*     Fade-In for Nav & Button  */
/* ============================= */

.fade-in-menu,
.fade-in-btn {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in-menu {
  animation-delay: 1s;
}

.fade-in-btn {
  animation-delay: 1.2s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ============================= */
/*     MOBILE NAVIGATION         */
/* ============================= */
/* ============================= */
/*     MOBILE NAVIGATION         */
/* ============================= */
/* ============================= */
/*     MOBILE NAVIGATION         */
/* ============================= */
.mobile-nav {
  display: none;
}

@media (max-width: 1180px) {

  .mobile-nav {
    display: block;
    background: #ffffff;
    color: #2b2e34;
    width: 100%;
    z-index: 9999;
    position: relative;
    border-bottom: 1px solid #e5e7eb;
  }

  /* Top bar with hamburger */
  .mobile-nav-top {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 0;
    position: relative;
    z-index: 1001;
    background: #ffffff;
  }

  .mobile-menu-toggle {
    font-size: 28px;
    cursor: pointer;
    color: #2b2e34;
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .mobile-menu-toggle:hover {
    color: #c9a24d;
    transform: scale(1.1);
  }

  /* Slide-down menu */
  .mobile-nav-menu {
    max-height: 0;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f1f3f5 100%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transition: max-height 0.5s ease, opacity 0.3s ease;
    opacity: 0;
    text-align: center;
    position: relative;
    z-index: 1000;
  }

  .mobile-nav-menu.open {
    max-height: 600px;
    opacity: 1;
  }

  .mobile-nav-list {
    list-style: none;
    padding: 20px 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .mobile-nav-list li {
    width: 100%;
    border-top: 1px solid rgba(0,0,0,0.08);
  }

  .mobile-nav-list li:first-child {
    border-top: none;
  }

  .mobile-nav-list li a {
    display: inline-block;
    padding: 14px 0;
    color: #02347c;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
  }

  .mobile-nav-list li a:hover {
    color: #c9a24d;
  }

  /* Underline animation */
  .mobile-nav-list li a::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: #c9a24d;
    transition: transform 0.3s ease;
  }

  .mobile-nav-list li a:hover::after {
    transform: translateX(-50%) scaleX(1);
  }

  /* Book Now button */
  .mobile-nav-list .mobile-btn {
    display: inline-block;
    margin: 25px auto 10px;
    background: #0b3a6f;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .mobile-nav-list .mobile-btn:hover {
    background: #1f2328;
    transform: translateY(-2px);
  }

  /* Overlay behind nav */
  body.mobile-menu-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 998;
    pointer-events: none;
  }

  /* Hide desktop nav */
  .svg-header .nav-cta-row,
  .svg-header .main-nav,
  .svg-header .header-cta {
    display: none;
  }

  /* Address left */
  .header-top-content .top-left {
    font-size: 13px;
  }

  /* Social icons right */
  .header-top-content .top-right a {
    font-size: 13px;
  }
}
/* Sticky Header Base */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

/* Hidden state */
.sticky-header.hide {
  transform: translateY(-100%);
  opacity: 0;
}

/* Visible state */
.sticky-header.show {
  transform: translateY(0);
  opacity: 1;
}
@media (max-width: 1180px) {
  .sticky-header {
    position: relative !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .sticky-header.hide,
  .sticky-header.show {
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ================================================= */
/*                  HERO BASE                        */
/* ================================================= */

.hero-glass {
  position: relative;
  padding: 100px 20px;
  margin-top: 200px;
  background: linear-gradient(
    120deg,
    rgba(249,250,251,0.85),
    rgba(241,243,245,0.85)
  );
  color: #1f2937;
  overflow: hidden;
}

/* ================= BACKGROUND IMAGE SYNC ================= */

.hero-glass::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  filter: blur(14px) saturate(1.05);
  opacity: 0.35;
  transition: background-image 0.8s ease, opacity 0.6s ease;
  z-index: 0;
}

/* ================================================= */
/*                 HERO LAYOUT                       */
/* ================================================= */

.hero-container {
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

/* ================================================= */
/*                    LEFT SIDE                     */
/* ================================================= */

.hero-left {
  flex: 1;
  background: rgba(255, 255, 255, 0.90); /* Increased from 0.35 to 0.90 */
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Badge */
.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  background: #f4c430; /* Made solid and slightly darker */
  color: #082040;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700; /* Increased weight */
  margin-bottom: 20px;
}

/* Title */
.hero-title {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #082040;
}

.hero-title span {
  display: block;
  font-weight: 600;
  color: #0a3154; /* Darker blue for contrast against glass */
  margin-top: 5px;
}

/* Description */
.hero-description {
  font-size: 17px;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 25px;
  color: #111827; /* Near black for maximum readability */
}

/* Feature pills */
.hero-features {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  margin-bottom: 35px;
}

.hero-features span {
  background: #0b3a6f; /* Dark background */
  color: #ffffff;      /* White text */
  padding: 8px 14px;
  border-radius: 16px;
  font-weight: 600;
}

/* ================================================= */
/*                     CTA BUTTONS                   */
/* ================================================= */

.hero-buttons {
  display: flex;
  gap: 18px;
}

.btn-primary {
  background: #0b3a6f;
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  background: #082040;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(11,58,111,0.35);
}

.btn-secondary {
  border: 2px solid #0b3a6f;
  color: #082040;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
  background: #f4c430;
  color: #082040;
}

/* ================================================= */
/*                RIGHT SIDE (SLIDER)                */
/* ================================================= */

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.glass-slider {
  width: 680px;
  height: 580px;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.22);
}

.glass-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slide captions */
.slide-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px;
  background:linear-gradient(to top, rgb(0 0 0 / 85%), rgb(11 58 111));
  color: #ffffff;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

/* Slider logic */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* ================================================= */
/*                  RESPONSIVE                      */
/* ================================================= */

@media (max-width: 1180px) {
  .hero-glass {
    padding: 80px 20px;
    margin-top: 20px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-left {
    max-width: 90%;
    margin: 0 auto;
  }

  .hero-description {
    margin: 0 auto 25px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .glass-slider {
    width: 380px;
    height: 380px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-features {
    justify-content: center;
  }

  .glass-slider {
    width: 300px;
    height: 300px;
  }
}

.hero-divider svg {
  display: block;
  width: 100%;
  height: 100px;
}

.divider-fill {
  fill: #ffffff; /* change per section */
}
/* ===== RESERVATION BOX SECTION – FAIR MOTEL (BRAND MATCHED) ===== */
.below-section {
  position: relative;
  padding: 30px 0;
  text-align: center;
  z-index: 1;
}

/* ============================
   BACKGROUND BOOKING LABEL
============================ */


/* Reservation wrapper */
.reservation-box {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.reservation-container {
  display: flex;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #0b3a78, #062a55);
  box-shadow: 0 20px 40px rgba(6,42,85,.35);
  width: 100%;
  max-width: 1200px;
  height: 120px;
}

/* Flex layout */
.res-flex {
  display: flex;
  width: 100%;
  align-items: stretch;
}

/* Form items */
.res-item {
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.15);
  flex: 1;
}

.res-item.small {
  min-width: 120px;
  text-align: center;
}

/* Labels */
.res-item label {
  font-size: 12px;
  color: #f4c430;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

/* Inputs */
.res-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.res-content.center {
  justify-content: center;
}

.res-input,
.res-select {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  outline: none;
  cursor: pointer;
}

.res-select option {
  color: #062a55;
}

/* Icons */
.res-content i {
  font-size: 20px;
  color: #f4c430;
  margin-left: 12px;
}

/* Button */
.res-button {
  background: linear-gradient(135deg, #f4c430, #e6b61f);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  transition: all .3s ease;
}

.res-button button {
  background: none;
  border: none;
  color: #062a55;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 36px;
  font-size: 15px;
  height: 100%;
  cursor: pointer;
}

.res-button:hover {
  background: #ffffff;
}

/* ======================
   Responsive
====================== */
@media (max-width: 992px) {
	.below-section::before {
  content: "BOOKING";
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -55%);
  
  font-family: 'Playfair Display', serif; /* matches your brand */
  font-size: clamp(40px, 18vw, 240px);
  
}
  
  /* 1. Turn the Container into a Compact Card */
  .reservation-container {
    height: auto;
    width: 90%; /* Some breathing room on sides */
    margin: 0 auto;
    background: #062a55; /* Solid dark navy */
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.1);
  }

  /* 2. Grid Layout Configuration */
  .res-flex {
    display: grid;
    /* Define a 2-column grid */
    grid-template-columns: 1fr 1fr; 
    /* Define areas for layout control */
    grid-template-areas: 
      "in out"
      "adult kid"
      "btn btn";
    gap: 1px; /* Creates the border effect between cells */
    background: rgba(255,255,255,0.1); /* Color of the grid lines */
    border: none;
  }

  /* 3. Assign Areas */
  #checkin-box { grid-area: in; }
  #checkout-box { grid-area: out; }
  #adults-box { grid-area: adult; }
  #kids-box { grid-area: kid; }
  #btn-box { grid-area: btn; }

  /* 4. Item Styling Reset */
  .res-item {
    background: #0b3a78; /* Match brand gradient start */
    border: none !important; /* Remove old borders */
    padding: 20px 20px;
    align-items: flex-start; /* Left align text for cleanliness */
    position: relative;
  }

  /* 5. Add visual separation for active fields */
  .res-item:active, 
  .res-item:focus-within {
    background: #0d468f; /* Slightly lighter on touch */
  }

  /* 6. Specific styling for inputs on mobile */
  .res-item label {
    font-size: 11px;
    opacity: 0.8;
    margin-bottom: 4px;
  }

  .res-input, .res-select {
    font-size: 16px; /* Prevent zoom on iPhone */
    width: 100%;
    text-align: left;
  }

  .res-content.center {
    justify-content: flex-start; /* Align selects to left */
    width: 100%;
  }
  
  /* Select arrows positioning */
  .res-content i {
    position: absolute;
    right: 15px;
    font-size: 14px;
    pointer-events: none;
  }

  /* 7. Button - The "Call to Action" */
  .res-button {
    width: 100%;
    min-height: 65px;
    background: #f4c430; /* Gold */
  }
  
  .res-button button {
    width: 100%;
    color: #062a55;
    font-size: 16px;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

 
}


/* =========================================
   EXTRA TWEAK FOR VERY SMALL PHONES
========================================= */
@media (max-width: 400px) {
	
  .res-item {
    padding: 30px 15px;
  }
  .res-input {
    font-size: 12px;
  }
}
/* Datepicker theming */
.ui-datepicker {
  background: rgba(42, 42, 42, 0.98);
  border: 1px solid #f8b400;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  z-index: 9999 !important;
}

.ui-datepicker-header {
  background: #c40000; /* red header */
  color: #fff;
  border-radius: 6px 6px 0 0;
  padding: 5px 0;
  font-weight: 600;
}

.ui-datepicker-calendar th {
  color: #f8b400;
  font-weight: 500;
}

.ui-state-default {
  background: transparent;
  color: #fff;
  border-radius: 4px;
  transition: 0.2s ease;
}

.ui-state-hover {
  background: #f8b400;
  color: #2a2a2a;
}

.ui-state-active {
  background: #c40000;
  color: #fff;
}

.accessibility-info {
  background-color: #f5f7fa;              /* soft neutral, blends with hero */
  border-top: 1px solid #0b3a6f;           /* Fair Motel blue */
  border-bottom: 1px solid #0b3a6f;
  color: #082040;                          /* deep navy for readability */
  text-align: center;
  font-weight: 500;
  padding: 12px 16px;
  font-size: 16px;
}

.accessibility-info a {
  color: #0b3a6f;                          /* brand blue */
  text-decoration: none;
  font-weight: 700;
}

.accessibility-info a:hover {
  text-decoration: underline;
  color: #082040;                          /* slightly darker on hover */
}
/* ================= WELCOME SECTION ================= */

.welcome-section {
  padding: 40px 20px;
  background: linear-gradient(
    120deg,
    rgba(249,250,251,0.85),
    rgba(241,243,245,0.85)
  );
}

.welcome-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

/* ================= LEFT IMAGES ================= */

.welcome-images {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.img-small {
  width: 260px;
  border-radius: 16px;
  box-shadow: 0 22px 45px rgba(0,0,0,0.18);
  margin-top: 80px;
}

.img-large-wrap {
  position: relative;
}

.img-large {
  width: 400px;
  border-radius: 22px;
  box-shadow: 0 35px 70px rgba(0,0,0,0.28);
}

/* ================= RIGHT CONTENT ================= */

.welcome-content {
  max-width: 560px;
}


.welcomesubheading {
	font-size: 26px;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: -30px;
  letter-spacing: 0.5px;
  font-family: 'Cinzel', serif;
}

.welcome-content h1 a{
  font-size: 64px;              /* BIG title */
  font-weight: 800;
  color: #0b3a6f;
  
  line-height: 1.1;
  text-decoration:none;
}

.welcome-content1 {
 text-decoration:none;
  color: #0b3a6f;
  font-weight: 500;
}

.welcome-content p {
  font-size: 19px;              /* Bigger content */
  line-height: 1.9;
  color: #374151;
  margin-top: 0px;
}

/* CTA */
.welcome-btn {
  display: inline-block;
  background: linear-gradient(135deg, #0b3a6f, #082040);
  color: #ffffff;
  padding: 16px 44px;
  border-radius: 34px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
}

.welcome-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(11,58,111,0.35);
}

/* ================= RESPONSIVE STYLES ================= */

/* TABLET & SMALL LAPTOPS (Max-Width 992px) */
@media (max-width: 992px) {
  /* Prevent horizontal scroll from animations/images */
  .welcome-section {
    overflow-x: hidden; 
  }

  .welcome-container {
    grid-template-columns: 1fr; /* Stack vertically */
    gap: 60px;
    text-align: center;
  }

  /* Center the content */
  .welcome-content {
    margin: 0 auto; 
    max-width: 100%;
    padding: 0 20px;
  }

  /* Image Container */
  .welcome-images {
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 40px;
    /* Create a stable box so images don't fly off screen */
    width: 100%;
    max-width: 500px; 
    margin-left: auto;
    margin-right: auto;
  }

  /* Small Image: Float it top-left relative to the group, not the screen */
  .img-small {
    display: block;
    width: 220px;
    margin: 0;
    position: absolute;
    /* Position relative to .welcome-images container */
    left: -20px; 
    top: -50px;
    transform: none; /* Remove the complex translate */
    z-index: 2;
  }

  /* Large Image */
  .img-large {
    width: 100%; /* Fluid width */
    max-width: 400px;
  }

  .img-large-wrap {
    padding-top: 0;
  }

  /* Typography Adjustments */
  .welcome-content h1 {
    font-size: 48px;
  }

  .welcome-content p {
    font-size: 18px;
  }
}

/* MOBILE DEVICES (Max-Width 600px) */
@media (max-width: 600px) {
  
  .welcome-section {
    padding: 50px 15px;
  }

  /* Stack images naturally for mobile */
  .welcome-images {
    flex-direction: column;
    max-width: 100%;
    margin-top: 0;
  }

  /* Reset positioning for mobile - No crazy negatives */
  .img-small {
    position: relative;
    top: auto;
    left: auto;
    width: 160px; /* Smaller size */
    margin: 0 auto -40px auto; /* Center and negative bottom margin to overlap */
    transform: translateX(-60px); /* Slight offset to the left for style */
    z-index: 2;
  }

  .img-large {
    width: 100%;
    max-width: 320px; /* Fits standard phones */
    margin: 0 auto;
  }

  /* Text Sizing */
  .welcome-content h2 {
    font-size: 18px;
    margin-bottom: -15px;
  }

  .welcome-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .welcome-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .welcome-btn {
    width: 40%; /* Full width button is easier to tap */
    text-align: center;
  }

  /* Disable complex horizontal animations on mobile */
  .anim-from-right {
    transform: translateY(20px); /* Convert horizontal animation to vertical */
  }
}
/* Tab Navigation */
.welcome-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.tab-btn {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  font-size: 16px;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  padding: 5px 0;
  transition: all 0.3s ease;
}

.tab-btn.active {
  color: #0b3a6f;
  border-bottom: 2px solid #fdb721;
}

/* Tab Content Visibility */
.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

/* Scroll Box to prevent layout breaking */
.scroll-box {
  max-height: 250px; /* Fixed height so design stays stable */
  overflow-y: auto;
  padding-right: 15px;
  margin-bottom: 30px;
}

/* Custom Scrollbar for a pro look */
.scroll-box::-webkit-scrollbar {
  width: 5px;
}
.scroll-box::-webkit-scrollbar-thumb {
  background: #0b3a6f;
  border-radius: 10px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
/* ================= SCROLL ANIMATION SYSTEM ================= */

.anim-from-top,
.anim-from-bottom,
.anim-from-right {
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: transform, opacity;
}

/* Directions */
.anim-from-top {
  transform: translateY(-60px);
}

.anim-from-bottom {
  transform: translateY(60px);
}

.anim-from-right {
  transform: translateX(60px);
}

/* Activated state */
.animate-parent.in-view .anim-from-top,
.animate-parent.in-view .anim-from-bottom,
.animate-parent.in-view .anim-from-right {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger timing (luxury pacing) */
.animate-parent.in-view .img-small {
  transition-delay: 0.1s;
}

.animate-parent.in-view .img-large {
  transition-delay: 0.25s;
}

.animate-parent.in-view h2 {
  transition-delay: 0.35s;
}

.animate-parent.in-view h1 {
  transition-delay: 0.45s;
}

.animate-parent.in-view p {
  transition-delay: 0.6s;
}

.animate-parent.in-view .welcome-btn {
  transition-delay: 0.8s;
}


/* WRAPPER */
.featured-specials {
  position: relative;
}

/* DARK PATCH */
.specials-dark {
  background: linear-gradient(180deg, #0b3a6f, #082040);
  padding: 80px 20px 260px;
  text-align: center;
}

/* HEADER */
.specials-tag {
  color: #f4c430; /* Fair Motel yellow */
  font-size: 14px;
  font-family: 'Playfair Display', serif;
}

.specials-tag strong {
  background: #f4c430;
  color: #082040;
  padding: 2px 8px;
  margin-left: 6px;
  border-radius: 2px;
}

.specials-dark h2 {
  font-size: 56px;
  color: #ffffff;
  margin-top: -5px;
  font-family: 'Playfair Display', serif;
}

/* CARDS CONTAINER */
.specials-cards {
  max-width: 1300px;
  margin: -180px auto 0;
  display: flex;
  justify-content: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

/* CARD BASE */
.special-card {
  width: 320px;
  position: relative;
  overflow: hidden;
}

/* HEIGHTS */
.special-card.left,
.special-card.right {
  height: 450px;
  margin-top: -120px;
}

.special-card.center {
  height: 450px;
  transform: translateY(40px);
  margin-top: -120px;
}

/* IMAGE */
.special-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.special-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 32, 64, 0.30),
    rgba(11, 58, 111, 0.35)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  text-align: center;
}

.special-overlay span {
  color: #ffd600;
  font-size: 14px;
  margin-bottom: -10px;
  font-weight: 600;
}

.special-overlay1 {
  color: #ffffff;
  font-size: 24px;
  line-height: 1.3;
   font-family: 'Cinzel', serif;
   margin-top:15px;
}

/* WHITE PATCH */
.specials-light {
  background: #ffffff;
  height: 220px;
}

/* ROOM BUTTON */
.room-card-btn {
  margin-top: 16px;
  display: inline-block;
  background: #f4c430;
  color: #082040;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.room-card-btn:hover {
  background: #ffffff;
  color: #082040;
  transform: translateY(-2px);
}
/* =========================================
   RESPONSIVE STYLES (Tablet & Mobile)
   ========================================= */

/* Tablet (Portrait) and Small Laptops */
@media screen and (max-width: 1024px) {
  .specials-cards {
    gap: 20px; /* Reduce gap between cards */
    max-width: 95%; /* Prevent overflow */
  }

  .special-card {
    width: 30%; /* Make cards fluid width instead of fixed 320px */
    height: 400px; /* Slightly shorter */
  }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
  
  /* Adjust the Dark Background Area */
  .specials-dark {
    padding: 60px 20px 150px; /* Reduce bottom padding */
  }

  .specials-dark h2 {
    font-size: 36px; /* Smaller heading for mobile */
  }

  /* Stack the cards vertically */
  .specials-cards {
    flex-direction: column; /* Stack top to bottom */
    align-items: center;    /* Center align cards */
    margin-top: -100px;     /* Reduce the negative overlap */
    gap: 30px;
  }

  /* Reset Card Styles for Mobile */
  /* We use !important or specific chaining to override the desktop specific classes */
  .special-card, 
  .special-card.left, 
  .special-card.right, 
  .special-card.center {
    width: 100%;
    max-width: 340px; /* readable width */
    height: 400px;
    margin-top: 0;   /* Remove the staggered look */
    transform: none; /* Remove the center card pop-up effect */
  }

  /* Fix the White Patch container */
  /* The fixed height of 220px won't fit stacked cards, so we set it to auto */
  .specials-light {
    height: auto; 
    padding-bottom: 60px; /* Add spacing at the bottom */
  }
}
/* ================= ROOMS ANIMATION SYSTEM ================= */

.room-anim-left,
.room-anim-right,
.room-anim-bottom,
.room-anim-scale {
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: transform, opacity;
}

/* Directions */
.room-anim-left {
  transform: translateX(-80px);
}

.room-anim-right {
  transform: translateX(80px);
}

.room-anim-bottom {
  transform: translateY(60px);
}

.room-anim-scale {
  transform: scale(0.92);
}

/* Activated state */
.rooms-animate.rooms-in-view .room-anim-left,
.rooms-animate.rooms-in-view .room-anim-right,
.rooms-animate.rooms-in-view .room-anim-bottom,
.rooms-animate.rooms-in-view .room-anim-scale {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Stagger timing */
.rooms-animate.rooms-in-view .specials-dark {
  transition-delay: 0.1s;
}

.rooms-animate.rooms-in-view .special-card.left {
  transition-delay: 0.3s;
}

.rooms-animate.rooms-in-view .special-card.center {
  transition-delay: 0.45s;
}

.rooms-animate.rooms-in-view .special-card.right {
  transition-delay: 0.6s;
}

/* Mobile safety */
@media (max-width: 992px) {
  .room-anim-left,
  .room-anim-right {
    transform: translateX(0);
  }
}

/* ================= AMENITIES SECTION ================= */

.amenities-section {
  background: linear-gradient(
    120deg,
    rgba(249, 250, 251, 0.95),
    rgba(241, 243, 245, 0.95)
  );
  color: #082040;
  padding: 80px 20px;
  margin-top:100px;
}

/* CONTAINER */
.amenities-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

/* LEFT CONTENT */
.amenities-label {
  color: #0b3a6f;
  font-size: 14px;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-transform: uppercase;
}

.amenities-intro h2 {
  font-size: 48px;
  margin: 18px 0;
  line-height: 1.15;
  color: #082040;
  font-family: 'Playfair Display', serif;
}

.amenities-phone {
  margin-top: 30px;
  font-size: 18px;
  color: #374151;
}

/* ================= ICON GRID ================= */

.amenities-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  
}

/* ICON CARD – UNIQUE STYLE */
.amenity-box {
  position: relative;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  padding: 34px 28px 30px;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(8, 32, 64, 0.10);
  transition: all 0.35s ease;
  overflow: hidden;
  
}

/* Accent strip */
.amenity-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #0b3a6f, #f4c430);
}

.amenity-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(8, 32, 64, 0.18);
}

/* Icon badge */
.amenity-icon {
  width: 48px;
  height: 48px;
  background: rgba(11, 58, 111, 0.08);
  color: #0b3a6f;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.amenity-box1 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #082040;
   font-family: 'Cinzel', serif;
   font-weight:800;
}

.amenity-box p {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
}

/* ================= IMAGE AMENITY CARDS ================= */

.amenities-cards {
  max-width: 1300px;
  margin: 90px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}

/* IMAGE CARD */
.amenity-card {
  background: transparent;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(8, 32, 64, 0.18);
  transition: all 0.4s ease;
}

.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 70px rgba(8, 32, 64, 0.25);
}

/* Image */
.amenity-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

/* Content */
.amenity-card-content {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.96),
    rgba(245,247,250,0.96)
  );
  padding: 28px 26px 30px;
}

.amenity-card-content .tag {
  font-size: 12px;
  color: #0b3a6f;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.amenity-card-content1 {
  font-size: 24px;
  margin: 10px 0 12px;
  color: #082040;
  font-family: 'Cinzel', serif;
  font-weight:800;
}

.amenity-card-content ul {
  padding-left: 18px;
  margin: 0;
  color: #4b5563;
  line-height: 1.7;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
	.amenities-section {
 
  padding: 30px 20px;
  margin-top:0px;
}
  .amenities-container {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 60px;
  }

  .amenities-icons {
	  
    grid-template-columns: 1fr;
  }

  .amenities-cards {
    grid-template-columns: 1fr;
  }

  .amenities-intro h2 {
    font-size: 36px;
  }
}
/* ================= AMENITIES ANIMATION SYSTEM ================= */

.amen-from-left,
.amen-from-right,
.amen-from-bottom,
.amen-from-up {
  opacity: 0;
  transform: translate3d(0,0,0);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

/* Directions */
.amen-from-left   { transform: translateX(-60px); }
.amen-from-right  { transform: translateX(60px); }
.amen-from-bottom { transform: translateY(50px); }
.amen-from-up     { transform: translateY(-50px); }

/* Activated */
.amen-animate.amen-in-view .amen-from-left,
.amen-animate.amen-in-view .amen-from-right,
.amen-animate.amen-in-view .amen-from-bottom,
.amen-animate.amen-in-view .amen-from-up {
  opacity: 1;
  transform: translate(0,0);
}

/* STAGGER */
.amen-animate.amen-in-view .amenities-intro { transition-delay: 0.15s; }

.amen-animate.amen-in-view .amenity-box:nth-child(1) { transition-delay: 0.3s; }
.amen-animate.amen-in-view .amenity-box:nth-child(2) { transition-delay: 0.45s; }
.amen-animate.amen-in-view .amenity-box:nth-child(3) { transition-delay: 0.6s; }
.amen-animate.amen-in-view .amenity-box:nth-child(4) { transition-delay: 0.75s; }

.amen-animate.amen-in-view .amenity-card:nth-child(1) { transition-delay: 0.4s; }
.amen-animate.amen-in-view .amenity-card:nth-child(2) { transition-delay: 0.55s; }
.amen-animate.amen-in-view .amenity-card:nth-child(3) { transition-delay: 0.7s; }

/* ================= MOBILE / TABLET SAFETY ================= */
@media (max-width: 992px) {
  .amen-from-left,
  .amen-from-right,
  .amen-from-bottom,
  .amen-from-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
/* ===============================
   ATTRACTIONS SECTION – CLEAN
================================ */

.attractions-split {
  padding: 120px 20px;
  color: #ffffff;
  background: linear-gradient(180deg, #0b3a6f, #082040);
}

/* ===============================
   HEADER
================================ */

.attractions-header {
  text-align: center;
  margin-bottom: 80px;
}

.attractions-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  color:#f4c430;
}

.attractions-header h2 {
  font-size: 46px;
  margin: 14px 0;
}

.attractions-header p {
  color: #cbd5e1;
  max-width: 620px;
  margin: auto;
}

/* ===============================
   LAYOUT
================================ */

.attractions-split-layout {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  gap: 50px;
  align-items: center;
}

/* ===============================
   SIDE LIST
================================ */

.attractions-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* ===============================
   ATTRACTION CARD
================================ */

.attraction-item {
  position: relative;
  padding: 18px 18px 18px 56px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  cursor: pointer;
  transition: all 0.3s ease;
}

.attraction-item::before {
  content: attr(data-index);
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(214,180,106,0.25);
  color: #f3d99b;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.attraction-item1 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
   font-family: 'Cinzel', serif;
}

.attraction-item p {
  font-size: 16px;
  color: #cbd5e1;
  margin-bottom: 6px;
}

.attraction-item span {
  font-size: 15px;
  color: #f4c430;
}

/* Hover */
.attraction-item:hover {
  background: rgba(255,255,255,0.12);
  transform: translateX(6px);
}

/* Active */
.attraction-item.active {
  background: linear-gradient(
    135deg,
    rgba(214,180,106,0.25),
    rgba(255,255,255,0.12)
  );
  border-color: rgba(214,180,106,0.55);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.attraction-item.active h4 {
  color: #f3d99b;
}

/* ===============================
   CENTER IMAGE
================================ */

.attraction-visual {
  text-align: center;
}

.attraction-image-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}

/* Add this to ensure the visual container has a base height and visibility */
.attraction-visual {
  text-align: center;
  min-height: 500px; /* Ensures the space is reserved */
  display: block;    /* Ensures it's not accidentally set to none */
  position: relative;
  z-index: 5;        /* Brings it above the background gradient */
}

.attraction-visual img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 28px;
  display: block;     /* Fixes potential inline-block spacing issues */
  opacity: 1 !important; /* Forces visibility for testing */
  box-shadow: 0 40px 90px rgba(0,0,0,0.45);
}
/* ===============================
   IMAGE TITLE
================================ */

.attraction-title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(
    to top,
    rgba(8,32,64,0.95),
    rgba(8,32,64,0.2),
    transparent
  );
}
/* Add this to your CSS if you haven't already */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.attraction-title-overlay1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 600;
  color: #f5e6c8;
  letter-spacing: 0.5px;
}

/* ===============================
   DIRECTIONS BUTTON
================================ */

.directions-btn {
  margin-top: 28px;
  display: inline-block;
  padding: 14px 40px;
  background: #d6b46a;
  color: #081f3a;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
}

.directions-btn:hover {
  background: #f1cf85;
  transform: translateY(-2px);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
  .attractions-split-layout {
    grid-template-columns: 1fr;
  }

  .attraction-visual img {
    height: 320px;
  }

  .attraction-title-overlay h3 {
    font-size: 36px;
  }
}
/* ===============================
   ATTRACTIONS – UNIQUE ANIMATIONS
   (Safe & isolated)
================================ */

/* Fade + slide on load */
.atx-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.atx-fade-up.atx-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay helpers */
.atx-delay-1 { transition-delay: 0.1s; }
.atx-delay-2 { transition-delay: 0.2s; }
.atx-delay-3 { transition-delay: 0.3s; }
.atx-delay-4 { transition-delay: 0.4s; }

/* Center image soft zoom */
.atx-image-animate {
  transform: scale(0.96);
  transition: transform 0.8s ease, opacity 0.4s ease;
}

.atx-image-animate.atx-visible {
  transform: scale(1);
}

/* Active card pulse (very subtle) */
.attraction-item.active {
  animation: atxPulse 1.8s ease-in-out infinite alternate;
}

@keyframes atxPulse {
  from { box-shadow: 0 18px 35px rgba(0,0,0,0.35); }
  to   { box-shadow: 0 26px 55px rgba(0,0,0,0.45); }
}

/* ===============================
   PHOTO GALLERY SECTION (DESKTOP)
================================ */

.pg-section {
  padding: 50px 20px;
  background: #fbf8ef;
  overflow: hidden;
}

/* ===== HEADER ===== */

.pg-header {
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
}

.pg-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  color: #01337b;
  font-weight: 700;
}

.pg-header h2 {
  font-size: 52px;
  margin: 16px 0;
  color: #0f1f2e;
}

.pg-header p {
  font-size: 18px;
  color: #5b6773;
}

.pg-link {
  display: inline-block;
  margin-top: 26px;
  font-weight: 600;
  color: #0f1f2e;
  text-decoration: none;
}

/* ===== DESKTOP GALLERY ===== */

.pg-gallery {
  max-width: 1300px;
  margin: auto;
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: flex-end;
  perspective: 1200px;
}

/* ===== CARD BASE (GATHERED STATE) ===== */

.pg-card {
  width: 240px;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  transform-origin: bottom center;

  opacity: 0;
  transform: translateY(80px) scale(0.9) rotate(var(--r));

  transition:
    transform 0.9s cubic-bezier(.22,.61,.36,1),
    opacity 0.9s ease;
}

.pg-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.pg-card h3 {
  padding: 18px;
  font-size: 18px;
  color: #0f1f2e;
}

/* ===== ROTATION VARIANTS ===== */

.pg-card-1 { --r: -8deg; }
.pg-card-2 { --r: -4deg; }
.pg-card-3 { --r: 0deg; }
.pg-card-4 { --r: 4deg; }
.pg-card-5 { --r: 8deg; }

/* ===== ACTIVE (ON SCROLL – DESKTOP ONLY) ===== */

.pg-section.pg-visible .pg-card {
  opacity: 1;
  transform: translateY(0) scale(1) rotate(0deg);
}

/* ===== STAGGER ===== */

.pg-section.pg-visible .pg-card-1 { transition-delay: 0.05s; }
.pg-section.pg-visible .pg-card-2 { transition-delay: 0.15s; }
.pg-section.pg-visible .pg-card-3 { transition-delay: 0.25s; }
.pg-section.pg-visible .pg-card-4 { transition-delay: 0.35s; }
.pg-section.pg-visible .pg-card-5 { transition-delay: 0.45s; }

/* ===============================
   GALLERY BACKGROUND TYPOGRAPHY
================================ */

.pg-section {
  position: relative;
  overflow: hidden;
}

/* Big faded text */
.pg-bg-text {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);

  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(90px, 18vw, 300px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: rgba(15, 31, 46, 0.08); /* ultra-light */
  white-space: nowrap;

  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Keep real content above background text */
.pg-header,
.pg-gallery {
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .pg-bg-text {
    Display:none;
  }
}
@media (max-width: 1024px) {

  /* Section */
  .pg-section {
    padding: 90px 0;
    overflow: visible; /* ✅ allow horizontal scroll */
  }

  /* Header spacing */
  .pg-header {
    padding: 0 16px;
  }

  .pg-header h2 {
    font-size: 36px;
  }

  .pg-header p {
    font-size: 16px;
  }

  /* Gallery */
  .pg-gallery {
    display: flex;
    gap: 18px;

    overflow-x: auto;
    overflow-y: hidden;

    padding: 0 16px 14px; /* ✅ FIXES hidden first cards */

    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;

    justify-content: flex-start; /* ✅ CRITICAL FIX */
  }

  /* Hide scrollbar */
  .pg-gallery::-webkit-scrollbar {
    display: none;
  }

  /* Cards */
  .pg-card {
    flex: 0 0 80%;
    max-width: 80%;

    scroll-snap-align: start;

    opacity: 1;
    transform: none;

    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);

    transition: transform 0.25s ease;
  }

  .pg-card img {
    height: 240px;
  }

  .pg-card h3 {
    font-size: 20px;
    padding: 16px 18px;
  }

  /* Tap feedback */
  .pg-card:active {
    transform: scale(0.97);
  }
}

/* ===============================
   FOOTER – PREMIUM COLOR SYSTEM
================================ */

.site-footer {
  background: #f9f7f3; /* warm ivory */
  padding-top: 50px;
 
  border-top: 1px solid #e6e1d8;
}

/* TOP GRID */
.footer-top {
  max-width: 1300px;
  margin: auto;
  padding: 0 24px 70px;
  display: grid;
  grid-template-columns: 0.5fr 1.2fr 1.2fr 1.2fr;
  gap: 60px;
}

/* LOGO */
.footer-logo {
  max-width: 140px;
  margin-top: 30px;
}

/* HEADINGS */
.site-footer h4 {
  font-size: 25px;
  margin-bottom: 22px;
  color: #02347d; /* deep navy */
  letter-spacing: 0.4px;
  text-decoration:none;
}


/* ===============================
   PAGES – 2 COLUMN LINKS
================================ */

.footer-col .footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  column-gap: 40px;
  
}

.footer-col .footer-links li {
  margin-bottom: 14px;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  
}

.footer-links li {
  position: relative;
  padding-left: 22px;
}

.footer-links li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 17px;
  color: #c2a66d; /* champagne gold */
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-links a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-links li:hover::before {
  transform: translateX(4px);
  color: #0f1f2e;
}

.footer-links li:hover a {
  transform: translateX(4px);
  color: #0f1f2e;
}

/* TEXT */
.footer-text {
  font-size: 18px;
  color: #000;
  line-height: 1.7;
}

/* SOCIALS */
.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  border: 1px solid #02347d;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #02347d;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration:none;
}

.footer-socials a:hover {
  background: #02347d;
  color: #ffffff;
}

/* CONTACT */
.footer-contact {
  list-style: none;
  padding: 0;
  margin-top: 18px;
}

.footer-contact li {
  font-size: 18px;
  color: #000;
  margin-bottom: 12px;
  
}
.cgs2{
	text-decoration:none;
	color:#02347d;
}

.cgs1 a{
	text-decoration:none;	
}
/* Phone link */
.footer-phone {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-phone:hover {
  color: #b89b5e;
  text-decoration: underline;
}

/* ===============================
   FOOTER BOTTOM – ELEGANT BAR
================================ */

.footer-bottom {
  background: #1e2a32; /* deep slate */
  padding: 22px 24px;
}

.footer-bottom-inner {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* LEGAL */
.footer-legal {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

.footer-legal a {
  color: #fff;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #e1c98b;
}

.footer-legal span {
  margin: 0 8px;
  opacity: 1;
  font-size:18px;
}

/* OWNERSHIP */
.footer-ownership {
  font-size: 13px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}

.footer-ownership strong {
  font-weight: 600;
  color: #ffffff;
}

/* CREDIT */
.footer-credit {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  text-align: right;
}

.footer-credit a {
  color: #e1c98b;
  font-weight: 600;
  text-decoration: none;
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-credit {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}

/* ===============================
   FOOTER BACKGROUND – SUN ELEMENT
================================ */

.site-footer {
  position: relative;
  overflow: hidden;
}

/* SUN CIRCLE */
.footer-bg-sun {
  position: absolute;
  top: -140px;
  right: -120px;

  width: 420px;
  height: 420px;
  border-radius: 50%;

  background: radial-gradient(
    circle at center,
    rgba(232, 198, 120, 0.35) 0%,
    rgba(232, 198, 120, 0.18) 35%,
    rgba(232, 198, 120, 0.08) 55%,
    rgba(232, 198, 120, 0.02) 70%,
    transparent 75%
  );

  filter: blur(6px);
  pointer-events: none;
  z-index: 0;
}

/* OPTIONAL SOFT RAYS */
.footer-bg-sun::after {
  content: "";
  position: absolute;
  inset: -90px;
  border-radius: 50%;

  background: repeating-conic-gradient(
    from 0deg,
    rgba(232, 198, 120, 0.09) 0deg,
    rgba(232, 198, 120, 0.09) 6deg,
    transparent 6deg,
    transparent 14deg
  );

  opacity: 0.25;
}

/* PROPERTY NAME BACKGROUND */
.footer-bg-title {
  position: absolute;
  bottom: 150px;
  left: 50%;
  transform: translateX(-50%);

  font-size: clamp(120px, 19vw, 180px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: #0f1f2e;
  opacity: 0.085;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

/* Keep footer content above background */
.footer-top,
.footer-bottom {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px),(max-width: 1080px) {
  .footer-bg-sun {
    display:none;
  }

  .footer-bg-title {
    display:none;
  }
}

/* ===============================
   BACK TO TOP – SIGNATURE BUTTON
================================ */

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  border-radius: 50%;

  background: linear-gradient(145deg, #e1c98b, #b89b5e);
  border: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 12px 30px rgba(184, 155, 94, 0.35),
    inset 0 0 0 1px rgba(255,255,255,0.4);

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.4s ease;

  z-index: 999;
}

/* Visible state */
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Arrow */
.back-to-top .arrow {
  font-size: 20px;
  font-weight: 600;
  color: #1e2a32;
  z-index: 2;
  transition: transform 0.3s ease;
}

/* Rotating ring (dynamic feel) */
.back-to-top .ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.45);
  animation: spin 10s linear infinite;
}

/* Hover interaction */
.back-to-top:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 18px 40px rgba(184, 155, 94, 0.45);
}

.back-to-top:hover .arrow {
  transform: translateY(-2px);
}

/* Spin animation */
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Mobile refinement */
@media (max-width: 640px) {
  .back-to-top {
    width: 48px;
    height: 48px;
    bottom: 22px;
    right: 22px;
  }
}
.expert-hero {
  position: relative;
  height: 80vh; /* Dynamic height based on screen size */
  min-height: 600px;
  overflow: hidden;
  background: #02347c; /* Brand Navy fallback */
  margin-top: 120px;
  display: flex;
  align-items: center;
}

/* 1. The Background with Parallax */
.hero-bg-media {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.6); /* Darkens the image slightly */
  z-index: 1;
}

/* 2. The Glassmorphism Overlay */
.hero-glass-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(2, 52, 124, 0.8) 0%, rgba(2, 52, 124, 0.2) 100%);
  display: flex;
  align-items: center;
}

.expert-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr; /* Asymmetric grid */
  align-items: center;
  gap: 40px;
}

/* 3. Typography Styling */
.hero-breadcrumb {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fdb721; /* Gold accent */
  margin-bottom: 20px;
}

.hero-main-title {
  font-size: clamp(40px, 6vw, 75px); /* Responsive font size */
  line-height: 0.9;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.accent-text {
  font-family: 'Playfair Display', serif; /* Use a serif font here for a luxury look */
  font-style: italic;
  font-weight: 400;
  color: #fdb721;
}

.title-divider {
  width: 80px;
  height: 4px;
  background: #fdb721;
  margin-bottom: 30px;
}

.hero-sub-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
  line-height: 1.7;
}

/* 4. Floating Frame Image Effect */
.hero-image-frame {
  position: relative;
  padding: 20px;
}

.floating-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  position: relative;
  z-index: 2;
  box-shadow: 20px 20px 60px rgba(0,0,0,0.5);
  transition: transform 0.5s ease;
}

.frame-border {
  position: absolute;
  top: 0; right: 0;
  width: 80%; height: 80%;
  border: 10px solid #fdb721; /* Gold frame offset */
  z-index: 1;
  transform: translate(20px, -20px);
}

.hero-image-frame:hover .floating-img {
  transform: scale(1.03) translateY(-10px);
}

/* 5. Mobile Expert View */
@media (max-width: 992px) {
	.expert-hero {
 
  margin-top: 10px;
  
}
  .expert-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px 20px;
  }
  
  .hero-main-title { font-size: 50px; }
  .title-divider { margin: 20px auto; }
  .hero-sub-text { margin: 0 auto 40px; }
  
  .hero-image-frame {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .frame-border { display: none; } /* Hide border on mobile for cleaner look */
}

/* === Logo-Matched Amenities Section === */
.amenities-inner-section {
  padding: 30px 20px;
  
  position: relative;
  overflow: hidden;
  text-align: center;
}

.amenities-inner-wrapper {
  max-width: 1250px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.amenities-inner-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #02347c; /* Navy Blue from your logo */
  letter-spacing: 0.5px;
  position: relative;
  text-decoration:none;
}

.amenities-inner-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background-color: #fdb721; /* Golden Yellow from your logo */
  margin: 18px auto 40px;
  border-radius: 2px;
}

.amenities-inner-description {
  font-size: 18px;
  color: #4b5563;
  margin-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.amenities-inner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.amenities-inner-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 45px 30px;
  border: 1px solid #e5e7eb;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.amenities-inner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(2, 52, 124, 0.1);
  border-color: #02347c;
}

.amenities-inner-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 25px;
  background: #fdf9ec; /* Very light yellow tint */
  border: 2px solid #fdb721; /* Gold border */
  transition: all 0.3s ease;
}

.amenities-inner-card:hover .amenities-inner-icon-wrap {
  background: #02347c; /* Swaps to Navy on hover */
  border-color: #02347c;
  transform: scale(1.1);
}

.amenities-inner-icon-wrap i {
  font-size: 40px;
  color: #02347c; /* Navy icons */
  transition: all 0.3s ease;
}

.amenities-inner-card:hover .amenities-inner-icon-wrap i {
  color: #ffffff; /* White icons on hover */
}

.amenities-inner-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #02347c;
}

.amenities-inner-text {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 auto;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .amenities-inner-title { font-size: 32px; }
  .amenities-inner-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
  .amenities-inner-card { padding: 30px 20px; }
}

@media (max-width: 480px) {
  .amenities-inner-section { padding: 40px 15px; }
  .amenities-inner-title { font-size: 28px; }
  .amenities-inner-description { font-size: 15px; }
}

/* === Enhanced Full Amenities List === */
.amenities-full-list-section {
  padding: 30px 20px;
  
  text-align: center;
  position: relative;
  z-index: 1;
}

.amenities-full-list-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.amenities-full-list-title {
  font-size: 36px;
  color: #02347c; /* Navy Blue */
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}

.amenities-full-list-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #fdb721; /* Golden Yellow */
  margin: 18px auto 40px;
  border-radius: 2px;
}

.amenities-full-list-description {
  font-size: 18px;
  color: #4b5563;
  margin-bottom: 60px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.amenities-full-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  text-align: left;
}

.amenities-full-list-category {
  background: #fff;
  border-radius: 14px;
  padding: 30px 25px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(2, 52, 124, 0.05); /* Subtle Navy Tint Shadow */
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Accent top border on hover */
.amenities-full-list-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: #fdb721; /* Golden Yellow hover accent */
  opacity: 0;
  transition: opacity 0.3s ease;
}

.amenities-full-list-category:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(2, 52, 124, 0.1);
  border-color: #02347c;
}

.amenities-full-list-category:hover::before {
  opacity: 1;
}

.amenities-full-list-category h3 {
  font-size: 22px;
  font-weight: 700;
  color: #02347c; /* Navy Blue Headings */
  margin: 10px 0 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f3f4f6;
}

.amenities-full-list-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amenities-full-list-category ul li {
  font-size: 16px;
  color: #374151;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}

/* Custom Checkmark Icon */
.amenities-full-list-category ul li::before {
  content: "\f00c"; /* Font Awesome check icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #fdb721; /* Gold Checkmarks */
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .amenities-full-list-title { font-size: 28px; }
  .amenities-full-list-description { font-size: 15px; margin-bottom: 40px; }
  .amenities-full-list-grid { grid-template-columns: 1fr; }
  .amenities-full-list-category { padding: 25px 20px; }
}

.experience-section {
  /* Using your requested gradient */
  background: linear-gradient(
    120deg,
    rgba(249, 250, 251, 0.85),
    rgba(241, 243, 245, 0.85)
  );
  padding: 20px 5%;
  position: relative;
}

.experience-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* Slightly wider text area */
  gap: 100px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

/* Sidebar Text Section */
.experience-title {
  font-size: 52px;
  color: #02347c; /* Brand Blue for depth */
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing:1px;
  text-decoration:none;
}


.experience-intro {
  font-size: 18px;
  color: #4b5563;
  margin-bottom: 60px;
  max-width: 1220px;
  line-height: 1.8;
}

/* Individual Items */
.exp-item {
  padding: 35px 25px; /* Added horizontal padding for "active" state background */
  border-bottom: 1px solid #e5e7eb; /* Light border */
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px; /* Pre-rounding for hover effect */
}

/* The Numbering Hack to make it look professional */
.exp-item::before {
  content: attr(data-index);
  font-family: serif;
  font-style: italic;
  font-size: 14px;
  color: #fdb721;
  display: block;
  margin-bottom: 8px;
}

.exp-item h3 {
  font-size: 30px;
  margin: 0;
  color: #1f2937;
  transition: 0.3s;
}

.exp-item p {
  color: #6b7280;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  opacity: 0;
}

/* Active State - Soft lift effect */
.exp-item.active {
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-bottom-color: transparent;
}

.exp-item.active p {
  max-height: 250px;
  opacity: 1;
  margin-top: 20px;
}

.exp-item.active h3 {
  color: #02347c;
}

.exp-time {
  font-size: 12px;
  text-transform: uppercase;
  color: #fdb721;
  font-weight: 700;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Visual Area with a refined frame */
.experience-visual {
  position: sticky;
  top: 80px;
  height: 650px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(2, 52, 124, 0.15);
  border: 8px solid #ffffff; /* Clean white border frame */
}

.img-frame {
  width: 100%;
  height: 100%;
  background: #e5e7eb;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, opacity 0.5s ease;
}

.exp-item:hover h3 {
  color: #fdb721;
}

/* Mobile */
@media (max-width: 1024px) {
  .experience-container { 
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 15px;
  }

  /* Hide the desktop sticky visual */
  .experience-visual { 
    display: none; 
  }

  .experience-title {
    font-size: 36px;
    text-align: center;
  }

  .experience-intro {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 10px;
  }

  .exp-item {
    padding: 25px 20px;
  }

  /* Create a space for the image INSIDE the active item on mobile */
  .exp-item .mobile-img-placeholder {
    display: block;
    width: 100%;
    height: 0;
    opacity: 0;
    overflow: hidden;
    border-radius: 15px;
    margin-top: 0;
    transition: all 0.5s ease;
    background: #e5e7eb;
  }

  .exp-item.active .mobile-img-placeholder {
    height: 250px;
    opacity: 1;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .mobile-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Ensure placeholder is hidden on desktop */
@media (min-width: 1025px) {
  .mobile-img-placeholder {
    display: none;
  }
}
.ttd-directory-section {
  background: linear-gradient(
    120deg,
    rgba(249, 250, 251, 0.85),
    rgba(241, 243, 245, 0.85)
  );
  padding: 20px 5%;
  border-top: 1px solid #e5e7eb;
}

.directory-container {
  max-width: 1400px;
  margin: 0 auto;
}

.directory-header {
  margin-bottom: 50px;
}

.directory-title {
  font-size: 42px;
  color: #02347c;
  font-weight: 800;
}

.directory-title span {
  font-weight: 300;
  color: #6b7280;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.cat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  border-bottom: 2px solid #fdb721;
  padding-bottom: 10px;
  width: fit-content;
}

.cat-header i {
  color: #fdb721;
  font-size: 18px;
}

.cat-header h3 {
  font-size: 20px;
  color: #02347c;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.directory-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.directory-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 16px;
  color: #4b5563;
  transition: 0.2s;
}

.directory-list li:hover {
  color: #02347c;
  padding-left: 5px;
}

.directory-list li strong {
  color: #94a3b8;
  font-weight: 500;
  font-size: 14px;
}

.mt-40 {
  margin-top: 50px;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .directory-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .directory-grid {
    grid-template-columns: 1fr;
  }
  .directory-title {
    font-size: 32px;
  }
}

/* ============================================================
   LOCATION SECTION - FAIR MOTEL BRANDED
   ============================================================ */

.location-section-alt {
    padding: 80px 20px;
    /* Signature light gradient background */
    background: linear-gradient(120deg, rgba(249, 250, 251, 0.95), rgba(241, 243, 245, 0.95));
}

.location-wrapper-alt {
    max-width: 1250px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

/* --- Left Side Info --- */
.location-info-alt {
    flex: 1;
    min-width: 320px;
}

.location-title {
    font-size: 42px;
    font-weight: 800;
    color: #02347c; /* Brand Navy */
    margin-bottom: 20px;
    line-height: 1.1;
	text-decoration:none;
}

.location-description {
    font-size: 1rem;
    color: #4b5563; /* Slate Gray */
    margin-bottom: 35px;
    line-height: 1.8;
}

.location-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 25px;
    box-shadow: 0 10px 30px rgba(2, 52, 124, 0.05);
    gap: 20px;
    border: 1px solid rgba(2, 52, 124, 0.05);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateX(10px);
}

.info-card i {
    font-size: 24px;
    color: #fdb721; /* Brand Gold */
}

.info-card h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #02347c;
}

.info-card p {
    font-size: 1rem;
    color: #1f2937;
    line-height: 1.5;
    margin: 0;
}

/* --- Right Side Map Area --- */
.location-map-alt {
    flex: 1.3;
    height: 645px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(2, 52, 124, 0.1);
    border: 6px solid #ffffff;
}

/* --- Dual-Input Floating Form --- */
.route-form-overlay {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: rgba(2, 52, 124, 0.98); /* Solid Brand Navy */
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 25px;
    border-radius: 20px;
    width: 580px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.route-form-overlay h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fdb721; /* Brand Gold */
    display: flex;
    align-items: center;
    gap: 10px;
}

.input-group {
    margin-bottom: 0;
}

.input-group label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: #fdb721;
    margin-bottom: 6px;
    letter-spacing: 1px;
    font-weight: 600;
}

.input-group input {
    width: 95%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #fdb721;
    background: rgba(255, 255, 255, 0.15);
}

.input-group input[readonly] {
    cursor: default;
    opacity: 0.8;
}

/* Vertical line connecting the two dots */
.route-line {
    padding-left: 20px;
    color: rgba(253, 183, 33, 0.4);
    margin: 4px 0;
    font-size: 14px;
    line-height: 1;
}

.route-form-overlay button {
    width: 100%;
    padding: 14px;
    background: #fdb721; /* Brand Gold */
    color: #02347c; /* Brand Navy */
    border: none;
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 8px;
    margin-top: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.route-form-overlay button:hover {
    background: #ffffff;
    color: #02347c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 183, 33, 0.3);
}

/* --- Responsive Fixes for iPad & Mobile --- */

/* IPAD / TABLET (Portrait) */
@media (max-width: 1024px) {
   .location-section-alt {
        padding: 40px 15px;
    }

    .location-wrapper-alt {
        flex-direction: column; /* Stacks text and map */
    }

    .location-title {
        font-size: 32px;
        text-align: center;
    }

    .location-description {
        text-align: center;
    }

    .location-map-alt {
        width: 100%;
        height: 400px;
        order: 2; /* Map stays under text */
    }

    /* IMPORTANT: On mobile, move the form OUT of the map area so users can see the map */
    .route-form-overlay {
        position: relative; /* Removes from floating over the map */
        bottom: 0;
        right: -80px;
        max-width: 100%; /* Full width of screen */
        margin-top: 20px;
        border-radius: 16px;
        box-shadow: none;
        order: 3; /* Form goes under the map */
    }

    .info-card:hover {
        transform: none; /* Disable hover movement on touch screens */
    }
	
}

/* MOBILE */
@media (max-width: 768px) {
    .location-section-alt {
        padding: 40px 15px;
    }

    .location-wrapper-alt {
        flex-direction: column; /* Stacks text and map */
    }

    .location-title {
        font-size: 32px;
        text-align: center;
    }

    .location-description {
        text-align: center;
    }

    .location-map-alt {
        width: 100%;
        height: 400px;
        order: 2; /* Map stays under text */
    }

    /* IMPORTANT: On mobile, move the form OUT of the map area so users can see the map */
    .route-form-overlay {
        position: relative; /* Removes from floating over the map */
        bottom: 0;
        right: 0;
        max-width: 100%; /* Full width of screen */
        margin-top: 20px;
        border-radius: 16px;
        box-shadow: none;
        order: 3; /* Form goes under the map */
    }

    .info-card:hover {
        transform: none; /* Disable hover movement on touch screens */
    }
	.input-group input {
    width: 80%;
   
}
.route-form-overlay button {
    width: 80%;
    
}
}

/* === Contact Section - Fair Motel Branded === */
.contact-section {
  padding: 30px 20px;
  /* Updated to a sophisticated Navy-to-Deep-Blue gradient */
  background: linear-gradient(180deg, #f9fafb 30%, #02347c 100%);
  text-align: center;
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  margin-bottom: 60px;
}

.contact-title {
  font-size: 42px;
  font-weight: 800;
  color: #02347c; /* Brand Navy for the light top part */
  margin-bottom: 20px;
  letter-spacing: -1px;
  text-decoration:none;
}

.contact-description {
  font-size: 18px;
  color: #4b5563; /* Deep Slate for readability on light background */
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}

.contact-card {
  padding: 30px;
  text-align: center;
  /* Updated divider to use brand colors with low opacity */
  border-right: 1px solid rgba(255, 255, 255, 0.15); 
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
}

.contact-card:last-child {
  border-right: none;
}

.contact-icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #fdb721; /* Brand Golden Mustard */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 28px;
  color: #02347c; /* Navy Icon on Gold Background */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff; /* White for readability on dark gradient */
  letter-spacing: 0.5px;
}

.contact-card p, 
.contact-card p a {
  font-size: 17px;
  color: #cbd5e1; /* Soft Gray-Blue for secondary text */
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-card p a:hover {
  color: #fdb721; /* Gold hover effect for links */
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .contact-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 15px;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-card {
    padding-bottom: 40px;
  }

  .contact-card:last-child {
    border-bottom: none;
  }
}

/* 🌐 Sitemap Section - Fair Motel Branded */
.sitemap-section {
  padding: 30px 20px;
  /* Updated to your property's signature light-to-navy gradient */
  background: linear-gradient(180deg, #f9fafb 0%, #02347c 150%);
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}

.sitemap-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sitemap-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #02347c; /* Brand Navy */
  letter-spacing: -1px;
  text-decoration:none;
}

.sitemap-subtitle {
  font-size: 18px;
  max-width: 1200px;
  margin: 0 auto 60px;
  color: #4b5563; /* Slate for readability on light background */
  line-height: 1.8;
}

/* Sitemap Grid */
.sitemap-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Block Styling */
.sitemap-block {
  background: #ffffff;
  color: #1f2937;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(2, 52, 124, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  /* Top accent bar in Brand Gold */
  border-top: 5px solid #fdb721; 
  border: 1px solid rgba(2, 52, 124, 0.05);
}

.sitemap-block:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.sitemap-block h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #02347c; /* Brand Navy */
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sitemap-block h2 i {
  color: #fdb721; /* Gold for Heading Icons */
  font-size: 1.2rem;
}

.sitemap-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-block ul li {
  margin-bottom: 16px;
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 12px;
}

.sitemap-block ul li:last-child {
  border-bottom: none;
}

.sitemap-block ul li a {
  font-size: 17px;
  text-decoration: none;
  color: #4b5563;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Hover States */
.sitemap-block ul li a:hover {
  color: #02347c; /* Changes to Navy on hover */
  padding-left: 8px;
}

.sitemap-block ul li a i {
  color: #fdb721; /* Gold for list arrows */
  font-size: 14px;
}

/* 📱 Responsive Adjustments */
@media (max-width: 1024px) {
  .sitemap-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sitemap-section {
    padding: 60px 15px;
  }
  
  .sitemap-title {
    font-size: 32px;
  }

  .sitemap-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .sitemap-block {
    padding: 30px;
  }
}

/* === FAQ Section - Fair Motel Branded === */
.faq-section {
  padding: 30px 20px;
  /* Updated to property signature light-to-navy gradient */
  background: linear-gradient(180deg, #f9fafb 0%, #02347c 100%);
  color: #fff;
  text-align: center;
}

.faq-container {
  max-width: 1100px;
  margin: 0 auto;
}

.faq-title {
  font-size: 42px;
  font-weight: 800;
  color: #02347c; /* Brand Navy */
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration:none;
}

.faq-subtitle {
  font-size: 18px;
  color: #4b5563; /* Accessible slate gray on light background */
  max-width: 900px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  text-align: left;
}

.faq-item {
  background: #ffffff;
  color: #1f2937;
  padding: 30px 40px;
  border-radius: 16px;
  /* Updated to Brand Gold accent */
  border-left: 6px solid #fdb721; 
  box-shadow: 0 10px 30px rgba(2, 52, 124, 0.08);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-top: 1px solid rgba(2, 52, 124, 0.05);
}

.faq-item:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.faq-item h2 {
  font-size: 22px;
  font-weight: 700;
  color: #02347c; /* Brand Navy for Questions */
  margin-bottom: 15px;
  line-height: 1.4;
}

.faq-item p {
  font-size: 17px;
  line-height: 1.7;
  color: #4b5563;
}

/* Updated Link Styles to Brand Gold */
.faq-item a {
  color: #02347c; /* Links in Navy */
  font-weight: 700;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.faq-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #fdb721; /* Underline in Gold */
  transition: width 0.3s ease;
}

.faq-item a:hover {
  color: #fdb721;
}

.faq-item a:hover::after {
  width: 100%;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 15px;
  }
  
  .faq-title {
    font-size: 32px;
  }
  
  .faq-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .faq-item {
    padding: 25px;
  }
  
  .faq-item h2 {
    font-size: 19px;
  }
  
  .faq-item p {
    font-size: 15px;
  }
}

