/* Global Styles - Kolahaalam Hotels & Spa */

/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* CSS Variables */
:root {
    /* Primary Colors - HSL Format */
    --sage: 161 18% 51%;
    /* #6c9a8b - Accent Green */
    --sage-light: 49 57% 94%;
    /* #FBF9E4 - Background Light */
    --navy: 215 42% 18%;
    /* #1b2b42 - Primary Dark */
    --cream: 49 57% 94%;
    /* #FBF9E4 - Background Light */
    --gold: 38 60% 55%;
    /* Gold accent */

    /* Semantic Color Variables - Light Mode */
    --background: 49 57% 94%;
    /* #FBF9E4 */
    --foreground: 215 42% 18%;
    /* #1B2B42 */
    --primary: 161 18% 51%;
    /* #6C9A8B */
    --primary-foreground: 0 0% 100%;
    /* White */
    --secondary: 215 42% 18%;
    /* #1B2B42 */
    --secondary-foreground: 0 0% 100%;
    /* White */
    --muted: 49 57% 94%;
    /* #FBF9E4 */
    --muted-foreground: 215 42% 40%;
    /* Dark blue-gray */
    --accent: 161 18% 51%;
    /* #6C9A8B */
    --accent-foreground: 0 0% 100%;
    /* White */
    --border: 161 18% 85%;
    /* Light sage border */
    --ring: 153 33% 51%;
    /* Sage focus ring */
    --radius: 0.25rem;
    /* 4px border radius */

    /* Legacy color variables for backward compatibility */
    --primary-color: hsl(161 18% 51%);
    --secondary-color: hsl(215 42% 18%);
    --accent-color: hsl(38 60% 55%);
    --bg-cream: hsl(49 57% 94%);
    --white: #ffffff;
    --black: #000000;
    --text-dark: hsl(215 42% 18%);
    --text-light: hsl(215 42% 40%);
    --text-lighter: hsl(215 42% 60%);
    --overlay-dark: hsl(215 42% 18% / 0.6);
    --overlay-medium: hsl(215 42% 18% / 0.4);
    --overlay-light: hsl(215 42% 18% / 0.2);
    --border-light: hsl(215 42% 18% / 0.1);

    /* Custom Shadows - HSL Format */
    --shadow-soft: 0 4px 20px -4px hsl(214 41% 18% / 0.1);
    --shadow-medium: 0 8px 30px -8px hsl(214 41% 18% / 0.15);
    --shadow-strong: 0 12px 40px -12px hsl(214 41% 18% / 0.2);
    --shadow-sm: 0 2px 8px hsl(214 41% 18% / 0.08);
    --shadow-md: 0 4px 16px hsl(214 41% 18% / 0.12);
    --shadow-lg: 0 8px 32px hsl(214 41% 18% / 0.16);

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --transition-fast: all 0.15s ease;
}

/* Animation Keyframes */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomOut {
    from {
        transform: scale(1.15);
    }

    to {
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Animation Classes */
.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-zoom-out {
    animation: zoomOut 8s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.2s ease-out;
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Blinking Animation */
@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.1;
    }

    100% {
        opacity: 1;
    }
}

.blinking-hotel-name {
    display: none;
    /* Hidden by default - only show in sticky header */
    animation: blink 1.5s linear infinite;
    color: #6C9A8B;
    /* Sage color */
    font-weight: 600;
    margin-left: 10px;
    text-transform: uppercase;
    font-size: 1rem;
    vertical-align: middle;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.nav-item.hide-on-mobile .blinking-hotel-name {
    display: inline-block;
}

/* Mobile specific blinking name */
.blinking-hotel-name.mobile-only {
    display: none;
    font-size: 1rem;
    margin: 5px 0 0 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
    background: rgba(0, 0, 0, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

@media (max-width: 1024px) {
    .blinking-hotel-name.hide-on-mobile {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .blinking-hotel-name.mobile-only {
        font-size: 0.75rem;
        max-width: 150px;
    }
}

/* Menu List Button Styles */
.btn-view-menu-container {
    text-align: center;
    margin-top: 30px;
    width: 100%;
}

.btn-view-menu {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: hsl(var(--primary));
    color: white;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 18px;
    /* Increased */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-view-menu:hover {
    background-color: hsl(var(--secondary));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: white;
}

/* Unified Footer Contact Font */
.footer-contact-list span {
    font-family: inherit !important;
}

.footer-contact-list li {
    font-family: inherit !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    line-height: 1.75;
    color: hsl(var(--foreground));
    background-color: hsl(var(--background));
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

/* Image Carousel Simple */
.image-carousel-simple {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.image-carousel-simple .carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.image-carousel-simple .carousel-slide {
    min-width: 100%;
    height: 100%;
}

.image-carousel-simple .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-carousel-simple .carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 10px;
    z-index: 10;
}

.image-carousel-simple .carousel-btn {
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.image-carousel-simple .carousel-btn:hover {
    background: rgba(0, 0, 0, 0.6);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: hsl(var(--foreground));
    font-weight: 300;
    /* Light weight */
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    /* Wider letter-spacing for headings */
}

/* Hero H1 - 7xl (74px) desktop → 5xl (50px) tablet → 4xl (38px) mobile */
.hero-main-title,
.hero-title {
    font-size: 74px;
    /* Increased from 72px */
    line-height: 1.1;
    letter-spacing: 0.05em;
    font-weight: 300;
}

/* Hero Subtitle - 2xl (26px) → xl (22px) → lg (20px) */
.hero-subtitle-text,
.hero-subtitle {
    font-size: 26px;
    /* Increased from 24px */
    line-height: 1.4;
    letter-spacing: 0.025em;
    font-weight: 300;
}

/* Section Heading Display - 6xl (62px) → 5xl (50px) → 4xl (38px) */
.heading-display,
.section-title-main {
    font-size: 2.5rem;
    line-height: 1.2;
    letter-spacing: 0.05em;
    font-weight: 300;
}

/* Section Heading - 5xl (50px) → 4xl (38px) → 3xl (32px) */
.heading-section,
.section-title,
h2 {
    font-size: 50px;
    /* Increased from 48px */
    line-height: 1.25;
    letter-spacing: 0.05em;
    font-weight: 300;
}

h1 {
    font-size: 62px;
    /* Increased from 60px */
    line-height: 1.2;
    letter-spacing: 0.05em;
}

h3 {
    font-size: 32px;
    /* Increased from 30px */
    line-height: 1.3;
    letter-spacing: 0.02em;
}

h4 {
    font-size: 26px;
    /* Increased from 24px */
    line-height: 1.4;
    letter-spacing: 0.02em;
}

/* Sub-labels (Welcome, Discover) - Increased size for better visibility */
.section-label {
    font-size: 26px;
    /* Increased from 20px for better visibility */
    letter-spacing: 0.3em;
    /* very wide */
    font-weight: 400;
    text-transform: uppercase;
}

/* Body Text - xl (22px) → xl (22px) → lg (20px) */
p,
.text-body {
    margin-bottom: 1.5rem;
    font-size: 22px;
    /* Increased from 20px */
    line-height: 1.75;
    color: hsl(var(--muted-foreground));
    font-weight: 400;
}

/* Card Titles - xl (22px) or lg (20px) */
.card-title,
.venue-name,
.offer-title-new,
.property-name {
    font-size: 22px;
    /* Increased from 20px */
    font-weight: 500;
    /* medium */
    letter-spacing: normal;
}

/* Button Styles */
.btn-primary {
    background-color: hsl(var(--primary));
    /* sage */
    color: hsl(var(--primary-foreground));
    /* white */
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    /* rounded-sm */
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    /* widest */
    text-transform: uppercase;
    cursor: pointer;
    display: inline-block;
    max-width: 200px;
    width: auto;
    text-align: center;
    transition: all 300ms ease;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.btn-primary:hover {
    background-color: hsl(var(--secondary));
    /* navy */
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: hsl(var(--secondary));
    /* navy */
    color: hsl(var(--secondary-foreground));
    /* white */
    padding: 12px 24px;
    /* px-6 py-3 */
    border: none;
    border-radius: 4px;
    font-size: 16px;
    /* Increased from 14px */
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 300ms ease;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.btn-secondary:hover {
    background-color: hsl(var(--primary));
    /* sage */
}

.btn-outline {
    border: 2px solid hsl(var(--primary));
    /* sage */
    color: hsl(var(--primary));
    background-color: transparent;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    /* Increased from 14px */
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 300ms ease;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.btn-outline:hover {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

/* Book Now Button - Header (unscrolled) */
.main-header .btn-book-now {
    background-color: hsl(var(--background));
    /* white */
    color: hsl(var(--foreground));
    /* navy */
    padding: 10px 24px;
    /* px-6 py-2.5 */
    border: none;
    border-radius: 4px;
    font-size: 16px;
    /* Increased from 14px */
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 300ms ease;
    font-family: 'Cormorant Garamond', Georgia, serif;
    z-index: 1001;
    /* Ensure button is above other elements */
    position: relative;
    pointer-events: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    /* Better touch feedback */
}

.main-header .btn-book-now:hover {
    background-color: hsl(var(--primary));
    /* sage */
    color: hsl(var(--primary-foreground));
    /* white */
}

/* Book Now Button - Header (scrolled) */
.main-header.sticky .btn-book-now {
    background-color: hsl(var(--primary));
    /* sage */
    color: hsl(var(--primary-foreground));
    /* white */
}

.main-header.sticky .btn-book-now:hover {
    background-color: hsl(var(--secondary));
    /* navy */
}

/* Nav Links - base (18px) */
.nav-link {
    font-size: 18px;
    /* Increased from 16px */
    font-weight: 400;
    letter-spacing: 0.05em;
    /* wide */
}

/* Footer Headings - lg (20px) */
.footer-heading {
    font-size: 20px;
    /* Increased from 18px */
    font-weight: 500;
    letter-spacing: 0.05em;
    /* wide */
}

/* Footer Links - sm (16px) */
.footer-links a {
    font-size: 16px;
    /* Increased from 14px */
    font-weight: 400;
    letter-spacing: normal;
}

/* Form Labels - sm (16px) */
label,
.form-group label {
    font-size: 16px;
    /* Increased from 14px */
    font-weight: 400;
    letter-spacing: 0.05em;
    /* wide */
    margin-bottom: 8px;
    /* mb-2 */
}

/* Form Inputs - base (18px) */
input,
select,
textarea,
.form-input,
.form-select {
    font-size: 18px;
    /* Increased from 16px */
    font-weight: 400;
    letter-spacing: normal;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header Styles */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background: transparent !important;
    transition: all 300ms ease;
    padding: 8px 0;
}

/* Ensure header stays above menu when menu is open */
.menu-open .main-header {
    z-index: 2000;
}

.main-header.sticky {
    position: fixed;
    background-color: hsl(var(--secondary)) ! important;
    /* #1B2B42 background after scroll */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* subtle shadow */
    padding: 6px 0;
}

/* Header text/icons - white initially, white when scrolled */
.main-header .nav-link,
.main-header .mobile-menu-toggle span {
    color: hsl(0 0% 100%);
    /* white text/icons initially */
    transition: all 300ms ease;
}

.main-header.sticky .nav-link,
.main-header.sticky .mobile-menu-toggle span {
    color: #ffffff !important;
    /* Force white text/icons when scrolled */
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    /* Reduced vertical padding */
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    flex-shrink: 0;
}

.logo-img {
    height: 110px;
    /* Increased from 90px */
    width: auto;
    transition: var(--transition);
    filter: none;
    /* Always colored/original */
}

.main-header.sticky .logo-img {
    height: 80px;
    /* Increased from 70px */
    filter: none;
    /* colored when scrolled */
}

@media (max-width: 768px) {
    .logo-img {
        height: 75px;
        /* Increased from 60px */
    }
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 15px;
    /* gap-8 */
}

/* Desktop - Show menu, hide hamburger */
@media (min-width: 1025px) {
    .main-nav .nav-list {
        display: flex !important;
    }

    .mobile-menu-toggle {
        display: none !important;
    }

    .mobile-menu-panel {
        display: none !important;
    }
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 1rem;
    /* Increased from 1rem (16px → 18px) */
    color: var(--white);
    padding: 0.625rem 0.50rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.main-header.sticky .nav-link {
    color: hsl(var(--foreground));
    /* navy */
}

.nav-link:hover {
    color: hsl(var(--primary));
    /* sage */
}

.nav-link.active {
    color: hsl(var(--primary));
    /* sage */
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: translateZ(0);
    /* Force hardware acceleration for smooth rendering */
    box-sizing: border-box;
    /* Ensure width calculation includes padding */
}

/* Ensure underline aligns correctly across all pages */
.nav-list {
    position: relative;
}

.nav-list .nav-item {
    position: relative;
}

.nav-list .nav-link {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
}

/* Fix underline positioning on scroll and resize */
@media (max-width: 1023px) {
    .nav-link.active::after {
        width: 100%;
        left: 0;
        right: auto;
    }
}

@media (min-width: 1024px) {
    .nav-link.active::after {
        width: 100%;
        left: 0;
        right: auto;
    }
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: hsl(var(--secondary) / 0.95);
    /* secondary/95 */
    backdrop-filter: blur(10px);
    width: 320px;
    /* w-80 */
    box-shadow: var(--shadow-strong);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    padding: 24px;
    /* p-6 */
    margin-top: 0.5rem;
    border-radius: 4px;
    /* rounded-sm */
    z-index: 2500;
    /* Above secondary nav (1999) */
}

.main-header.sticky .dropdown-menu {
    background-color: hsl(var(--background));
    /* white background when scrolled */
    box-shadow: var(--shadow-strong);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-group {
    padding: 0.5rem 0;
}

.dropdown-group-title {
    display: block;
    font-weight: 500;
    /* medium */
    color: hsl(var(--primary));
    /* text-primary */
    padding: 0.5rem 1.5rem;
    font-size: 20px;
    /* Increased from 18px */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.dropdown-submenu {
    list-style: none;
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    padding-left: 0.75rem;
    /* pl-3 */
    color: hsl(0 0% 100% / 0.9);
    /* text-white/90 */
    font-size: 1.125rem;
    /* Increased from 1rem (16px → 18px) */
    transition: var(--transition);
    border-left: 2px solid hsl(0 0% 100% / 0.2);
    /* border-l-2 white/20 */
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.main-header.sticky .dropdown-link {
    color: hsl(var(--foreground));
    /* navy text when scrolled */
    border-left: 2px solid hsl(var(--primary) / 0.2);
}

.dropdown-link:hover {
    background-color: hsl(var(--primary) / 0.2);
    color: hsl(0 0% 100%);
    /* white */
    padding-left: 1.5rem;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: var(--transition);
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Legacy btn-book-now for other contexts */
.btn-book-now:not(.main-header .btn-book-now) {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    z-index: 1001;
    /* Ensure button is above other elements */
    position: relative;
    pointer-events: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    /* Better touch feedback */
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 300ms ease;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.btn-book-now:not(.main-header .btn-book-now):hover {
    background-color: hsl(var(--secondary));
    transform: translateY(-2px);
}

/* Mobile Menu Toggle - Hamburger Icon */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: #fff;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: #1B2B42;
    /* Ensure dark navy color */
    transition: var(--transition);
    display: block;
    border-radius: 2px;
    box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
    /* Contrast on dark backgrounds */
}

.main-header.sticky .mobile-menu-toggle span {
    background-color: var(--secondary-color);
}

/* Hide hamburger icon when menu is open */
.menu-open .mobile-menu-toggle {
    display: none !important;
}

/* Secondary Navigation Bar */
.secondary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: transparent;
    backdrop-filter: blur(5px);
    z-index: 1999;
}

.main-header.sticky~.secondary-nav,
.main-header.sticky+.secondary-nav,
.secondary-nav.sticky {
    position: fixed;
    /* top will be set dynamically by JS based on header height */
    background-color: hsl(0deg 0% 0%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.secondary-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.secondary-nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.secondary-nav-item {
    position: relative;
}

.secondary-nav-link {
    font-size: 14px;
    color: hsl(0 0% 100% / 0.9);
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: 400;
    position: relative;
    display: block;
}

.main-header.sticky+.secondary-nav .secondary-nav-link,
.secondary-nav.sticky .secondary-nav-link {
    color: #fff;
}

.secondary-nav-link:hover {
    color: hsl(var(--primary));
}

.secondary-nav-link.active {
    color: hsl(var(--primary));
}

.secondary-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: hsl(var(--primary));
    transform: translateZ(0);
}

.secondary-mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
}

.secondary-mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: hsl(0 0% 100%);
    display: block;
    transition: all 0.3s ease;
}

.secondary-mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.secondary-mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.secondary-mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

.main-header.sticky+.secondary-nav .secondary-mobile-menu-toggle span,
.secondary-nav.sticky .secondary-mobile-menu-toggle span {
    background-color: #fff;
}

/* Mobile Secondary Nav */
@media (max-width: 1024px) {
    .secondary-nav-container {
        padding: 0.75rem 1.25rem;
    }

    .secondary-nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #1b2b41;
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        max-height: calc(100vh - 120px);
        /* Ensure it fits nicely below header */
        overflow-y: auto;
        /* Add scroll for long menu list */
    }

    .secondary-nav-list.active {
        display: flex;
    }


    .secondary-nav-item {
        width: 100%;
    }

    .secondary-nav-link {
        width: 100%;
        padding: 1rem 1.25rem;
        color: #ffffff !important;
        /* Force high contrast */
        font-weight: 500;
        background: rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .secondary-mobile-menu-toggle {
        display: flex;
    }

    .main-header.sticky~.secondary-nav,
    .main-header.sticky+.secondary-nav {
        top: 56px;
        /* Adjusted for mobile header height */
    }

    /* ===============================
       Hotel Name Blink – Mobile & Tablet Only
       =============================== */
    .blinking-hotel-name-mobile {
        display: inline-flex !important;
        align-items: center;
        font-size: 1rem;
        font-weight: 500;
        color: #fff;
        /* Red color for name */
        margin-left: 10px;
        padding: 4px 10px;
        /* border: 2px solid #ff0000; */
        /* Red color box as requested */
        white-space: nowrap;
        animation: hotelBlink 1.5s infinite;
        z-index: 999;
        font-family: 'Cormorant Garamond', Georgia, serif;
    }

    /* Blink animation */
    @keyframes hotelBlink {
        0% {
            opacity: 1;
        }

        50% {
            opacity: 0.4;
        }

        100% {
            opacity: 1;
        }
    }
}

.secondary-nav-close-item {
    display: none;
}

.blinking-hotel-name-mobile {
    display: none;
    /* Hide on desktop by default */
}

/* Gallery Grid */
/* Gallery Filter Buttons */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    border: 2px solid hsl(var(--primary));
    color: hsl(var(--primary));
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 300ms ease;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

/* Gallery Masonry Layout */
.gallery-masonry {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-masonry-left {
    display: flex;
    flex-direction: column;
}

.gallery-masonry-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    grid-auto-rows: min-content;
    align-content: start;
}

.masonry-large {
    min-height: 600px;
    aspect-ratio: auto;
}

.masonry-medium {
    min-height: 250px;
    aspect-ratio: auto;
}

.masonry-small {
    min-height: 200px;
    aspect-ratio: auto;
}

.gallery-item.hidden {
    display: none;
}

/* Ensure masonry gallery items also work with modal */
.gallery-masonry .gallery-item {
    cursor: pointer;
    aspect-ratio: auto;
}

.gallery-masonry .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* About Page Gallery - 4 Images in Single Row */
.gallery-grid-about {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (max-width: 1024px) {
    .gallery-grid-about {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid-about {
        grid-template-columns: 1fr;
    }
}

/* Luxury Gallery Grid - 4 Column System */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Rooms Grid Overrides for Centering and Filtering */
.rooms-grid {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.rooms-grid .room-card {
    flex: 0 1 350px;
    margin: 0;
}

@media (max-width: 1024px) {
    .rooms-grid .room-card {
        flex: 0 1 45%;
    }
}

@media (max-width: 768px) {
    .rooms-grid .room-card {
        flex: 1 1 100%;
        max-width: none;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    background: hsl(var(--muted));
    transition: opacity 0.3s ease;
}

.gallery-item:hover {
    opacity: 0.9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Gallery Modal */
/* Luxury Gallery Modal - Full Screen Experience */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.gallery-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(4px);
}

.gallery-modal-content {
    position: relative;
    max-width: 95%;
    max-height: 95vh;
    z-index: 3001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-image {
    max-width: 100%;
    max-height: 95vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: opacity 0.15s ease;
    opacity: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.gallery-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.gallery-modal-prev,
.gallery-modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.gallery-modal-prev:hover,
.gallery-modal-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.gallery-modal-prev {
    left: 20px;
}

.gallery-modal-next {
    right: 20px;
}

@media (max-width: 768px) {
    .gallery-modal-prev {
        left: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .gallery-modal-next {
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .gallery-modal-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }
}

/* Room Slider */
.room-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.room-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 8px;
}

.room-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.room-slide.active {
    opacity: 1;
}

.room-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-slider-prev,
.room-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease;
}

.room-slider-prev {
    left: 20px;
}

.room-slider-next {
    right: 20px;
}

.room-slider-prev:hover,
.room-slider-next:hover {
    background: rgba(255, 255, 255, 1);
}

.room-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.room-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 300ms ease;
}

.room-dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .room-slider {
        height: 400px;
    }

    .room-slider-prev,
    .room-slider-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .gallery-masonry {
        grid-template-columns: 1fr;
    }

    .gallery-masonry-right {
        grid-template-columns: 1fr;
    }

    .masonry-large {
        min-height: 300px;
    }

    .masonry-medium,
    .masonry-small {
        min-height: 200px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-modal-prev {
        left: 10px;
    }

    .gallery-modal-next {
        right: 10px;
    }

    .gallery-modal-close {
        top: 10px;
        right: 10px;
    }
}

/* Facilities Grid */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.facility-item {
    text-align: center;
    padding: 2rem 1rem;
    background-color: hsl(var(--muted));
    border-radius: 8px;
    transition: var(--transition);
}

.facility-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    background-color: hsl(var(--muted) / 0.8);
}

.facility-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.facility-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: hsl(var(--foreground));
}

.facility-description {
    font-size: 1rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

.facilities-cta {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 1023px) {
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .facility-item {
        padding: 1.5rem 1rem;
    }

    .facility-icon {
        font-size: 2.5rem;
    }
}

/* Mobile Menu Panel - Full Screen Overlay (Slide Down) */
.mobile-menu-panel {
    position: fixed;
    top: -100%;
    /* Start above viewport */
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    /* Dynamic viewport height for mobile */
    background-color: hsl(0 0% 100%);
    /* White background */
    z-index: 2500;
    /* Above secondary nav (1999) and dropdown (2500) */
    transition: top 300ms ease;
    /* slide down from top, 300ms ease */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
    will-change: top;
    /* Optimize animation */
}

.mobile-menu-panel.active {
    top: 0;
    /* Slide down to top */
}

.mobile-menu-panel * {
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile-menu-panel ul,
.mobile-menu-panel li {
    display: block !important;
    visibility: visible !important;
}

/* Mobile menu overlay removed - using full screen slide-down instead */

.mobile-menu-close {
    position: absolute;
    top: 24px;
    /* 24px from top */
    right: 24px;
    /* 24px from right */
    background: none;
    border: none;
    font-size: 1.5rem;
    color: hsl(var(--foreground));
    /* navy */
    cursor: pointer;
    padding: 0;
    line-height: 1;
    z-index: 2600;
    /* Above panel z-index 2500 */
    width: 24px;
    /* 24px X icon */
    height: 24px;
    /* 24px X icon */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    pointer-events: auto;
    /* Ensure clickable */
    visibility: visible;
    opacity: 1;
}

.mobile-menu-close:hover {
    opacity: 0.7;
}

/* Ensure close button is visible when menu panel is active */
.mobile-menu-panel.active .mobile-menu-close {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 2600 !important;
    /* Ensure it's above panel */
}

.mobile-nav-list {
    list-style: none;
    margin-top: 3rem;
}

/* Mobile Sidebar Navigation List - Vertical stack, centered */
#mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 4rem 2rem 2rem;
    /* Top padding for close button */
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    flex: 1;
    overflow-y: auto;
    align-items: center;
    /* Vertical stack, centered */
    text-align: center;
}

#mobile-nav-list .nav-item {
    display: block;
    width: 100%;
    margin-bottom: 0;
    border-bottom: 1px solid hsl(var(--border));
}

#mobile-nav-list .nav-item:last-child {
    border-bottom: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid hsl(var(--border));
}

#mobile-nav-list .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    /* 16px 0 each */
    color: hsl(var(--foreground));
    /* navy */
    font-size: 24px;
    /* 24px desktop */
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    letter-spacing: 0.05em;
    width: 100%;
    /* Tap area: full width */
    transition: all 0.2s ease;
    text-decoration: none;
}

/* Mobile Menu Font Size - Mobile & Tablet Only */
@media (max-width: 1023px) {
    #mobile-nav-list .nav-link {
        font-size: 20px;
        /* Increased to 20px for mobile/tablet */
    }
}

#mobile-nav-list .nav-link:hover,
#mobile-nav-list .nav-link.active {
    color: hsl(var(--primary));
    padding-left: 0.5rem;
}

#mobile-nav-list .dropdown-arrow {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
    margin-left: 0.5rem;
}

#mobile-nav-list .dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Mobile Dropdown Menu in Sidebar */
#mobile-nav-list .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    background-color: hsla(var(--muted), 0.5);
    /* cream/50% on sub-section */
    padding: 0;
    margin: 0;
    width: 100% !important;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    border-radius: 0;
    left: auto !important;
    top: auto !important;
}

/* Blinking Active Animation */
@keyframes activeHotelBlink {
    0% {
        opacity: 1;
        color: hsl(var(--primary));
    }

    50% {
        opacity: 0.7;
        color: hsl(var(--foreground));
    }

    100% {
        opacity: 1;
        color: hsl(var(--primary));
    }
}

.dropdown-link.blinking-active {
    animation: activeHotelBlink 2s infinite ease-in-out;
    font-weight: 600 !important;
    border-left: 2px solid hsl(var(--primary)) !important;
}

.main-header.sticky .dropdown-link.blinking-active {
    color: hsl(var(--primary)) !important;
}

#mobile-nav-list .dropdown.active .dropdown-menu {
    display: block !important;
    max-height: 600px;
    padding: 1rem 0 1rem 1.5rem;
}

#mobile-nav-list .dropdown-group {
    padding: 0.75rem 0;
}

#mobile-nav-list .dropdown-group-title {
    display: block;
    font-weight: 600;
    color: hsl(var(--primary));
    padding: 0.5rem 0;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

#mobile-nav-list .dropdown-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
}

#mobile-nav-list .dropdown-link {
    display: block;
    padding: 0.75rem 0;
    color: hsl(var(--muted-foreground));
    font-size: 18px;
    /* 18px sub-items */
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
    padding-left: 24px;
    /* indented 24px left */
    text-transform: none;
    letter-spacing: normal;
}

#mobile-nav-list .dropdown-link:hover {
    color: hsl(var(--foreground));
    border-left-color: hsl(var(--primary));
    padding-left: 1.5rem;
}

/* Book Now Button in Mobile Sidebar */
#mobile-nav-list .btn-book-now {
    width: 100%;
    /* Full width */
    margin: 32px 0 0 0;
    /* margin-top 32px */
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    text-align: center;
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: block;
    height: 56px;
    /* Height: 56px */
    /* Same styling as desktop btn-primary */
}

#mobile-nav-list .btn-book-now:hover {
    background-color: hsl(var(--secondary));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px hsl(var(--secondary) / 0.3);
}

.mobile-nav-item {
    margin-bottom: 1rem;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 0;
    color: var(--secondary-color);
    font-size: 1.25rem;
    /* Increased from 1.125rem (18px → 20px) */
    text-transform: uppercase;
    letter-spacing: 0.02em;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary-color);
    padding-left: 1rem;
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 1.5rem;
}

.mobile-dropdown-menu.active {
    max-height: 500px;
}

.mobile-dropdown-link {
    display: block;
    padding: 0.75rem 0;
    color: var(--text-light);
    font-size: 1.125rem;
    /* Increased from 1rem (16px → 18px) */
    transition: var(--transition);
}

.mobile-dropdown-link:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

/* Footer Styles */
.main-footer {
    background-color: hsl(var(--secondary));
    /* bg-secondary (navy) */
    color: hsl(0 0% 100%);
    /* white */
    padding: 5rem 0 0;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-links li strong {
    color: var(--white);
    font-weight: 600;
    margin-top: 1rem;
    display: block;
}

.footer-links li:first-child strong {
    margin-top: 0;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
    color: hsl(0 0% 100%);
    /* white */
    font-weight: 300;
    letter-spacing: 0.05em;
}

.footer-heading {
    font-size: 18px;
    /* lg */
    margin-bottom: 1.25rem;
    color: hsl(0 0% 100%);
    /* white */
    font-weight: 500;
    letter-spacing: 0.05em;
    /* wide */
}

.footer-description {
    color: hsl(0 0% 100% / 0.7);
    /* white/70 */
    font-size: 1.0625rem;
    line-height: 1.75;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: hsl(0 0% 100% / 0.6);
    /* white/60 */
    font-size: 14px;
    /* sm */
    font-weight: 400;
    transition: var(--transition);
}

.footer-links a:hover {
    color: hsl(var(--primary));
    /* hover:text-primary */
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: hsl(0 0% 100% / 0.7);
    /* white/70 */
    line-height: 1.5;
    font-size: 14px;
    /* Reduced to 14px */
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.contact-icon {
    font-size: 1rem;
    /* Reduced from 1.25rem */
    flex-shrink: 0;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Social Media Icons - w-10 h-10 (40px), rounded-full, white/10 background, w-5 h-5 icon, hover:bg-primary */
.social-link {
    width: 40px;
    /* w-10 */
    height: 40px;
    /* h-10 */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* rounded-full */
    background-color: hsl(0 0% 100% / 0.1);
    /* white/10 */
    transition: all 300ms ease;
    color: hsl(0 0% 100%);
}

.social-link svg {
    width: 20px;
    /* w-5 */
    height: 20px;
    /* h-5 */
}

.social-link:hover {
    background-color: hsl(var(--primary));
    /* hover:bg-primary */
    transform: translateY(-2px);
}

.footer-bottom {
    padding: 24px 0;
    /* py-6 */
    border-top: 1px solid hsl(0 0% 100% / 0.1);
    /* border-top white/10 */
    color: hsl(0 0% 100% / 0.5);
    /* white/50 */
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    /* text-sm */
    color: hsl(0 0% 100% / 0.5);
    /* white/50 */
}

.footer-legal-links a {
    color: hsl(0 0% 100% / 0.5);
    /* white/50 */
    font-size: 14px;
    /* text-sm */
    transition: var(--transition);
}

.footer-legal-links a:hover {
    color: hsl(var(--primary));
    /* hover:text-primary */
}

.footer-legal-links span {
    color: rgba(255, 255, 255, 0.4);
}

/* Main Content */
main {
    margin-top: 0;
}

/* Section Styles */
/* Section Padding - Reduced spacing between sections */
.section {
    padding: 2.5rem 1rem;
}

@media (min-width: 768px) {
    .section {
        padding: 3rem 2rem;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 3.5rem 4rem;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    /* Reduced to accommodate underline */
    font-size: 2.9375rem;
    /* Increased from 2.875rem (46px → 47px) */
    color: var(--secondary-color);
    font-weight: 400;
    letter-spacing: -0.01em;
    font-family: 'Cormorant Garamond', Georgia, serif;
    position: relative;
}

.section-title+.title-underline {
    margin: 0 auto 2.5rem;
    /* Space after underline */
    display: block;
}

/* Container - max-width: 1400px, margin: auto, padding: 2rem */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Responsive Design */
/* Tablet and Mobile - Hide desktop menu, show hamburger */
@media (max-width: 1024px) {

    /* Hide desktop menu on tablet */
    .main-nav .nav-list {
        display: none;
    }

    /* Show hamburger icon on tablet */
    .mobile-menu-toggle {
        display: flex;
    }
}

/* Responsive Typography - Tablet (768px) */
@media (max-width: 1024px) {

    .hero-main-title,
    .hero-title {
        font-size: 50px;
        /* Increased from 48px */
    }

    .hero-subtitle-text,
    .hero-subtitle {
        font-size: 22px;
        /* Increased from 20px */
    }

    .heading-display,
    .section-title-main {
        font-size: 2rem;
    }

    .heading-section,
    .section-title,
    h2 {
        font-size: 38px;
        /* Increased from 36px */
    }

    h1 {
        font-size: 50px;
        /* Increased from 48px */
    }
}

@media (max-width: 768px) {

    body,
    p,
    .text-body {
        font-size: 22px;
        /* Increased from 20px */
    }

    .heading-display,
    .section-title-main {
        font-size: 1.75rem;
    }

    .heading-section,
    .section-title,
    h2 {
        font-size: 32px;
        /* Increased from 30px */
    }

    h1 {
        font-size: 38px;
        /* Increased from 36px */
    }

    .main-header {
        padding: 6px 0;
        /* Further reduced for mobile */
    }

    .main-header.sticky {
        padding: 4px 0;
        /* Further reduced for mobile */
        background-color: hsl(var(--background));
        /* Ensure white background on scroll */
    }

    .banner-section {
        margin-top: 0;
    }

    .page-hero {
        margin-top: 0;
    }

    .logo-img {
        height: 45px;
    }

    /* Hide desktop menu on mobile/tablet */
    .main-nav .nav-list {
        display: none;
    }

    /* Show hamburger icon */
    .mobile-menu-toggle {
        display: flex;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {

    .header-container,
    .footer-container,
    .container {
        padding: 0 1.25rem;
    }

    body,
    p,
    .text-body {
        font-size: 18px;
        /* lg */
    }

    .hero-main-title,
    .hero-title {
        font-size: 38px;
        /* Increased from 36px */
    }

    .hero-subtitle-text,
    .hero-subtitle {
        font-size: 20px;
        /* Increased from 18px */
    }

    .heading-display,
    .section-title-main {
        font-size: 1.75rem;
    }

    .heading-section,
    .section-title,
    h2 {
        font-size: 32px;
        /* Increased from 30px */
    }

    h1 {
        font-size: 32px;
        /* Increased from 30px */
    }

    .banner-section {
        height: 85vh;
        min-height: 550px;
    }

    .hero-main-title {
        font-size: 2.5rem;
    }

    .hero-subtitle-text {
        font-size: 1.25rem;
    }

    .booking-form-inline {
        padding: 1.5rem;
        gap: 0.75rem;
        flex-direction: column;
    }

    .form-group-inline {
        width: 100%;
    }

    .section-title-main {
        font-size: 2rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Banner Section */
.banner-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
    margin-top: 0;
    z-index: 1;
}

@media (max-width: 768px) {
    .banner-section {
        min-height: 600px;
    }
}

@media (max-width: 480px) {
    .banner-section {
        min-height: 550px;
    }
}

.banner-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

video.banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

iframe.banner-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    /* 16:9 aspect ratio */
    min-height: 100%;
    min-width: 177.78vh;
    /* 16/9 * 100 */
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

/* Specific fix for when the container is tall (Portrait/Mobile) */
@media (max-aspect-ratio: 16/9) {
    iframe.banner-video {
        width: 177.78%;
        height: 100%;
        min-width: 100%;
    }
}

/* Specific fix for when the container is wide (Desktop) */
@media (min-aspect-ratio: 16/9) {
    iframe.banner-video {
        width: 100%;
        height: 56.25vw;
        min-height: 100%;
    }
}

/* Fallback for fixed height containers */
@media (max-height: 800px) {
    iframe.banner-video {
        min-height: 800px;
        min-width: 1422px;
    }
}

/* About Section Styling */
.about-brand-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    color: hsl(var(--primary));
    margin: 2rem 0 1rem;
    font-weight: 500;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.about-sub-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    color: hsl(var(--secondary));
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.about-sub-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: hsl(var(--primary));
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 18px;
}

.about-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: hsl(var(--primary));
}

.banner-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 800ms ease-in-out;
    /* 800ms ease-in-out opacity fade */
    transform: scale(1.1);
    /* Start at scale(1.1) */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: cover;
    animation: zoomIn 8s ease-out;
    /* Zoom from 1.1 to 1 over 8 seconds */
}

.banner-slide.active {
    opacity: 1;
    transform: scale(1);
    /* End at scale(1) */
}

@keyframes zoomIn {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1);
    }
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    /* From rgba(0,0,0,0.4) to rgba(0,0,0,0.2) */
}

.hero-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    text-align: center;
    padding-top: 120px;
}

.hero-main-title {
    font-size: 4.5rem;
    /* 72px desktop */
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: hsl(0 0% 100%);
    /* white */
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    /* 2px letter-spacing */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle-text {
    font-size: 1.25rem;
    /* 20px desktop */
    color: hsla(0, 0%, 100%, 0.8);
    /* white with 80% opacity */
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: hsla(0, 0%, 100%, 0.2);
    /* white/20% */
    border: 1px solid hsl(0 0% 100%);
    /* white border */
    width: 48px;
    /* 48px circular */
    height: 48px;
    /* 48px circular */
    border-radius: 50%;
    /* rounded-full */
    font-size: 1.5rem;
    color: hsl(0 0% 100%);
    /* white */
    cursor: pointer;
    z-index: 10;
    transition: all 300ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.banner-nav:hover {
    background-color: hsla(0, 0%, 100%, 0.3);
    /* white/30% on hover */
}

.banner-nav svg {
    width: 24px;
    height: 24px;
}

@media (min-width: 768px) {
    .banner-nav {
        width: 56px;
        /* md:w-14 */
        height: 56px;
        /* md:h-14 */
    }
}

.banner-nav-left {
    left: 2rem;
    /* 32px desktop */
}

.banner-nav-right {
    right: 2rem;
    /* 32px desktop */
}

/* Mobile Book Button Container - Hidden by default */
.mobile-book-btn-container {
    display: none;
}

/* Booking Section in Banner - Desktop (1024px+) */
@media (min-width: 1024px) {
    .booking-section {
        position: absolute;
        bottom: 120px;
        /* 120px from bottom */
        left: 50%;
        transform: translateX(-50%);
        /* Centered horizontally */
        width: auto;
        max-width: calc(100% - 2rem);
        z-index: 6;
    }

    .booking-form-inline {
        display: flex;
        /* flex row */
        flex-direction: row;
        gap: 16px;
        /* 16px gap */
        align-items: flex-end;
        background-color: hsl(0 0% 100%);
        /* white */
        padding: 24px 32px;
        /* 24px 32px */
        border-radius: 8px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        /* shadow */
    }
}

/* Booking Section - Tablet (768px-1023px) */
@media (max-width: 1023px) {

    /* Banner Title - Responsive Font Size */
    .hero-main-title {
        font-size: 2.5rem !important;
    }

    .hero-subtitle-text {
        font-size: 1rem !important;
    }

    /* Hero Text Overlay - Adjust padding and layout */
    .hero-text-overlay {
        padding-top: 80px;
        padding-bottom: 20px;
    }

    .hero-text-overlay .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* Booking Section - Hidden on mobile/tablet as block is moved */
    .booking-section {
        display: none !important;
    }

    .booking-form-inline {
        display: none !important;
    }

    .mobile-book-btn-container {
        display: flex !important;
        justify-content: center;
        align-items: center;
        width: 100%;
        position: static !important;
        margin-top: 40px;
        z-index: 100 !important;
        pointer-events: auto;
    }

    .btn-mobile-banner-book {
        background-color: hsl(var(--primary)) !important;
        color: hsl(var(--primary-foreground)) !important;
        padding: 12px 32px !important;
        border: none !important;
        border-radius: 4px;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
        font-family: 'Cormorant Garamond', Georgia, serif;
        transition: all 0.3s ease;
        position: relative;
        z-index: 102 !important;
        min-width: 180px;
    }

    .btn-mobile-banner-book:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
    }

    .btn-mobile-banner-book:active {
        transform: translateY(0);
    }
}

@media (min-width: 1024px) {
    .mobile-book-btn-container {
        display: none !important;
    }

    .booking-section {
        position: absolute;
        bottom: 120px;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        max-width: calc(100% - 2rem);
        z-index: 6;
    }
}

.form-group-inline {
    display: flex;
    flex-direction: column;
    /* flex column */
    min-width: 160px;
    /* min-width 160px */
}

.form-group-inline label {
    display: block;
    margin-bottom: 8px;
    /* 8px margin-bottom */
    font-size: 11px;
    /* 11px */
    color: hsl(var(--foreground));
    /* navy color */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* 1px letter-spacing */
}

.form-select-inline,
.form-input-inline {
    width: 100%;
    height: 48px;
    /* height 48px */
    padding: 0 16px;
    /* padding 0 16px */
    border: 1px solid hsl(var(--muted));
    /* 1px cream border */
    border-radius: 4px;
    font-size: 15px;
    /* 15px */
    font-family: 'Cormorant Garamond', Georgia, serif;
    background-color: hsl(0 0% 100%);
    color: hsl(var(--foreground));
    transition: var(--transition);
}

.form-select-inline:focus,
.form-input-inline:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px var(--primary-light);
}

.date-input-wrapper-inline {
    position: relative;
}

.date-input-wrapper-inline input {
    padding-right: 2.5rem;
}

.date-input-wrapper-inline input::-webkit-calendar-picker-indicator {
    display: none !important;
    /* Hide browser default calendar icon */
    opacity: 0;
    cursor: pointer;
}

.date-input-wrapper-inline input[type="date"]::-webkit-inner-spin-button,
.date-input-wrapper-inline input[type="date"]::-webkit-clear-button {
    display: none;
    /* Hide browser default buttons */
}

.date-icon-inline {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    width: 18px;
    height: 18px;
    color: hsl(var(--muted-foreground));
    opacity: 0.7;
    display: block;
    /* Show SVG icon */
}

.btn-book-inline {
    background-color: #6c9a8b;
    /* sage #6c9a8b */
    color: hsl(0 0% 100%);
    /* white */
    padding: 16px 32px;
    /* 16px 32px */
    border: none;
    border-radius: 4px;
    font-size: 12px;
    /* 12px */
    font-family: 'Cormorant Garamond', Georgia, serif;
    cursor: pointer;
    transition: all 300ms ease;
    white-space: nowrap;
    font-weight: 500;
    letter-spacing: 1px;
    /* 1px letter-spacing */
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-book-inline:hover {
    background-color: #5a8577;
    /* darken 10% */
    transform: translateY(-2px);
}

/* Mobile: Button spans full width */
@media (max-width: 1023px) {
    .btn-book-inline {
        grid-column: 1 / -1;
        /* Span full width */
        width: 100%;
    }
}

/* Banner Dots */
.banner-dots {
    position: absolute;
    bottom: 120px;
    /* 120px desktop */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    /* 12px gap between dots */
    z-index: 10;
}

.dot {
    width: 8px;
    /* 8px circles */
    height: 8px;
    /* 8px circles */
    border-radius: 50%;
    /* rounded-full */
    background-color: hsla(0, 0%, 100%, 0.5);
    /* white/50% (inactive) */
    cursor: pointer;
    transition: all 300ms ease;
    border: none;
}

.dot.active {
    width: 8px;
    /* Keep 8px for active */
    height: 8px;
    /* Keep 8px for active */
    border-radius: 50%;
    /* rounded-full */
    background-color: hsl(0 0% 100%);
    /* white 100% (active) */
    transition: all 300ms ease;
}

/* Legacy Section */
.legacy-section {
    background-color: hsl(var(--muted));
    /* bg-muted (light sage) */
}

.legacy-title {
    text-align: center;
    font-size: 2rem;
    /* Further reduced from 2.25rem */
    color: hsl(var(--foreground));
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* Divider Lines - w-16 (64px) or w-24 (96px), h-0.5 (2px), bg-primary, mx-auto or left-aligned */
.title-underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    /* w-16 */
    height: 2px;
    /* h-0.5 */
    background-color: hsl(var(--primary));
    /* bg-primary */
    margin: 0 auto;
    /* mx-auto */
}

.title-underline.left {
    left: 0;
    transform: none;
    /* left-aligned */
    width: 96px;
    /* w-24 */
    height: 3px;
    background-color: var(--primary-color);
}

.legacy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.legacy-content p {
    font-size: 1.15rem;
    /* Increased slightly */
    line-height: 1.8;
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.contact-details-text {
    text-align: left !important;
}

/* Section Header with Small Label */
.section-header-small {
    text-align: center;
    margin-bottom: 2rem;
}

.section-label {
    display: block;
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.section-title-main {
    font-size: 2.25rem;
    color: var(--secondary-color);
    font-weight: 400;
    letter-spacing: -0.01em;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

/* Welcome Section */
.welcome-section {
    background-color: hsl(var(--background));
    /* bg-background (white) */
}

.welcome-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.welcome-text {
    font-size: 1.125rem;
    /* Reduced from 1.3125rem */
    line-height: 1.75;
    color: hsl(var(--muted-foreground));
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

/* Immaculate Design Section */
.immaculate-design-section {
    background-color: hsl(153 33% 51% / 0.06);
    /* sage-tint-bg (sage 6% opacity) */
}

/* Why Choose Section */
.why-choose-section {
    background-color: hsl(153 33% 51% / 0.06);
    /* sage-tint-bg */
}

.why-choose-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.why-choose-features {
    display: flex;
    flex-direction: column;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 2rem;
}

/* Feature Cards (Why Choose) - Background: white, Padding: p-6 (24px), Border-radius: rounded-sm (4px), Shadow: shadow-soft → shadow-medium on hover, Hover: translate-y -4px, 300ms transition */
.why-choose-card {
    text-align: center;
    padding: 24px;
    /* p-6 */
    background-color: hsl(var(--background));
    /* white */
    border-radius: 4px;
    /* rounded-sm */
    box-shadow: var(--shadow-soft);
    transition: all 300ms ease;
}

.why-choose-card:hover {
    transform: translateY(-4px);
    /* translate-y -4px */
    box-shadow: var(--shadow-medium);
    /* shadow-medium on hover */
}

.why-choose-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.why-choose-title {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    font-weight: 500;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.why-choose-description {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.why-choose-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose-image .image-carousel {
    aspect-ratio: 4 / 3;
    /* aspect-[4/3] */
}

.section-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-split.reverse {
    direction: rtl;
}

.section-split.reverse>* {
    direction: ltr;
}

.section-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Zig-Zag Sections */
.zigzag-section {
    padding: 2.5rem 0;
}

.zigzag-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.zigzag-content .section-title-main {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.zigzag-content .intro-text {
    font-size: 1rem;
    line-height: 1.7;
    color: hsl(var(--muted-foreground));
}

.zigzag-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
}

.zigzag-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.zigzag-image .image-carousel {
    height: 100%;
    width: 100%;
}

.zigzag-image .carousel-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.zigzag-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .section-split {
        gap: 3rem;
    }

    .zigzag-content .section-title-main {
        font-size: 1.75rem;
    }
}

/* Rooms Editorial Gallery */
.rooms-editorial-gallery {
    display: grid;
    grid-template-columns: 0.65fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.room-hero-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 5;
}

.room-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Room Card Image Overlay */
.room-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.room-card-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.room-card:hover .room-card-image-overlay {
    opacity: 1;
}

.room-card-image-overlay-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
}

.room-card-image-overlay-btn:hover {
    background: rgba(255, 255, 255, 1);
}

@media (max-width: 1024px) {
    .room-card-image-overlay {
        opacity: 1;
    }
}

.room-supporting-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.room-support-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4 / 3;
}

.room-support-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-support-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .rooms-editorial-gallery {
        grid-template-columns: 1fr;
    }

    .room-supporting-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-split.reverse {
        direction: ltr;
    }

    .zigzag-section {
        padding: 3rem 0;
    }

    .zigzag-image {
        order: -1;
        margin-bottom: 1.5rem;
    }

    .zigzag-content .section-title-main {
        font-size: 1.5rem;
    }

    .zigzag-content .intro-text {
        font-size: 0.9375rem;
    }

    .room-supporting-images {
        grid-template-columns: 1fr;
    }

    /* Signature Spaces responsive */
    section>.container>div[style*="grid-template-columns: repeat(3"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* Experience Highlight responsive */
    section[style*="padding: 0"] .container>div[style*="height: 500px"] {
        height: 350px !important;
    }

    section[style*="padding: 0"] h2 {
        font-size: 2rem !important;
    }

    section[style*="padding: 0"] p {
        font-size: 1rem !important;
    }
}

.image-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    /* aspect-[4/3] */
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 700ms ease, transform 700ms ease;
    /* opacity 700ms + scale */
    transform: scale(1.05);
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: hsl(0 0% 100% / 0.9);
    /* bg-white/90 */
    border: none;
    width: 48px;
    /* w-12 */
    height: 48px;
    /* h-12 */
    border-radius: 50%;
    font-size: 1.5rem;
    color: hsl(var(--foreground));
    cursor: pointer;
    z-index: 10;
    transition: all 300ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    /* shadow-medium */
}

.carousel-nav:hover {
    background-color: hsl(0 0% 100%);
    transform: translateY(-50%) scale(1.05);
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

.section-content {
    padding: 2rem 0;
}

.section-heading {
    font-size: 2.5rem;
    margin-bottom: 1.75rem;
    color: var(--secondary-color);
    font-weight: 300;
    letter-spacing: -0.01em;
}

.section-description {
    font-size: 1.1875rem;
    line-height: 1.85;
    margin-bottom: 2.25rem;
    color: var(--text-dark);
}

.feature-list {
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 1.0625rem;
    line-height: 1.7;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
    color: var(--primary-color);
    font-weight: bold;
    width: 24px;
    text-align: center;
}

/* Properties Section */
.properties-section {
    background-color: hsl(var(--muted) / 0.3);
}

.properties-description {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Cormorant Garamond', serif;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.property-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.btn-book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    filter: brightness(1.1);
}

.btn-book-now:active {
    transform: translateY(0);
}

/* Specific hover for SEND INQUIRY button */
#inquiry-btn:hover {
    background: #253b59 !important;
    border-color: #253b59 !important;
}

.property-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: white;
}

.property-name {
    font-size: 1.5rem;
    color: hsl(var(--secondary));
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

.property-description {
    font-size: 1rem;
    line-height: 1.6;
    color: hsl(var(--muted-foreground));
    font-family: 'Cormorant Garamond', serif;
    margin: 0;
}

/* Weather Overlay Styles */
.weather-overlay {
    position: absolute;
    bottom: 120px;
    /* Aligned with booking section */
    right: 40px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 15px 25px;
    border-radius: 12px;
    color: white;
    z-index: 15;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 1s ease-out;
}

.weather-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.weather-location {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

.weather-condition {
    font-size: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
}

/* Dynamic Weather Backgrounds */
.weather-overlay.weather-sunny {
    background: linear-gradient(135deg, rgba(255, 198, 0, 0.4), rgba(255, 100, 0, 0.3));
    border-color: rgba(255, 200, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.2);
}

.weather-overlay.weather-cloudy {
    background: linear-gradient(135deg, rgba(200, 200, 200, 0.3), rgba(100, 100, 100, 0.4));
    border-color: rgba(255, 255, 255, 0.2);
}

.weather-overlay.weather-rain {
    background: linear-gradient(135deg, rgba(50, 50, 150, 0.4), rgba(20, 20, 80, 0.5));
    border-color: rgba(100, 100, 255, 0.2);
}

/* Weather Animation Container */
.weather-anim-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    z-index: -1;
    pointer-events: none;
}

/* Sun Glow Animation */
.sun-glow {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 255, 200, 0.8) 0%, rgba(255, 150, 0, 0) 70%);
    border-radius: 50%;
    animation: sunPulse 4s infinite ease-in-out;
}

@keyframes sunPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.9;
    }
}

/* Rain Animation */
.rain-drop {
    position: absolute;
    top: -10%;
    width: 1px;
    height: 15px;
    background: rgba(255, 255, 255, 0.6);
    animation: rainFall 1s linear infinite;
}

@keyframes rainFall {
    to {
        transform: translateY(150px);
    }
}

/* Cloud Animation */
.cloud-anim {
    position: absolute;
    width: 60px;
    height: 20px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    filter: blur(5px);
    animation: cloudMove 10s linear infinite;
}

@keyframes cloudMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(150%);
    }
}

@media (max-width: 1023px) {
    .properties-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .weather-overlay {
        bottom: 120px;
        right: 20px;
        padding: 10px 15px;
    }

    .weather-condition {
        font-size: 16px;
    }
}

/* Booking Modal & Inquiry Modal */
.booking-modal,
.inquiry-modal {
    position: fixed;
    inset: 0;
    /* top: 0, left: 0, right: 0, bottom: 0 */
    z-index: 60;
    /* z-[60] */
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    /* p-4 */
}

.booking-modal.active,
.inquiry-modal.active {
    display: flex;
    z-index: 3000;
    /* Higher z-index to appear above menu */
    pointer-events: auto;
    /* Ensure modal is interactive */
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background-color: hsl(var(--secondary) / 0.8);
    /* secondary/80 */
    backdrop-filter: blur(4px);
    /* backdrop-blur-sm */
    pointer-events: auto;
    /* Ensure overlay is clickable */
    z-index: 3001;
    /* Above modal content */
}

.modal-content {
    position: relative;
    background-color: hsl(var(--background));
    /* white */
    border-radius: 4px;
    /* rounded-sm */
    box-shadow: var(--shadow-strong);
    max-width: 512px;
    /* max-w-md */
    z-index: 3002;
    /* Above overlay */
    pointer-events: auto;
    /* Ensure content is interactive */
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background-color: hsl(var(--secondary) / 0.8);
    /* secondary/80 */
    backdrop-filter: blur(4px);
    /* backdrop-blur-sm */
}

.modal-content {
    position: relative;
    background-color: hsl(var(--background));
    /* white */
    border-radius: 4px;
    /* rounded-sm */
    box-shadow: var(--shadow-strong);
    max-width: 512px;
    /* max-w-md */
    width: 100%;
    padding: 32px;
    /* p-8 */
    max-height: 90vh;
    overflow-y: auto;
    z-index: 3001;
    /* Higher z-index */
    animation: scaleIn 0.2s ease-out;
    /* animate-scale-in */
}

@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        padding: 24px;
        margin: 1rem;
    }
}

.modal-content.large {
    max-width: 672px;
    /* max-w-lg */
}

.modal-close {
    position: absolute;
    top: 16px;
    /* top-4 */
    right: 16px;
    /* right-4 */
    background: none;
    border: none;
    font-size: 24px;
    /* w-6 h-6 equivalent */
    color: hsl(var(--muted-foreground));
    /* muted-foreground */
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease;
    line-height: 1;
}

.modal-close:hover {
    color: hsl(var(--foreground));
    /* hover:text-secondary */
}

.modal-title {
    font-size: 2.125rem;
    /* Increased from 2rem (32px → 34px) */
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    /* Increased from 1rem (16px → 18px) */
    color: var(--secondary-color);
    font-weight: 500;
}

.form-select,
.form-input {
    width: 100%;
    height: 48px;
    /* h-12 */
    padding: 0 16px;
    /* px-4 */
    border: none;
    /* border-0 */
    border-radius: 4px;
    font-size: 16px;
    /* base */
    font-family: 'Cormorant Garamond', Georgia, serif;
    background-color: hsl(var(--muted));
    /* light sage */
    color: hsl(var(--foreground));
    /* navy */
    transition: all 300ms ease;
    appearance: none;
    /* for selects */
    cursor: pointer;
    /* for selects */
}

/* Modal form inputs - h-14 (56px) */
.modal-content .form-input,
.modal-content .form-select {
    height: 56px;
    /* h-14 */
}

.form-select:focus,
.form-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px hsl(var(--ring));
    /* ring-2 ring-primary */
}

/* Custom chevron for selects */
.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231b2b42' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.date-input-wrapper {
    position: relative;
}

.date-input-wrapper input {
    padding-right: 2.5rem;
}

.date-icon {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    width: 18px;
    height: 18px;
    color: hsl(var(--muted-foreground));
    opacity: 0.7;
}

/* Hide default browser date picker icons */
input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Booking form submit button - Enhanced design */
.booking-form .btn-submit,
.inquiry-form .btn-submit {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    padding: 16px 32px;
    /* Increased padding for better appearance */
    border: none;
    border-radius: 6px;
    /* Slightly more rounded */
    font-size: 16px;
    /* Increased from 14px */
    font-weight: 600;
    /* Bolder text */
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 300ms ease;
    font-family: 'Cormorant Garamond', Georgia, serif;
    margin-top: 1.5rem;
    width: 100%;
    box-shadow: 0 4px 12px hsl(var(--primary) / 0.3);
    /* Add shadow for depth */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.booking-form .btn-submit:hover,
.inquiry-form .btn-submit:hover {
    background-color: hsl(var(--secondary));
    transform: translateY(-2px);
    box-shadow: 0 6px 16px hsl(var(--secondary) / 0.4);
    /* Enhanced shadow on hover */
}

/* Legacy btn-submit fallback */
.btn-submit:not(.booking-form .btn-submit):not(.inquiry-form .btn-submit):not(.contact-form-new .btn-submit) {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 300ms ease;
    font-family: 'Cormorant Garamond', Georgia, serif;
    margin-top: 1rem;
}

.btn-submit:not(.booking-form .btn-submit):not(.inquiry-form .btn-submit):not(.contact-form-new .btn-submit):hover {
    background-color: hsl(var(--secondary));
    transform: translateY(-2px);
}

/* Responsive Styles for Home Page */
@media (max-width: 1024px) {
    .section-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-form-inline {
        flex-direction: column;
    }

    .form-group-inline {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .banner-section {
        height: 70vh;
        min-height: 500px;
    }

    .banner-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .banner-nav-left {
        left: 1rem;
    }

    .banner-nav-right {
        right: 1rem;
    }

    .banner-section {
        overflow: hidden;
        /* Contain booking section */
        position: relative;
    }

    .booking-section {
        position: absolute;
        /* Keep absolute for proper positioning */
        bottom: 80px;
        /* 80px from bottom on mobile */
        left: 0;
        right: 0;
        width: 100%;
        padding: 0 1rem;
        z-index: 5;
        /* Below header (header is z-index 1000) */
        top: auto;
        /* Prevent positioning above banner */
        display: block;
        /* Ensure it's visible */
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        /* Ensure no transform issues */
    }

    .booking-form-inline {
        padding: 1.5rem;
        grid-template-columns: 1fr;
        /* Single column on mobile */
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .properties-grid {
        grid-template-columns: 1fr;
    }

    .image-carousel {
        height: 300px;
    }

    .section-heading {
        font-size: 1.75rem;
    }

    .modal-content {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Page Hero Section */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    margin-top: 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(27, 43, 66, 0.6), rgba(27, 43, 66, 0.8));
}

/* Remove green line at bottom of banner */
.page-hero::after {
    display: none !important;
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    z-index: 2;
    padding-top: 80px;
    /* Move content down to avoid sub-menu overlap */
}

.hero-title {
    font-size: 3.75rem;
    margin-bottom: 1.25rem;
    color: var(--white);
    font-weight: 300;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.625rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    letter-spacing: 0.01em;
}

/* Content Intro */
.content-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    /* Reduced from 3rem */
}

.content-intro .title-underline {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Venues Grid */
/* Meeting Image Grid - Two Column Layout */
.meeting-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.meeting-image-large {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
}

.meeting-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.meeting-image-stack {
    display: flex;
    /* flex-direction: column; */
    gap: 2rem;
}

.meeting-image-top,
.meeting-image-bottom {
    width: 100%;
    flex: 1;
    min-height: 240px;
}

.meeting-image-top img,
.meeting-image-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .meeting-image-grid {
        grid-template-columns: 1fr;
    }

    .meeting-image-large {
        aspect-ratio: 4 / 3;
    }

    .meeting-image-top,
    .meeting-image-bottom {
        min-height: 200px;
    }
}

/* Member Promo Section */
.member-promo-section {
    background-color: #f5f5f0;
    /* Light cream/off-white background */
    padding: 4rem 0;
}

.member-promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.member-promo-content {
    padding: 2rem;
}

.member-promo-title {
    font-size: 2.5rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.member-promo-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: hsl(var(--foreground) / 0.8);
    margin-bottom: 2rem;
}

.btn-member-promo {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 300ms ease;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.btn-member-promo:hover {
    background-color: hsl(var(--secondary));
    transform: translateY(-2px);
}

.member-promo-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.member-promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .member-promo-grid {
        grid-template-columns: 1fr;
    }

    .member-promo-image {
        min-height: 300px;
    }
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Venue Cards - Background: white, Border-radius: rounded-sm, Shadow: shadow-soft → shadow-medium on hover, Image aspect: 4/3, Feature list: dot indicators w-1.5 h-1.5 bg-primary */
.venue-card {
    background-color: hsl(var(--background));
    /* white */
    border-radius: 4px;
    /* rounded-sm */
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 300ms ease;
}

.venue-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    /* shadow-medium on hover */
}

.venue-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    /* aspect-[4/3] */
    overflow: hidden;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.venue-card:hover .venue-image img {
    transform: scale(1.1);
}

.venue-content {
    padding: 2rem;
}

.venue-name {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
    color: var(--secondary-color);
    font-weight: 300;
    letter-spacing: -0.01em;
}

.venue-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.venue-features {
    list-style: none;
}

.venue-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.venue-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    /* w-1.5 */
    height: 6px;
    /* h-1.5 */
    border-radius: 50%;
    background-color: hsl(var(--primary));
    /* bg-primary */
}

/* Services Section */
.services-section {
    background-color: var(--primary-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 10px;
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-item p {
    color: var(--text-light);
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-cta {
    display: inline-block;
    background-color: var(--white);
    color: var(--secondary-color);
    padding: 1rem 3rem;
    border-radius: 5px;
    font-size: 1.125rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    transition: var(--transition);
    font-weight: 500;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Offers Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Offer Cards - Border: 1px border-border, Background: white, Shadow: shadow-soft → shadow-medium on hover, Discount badge: absolute top-4 right-4, bg-primary, px-4 py-2 */
.offer-card {
    background-color: hsl(var(--background));
    /* white */
    border: 1px solid hsl(var(--border));
    /* border-border */
    border-radius: 4px;
    /* rounded-sm */
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 300ms ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    /* shadow-medium on hover */
}

.offer-badge {
    position: absolute;
    top: 16px;
    /* top-4 */
    right: 16px;
    /* right-4 */
    background-color: hsl(var(--primary));
    /* bg-primary */
    padding: 8px 16px;
    /* px-4 py-2 */
    border-radius: 4px;
    color: hsl(var(--primary-foreground));
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
}

.offer-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.offer-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.offer-title {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
    color: var(--secondary-color);
    font-weight: 300;
    letter-spacing: -0.01em;
}

.offer-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    flex: 1;
}

.offer-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.offer-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.offer-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.offer-price {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--primary-light);
    border-radius: 5px;
}

.price-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.price-period {
    font-size: 1rem;
    color: var(--text-light);
    margin-left: 0.5rem;
}

.btn-offer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.125rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.btn-offer:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Terms Section */
.terms-section {
    background-color: var(--primary-light);
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.terms-list {
    list-style: none;
}

.terms-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.terms-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Contact Page */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.contact-icon-large {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.contact-text p {
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

.social-section {
    margin-top: 2rem;
}

.social-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link-large {
    display: inline-block;
    padding: 0.75rem 1rem;
    background-color: var(--primary-light);
    border-radius: 5px;
    transition: var(--transition);
    color: var(--text-dark);
}

.social-link-large:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    background-color: var(--white);
    color: var(--text-dark);
    resize: vertical;
}

/* Map Section */
.map-section {
    background-color: var(--primary-light);
    padding: 3rem 0;
}

.map-placeholder {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--white);
    border-radius: 10px;
    color: var(--text-light);
}

.map-note {
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Policy Page */
.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--primary-light);
}

.policy-section:last-of-type {
    border-bottom: none;
}

.policy-title {
    font-size: 2.25rem;
    margin-bottom: 1.75rem;
    color: var(--secondary-color);
    font-weight: 300;
    letter-spacing: -0.01em;
}

.policy-list {
    list-style: none;
}

.policy-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    font-size: 1.125rem;
    line-height: 1.7;
}

.policy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.policy-note {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--primary-light);
    border-radius: 10px;
    text-align: center;
}

.policy-note p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.btn-contact {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-size: 1.125rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    transition: var(--transition);
}

.btn-contact:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Responsive for Additional Pages */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .venues-grid,
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 40vh;
        min-height: 300px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .venues-grid,
    .offers-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-title {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* Page Hero Styles */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
    margin-top: 0;
    /* Ensure no top margin */
}

/* Offers, Contact, Policy pages - h-[50vh] min-h-[400px] */
.page-hero.hero-offers,
.page-hero.hero-contact,
.page-hero.hero-policy,
.page-hero:not(.banner-section) {
    height: 50vh;
    min-height: 400px;
    margin-top: 0;
    /* No margin for sub-pages */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, hsl(var(--secondary) / 0.6), hsl(var(--secondary) / 0.3), hsl(var(--secondary) / 0.7));
    /* from-secondary/60 via-secondary/30 to-secondary/70 */
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    color: var(--white);
    padding-top: 200px;
    /* Increased to fully clear ~166px header + sub-menu */
}

@media (max-width: 1024px) {
    .hero-content {
        padding-top: 180px;
        /* Increased for mobile/tablet */
    }
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
}

/* Venues Section */
.venues-section {
    background-color: var(--sage-light);
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.venue-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.venue-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.venue-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.venue-card:hover .venue-image img {
    transform: scale(1.1);
}

.venue-content {
    padding: 2rem;
}

.venue-name {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.venue-specs {
    margin-bottom: 1rem;
}

.venue-specs p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: var(--text-light);
}

.venue-features {
    list-style: none;
    padding: 0;
}

.venue-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.9375rem;
}

.venue-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    /* w-1.5 */
    height: 6px;
    /* h-1.5 */
    border-radius: 50%;
    background-color: hsl(var(--primary));
    /* bg-primary */
}

/* Amenities Grid */
.amenities-title {
    text-align: center;
    margin-bottom: 1rem;
    color: #4a8a7e;
    /* Dark teal */
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
}

.amenities-underline {
    width: 80px;
    height: 2px;
    background-color: #4a8a7e;
    /* Dark teal */
    margin: 0 auto 3rem;
    display: block;
}

/* Refined Luxury Amenities Grid - Global Residency Style */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (max-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }
}

@media (max-width: 480px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }
}

/* Update SVG icon colors in amenities to use CSS variables */
.amenity-icon svg path,
.amenity-icon svg circle,
.amenity-icon svg rect,
.amenity-icon svg line,
.amenity-icon svg polyline {
    stroke: hsl(var(--muted-foreground));
    transition: stroke 0.2s ease;
}

.amenity-card:hover .amenity-icon svg path,
.amenity-card:hover .amenity-icon svg circle,
.amenity-card:hover .amenity-icon svg rect,
.amenity-card:hover .amenity-icon svg line,
.amenity-card:hover .amenity-icon svg polyline {
    stroke: hsl(var(--primary));
}

.amenity-icon svg path[fill],
.amenity-icon svg circle[fill] {
    fill: hsl(var(--muted-foreground));
    transition: fill 0.2s ease;
}

.amenity-card:hover .amenity-icon svg path[fill],
.amenity-card:hover .amenity-icon svg circle[fill] {
    fill: hsl(var(--primary));
}

.amenity-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: transparent;
    border: 1px solid hsl(var(--border));
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

.amenity-card:hover {
    border-color: hsl(var(--primary));
    background: hsl(var(--muted) / 0.3);
}

.amenity-icon {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    opacity: 0.8;
}

.amenity-icon svg {
    width: 100%;
    height: 100%;
}

.amenity-icon svg path,
.amenity-icon svg circle,
.amenity-icon svg rect {
    stroke: hsl(var(--muted-foreground));
    transition: stroke 0.2s ease;
}

.amenity-card:hover .amenity-icon svg path,
.amenity-card:hover .amenity-icon svg circle,
.amenity-card:hover .amenity-icon svg rect {
    stroke: hsl(var(--primary));
}

.amenity-title {
    font-size: 0.875rem;
    color: hsl(var(--foreground));
    font-weight: 400;
    font-family: 'Cormorant Garamond', Georgia, serif;
    margin: 0;
    text-align: center;
    letter-spacing: 0.02em;
}

/* CTA Section */
.cta-section {
    background-color: #f5f5f0;
    /* Neutral cream/off-white professional color */
    color: hsl(var(--foreground));
    /* Changed text color to navy */
    padding: 4rem 0;
    /* Reduced padding */
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: hsl(var(--foreground));
    /* Changed to navy */
    font-weight: 300;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: hsl(var(--muted-foreground));
    /* Changed to muted text */
}

.btn-cta {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 300ms ease;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.btn-cta:hover {
    background-color: hsl(var(--gold));
    transform: translateY(-2px);
}

/* Inquiry Modal */
/* Inquiry modal uses same styles as booking-modal */

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-textarea {
    width: 100%;
    padding: 12px 16px;
    /* px-4 py-3 */
    border: none;
    border-radius: 4px;
    font-size: 16px;
    /* base */
    font-family: 'Cormorant Garamond', Georgia, serif;
    background-color: hsl(var(--muted));
    /* muted background */
    color: hsl(var(--foreground));
    transition: all 300ms ease;
    resize: none;
    /* resize-none */
    min-height: 120px;
    /* 4-5 rows */
}

.form-textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px hsl(var(--ring));
    /* ring-2 ring-primary */
}

/* Offers Page Styles */
.offers-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.offer-card-new {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.offer-card-new:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.offer-image-new {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.offer-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.offer-card-new:hover .offer-image-new img {
    transform: scale(1.1);
}

.offer-badge-new {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.offer-content-new {
    padding: 2rem;
}

.offer-icon-new {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.offer-title-new {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.offer-description-new {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.offer-validity {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.offer-terms {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.offer-terms li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.9375rem;
}

.offer-terms li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.btn-offer-new {
    width: 100%;
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 300ms ease;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.btn-offer-new:hover {
    background-color: hsl(var(--secondary));
    transform: translateY(-2px);
}

/* CTA Banner Section */
.cta-banner-section {
    background-color: var(--sage-light);
    padding: 4rem 0;
}

.cta-banner-card {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-strong);
}

.cta-banner-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 300;
}

.cta-banner-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-banner-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-cta-banner {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 300ms ease;
    font-family: 'Cormorant Garamond', Georgia, serif;
    box-shadow: var(--shadow-medium);
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-cta-banner:hover {
    background-color: hsl(var(--gold));
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

/* Contact Page Styles */
.contact-wrapper-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form-column,
.contact-info-column {
    display: flex;
    flex-direction: column;
}

.contact-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    color: #333333;
    /* Dark grey */
    margin-bottom: 0.5rem;
    text-align: left;
    position: relative;
    display: inline-block;
}

.contact-underline {
    width: 80px;
    height: 2px;
    background-color: #5fa092;
    /* Muted green */
    margin: 0.5rem 0 1.5rem 0;
    display: block;
    left: auto;
    transform: none;
    position: relative;
    /* Fix positioning */
    top: 0;
}

.contact-title+.contact-underline {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.contact-intro-text {
    font-size: 0.9375rem;
    /* 15px */
    color: #666666;
    /* Lighter grey */
    margin-bottom: 2rem;
    line-height: 1.6;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-input {
    background-color: #eef5f3 !important;
    /* Light green/mint */
    border: none !important;
    color: #666666 !important;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.contact-input::placeholder {
    color: #999999 !important;
}

.contact-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #5fa092;
}

.contact-submit-btn {
    background-color: #5fa092 !important;
    color: white !important;
    padding: 12px 32px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 300ms ease;
    font-family: 'Cormorant Garamond', Georgia, serif;
    margin-top: 0.5rem;
}

.contact-submit-btn:hover {
    background-color: #4a8a7e !important;
    transform: translateY(-2px);
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 0;
}

.contact-info-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #eef5f3;
    /* Light green/mint */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon-circle svg {
    width: 24px;
    height: 24px;
}

.contact-info-icon {
    display: none;
    /* Hide old emoji icon */
}

.contact-info-content {
    text-align: left;
}

.contact-info-content h3 {
    font-size: 1rem;
    /* 16px */
    margin-bottom: 0.25rem;
    color: #333333;
    /* Dark grey */
    font-weight: 500;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.contact-info-content p {
    color: #666666;
    /* Lighter grey */
    margin-bottom: 0;
    font-size: 0.9375rem;
    /* 15px */
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.contact-map {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    position: relative;
}

.contact-map iframe {
    border-radius: 8px;
}

.properties-contact-section {
    background-color: var(--sage-light);
    padding: 4rem 0;
}

.properties-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.property-contact-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 300ms ease;
}

.property-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.property-contact-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.property-contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 700ms ease;
}

.property-contact-card:hover .property-contact-image img {
    transform: scale(1.1);
}

.property-contact-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.property-contact-info {
    display: block;
    visibility: visible;
}

.property-contact-name {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.property-contact-info p {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.property-contact-info strong {
    color: var(--secondary-color);
}

/* Contact form submit button */
.contact-form-new .btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 300ms ease;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.contact-form-new .btn-submit:hover {
    background-color: hsl(var(--secondary));
    transform: translateY(-2px);
}

/* Policy Page Styles */
.policy-content-section {
    padding: 4rem 0;
}

.policy-container {
    max-width: 1200px;
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-light);
}

.policy-section:last-of-type {
    border-bottom: none;
}

.policy-section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 300;
}

.policy-section-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-light);
}

.policy-section-content p {
    margin-bottom: 1rem;
}

.policy-section-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-section-content li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.policy-cta-section {
    background-color: var(--sage-light);
    padding: 4rem 0;
}

.policy-cta-card {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    max-width: 800px;
    margin: 0 auto;
}

.policy-cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 300;
}

.policy-cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

/* Responsive Styles */
@media (max-width: 1024px) {

    .venues-grid,
    .offers-grid-new,
    .properties-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .amenity-card {
        padding: 1.75rem 1.25rem;
    }

    .contact-wrapper-new {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-title {
        font-size: 2.25rem;
    }

    .contact-underline {
        width: 60px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-grid-wrapper {
        grid-template-columns: 1fr;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .venues-grid,
    .offers-grid-new,
    .properties-contact-grid {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .amenity-card {
        padding: 1.5rem 1rem;
    }

    .amenity-icon {
        width: 40px;
        height: 40px;
    }

    .booking-form-inline {
        grid-template-columns: 1fr;
        /* Single column on mobile */
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-wrapper-new {
        gap: 2rem;
    }

    .contact-info-card {
        gap: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-banner-buttons {
        flex-direction: column;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .properties-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Contextual Footer Backgrounds */
.main-footer.footer-yercaud {
    background-image: linear-gradient(rgba(27, 43, 66, 0.9), rgba(27, 43, 66, 0.9)), url('../../images/footerbg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.main-footer.footer-kodai {
    background-image: linear-gradient(rgba(27, 43, 66, 0.9), rgba(27, 43, 66, 0.9)), url('../../images/banner/1769766981.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.main-footer.footer-aradhana {
    background-image: linear-gradient(rgba(27, 43, 66, 0.9), rgba(27, 43, 66, 0.9)), url('../../images/banner/1769762141.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .offer-price {
        text-align: center;
    }

    .banner-section {
        height: 60vh;
        min-height: 800px;
    }

    .banner-section {
        overflow: hidden;
        /* Contain booking section */
        position: relative;
    }

    .booking-section {
        display: none !important;
    }

    .booking-form-inline {
        grid-template-columns: 1fr;
        padding: 1.25rem;
        margin: 0;
        width: 100%;
    }

    .banner-dots {
        bottom: 1rem;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .page-hero {
        height: 50vh;
        min-height: 400px;
    }

    .contact-title {
        font-size: 1.75rem;
    }

    .contact-intro-text {
        font-size: 0.875rem;
    }

    .contact-info-icon-circle {
        width: 40px;
        height: 40px;
    }

    .contact-info-icon-circle svg {
        width: 20px;
        height: 20px;
    }

    .header-container {
        padding: 0.75rem 1.25rem;
    }
}

/* Checkmark Circles - w-6 h-6 (24px), rounded-full, bg-primary, w-4 h-4 Check icon, white */
.checkmark-circle {
    width: 24px;
    /* w-6 */
    height: 24px;
    /* h-6 */
    border-radius: 50%;
    /* rounded-full */
    background-color: hsl(var(--primary));
    /* bg-primary */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.checkmark-circle svg,
.checkmark-circle .check-icon {
    width: 16px;
    /* w-4 */
    height: 16px;
    /* h-4 */
    color: hsl(0 0% 100%);
    /* white */
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: hsl(var(--muted));
}

::-webkit-scrollbar-thumb {
    background: hsl(var(--primary));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: hsl(var(--secondary));
}

.section-title {
    font-size: 2rem;
}

.cta-title,
.policy-cta-title {
    font-size: 2rem;
}

@media (max-width: 480px) {
    #mobile-nav-list .nav-link {
        font-size: 14px;
    }
}

/* Sticky Social Media Sidebar */
.sticky-social-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0;
    background-color: hsl(var(--secondary));
    border-radius: 8px 0 0 8px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: hsl(0 0% 100%);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon.facebook:hover {
    background-color: #3b5998;
}

.social-icon.instagram:hover {
    background-color: #e1306c;
}

.social-icon.x-twitter:hover {
    background-color: #000000;
}

.social-icon.youtube:hover {
    background-color: #ff0000;
}

/* Cleaned up duplicate banner styles */

/* Mobile Responsiveness for Social Icons */
@media (max-width: 768px) {
    .sticky-social-sidebar {
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        transform: none;
        flex-direction: row;
        justify-content: center;
        border-radius: 0;
        width: 100%;
        background-color: hsl(var(--secondary) / 0.95);
        backdrop-filter: blur(5px);
    }

    .social-icon {
        width: 100%;
        height: 44px;
    }

    .social-icon:hover {
        transform: none;
        width: 100%;
        background-color: hsl(var(--primary));
    }
}

/* Mobile Header Alignment Fixes */
@media (max-width: 991px) {
    .site-header {
        padding: 10px 0;
    }

    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo-container {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        max-width: 80%;
        /* Ensure space for menu toggle */
    }

    .logo-img {
        height: 80px;
        /* Adjust as needed */
        width: auto;
    }

    .blinking-hotel-name.mobile-only {
        display: inline-block !important;
        font-size: 0.9rem;
        /* Smaller font for mobile */
        margin-left: 8px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1;
        margin-top: 0;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-left: auto;
        /* Push to right */
    }
}

/* =========================================
   Venues Grid – Meetings & Events Page
   ========================================= */
.venues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.venues-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.venue-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 300ms ease, box-shadow 300ms ease;
}

.venue-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}

.venue-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 600ms ease;
}

.venue-card:hover .venue-image img {
    transform: scale(1.08);
}

.venue-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.venue-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 0.03em;
    line-height: 1.4;
    margin: 0;
}

.venue-description {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

/* Responsive overrides for 4-column grid */
@media (max-width: 1200px) {
    .venues-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .venues-grid,
    .venues-grid-4,
    .offers-grid-new,
    .properties-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .venues-grid,
    .venues-grid-4,
    .offers-grid-new,
    .properties-contact-grid {
        grid-template-columns: 1fr;
    }
}