/* BODHI LUXURY THEME - SENIOR FRONTEND */
html,
body {
    width: 100%;
    max-width: 100%;
    /* Ensures body never exceeds screen width */
    overflow-x: hidden;
    /* Cuts off anything sticking out (menu/rows) */
    position: relative;
    /* Stabilizes layout */
    margin: 0;
    padding: 0;
}

:root {
    /* Refined Luxury Palette */
    --color-forest: #25241c;
    --color-forest-dark: #25241c;
    --color-gold: #bea733;
    --color-gold-deep: #C9A84C;
    /* WCAG AA compliant on light backgrounds */
    --color-gold-soft: #F5E6B3;
    --color-cream: #F5F5F5;
    --color-white: #ffffff;
    --color-text: #1A1A1A;
    /* Darker for better legibility */
    --color-text-muted: #25241c;
    --color-heading: #0A0A0A;
    /* Spa / wellness accent - used sparingly for anything tied to the spa,
       sauna, or rooftop pool (Bodhi Suites is a hotel AND spa, this gives
       that half of the brand its own quiet identity instead of borrowing gold) */
    --color-sage: #6B6B6B;
    --color-sage-soft: #EDEDED;

    /* Typography */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Manrope', sans-serif;
    --fs-base: 1rem;
    --fs-sm: 0.875rem;
    --fs-xs: 0.75rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.25rem;
    --fs-h1: clamp(2.5rem, 8vw, 5rem);
    --fs-h2: clamp(2rem, 5vw, 3.5rem);
    --fs-h3: clamp(1.5rem, 3vw, 2.25rem);

    /* Spacing System */
    --space-unit: 1rem;
    --space-xs: calc(var(--space-unit) * 0.5);
    /* 8px */
    --space-sm: var(--space-unit);
    /* 16px */
    --space-md: calc(var(--space-unit) * 2);
    /* 32px */
    --space-lg: calc(var(--space-unit) * 4);
    /* 64px */
    --space-xl: calc(var(--space-unit) * 6);
    /* 96px */
    --section-pad: var(--space-xl);

    /* UI Elements */
    --border-radius: 16px;
    /* Slightly softer border radius for luxury feel */
    --transition-base: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --focus-ring: 2px solid var(--color-gold-deep);
}

.room-meta {
    color: var(--color-gold-deep) !important;
}

/* --- Base Accessibility & Typography --- */
body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--color-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.site-header {
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.site-header.header-scrolled {
    /* background-color: #25241c !important; */
    padding: 0.5rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Focus states for WCAG 2.2 */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: var(--focus-ring);
    outline-offset: 4px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    color: var(--color-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

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


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

input::placeholder {
    color: rgb(246, 224, 151) !important;
}

/* --- Luxury Utilities --- */
.section-pad {
    padding: var(--section-pad) 0;
}

.bg-cream {
    background-color: var(--color-cream);
}

.bg-forest {
    background-color: var(--color-forest) !important;
}

.text-gold {
    color: var(--color-gold-deep) !important;
    /* Accessible gold for text */
}

.text-gold-soft {
    color: var(--color-gold-soft) !important;
}

.text-white {
    color: var(--color-white) !important;
}

.text-forest {
    color: #0A0A0A !important;
}

.font-serif {
    font-family: var(--font-serif);
}

.ls-1 {
    letter-spacing: 0.1em;
}

.ls-2 {
    letter-spacing: 0.2em;
}


/* Custom Icons */
.custom-icon {
    height: 60px;
    width: auto;
    display: block;
    margin: 0 auto;
    filter: brightness(0) saturate(100%) invert(73%) sepia(21%) saturate(928%) hue-rotate(359deg) brightness(91%) contrast(88%);
}

/* Gold Filter */
.meta-icon {
    height: 16px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    opacity: 0.7;
}

.input-icon {
    position: absolute;
    left: 0;
    top: 12px;
    height: 18px;
    width: 18px;
    opacity: 0.5;
}

/* --- Typography Enhancements --- */
.hero-title {
    color: var(--color-white);
    font-size: var(--fs-h1);
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.hero-subtitle {
    color: #f1f1f1 !important;
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-bottom: var(--space-sm);
    font-weight: 700;
}

.section-eyebrow {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 700;
    color: var(--color-gold-deep);
    margin-bottom: var(--space-xs);
}

.section-title {
    font-size: var(--fs-h2);
    letter-spacing: -0.01em;
    color: var(--color-heading);
}


/* --- Premium Buttons --- */
.theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold {
    background: var(--color-gold-deep);
    color: var(--color-white);
}

.btn-gold:hover {
    background: #0A0A0A;
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-green {
    background: #0A0A0A;
    color: var(--color-white);
}

.btn-green:hover {
    background: #25241c;
    transform: translateY(-2px);
}

.btn-outline-white {
    border-color: var(--color-white);
    color: var(--color-white);
    background: transparent;
}

.btn-outline-white:hover {
    background: var(--color-white);
    color: #0A0A0A;
}

.btn-outline-dark {
    border-color: #0A0A0A;
    color: #0A0A0A;
    background: transparent;
}

.btn-outline-dark:hover {
    background: #0A0A0A;
    color: var(--color-white);
}

.btn-link {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-gold-deep);
    border-bottom: 1px solid currentColor;
    font-style: italic;
    padding-bottom: 2px;
}

.btn-link:hover {
    color: #0A0A0A;
    border-bottom-color: #0A0A0A;
}


/* --- Navigation & Header --- */
.site-header {
    padding: 0;
    background: #0A0A0A;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    position: relative;
}

.nav-link:hover {
    color: var(--color-gold-soft);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold-soft);
    transition: var(--transition-base);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-item .dropdown-menu {
    border-radius: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
    border: none;
}

.nav-item .dropdown-menu li a {
    padding: 0.75rem 2rem;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.nav-item .dropdown-menu li a:hover {
    background: var(--color-cream);
    color: var(--color-gold-deep);
    padding-left: 2.25rem;
}


/* Mobile Navigation */
.mobile-nav {
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid #eee;
    padding: 12px 0;
}

.mobile-nav-link {
    font-size: 0.9rem;
    padding: 5px 0;
}

.mobile-nav-item .submenu-toggle {
    transition: transform 0.3s;
    font-size: 0.8rem;
    color: #aaa;
}

.mobile-nav-item.open .submenu-toggle {
    transform: rotate(180deg);
}

.mobile-nav-item .submenu {
    display: none;
    padding: 10px 0 0 15px;
    margin-top: 8px;
    border-left: 2px solid var(--color-gold);
}

.mobile-nav-item.open .submenu {
    display: block;
}

.mobile-nav-item .submenu li {
    padding: 8px 0;
}

.mobile-nav-item .submenu li a {
    font-size: 0.85rem;
    color: #666;
}

.mobile-nav-item .submenu li a:hover {
    color: #0A0A0A;
}

/* Hero */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background: #000;
    margin-top: 0;
    /* remove gap above header/banner */
}

.hero-swiper,
.swiper-slide {
    height: 100%;
    width: 100%;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease;
}

.swiper-slide-active .hero-bg {
    transform: scale(1.1);
}

/* New room card and about section styles */
.room-card {
    display: flex;
    align-items: stretch;
    width: 100%;
    background: transparent;
    box-shadow: none;
    border: none;
    overflow: visible;
    animation: fadeUp 0.6s ease both;
}

.room-card:hover {
    transform: translateY(-4px);
    box-shadow: none;
}

.room-card--split {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.room-card--split:hover {
    transform: none;
    box-shadow: none;
}

.room-card__col--image {
    width: 40%;
    min-width: 40%;
    max-width: 40%;
    height: 520px;
    overflow: hidden;
    position: relative;
}

.room-card__col--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.room-card:hover .room-card__col--image img {
    transform: scale(1.03);
}

/* Discount / info badge on the split image (used by packages.php) */
.room-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: #0A0A0A;
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.room-card__col--content {
    width: 60%;
    display: flex;
    align-items: center;
}

.room-card__inner {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
    width: calc(100% + 80px);
    margin-left: -80px;
    padding: 36px;
    position: relative;
    z-index: 1;
}

.room-card__title {
    font-size: 1.45rem;
    margin-bottom: 12px;
}

.room-card__desc {
    color: #6b6b6b;
    margin-bottom: 18px;
}

.meta-icon,
.amenity-icon {
    color: #999;
}

.room-amenity-pill {
    background: #f8f8f6;
    border: 1px solid #eee;
}

@media (max-width: 1024px) {
    .room-card__col--image {
        height: 420px;
    }

    .room-card__inner {
        margin-left: -50px;
        width: calc(100% + 50px);
        padding: 28px;
    }
}

@media (max-width: 767px) {
    .room-card {
        flex-direction: column;
    }

    .room-card__col--image,
    .room-card__col--content {
        width: 100%;
        max-width: 100%;
    }

    .room-card__col--image {
        height: 280px;
    }

    .room-card__inner {
        margin-left: 0;
        width: 100%;
        padding: 22px;
        border-radius: 16px;
    }
}

.meta-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    color: var(--color-gold-deep);
}

.btn-outline {
    border: 1px solid rgba(10, 10, 10, 0.06);
    padding: 0.65rem 1rem;
    border-radius: 8px;
    color: var(--color-forest);
    background: #fff;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--color-gold);
    background: rgba(200, 164, 92, 0.05);
}

/* About cards */
.about-card {
    background: #fff;
    border: 1px solid rgba(10, 10, 10, 0.04);
}

/* Small amenity badges used on room cards (minimal boutique look) */
.room-card-amenities {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.room-card-amenities span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
    padding: 6px 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(10, 10, 10, 0.03);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.room-card-amenities span:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(10, 10, 10, 0.06);
}

/* Simple entrance animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

/* small utility for text contrast on hero */
.text-white-75 {
    color: rgba(255, 255, 255, 0.85);
}

/* Responsive tweaks */
@media (max-width: 767px) {
    .room-card__image {
        min-height: 240px;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(10, 10, 10, 0.85));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Booking Bar - Legacy Styles (Keeping for Home Page if needed, but Booking Page uses .booking-hero) */
.booking-wrapper {
    position: relative;
    z-index: 10;
    margin-top: -50px;
}

.booking-container {
    background: rgba(255, 255, 255, 0.98);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.booking-home-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: end;
}

.form-group label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0A0A0A;
    font-weight: 700;
    margin-bottom: 5px;
}

.form-control,
.form-select {
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 10px 0 10px 30px;
    background: transparent;
    width: 100%;
    border-radius: 0;
}

.input-wrap {
    position: relative;
}

/* Cards & Hover */
.transition-hover {
    transition: transform 0.3s, box-shadow 0.3s;
}

.transition-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Zoom Animation */
.hover-zoom-container {
    overflow: hidden;
}

.hover-zoom-img {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover-zoom-container:hover .hover-zoom-img {
    transform: scale(1.1);
}

/* --- Luxury Cards --- */
.room-card {
    background: var(--color-white);
    border: 1px solid #f0f0f0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
    height: 100%;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--color-gold-soft);
}

.price-tag {
    background: var(--color-white);
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    color: #0A0A0A;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
}


/* Activities & Gallery */
.activity-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.activity-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-md);
    transition: var(--transition-base);
}

.activity-card:hover .activity-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 80%);
    box-shadow: inset 0 0 45px rgba(0, 0, 0, 0.18);
}

.gallery-item {
    position: relative;
    display: block;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 320px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
    backdrop-filter: blur(4px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--color-white);
    font-size: 1.5rem;
    transform: scale(0.8);
    transition: var(--transition-base);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* --- Wellness Strip (signature section, see home.php) --- */
.wellness-strip {
    padding: calc(var(--space-xl) * 0.6) 0;
    background: var(--color-sage-soft);
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.wellness-title {
    font-size: var(--fs-h3);
    margin-bottom: 0.5rem;
    color: #0A0A0A;
}

.wellness-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 1.75rem 1rem;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: var(--transition-base);
}

.wellness-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.wellness-item i {
    font-size: 1.4rem;
    color: var(--color-sage);
}

.wellness-item span {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: var(--color-heading);
}

/* --- Spa / Wellness full-bleed sticky image ---
   Makes the `.bh-spa` image break out to full viewport width,
   stay visible (sticky) while the spa section is in view, and
   removes top/bottom spacing so it sits flush with adjacent sections.
*/
.bh-spa.bg-gold-soft {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0;
    border-top: none !important;
    border-bottom: none !important;
    background: transparent;
    /* allow the image to visually read edge-to-edge */
}

.bh-spa .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.bh-spa .row {
    margin: 0;
}

.bh-spa__image-wrap {
    /* Use the element background for the spa image. Height ensures the
       column shows a reasonable area even if content is short. The
       inline style on the element sets the image URL so CSS here only
       controls presentation (cover/position/attachment fallback). */
    position: relative;
    min-height: 60vh;
    overflow: hidden;
    display: block;
    margin: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Desktop: prefer fixed attachment for a fixed-background effect; on
   mobile some browsers ignore `background-attachment: fixed` so we
   explicitly use `scroll` there. */
@media (min-width: 992px) {
    .bh-spa__image-wrap {
        background-attachment: fixed;
        min-height: 100vh;
    }
}

@media (max-width: 991px) {
    .bh-spa__image-wrap {
        background-attachment: scroll;
        min-height: 40vh;
    }

    .bh-spa .container {
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }
}

/* Ensure the spa section is positioned relative for stacking */
.bh-spa {
    position: relative;
}

.logo-wrapper {
    border-radius: 0px 0px 7px 7px;
    padding: 20px;
    background: #bea733;
}

/* --- Premium Footer --- */
 .site-footer {
    position: relative;
    overflow: hidden;

    background-color: #fcfbf5;
    background-image:
        radial-gradient(circle, rgba(0,0,0,.025) 0.5px, transparent 0.5px),
        linear-gradient(180deg, #fcfbf5 0%, #f5eee3 100%),
        url("data:image/svg+xml,...");

    background-repeat: repeat, no-repeat, no-repeat;
    background-position: center, center, bottom center;
    background-size: 18px 18px, cover, cover;
}

.site-footer::before{
    content: "";
    position: absolute;
    inset: 0;

    background: url('/themes/bodhi/assets/images/final.png')
                no-repeat   right bottom / contain;

    opacity: .6;  
    pointer-events: none;
    z-index: 0;
}

.site-footer > *{
    position: relative;
    z-index: 1;
}

.footer-logo {
    height: 100px;
    margin-bottom: var(--space-md);
    background-color: var(--color-gold);
    padding: 10px;
    border-radius: 10px;
}

.footer-heading {
    color: var(--color-gold-deep);
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    letter-spacing: 0.05em;
}

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

.footer-links a:hover {
    color: var(--color-gold-deep);
    padding-left: 8px;
}

.footer-newsletter {
    background: #0b0b0b;
    border: 1px solid rgba(201, 168, 76, 0.22);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.footer-newsletter__field {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-newsletter__input {
    flex: 1;
    min-width: 180px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    padding: 14px 22px;
    color: var(--color-white);
}

.footer-newsletter__input::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.footer-newsletter__input:focus {
    outline: none;
    border-color: var(--color-gold-deep);
    background: rgba(255, 255, 255, 0.12);
}

.footer-newsletter__button {
    white-space: nowrap;
    border-radius: 30px;
    padding: 13px 22px;
}

.footer-ota-strip {
    padding: 1rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-ota-title {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-ota-logos img {
    width: 25px;
    height: auto;
    opacity: 0.95;
}

.footer-newsletter .text-white-50,
.footer-ota-title,
.footer-newsletter__button {
    color: #f7f1e1;
}

.footer-newsletter__button {
    background: var(--color-gold-deep);
    border-color: var(--color-gold-deep);
}

.footer-links a {
    color: #111 !important;
}

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

.footer-about-text,
.footer-copy-text,
.contact-list span {
    color: rgba(0, 0, 0, 0.75);
}

.site-footer a {
    color: #111 !important;
}

.site-footer a:hover {
    color: black !important;
}

.site-footer svg:hover,
.site-footer svg:hover path,
.site-footer svg:hover circle,
.site-footer svg:hover polygon,
.site-footer svg:hover rect {
    fill: #ffffff !important;
    stroke: #ffffff !important;
}

.footer-mountain-copy {
    background: rgba(244, 235, 216, 0.5);
    border: 1px solid rgba(201, 168, 76, 0.8);
}

.footer-mountain-copy .footer-heading {
    color: var(--color-forest);
}

.footer-copy-text {
    margin: 0;
}

/* Overridden by the boutique footer palette above */
/* .site-footer a { color: rgba(0, 0, 0, 0.85); } */
/* .site-footer a:hover { color: var(--color-gold-soft); } */

.footer-newsletter {
    background: #0c0c0c;
    border: 1px solid rgba(201, 168, 76, 0.22);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.footer-newsletter__field {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-newsletter__input {
    flex: 1;
    min-width: 180px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 30px;
    padding: 14px 22px;
    color: var(--color-gold-soft);
}

.footer-newsletter__input::placeholder {
    color: rgba(245, 230, 179, 0.5);
}

.footer-newsletter__input:focus {
    outline: none;
    border-color: var(--color-gold-deep);
    background: rgba(255, 255, 255, 0.12);
}

.footer-newsletter__button {
    white-space: nowrap;
    border-radius: 30px;
    padding: 13px 22px;
}

/* Hide the local mountain visual since footer now has a full-width mountain background */
.footer-mountain-panel {
    display: none !important;
}

.footer-mountain-svg {
    width: 100%;
    height: 100%;
    opacity: 0.75;
}

.contact-list li {
    margin-bottom: 1rem;
    display: flex;
    gap: 12px;
}

.contact-list i {
    color: var(--color-gold-soft);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
} */


/* Animations */
.animate-up,
.animate-fade,
.reveal-img {
    opacity: 0;
    will-change: transform, opacity;
}

.animate-up {
    transform: translateY(30px);
}

.is-revealed.animate-up,
.is-revealed.animate-fade {
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.8s ease;
}

.reveal-img {
    transform: scale(1.05);
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1), opacity 1.2s ease;
}

.reveal-img.is-revealed {
    opacity: 1;
    transform: scale(1);
}

.delay-100 {
    transition-delay: 0.1s !important;
}

.delay-200 {
    transition-delay: 0.2s !important;
}

.delay-300 {
    transition-delay: 0.3s !important;
}

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


/* Swiper Nav */
.theme-nav-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.theme-nav-btn:hover {
    background: #25241c;
    color: white;
}

/* Flatpickr Fix */
.flatpickr-calendar {
    display: none !important;
    opacity: 0;
}

.flatpickr-calendar.open {
    display: inline-block !important;
    opacity: 1;
    z-index: 9999;
}

/* Blocked/Disabled Dates Styling - Light Grey */
.flatpickr-day.blocked-date {
    background: #e9ecef !important;
    color: #6c757d !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
    font-weight: 500 !important;
    border: 1px solid #dee2e6 !important;
}

.flatpickr-day.blocked-date:hover {
    background: #dee2e6 !important;
    color: #6c757d !important;
}

/* Enhanced Card Styles */
.blog-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-color: #e0e0e0 !important;
}

.blog-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.blog-card-image {
    position: relative;
}

.blog-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

.blog-card-content {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.room-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-color: #e0e0e0 !important;
    transition: all 0.4s ease;
}

.room-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-6px);
}

.room-card .room-media {
    position: relative;
    overflow: hidden;
}

.room-card .price-tag {
    background: linear-gradient(135deg, #f0f0f0, #fff) !important;
    border-left: 4px solid var(--color-gold);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.detail-card {
    background: linear-gradient(135deg, #f9f9f7 0%, #f0f0f0 100%);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--color-gold);
    transition: all 0.3s ease;
}

.detail-card:hover {
    background: linear-gradient(135deg, var(--color-gold), rgba(201, 163, 104, 0.8));
    color: white;
    transform: translateX(6px);
}

.detail-card:hover strong {
    color: white;
}

.booking-card {
    background: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-top: 4px solid var(--color-gold);
    position: sticky;
    top: 140px;
}

.booking-card input,
.booking-card select {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.booking-card input:focus,
.booking-card select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 4px rgba(201, 163, 104, 0.1);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.gallery-grid img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Pagination Enhancements */
.pagination .page-link {
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    padding: 10px 14px;
    transition: all 0.3s ease;
    color: var(--color-text);
    font-weight: 500;
}

.pagination .page-link:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.pagination .page-item.active .page-link {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: white;
}
.aboutus{
    font-weight: 500;
    font-size: var(--fs-h2);
}
/* Section Title Enhancements */
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

/* Centered divider (default for centered headings) */
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--color-gold);
}

/* Left-aligned divider for 2-column layouts */
.section-title.text-left::after {
    left: 0;
    transform: none;
}

/* Sticky sidebar for larger screens */
@media (min-width: 992px) {
    .sidebar-sticky {
        position: -webkit-sticky;
        position: sticky;
        top: 120px;
    }
}

/* Ensure card anchors fill their card so the whole card is clickable */
.grid-link {
    display: block;
}

/* Simple hero used on listing pages: white gap over header */
.page-hero-simple {
    background: white;
    padding: 36px 0;
    margin-top: 70px;
    /* creates white gap over fixed header */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.page-hero-simple .page-hero-content {
    padding: 0;
}

/* Detail hero image (full width image above content) */
.detail-hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 32px;
}

/* When heading is left-aligned we keep divider left */
.section-title.text-left::after,
.section-title.align-left::after {
    left: 0;
    transform: none;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .booking-wrapper {
        margin-top: 0;
        padding: 20px 0;
        background: var(--bg-cream);
    }

    .booking-card {
        position: static;
        top: auto;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

/* ==========================================================================
   BOOKING PAGE MODULE (Bodhi Luxury Refined)
   ========================================================================== */

/* Booking Hero */
.booking-hero {
    position: relative;
    height: 500px;
    /* min-height: 5cqmax; */
    background-size: cover;
    background-position: center;
    /* background-attachment: fixed; */
    display: flex;
    align-items: center;
    color: var(--color-white);
    margin-top: 0;
    /* remove gap */
}

.booking-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.5), rgba(10, 10, 10, 0.6));
}

.booking-hero__content {
    position: relative;
    z-index: 2;
}

.booking-hero__subtitle {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.booking-hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 1rem;
    line-height: 1;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.booking-hero__desc {
    font-size: 1rem;
    opacity: 0.95;
    max-width: 600px;
    line-height: 1.6;
}

/* Progress Steps */
.booking-progress {
    margin-top: -60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.booking-progress__track {
    background: white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.booking-progress__track::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100px;
    right: 100px;
    height: 1px;
    background: #eee;
    z-index: 1;
    transform: translateY(-50%);
}

.booking-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-step__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 2px solid #eee;
    color: #bbb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    transition: inherit;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.booking-step__label {
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #bbb;
    transition: inherit;
}

.booking-step.active {
    transform: scale(1.1);
}

.booking-step.active .booking-step__icon {
    background: var(--color-gold-deep);
    color: var(--color-white);
    border-color: var(--color-gold-deep);
    box-shadow: 0 10px 25px rgba(141, 110, 63, 0.3);
}

.booking-step.active .booking-step__label {
    color: var(--color-gold-deep);
}

.booking-step.completed .booking-step__icon {
    background: #0A0A0A;
    color: var(--color-white);
    border-color: #0A0A0A;
}


/* Layout Grid */
.booking-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

/* Main Form Area */
.booking-layout__main {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.booking-form__header {
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.booking-form__title {
    font-size: 2.2rem;
    margin-bottom: 8px;
    color: #0A0A0A;
}

.booking-form__subtitle {
    color: var(--color-text);
    font-size: 1rem;
    opacity: 0.8;
}

.booking-form__step {
    display: none;
    animation: slideUpFade 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.booking-form__step.active {
    display: block;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* ─── Room Result Cards (Booking Search) ─────────────── */
.rooms-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.room-result-card {
    display: flex;
    flex-direction: row;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
    align-items: stretch;
    gap: 0;
    position: relative;
}

.room-result-card:hover {
    box-shadow: none;
    transform: none;
}

.room-result-card--selected {
    border-color: transparent;
    box-shadow: none;
}

.room-result__image-wrap {
    position: relative;
    width: 50%;
    height: 400px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 12px;
}

.room-result__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-result-card:hover .room-result__image {
    transform: scale(1.05);
}

.room-result__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.room-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.room-badge--available {
    background: rgba(34, 139, 34, 0.85);
    color: #fff;
}

.room-badge--info {
    background: rgba(201, 168, 76, 0.9);
    color: #fff;
}

.room-result__card-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 32px;
    margin-left: -40px;
    position: relative;
    z-index: 2;
}

.room-result__body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.room-result__name {
    font-family: var(--font-serif, Georgia, serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-forest, #2c5530);
    margin: 0 0 10px;
}

.room-result__desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 16px;
    display: -webkit-box !important;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.room-result__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #555;
    font-weight: 500;
}

.meta-item i {
    color: #999;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.room-result__amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.amenity-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: #f5f7f5;
    border: 1px solid #e8ece8;
    border-radius: 20px;
    font-size: 0.72rem;
    color: #555;
}

.amenity-pill i {
    color: var(--color-gold, #c9a84c);
    font-size: 0.68rem;
}

.amenity-pill--more {
    background: transparent;
    border-color: transparent;
    color: #999;
    font-weight: 500;
}

.room-result__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.room-result__pricing {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-shrink: 0;
}

.price-label {
    font-size: 0.75rem;
    color: #999;
}

.price-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-gold, #c9a84c);
}

.price-unit {
    font-size: 0.75rem;
    color: #999;
}

.room-result__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.btn-view-details {
    padding: 8px 18px;
    border: 2px solid var(--color-gold, #c9a84c);
    background: transparent;
    color: var(--color-gold, #c9a84c);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-view-details:hover {
    background: var(--color-gold, #c9a84c);
    color: #fff;
}

.qty-select-premium {
    padding: 8px 14px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #333;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s;
    width: auto;
    text-align: center;
    min-width: 70px;
}

.qty-select-premium:focus {
    outline: none;
    border-color: var(--color-gold, #c9a84c);
}

.room-result-card--selected .qty-select-premium {
    border-color: var(--color-gold, #c9a84c);
    background: #fffdf5;
}

/* Responsive room cards */
@media (max-width: 1024px) {
    .room-result__card-wrap {
        margin-left: -30px;
        padding: 24px;
    }

    .room-result__name {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .room-result-card {
        flex-direction: column;
        align-items: center;
    }

    .room-result__image-wrap {
        width: 100%;
        height: 250px;
        border-radius: 12px;
    }

    .room-result__card-wrap {
        width: 100%;
        margin-left: 0;
        margin-top: -30px;
        border-radius: 12px;
    }

    .room-result__footer {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .room-result__actions {
        justify-content: flex-end;
        margin-left: 0;
    }

    .btn-view-details {
        width: 100%;
    }
}

/* Form Controls */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 30px;
}

.form-label {
    display: block;
    margin-bottom: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #0A0A0A;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-heading);
    background: #fafafa;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    background: var(--color-white);
    border-color: var(--color-gold-deep);
    box-shadow: 0 5px 15px rgba(141, 110, 63, 0.1);
    outline: none;
}


.form-input.error {
    border-color: #ff4d4d;
    background: #fffafa;
}

/* Payment Module */
.payment-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.payment-option {
    cursor: pointer;
}

.payment-option__input {
    display: none;
}

.payment-option__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.payment-option:hover .payment-option__card {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.payment-option__input:checked+.payment-option__card {
    border-color: #0A0A0A;
    background: rgba(10, 10, 10, 0.03);
    box-shadow: 0 10px 25px rgba(10, 10, 10, 0.1);
}

.payment-option__title {
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 8px;
    font-size: 1rem;
}

.payment-option__desc {
    font-size: 0.8rem;
    color: #888;
}

/* Summary Sidebar */
.booking-summary {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 120px;
    border-top: 5px solid var(--color-gold-deep);
}


.booking-summary__title {
    font-size: 1.6rem;
    color: #0A0A0A;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.booking-summary__room {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #eee;
}

.booking-summary__img {
    width: 100px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.booking-summary__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--color-heading);
}

.room-cat {
    font-size: 0.8rem;
    color: var(--color-gold);
    font-weight: 700;
    text-transform: uppercase;
}

.date-row,
.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.price-row.total {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid var(--color-forest);
    color: #0A0A0A;
    font-weight: 800;
    font-size: 1.4rem;
}

/* Review Cards (Step 4) */
.review-card {
    background: #f9f9f7;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 5px solid var(--color-gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.review-card__title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #0A0A0A;
    font-weight: 700;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.review-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #999;
    font-weight: 800;
    margin-bottom: 4px;
}

.review-value {
    font-weight: 700;
    color: var(--color-heading);
    font-size: 1rem;
}

/* Actions */
.booking-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn-primary {
    flex: 2;
    background: #0A0A0A;
    color: white;
    border: none;
    padding: 16px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background: #25241c;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(10, 10, 10, 0.2);
}

.btn-secondary {
    flex: 1;
    background: white;
    color: var(--color-text);
    border: 1px solid #ddd;
    padding: 16px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* Premium Search Form */
.form-label-premium {
    display: block;
    margin-bottom: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #0A0A0A;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-input-premium,
.form-select-premium {
    width: 100%;
    padding: 14px 20px;
    border: 1.5px solid #eee;
    border-radius: 12px;
    background: #fcfcfc;
    font-size: 0.95rem;
    color: var(--color-heading);
    transition: all 0.3s ease;
}

.form-input-premium:focus,
.form-select-premium:focus {
    border-color: var(--color-gold-deep);
    background: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(210, 175, 118, 0.1);
}

.btn-availability-search {
    width: 100%;
    background: var(--color-gold-deep);
    color: white;
    border: none;
    padding: 16px 20px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(210, 175, 118, 0.3);
}

.btn-availability-search:hover {
    background: #0A0A0A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 10, 10, 0.2);
}

.btn-availability-search:active {
    transform: scale(0.98);
}

/* Fix sticky sidebar z-index */
.booking-summary {
    z-index: 100;
}

/* Mobile Fixed Action Bar */
@media (max-width: 991px) {
    .booking-actions {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        margin: 0;
        padding: 15px 20px env(safe-area-inset-bottom);
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        border-top: 1px solid #eee;
        display: flex !important;
        /* Ensure visibility */
    }

    body.booking-page {
        padding-bottom: 100px;
        /* Spacer for fixed buttons */
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .booking-layout {
        grid-template-columns: 1fr 350px;
    }
}

@media (max-width: 992px) {
    .booking-layout {
        grid-template-columns: 1fr;
    }

    .booking-layout__sidebar {
        order: -1;
    }

    .booking-summary {
        position: static;
        margin-bottom: 40px;
    }

    .booking-hero {
        height: 40vh;
    }
}

@media (max-width: 768px) {
    .booking-progress__track {
        padding: 15px 25px;
    }

    .booking-progress__track::after {
        display: none;
    }

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

    .payment-options {
        grid-template-columns: 1fr;
    }

    .booking-layout__main {
        padding: 30px 20px;
    }
}

/* --- New Linear Booking Bar --- */

.booking-container.glass-panel {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    margin-top: -60px;
    position: relative;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.booking-form-linear {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
}

.form-item-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 10px 15px;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.form-item-group:hover {
    background: rgba(246, 224, 151, 0.1);
}

.form-item-group label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0A0A0A;
    font-weight: 700;
    margin-bottom: 4px;
    padding-left: 24px;
    /* Align with input text */
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-linear {
    position: absolute;
    left: 0;
    color: var(--color-gold-deep);
    font-size: 1.1rem;
}

.form-control-linear,
.form-select-linear {
    width: 100%;
    border: none;
    background: transparent;
    padding: 5px 5px 5px 30px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-heading);
    cursor: pointer;
    outline: none;
}

.form-control-linear::placeholder {
    color: #999 !important;
    font-weight: 400;
}

.form-control-linear:focus,
.form-select-linear:focus {
    box-shadow: none;
}

/* Vertical Divider */
.form-divider {
    width: 1px;
    height: 40px;
    background-color: #e0e0e0;
}

/* Submit Button */
.search-btn {
    background: var(--color-gold-deep);
    color: white;
    border: none;
    border-radius: 40px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 163, 104, 0.4);
}

.search-btn:hover {
    background: #0A0A0A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 10, 10, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .booking-container.glass-panel {
        border-radius: 20px;
        padding: 30px;
        margin-top: -40px;
    }

    .booking-form-linear {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .form-divider {
        display: none;
    }

    .form-item-group {
        border-bottom: 1px solid #eee;
        border-radius: 0;
        padding: 0 0 15px 0;
    }

    .form-item-group:hover {
        background: transparent;
    }

    .search-btn {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
}

/* --- New Accommodation Section Design --- */

.bg-dark-brown {
    background-color: #433D35;
    /* Dark Earthy Brown */
    color: #fff;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.6) !important;
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Navigation Buttons */
.nav-circle-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f8f5f0;
    /* Light cream */
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #8D7B66;
    /* Muted Gold/Brown */
    font-size: 1.1rem;
    cursor: pointer;
}

.nav-circle-btn:hover {
    background: #e3ddd3;
    color: #5e4c35;
    transform: scale(1.05);
}

/* Premium Room Card */
.room-card-premium {
    position: relative;
    background: #0A0A0A;
    border-radius: 24px;
    /* Stronger radius as per design */
    height: 100%;
}

.card-img-wrap {
    height: 320px;
    /* Reduced height relative to content */
    overflow: hidden;
}

.card-img-wrap img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.room-card-premium:hover .card-img-wrap img {
    transform: scale(1.08);
    /* Subtle zoom */
}

/* Badges */
.badge-pill-white {
    background: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    color: #4a4a4a;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-wishlist {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    /* Glassmorphism */
    backdrop-filter: blur(4px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.btn-wishlist:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #d63031;
    /* Heart red */
}

/* Amenities */
.amenities-grid {
    flex-wrap: wrap;
}

.amenity-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
}

.amenity-item i {
    opacity: 0.7;
}

/* Footer Stars */
.stars i {
    margin-right: 2px;
}

/* --- Circular Gallery CTA Section --- */
.cta-gallery-section {
    padding-bottom: 0;
    margin-bottom: -1px;
}

.btn-pill-gold {
    display: inline-flex;
    align-items: center;
    padding: 6px 6px 6px 20px;
    background: white;
    border: 1px solid #dcdcdc;
    color: var(--color-heading);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.btn-pill-gold .icon-circle {
    width: 36px;
    height: 36px;
    background: #C9A368;
    /* Gold */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.btn-pill-gold .icon-circle i {
    transform: rotate(-45deg);
    transition: transform 0.3s;
    font-size: 0.9rem;
}

.btn-pill-gold:hover {
    border-color: #C9A368;
    color: #C9A368;
}

.btn-pill-gold:hover .icon-circle {
    transform: scale(1.1);
}

.btn-pill-gold:hover .icon-circle i {
    transform: rotate(0deg);
}

.circular-gallery-wrapper {
    margin-bottom: -80px;
    /* Overlap into the footer/newsletter */
    position: relative;
    z-index: 20;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 20px;
    /* Allow shadow */
}

.circular-gallery-wrapper::-webkit-scrollbar {
    display: none;
}

.circle-img-item {
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: #e0e0e0;
}

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

.circle-img-item:hover img {
    transform: scale(1.1);
}

/* Sizes */
.circle-img-item.size-sm {
    width: 100px;
    height: 100px;
}

.circle-img-item.size-md {
    width: 140px;
    height: 140px;
}

.circle-img-item.size-lg {
    width: 200px;
    height: 200px;
}

.circle-img-item.size-xl {
    width: 280px;
    height: 280px;
    z-index: 25;
    margin-bottom: 20px;
}

/* Adjust overlapped section */
.newsletter-section {
    padding-top: 140px !important;
    /* Space for the circles */
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    .circular-gallery-wrapper {
        margin-bottom: -50px;
        gap: 10px !important;
    }

    .circle-img-item.size-xl {
        width: 200px;
        height: 200px;
    }

    .circle-img-item.size-lg {
        width: 150px;
        height: 150px;
    }

    .circle-img-item.size-md {
        width: 100px;
        height: 100px;
    }

    .circle-img-item.size-sm {
        width: 80px;
        height: 80px;
    }

    .newsletter-section {
        padding-top: 100px !important;
    }
}

/* ================================================
   PAGE TEMPLATE COMPONENT STYLES
   ================================================ */

/* Page Hero Section */
.page-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    padding: 120px 0 60px;
    background: #0A0A0A;
    margin-top: 0;
    /* ensure banner sits flush under header */
    overflow: hidden;
}

.page-hero--full {
    min-height: 60vh;
}

.page-hero--compact {
    min-height: 280px;
    padding: 100px 0 50px;
}

.page-hero--minimal {
    min-height: 180px;
    padding: 80px 0 40px;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(10, 10, 10, 0.85));
    z-index: 1;
}

.page-hero__content {
    position: relative;
    z-index: 2;
}

.page-hero__subtitle {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.page-hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Make image heroes consistently tall and center content for a boutique look */
.page-hero.page-hero--image {
    min-height: 600px;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.page-hero.page-hero--image .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(10, 10, 10, 0.7));
    z-index: 1;
}

.page-hero .page-hero-content {
    padding: 6rem 2rem;
    max-width: 960px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    min-height: 600px;
}

@media (max-width: 768px) {
    .page-hero.page-hero--image {
        min-height: 420px;
    }

    .page-hero .page-hero-content {
        padding: 3rem 1.5rem;
        min-height: 420px;
    }

    .page-hero__title {
        font-size: 2rem;
    }
}
.page-hero__title{
    color: var(--color-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Breadcrumbs */
.breadcrumbs {
    margin-top: 1.5rem;
}

.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs__item {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs__item::after {
    content: '/';
    margin-left: 0.5rem;
    opacity: 0.5;
}

.breadcrumbs__item:last-child::after {
    display: none;
}

.breadcrumbs__item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs__item a:hover {
    color: var(--color-gold);
}

.breadcrumbs__item [aria-current="page"] {
    color: var(--color-gold);
}

/* Confirmation Components */
.confirmation-success__icon svg {
    filter: drop-shadow(0 4px 20px rgba(16, 185, 129, 0.3));
}

.confirmation-success__reference {
    display: inline-block;
    background: var(--color-cream);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(201, 163, 104, 0.3);
}

.confirmation-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.confirmation-card__header {
    background: #0A0A0A !important;
}

.status-badge {
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-confirmed {
    background: #d1fae5;
    color: #065f46;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.stay-info-item__label {
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.stay-info-item__value {
    font-size: 1rem;
    color: var(--color-heading);
}

.stay-info-item__note {
    font-size: 0.75rem;
    font-style: italic;
}

/* Loading States */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(4px);
}

.loading-spinner {
    text-align: center;
}

.spinner-ring {
    display: inline-block;
    position: relative;
    width: 60px;
    height: 60px;
}

.spinner-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 48px;
    height: 48px;
    margin: 6px;
    border: 4px solid var(--color-gold);
    border-radius: 50%;
    animation: spinner-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: var(--color-gold) transparent transparent transparent;
}

.spinner-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.spinner-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.spinner-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes spinner-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    display: block;
    margin-top: 1rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Skeleton Loaders */
.skeleton-loader {
    padding: 1rem 0;
}

.skeleton-line {
    height: 14px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.skeleton-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.skeleton-image {
    height: 200px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
}

.skeleton-content {
    padding: 1rem;
}

@keyframes skeleton-shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Error Boundary */
.error-boundary {
    max-width: 500px;
    margin: 2rem auto;
}

.error-boundary__icon {
    opacity: 0.8;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: #0A0A0A;
    color: white;
    padding: 0.75rem 1.5rem;
    z-index: 10000;
    border-radius: 0 0 8px 8px;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
    outline: none;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Print Styles */
@media print {

    .site-header,
    .site-footer,
    .page-hero,
    .confirmation-actions,
    .next-steps,
    .contact-info,
    .mobile-menu-drawer,
    .mobile-menu-overlay {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .confirmation-card {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }

    .confirmation-card__header {
        background: #f5f5f5 !important;
        color: black !important;
    }

    .status-badge {
        border: 1px solid currentColor;
    }

    a[href]::after {
        content: none !important;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-hero {
        min-height: 220px;
        padding: 100px 0 40px;
    }

    .page-hero--full {
        min-height: 40vh;
    }

    .page-hero__title {
        font-size: 1.75rem;
    }

    .breadcrumbs__list {
        font-size: 0.75rem;
    }

    .confirmation-success__reference {
        padding: 0.75rem 1.5rem;
    }

    .stay-info-grid {
        text-align: center;
    }

    .confirmation-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .confirmation-actions .theme-btn {
        text-align: center;
        justify-content: center;
    }
}

/* ==========================================================================
   MODERN GALLERY LIGHTBOX
   ========================================================================== */
.bodhi-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(13, 22, 16, 0.95);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 40px;
}

.bodhi-lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-frame {
    position: relative;
    max-width: 85vw;
    max-height: 80vh;
    background: #fff;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bodhi-lightbox.active .lightbox-frame {
    transform: scale(1);
}

.lightbox-frame::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 1px solid var(--color-gold);
    border-radius: 8px;
    pointer-events: none;
    opacity: 0.5;
}

.lightbox-image-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.lightbox-image {
    display: block;
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    user-select: none;
}

/* Controls */
.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-btn:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
}

.lightbox-close:hover {
    opacity: 1;
    color: var(--color-gold);
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Caption / Counter */
.lightbox-info {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Auto Slide Progress Bar */
.lightbox-progress {
    position: absolute;
    bottom: -15px;
    left: 15px;
    right: 15px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-progress-bar {
    height: 100%;
    background: var(--color-gold);
    width: 0%;
}

@media (max-width: 991px) {
    .lightbox-prev {
        left: 10px;
        background: rgba(0, 0, 0, 0.5);
    }

    .lightbox-next {
        right: 10px;
        background: rgba(0, 0, 0, 0.5);
    }

    .lightbox-frame {
        max-width: 95vw;
        padding: 10px;
    }
}

/* Package Card Consistency */
.package-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 450px;
}

.package-card .h4 {
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
}

.pkg-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

/* Package Swiper Pagination Spacing */
.package-swiper {
    position: relative;
    padding-bottom: 80px;
}

.package-swiper .swiper-pagination {
    position: absolute !important;
    bottom: 0 !important;
    width: 100% !important;
    margin-top: 40px !important;
    padding-top: 20px !important;
}

.package-swiper .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.5) !important;
    opacity: 1;
}

.package-swiper .swiper-pagination-bullet-active {
    background-color: var(--color-gold) !important;
}

@media (max-width: 768px) {
    .physics-gallery-section {
        display: none !important;
    }
}

/* ========== Moments & Offers Section ========== */
.moments-offers-section {
    background: linear-gradient(145deg, #0A0A0A 0%, #1A1A1A 50%, #25241c 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.moments-offers-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 164, 92, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.moments-offers-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.moments-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.moments-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-gold);
    margin-bottom: 20px;
    padding: 8px 20px;
    background: rgba(200, 164, 92, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(200, 164, 92, 0.2);
}

.moments-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    font-family: var(--font-serif);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.moments-title span {
    color: var(--color-gold);
    font-style: italic;
}

.moments-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
}

.video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    aspect-ratio: 9 / 16;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.video-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(200, 164, 92, 0.1);
}

.video-card-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    filter: brightness(0.9);
}

.video-card:hover .video-card-thumb {
    transform: scale(1.08);
    filter: brightness(0.7);
}

.video-card.playing .video-card-thumb {
    opacity: 0;
}

.video-card-player {
    position: absolute;
    inset: 0;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: #000;
}

.video-card.playing .video-card-player {
    opacity: 1;
}

.video-card-player iframe,
.video-card-player video {
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.video-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.2) 50%,
            rgba(0, 0, 0, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.video-card.playing .video-card-overlay {
    opacity: 0;
    pointer-events: none;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75px;
    height: 75px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.video-play-btn::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: pulse-ring 2s infinite;
}

.video-play-btn svg {
    width: 30px;
    height: 30px;
    fill: var(--color-forest);
    margin-left: 5px;
    transition: all 0.3s ease;
}

.video-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    background: var(--color-gold);
    box-shadow: 0 15px 50px rgba(200, 164, 92, 0.4);
}

.video-card:hover .video-play-btn svg {
    fill: #fff;
}

.video-card:hover .video-play-btn::before {
    border-color: rgba(200, 164, 92, 0.4);
}

.video-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(10, 10, 10, 0.85);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 20;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.video-card.playing .video-close-btn {
    display: flex;
}

.video-close-btn:hover {
    background: var(--color-gold);
    transform: scale(1.1);
}

.video-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 15px rgba(10, 10, 10, 0.85);
    line-height: 1.4;
}

.video-card-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 8px;
    font-weight: 600;
}

.moments-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.moments-nav-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(10px);
    font-size: 1.1rem;
}

.moments-nav-btn:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(200, 164, 92, 0.3);
}

.moments-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
    position: relative;
    z-index: 2;
}

.moments-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.moments-pagination .swiper-pagination-bullet-active {
    background: var(--color-gold);
    transform: scale(1.3);
    border-color: var(--color-gold);
    box-shadow: 0 0 20px rgba(200, 164, 92, 0.5);
}

@media (max-width: 768px) {
    .moments-offers-section {
        padding: 60px 0;
    }

    .moments-header {
        margin-bottom: 40px;
    }

    .video-card {
        border-radius: 16px;
    }

    .video-play-btn {
        width: 60px;
        height: 60px;
    }

    .video-play-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* --- Signature Packages: boutique background treatment ---
   Scoped to .bh-packages-section only — never touches the plain .bg-forest
   utility class itself, which may be reused on other pages you haven't
   shown me. Reuses the same visual language already established elsewhere
   in this theme: the dot-grid from .site-footer, the twin radial glows
   from .moments-offers-section — so it reads as "this theme", not a
   one-off effect. */
.bh-packages-section {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(201, 168, 76, 0.18);
    border-bottom: 1px solid rgba(201, 168, 76, 0.18);
    background-image: radial-gradient(circle, rgba(201, 168, 76, 0.35) 0.5px, transparent 0.5px);
    background-size: 22px 22px;
    background-position: center;
}

.bh-packages-section::before,
.bh-packages-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.bh-packages-section::before {
    top: -30%;
    left: -10%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.16) 0%, transparent 70%);
}

.bh-packages-section::after {
    bottom: -35%;
    right: -8%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.035) 0%, transparent 70%);
}

.bh-packages-section .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .bh-packages-section {
        background-size: 16px 16px;
    }

    .bh-packages-section::before,
    .bh-packages-section::after {
        width: 280px;
        height: 280px;
    }
}
.google-review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(181, 143, 67, 0.12) !important;
    border-color: var(--color-gold) !important;
}

/* ========== Physics Gallery ========== */
.physics-gallery-section {
    background: #F5F5F5;
    min-height: 580px;
}

#physicsCanvas {
    display: block;
    width: 100%;
    height: 380px;
    position: relative;
    z-index: 5;
    cursor: grab;
}

#physicsCanvas:active {
    cursor: grabbing;
}

.physics-footer-bar {
    height: 80px;
    background: #0A0A0A;
    margin-top: -2px;
}

.btn-pill-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 2px solid #333;
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    transition: all 0.3s ease;
}

.btn-pill-gold:hover {
    background: #333;
    color: #fff;
}

.btn-pill-gold .icon-circle {
    width: 28px;
    height: 28px;
    background: var(--color-gold);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.75rem;
}

/* ========== Booking Bar — light glass panel, not dark ========== */
.booking-container.glass-panel {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18) !important;
    padding: 30px;
    border-radius: var(--border-radius);
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.form-label-premium {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold-deep);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.form-input-premium,
.form-select-premium {
    background: rgba(0, 0, 0, 0.03) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    color: #111111 !important;
    font-size: 0.9rem !important;
    transition: var(--transition-base);
}

.form-input-premium:focus,
.form-select-premium:focus {
    background: rgba(0, 0, 0, 0.05) !important;
    border-color: var(--color-gold-deep) !important;
    outline: none;
    box-shadow: 0 0 10px rgba(200, 164, 92, 0.2);
}

.form-select-premium option {
    background: #ffffff;
    color: #111111;
}

.btn-availability-search {
    background: var(--color-gold) !important;
    color: #25241c !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-size: 0.85rem !important;
    padding: 14px 24px !important;
    border: none !important;
    border-radius: 8px !important;
    transition: var(--transition-base) !important;
    box-shadow: 0 4px 15px rgba(200, 164, 92, 0.3) !important;
}

.btn-availability-search:hover {
    background: #111111 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25) !important;
}

/* ========== Asymmetric Story Layout ========== */
.section-pad-story {
    padding: 120px 0;
}

/* ========== Deluxe Cards ========== */
.room-card-premium {
    background: #25241c;
    border: 1px solid rgba(200, 164, 92, 0.15);
    transition: var(--transition-base);
}

.room-card-premium:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
}

.card-img-wrap {
    overflow: hidden;
    position: relative;
}

.badge-pill-white {
    background: rgba(255, 255, 255, 0.95);
    color: #25241c;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hover-scale {
    transition: var(--transition-slow);
}

.room-card-premium:hover .hover-scale {
    transform: scale(1.05);
}

.card-content-dark {
    background: #25241c;
}

.card-footer-dark {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.nav-circle-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--color-gold);
    background: transparent;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.nav-circle-btn:hover {
    background: var(--color-gold);
    color: #25241c;
}

/* ========== Header Scroll Glassmorphism ========== */
.site-header {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(10, 10, 10, 0.85) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header.header-scrolled,
.site-header.scrolled {
    /* Gold header on scroll */
    background: #bea733 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Ensure nav and topbar text/icons are readable on gold background */
/* .site-header.header-scrolled .nav-link,
.site-header.scrolled .nav-link,
.site-header.header-scrolled .bh-topbar__info,
.site-header.scrolled .bh-topbar__info,
.site-header.header-scrolled .bh-topbar__social,
.site-header.scrolled .bh-topbar__social,
.site-header.header-scrolled .theme-btn.btn-gold,
.site-header.scrolled .theme-btn.btn-gold {
     color: var(--color-forest) !important; 
} */
/* leave logo images unchanged (avoid forced filters) */

/* ========== Skip Link Accessibility ========== */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--color-gold);
    color: #25241c;
    padding: 8px 16px;
    z-index: 99999;
    font-weight: 700;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

/* ========== Premium Section Divider ========== */
.footer-divider-svg {
    display: block;
    width: 100%;
    height: 40px;
    background-color: #f1f1f1;
    fill: var(--color-forest-dark);
    margin-bottom: -1px;
}

/* ==========================================================================
   BODHI SUITES — HOME PAGE REDESIGN (boutique theme)
   Every selector below is namespaced with `bh-` and is used ONLY in home.php.
   Nothing here touches a class shared with rooms/booking/blog/etc pages —
   append this whole block to the end of style.css, don't merge it into
   existing rule blocks.
   ========================================================================== */

/* --- Hero --- */
.bh-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: #000;
}

.bh-hero__swiper,
.bh-hero__swiper .swiper-slide {
    height: 100%;
    width: 100%;
}

.bh-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.bh-hero {
    position: relative;
}

.bh-hero::before,
.bh-hero::after {
    display: none;
}

.bh-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.48) 40%, rgba(0, 0, 0, 0.92) 100%);
}

.bh-hero__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: flex-start;
    text-align: left;
    max-width: 720px;
    padding-left: clamp(32px, 6vw, 96px);
    padding-right: 32px;
    padding-bottom: 120px;
}

.bh-hero__eyebrow {
    display: inline-block;
    color: var(--color-gold-soft);
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(245, 230, 179, 0.35);
}

.bh-hero__title {
    font-family: var(--font-serif);
    color: #fff;
    font-size: clamp(2.6rem, 6vw, 4.75rem);
    line-height: 1.08;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.35);
}

.bh-hero__title span {
    display: block;
}

/* Second heading line: soft ivory, not gold — gold is reserved for the CTA button only */
.bh-hero__title-accent {
    color: rgba(255, 255, 255, 0.88);
}

.bh-hero__subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2.25rem;
}

.bh-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.bh-hero__actions .theme-btn {
    min-width: 210px;
    text-align: center;
}

/* Hide the hero frame and corner marks while preserving the hero structure */
.bh-hero__frame,
.bh-hero__corner {
    display: none !important;
}

/* Vertical side label */
.bh-hero__side-label {
    position: absolute;
    right: 52px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
    z-index: 2;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Facts strip — replaces the bare scroll chevron */
.bh-hero__facts {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 44px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0 28px;
}

.bh-hero__fact {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

.bh-hero__fact-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-gold-soft);
    opacity: 0.7;
}

.bh-hero__scroll {
    margin-left: 1.5rem;
    width: 22px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 7px;
    flex-shrink: 0;
}

.bh-hero__scroll span {
    width: 3px;
    height: 7px;
    border-radius: 2px;
    background: var(--color-gold-soft);
    animation: bh-scroll-dot 1.8s ease infinite;
}

@keyframes bh-scroll-dot {
    0% {
        opacity: 0;
        transform: translateY(0);
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

@media (max-width: 992px) {
    .bh-hero__side-label {
        display: none;
    }

    .bh-hero__frame {
        inset: 16px;
    }
}

@media (max-width: 768px) {
    .bh-hero {
        min-height: 560px;
    }

    .bh-hero__content {
        align-items: center;
        text-align: center;
        max-width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }

    .bh-hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .bh-hero__actions {
        justify-content: center;
    }

    .bh-hero__facts {
        flex-wrap: wrap;
        bottom: 24px;
        gap: 0.6rem;
    }

    .bh-hero__fact {
        font-size: 0.62rem;
    }

    .bh-hero__scroll {
        margin-left: 0.6rem;
    }
}

/* --- Signature Experience --- */
.bh-signature {
    padding: var(--space-xl) 0;
}

.bh-signature__media {
    position: relative;
    padding: 0 32px 48px 0;
}

.bh-signature__image-wrap {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
}

.bh-signature__badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-heading);
    padding: 10px 22px;
    border-radius: 30px;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.95rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

/* Overlapping accent image — the "layered" look */
.bh-signature__image-accent {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 42%;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    overflow: hidden;
    border: 6px solid var(--color-white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.22);
    z-index: 3;
}

.bh-signature__image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Oversized decorative quote mark behind the media block */
.bh-signature__mark {
    position: absolute;
    top: -60px;
    left: -20px;
    font-family: var(--font-serif);
    font-size: 12rem;
    line-height: 1;
    color: var(--color-gold-soft);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 992px) {
    .bh-signature__media {
        padding: 0 0 48px 0;
    }

    .bh-signature__image-accent {
        width: 48%;
    }

    .bh-signature__mark {
        display: none;
    }
}

.bh-signature__title {
    margin-bottom: 0.75rem;
}

.bh-signature__rule {
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-gold-deep);
    margin-bottom: 1.5rem;
}

.bh-signature__desc {
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
}

/* Stat counters */
.bh-signature__stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ece5d3;
}

.bh-signature__stat {
    display: flex;
    flex-direction: column;
}

.bh-signature__stat-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold-deep);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.bh-signature__stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    max-width: 110px;
}

@media (max-width: 576px) {
    .bh-signature__stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
}

/* Feature chips */
.bh-signature__list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.bh-signature__chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid #ece5d3;
    border-radius: 30px;
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--color-heading);
    background: #fff;
    transition: var(--transition-base);
}

.bh-signature__chip:hover {
    border-color: var(--color-gold-deep);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.bh-signature__chip i {
    color: var(--color-gold-deep);
    font-size: 0.85rem;
}

/* --- Suites --- */
.lead{
    font-size: 16px;
}
.bh-suites {
    padding: var(--section-pad) 0;
    background: var(--color-cream);
}

.bh-suites__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--space-md);
}

.bh-suites__title {
    margin-bottom: 0;
}

.bh-suite-card {
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.14);
    height: 520px;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
}

.bh-suite-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 76px rgba(0, 0, 0, 0.18);
}

.bh-suite-card__img-wrap {
    position: relative;
    height: 100%;
    overflow: hidden;
}
.bh-suite-card__img-wrap_rd{
    height: 400px;
}

.bh-suite-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.bh-suite-card:hover .bh-suite-card__img {
    transform: scale(1.06);
}

.bh-suite-card__price {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--color-heading);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.bh-suite-card__price strong {
    color: var(--color-gold-deep);
}

.bh-suite-card__body {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.85) 100%);
    padding: 1.5rem 1.75rem 1.8rem;
    margin: 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    min-height: 110px;
}

.bh-suite-card__name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.bh-suite-card__desc {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.bh-suite-card__meta {
    display: flex;
    gap: 1.25rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
}

.bh-suite-card__meta i {
    color: rgba(255, 255, 255, 0.85);
    margin-right: 4px;
}

.bh-suite-card__link {
    margin-top: auto;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.95);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.28s ease, transform 0.28s ease, color 0.18s ease;
    text-decoration: none;
    background: transparent;
    border: 0;
}

.bh-suite-card:hover .bh-suite-card__link {
    opacity: 1;
    transform: translateY(0);
    color: var(--color-gold-deep);
}

/* --- Spa Experience --- */
.bh-spa {
    padding: var(--space-xl) 0;
    background: var(--color-sage-soft);
}

.bh-spa__image-wrap {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.bh-spa__title {
    margin-bottom: 1.25rem;
}

.bh-spa__desc {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.bh-spa__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.bh-spa__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--color-heading);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.bh-spa__tag i {
    color: var(--color-sage);
}

/* --- Why Stay: editorial numbered list --- */
.bh-why {
    padding: var(--section-pad) 0;
}

.bh-why__title {
    margin-bottom: 0;
}

.bh-why__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 3.5rem;
    max-width: 980px;
    margin: 0 auto;
}

.bh-why__item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid #ece5d3;
    transition: var(--transition-base);
}

.bh-why__item:hover {
    padding-left: 8px;
}

.bh-why__item:hover .bh-why__num {
    color: var(--color-gold-deep);
}

.bh-why__num {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 700;
    color: #e8e2d0;
    line-height: 1;
    flex-shrink: 0;
    transition: var(--transition-base);
    min-width: 52px;
}

.bh-why__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-deep);
    font-size: 1rem;
    margin-top: 4px;
}

.bh-why__label {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-heading);
    margin-bottom: 0.35rem;
}

.bh-why__desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .bh-why__list {
        grid-template-columns: 1fr;
        column-gap: 0;
    }

    .bh-why__num {
        font-size: 1.75rem;
        min-width: 40px;
    }
}

/* --- Gallery masonry --- */
.bh-gallery {
    padding: var(--section-pad) 0;
}

.bh-gallery__title {
    margin-bottom: 0;
}

.bh-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.bh-gallery__tile {
    display: block;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.bh-gallery__img-wrap {
    width: 100%;
    height: 100%;
    padding: 12px 0;
    /* vertical padding preserved inside the grid row */
    box-sizing: border-box;
    /* include padding in the element height so grid row doesn't resize */
    display: block;
}

.bh-gallery__img-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.bh-gallery__grid a:hover img {
    transform: scale(1.06);
}

.bh-gallery__zoom {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    opacity: 0;
    transition: var(--transition-base);
}

.bh-gallery__grid a:hover .bh-gallery__zoom {
    opacity: 1;
}

@media (max-width: 992px) {
    .bh-gallery__grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 220px;
    }
}

@media (max-width: 768px) {
    .bh-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
        gap: 10px;
    }
}

/* --- Reviews header spacing (structure only, cards untouched) --- */
.bh-reviews {
    padding: var(--section-pad) 0;
}

.bh-reviews__title {
    margin-bottom: 0.25rem;
}

/* --- Explore Pokhara --- */
.bh-explore {
    padding: var(--section-pad) 0;
    background: var(--color-cream);
}

.bh-explore__title {
    margin-bottom: 0;
}

.bh-explore__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    gap: 1.5rem;
}

.bh-explore__header-text {
    flex: 1;
    text-align: center;
}

.explore-swiper {
    padding-bottom: 10px;
}

.explore-swiper .swiper-slide {
    width: 260px;
}

@media (max-width: 576px) {
    .explore-swiper .swiper-slide {
        width: 200px;
    }
}

.bh-explore-card {
    position: relative;
    display: block;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: var(--transition-base);
}

.bh-explore-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2);
}

.bh-explore-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.bh-explore-card:hover .bh-explore-card__img {
    transform: scale(1.08);
}

.bh-explore-card__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.78) 100%);
}

.bh-explore-card__name {
    position: absolute;
    left: 1.1rem;
    right: 1.1rem;
    bottom: 1.1rem;
    color: #fff;
    font-size: 1.05rem;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

@media (max-width: 992px) {
    .bh-explore__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

/* --- Blog cards --- */
.bh-blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0ece0;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
}

.bh-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12);
    border-color: var(--color-gold-soft);
}

.bh-blog-card__img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.bh-blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bh-blog-card:hover .bh-blog-card__img img {
    transform: scale(1.06);
}

.bh-blog-card__date {
    position: absolute;
    left: 16px;
    bottom: -14px;
    background: #fff;
    color: var(--color-gold-deep);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 7px 16px;
    border-radius: 30px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.bh-blog-card__body {
    padding: 2rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bh-blog-card__title {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.bh-blog-card__title a {
    color: var(--color-heading);
}

.bh-blog-card__title a:hover {
    color: var(--color-gold-deep);
}

.bh-blog-card__link {
    margin-top: auto;
    padding-top: 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-gold-deep);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-top: 1px dashed #eee;
}

.bh-blog-card__link i {
    transition: transform 0.3s ease;
}

.bh-blog-card:hover .bh-blog-card__link i {
    transform: translateX(4px);
}

/* --- Packages: editorial poster cards --- */
.bh-package-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    transition: var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.bh-package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 70px rgba(0, 0, 0, 0.16);
}

.bh-package-card__img-wrap {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.bh-package-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.bh-package-card:hover .bh-package-card__img-wrap img {
    transform: scale(1.07);
}

.bh-package-card__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.85) 100%);
}

.bh-package-card__badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--color-gold-deep);
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.bh-package-card__eyebrow {
    position: absolute;
    top: 18px;
    right: 18px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    z-index: 2;
}

.bh-package-card__name {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 16px;
    color: #fff;
    font-size: 1.3rem;
    margin: 0;
    z-index: 2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.bh-package-card__body {
    padding: 1.5rem 1.75rem 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bh-package-card__desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.bh-package-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #f0ece0;
    margin-top: auto;
}

.bh-package-card__price {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--color-gold-deep);
    font-size: 1.05rem;
}

.bh-package-card__price--muted {
    font-style: italic;
    font-weight: 400;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.bh-package-card__link {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-heading);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.25s ease, color 0.2s ease;
}

.bh-package-card__link i {
    transition: transform 0.25s ease;
}

.bh-package-card__link:hover {
    color: var(--color-gold-deep);
    gap: 9px;
}

.bh-package-card__link:hover i {
    transform: translateX(3px);
}

/* --- Newsletter: black bg, gold lettering — joined with the trust bar
       below it (no gap, no bottom padding on the --joined variant) --- */
.bh-newsletter {
    background: #25241c;
    padding: var(--space-xl) 0;
}

.bh-newsletter--joined {
    padding-bottom: 3rem;
}

.bh-newsletter__glow {
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.14) 0%, transparent 70%);
    pointer-events: none;
}

.bh-newsletter__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.bh-newsletter__text {
    flex: 1 1 380px;
    text-align: left;
}

.bh-newsletter__title {
    margin-bottom: 0.5rem;
    color: var(--color-gold-deep);
}

.bh-newsletter__desc {
    color: rgba(255, 255, 255, 0.65);
}

.bh-newsletter__form {
    flex: 1 1 420px;
}

.bh-newsletter__field {
    display: flex;
    gap: 12px;
}

.bh-newsletter__input {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 30px;
    padding: 14px 22px;
    color: var(--color-gold-soft);
    font-size: 0.95rem;
}

.bh-newsletter__input::placeholder {
    color: rgba(245, 230, 179, 0.5);
}

.bh-newsletter__input:focus {
    outline: none;
    border-color: var(--color-gold-deep);
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .bh-newsletter--joined {
        padding-bottom: 2rem;
    }

    .bh-newsletter__inner {
        flex-direction: column;
        text-align: center;
    }

    .bh-newsletter__text {
        text-align: center;
    }

    .bh-newsletter__field {
        flex-direction: column;
    }
}

/* ==========================================================================
   MAIN TEMPLATE (main.php) — header/footer/mobile-drawer redesign
   Global, site-wide (this file loads on every page, unlike bh-* classes).
   ========================================================================== */

/* Footer links didn't have a base color before — relied on inherited
   .site-footer color, which worked but wasn't explicit. Making it explicit
   here so the component is self-contained. */
.footer-links {
    color: rgba(255, 255, 255, 0.7);
}

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

/* Contact icons: quiet gold-soft accent, not a static loud gold */
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-list i {
    color: var(--color-gold-soft);
    margin-top: 4px;
    flex-shrink: 0;
}

/* Social icons: neutral outline by default, gold fill only on hover/focus —
   interaction accent instead of five static gold icons */
.footer-social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    transition: var(--transition-base);
}

.footer-social-icon:hover,
.footer-social-icon:focus-visible {
    background: var(--color-gold-deep);
    border-color: var(--color-gold-deep);
    color: #fff;
    transform: translateY(-2px);
}

/* --- Mobile menu drawer: cream/serif to match the rest of the site
       instead of plain white Bootstrap default --- */
.mobile-menu-drawer {
    background: var(--color-cream);
    box-shadow: 20px 0 50px rgba(0, 0, 0, 0.15);
}

.mobile-drawer-header {
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.mobile-drawer-brand {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-heading);
}

.drawer-close {
    color: var(--color-heading);
}

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--color-heading) !important;
}

.mobile-nav-item .submenu li a {
    color: var(--color-text-muted) !important;
}

.mobile-nav-item .submenu li a:hover {
    color: var(--color-gold-deep) !important;
}

/* ==========================================================================
   HEADER TOPBAR — collapses on scroll via the existing .header-scrolled
   class your app.js already toggles; no new JS required.
   Black background, white text, gold icons — matches current live state.
   ========================================================================== */
.bh-topbar {
    max-height: 50px;
    overflow: hidden;
    background: #bea733;
    border: none;
    margin: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
}

.bh-topbar>div {
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0;
}

.site-header.header-scrolled .bh-topbar {
    max-height: 0;
    opacity: 0;
    padding: 0;
}

.bh-topbar__info {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #25241c;
    font-size: 0.75rem;
    letter-spacing: 0.02em;
}

.bh-topbar__info i {
    color: #f1f1f1;
    margin-right: 5px;
}

/* FIX: was rgba(0,0,0,0.15) — a black divider on a black bar, invisible.
   Needs to be light since the topbar background is black. */
.bh-topbar__divider {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
}

.bh-topbar__social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bh-topbar__social-icon,
.bh-topbar__social a {
    color: var(--color-gold-deep);
    font-size: 1rem;
    transition: var(--transition-base);
    opacity: 1;
}

.bh-topbar__social-icon:hover,
.bh-topbar__social a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .bh-topbar {
        display: none;
    }
}

.theme-btn.btn-gold.text-decoration-none {
    color: #fff !important;
}

/* ==========================================================================
   FOOTER — column dividers, heading underlines, back-to-top link
   ========================================================================== */
.bh-footer-heading {
    position: relative;
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem !important;
}

.bh-footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background: var(--color-gold-deep);
}

.bh-footer-col {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 2rem !important;
}

@media (max-width: 767px) {
    .bh-footer-col {
        border-left: none;
        padding-left: 0 !important;
    }
}

.bh-back-to-top {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-base);
}

.bh-back-to-top:hover {
    color: var(--color-gold-deep);
}

/* ==========================================================================
   TRANSPARENT NAV — logo/nav row is transparent by default, only the
   topbar above it keeps a dark strip for legibility. Solid background
   returns via the existing .header-scrolled toggle (no new JS).
   ========================================================================== */
.site-header:not(.header-scrolled) {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom-color: transparent !important;
}

/* Bigger logo needs a touch more vertical room in the nav row */
.header-inner {
    min-height: 99px;
    margin: 0;
}

/* ==========================================================================
   TRUST BAR — joined with the newsletter section above: same black
   background, no gap, gold lettering, circular icon badge per partner.
   ========================================================================== */
.bh-trustbar {
    position: relative;
    background: var(--color-forest);
}

.bh-trustbar--joined {
    padding-top: 0;
}

.bh-trustbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding: 2.5rem 0 3.5rem;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.bh-trustbar__title {
    color: var(--color-gold-deep);
    font-size: 1.9rem;
    margin: 0.25rem 0 0;
}

.bh-trustbar__logos {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex-wrap: wrap;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
}

.bh-trustbar__logo {
    color: rgba(245, 230, 179, 0.85);
    font-family: var(--font-serif);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: var(--transition-base);
}

.bh-trustbar__badge {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-deep);
    font-size: 1.15rem;
    transition: var(--transition-base);
    background: rgba(255, 255, 255, 0.06);
}

.bh-trustbar__badge img {
    width: 25px;
    height: 25px;
    display: block;
}

.bh-trustbar__logo {
    padding: 0.9rem 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.02);
}

.bh-trustbar__logo:hover .bh-trustbar__badge {
    background: #ffffff;
    transform: translateY(-3px);
}

.bh-trustbar__logo:hover {
    color: var(--color-gold-soft);
}

@media (max-width: 768px) {
    .bh-trustbar__inner {
        flex-direction: column;
        text-align: center;
    }

    .bh-trustbar__logos {
        justify-content: center;
        gap: 1.25rem;
    }
}

/* ==========================================================================
   TYPOGRAPHY REFINEMENT — scale-down pass only.
   No color or background properties in this file, on purpose — safe to
   append after any color edits without conflicting with them.
   Append this to the very end of style.css.
   ========================================================================== */

:root {
    /* Smaller, more restrained luxury scale than the original defaults */
    --fs-h1: clamp(2.25rem, 5vw, 3.75rem);
    --fs-h2: clamp(1.75rem, 3.2vw, 2.75rem);
    --fs-h3: clamp(1.3rem, 2.2vw, 1.85rem);
}

/* Slightly lighter weight + tighter tracking reads as editorial,
   not shouty, at any size */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    letter-spacing: -0.015em;
}

.section-title {
    font-weight: 500;
}

.section-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.28em;
}

/* Hero (home) */
.bh-hero__title {
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    font-weight: 500;
}

.bh-hero__eyebrow {
    letter-spacing: 0.32em;
    font-size: 0.7rem;
}

.bh-hero__subtitle {
    font-size: 1.05rem;
}

/* Signature stat numbers were competing with the heading — pull back */
.bh-signature__stat-num {
    font-size: 2rem;
}

/* Moments & Offers */
.moments-title {
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    font-weight: 500;
}

.moments-eyebrow {
    font-size: 0.65rem;
}

/* Booking hero */
.booking-hero__title {
    font-size: clamp(2.25rem, 4.5vw, 3.6rem);
    font-weight: 500;
}

/* Generic page hero (rooms, about, blog listing, etc.) */
.page-hero__title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 500;
}

/* Booking form + summary headings, previously oversized relative to their cards */
.booking-form__title {
    font-size: 1.9rem;
}

.booking-summary__title {
    font-size: 1.4rem;
}

/* A touch more breathing room now that type is smaller — keeps the
   "wow" feeling spacious rather than just compact */
.section-pad,
.bh-suites,
.bh-spa,
.bh-why,
.bh-gallery,
.bh-explore,
.bh-reviews {
    padding-top: calc(var(--section-pad) * 1.05);
    padding-bottom: calc(var(--section-pad) * 1.05);
}
/* ==========================================================================
   ROOM DETAIL PAGE — editorial boutique layout, v2
   Built around two components that already existed in this stylesheet but
   were never used on any page: the split-image editorial row
   (.room-card--split / .room-card__inner) and the circular photo gallery
   from the homepage CTA (.circle-img-item). Append to end of style.css.
   ========================================================================== */

.rd-prose {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--color-text-muted);
}

/* --- Hero glass card: overlaps the bottom of the page-hero image --- */
.rd-hero-card {
    position: relative;
    z-index: 5;
    margin-top: -70px;
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--border-radius);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.rd-hero-card__facts {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.rd-hero-card__fact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rd-hero-card__fact i {
    font-size: 1.3rem;
    color: var(--color-gold-deep);
}

.rd-hero-card__fact-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    font-weight: 700;
}

.rd-hero-card__fact-value {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--color-heading);
}

.rd-hero-card__divider {
    width: 1px;
    height: 34px;
    background: #e5ddc8;
}

.rd-hero-card__cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.rd-hero-card__price {
    text-align: right;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-gold-deep);
    font-weight: 700;
    line-height: 1.1;
}

.rd-hero-card__price span {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    font-weight: 700;
}

.rd-hero-card__price small {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--color-text-muted);
    margin-left: 4px;
}

@media (max-width: 991px) {
    .rd-hero-card {
        margin-top: -40px;
        padding: 1.5rem;
        justify-content: center;
        text-align: center;
    }

    .rd-hero-card__cta {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 576px) {
    .rd-hero-card__facts {
        justify-content: center;
        gap: 1rem;
    }

    .rd-hero-card__divider {
        display: none;
    }
}

/* --- Reversed variant of the existing .room-card--split component --- */
.room-card--reverse {
    flex-direction: row-reverse;
}

.room-card--reverse .room-card__inner {
    margin-left: 0;
    margin-right: -80px;
    width: calc(100% + 80px);
}

@media (max-width: 1024px) {
    .room-card--reverse .room-card__inner {
        margin-right: -50px;
        width: calc(100% + 50px);
    }
}

@media (max-width: 767px) {
    .room-card--reverse {
        flex-direction: column;
    }

    .room-card--reverse .room-card__inner {
        margin-right: 0;
        width: 100%;
    }
}

/* --- Amenities checklist panel --- */
.rd-amenities-panel {
    padding: 2.5rem;
    border-radius: var(--border-radius);
}

.rd-amenity-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.6rem 0;
}

.rd-amenity-row i {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--color-cream);
    color: var(--color-gold-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.rd-amenity-row span {
    color: var(--color-heading);
    font-size: 0.95rem;
}

/* --- Rectangular photo gallery grid (replaces the circular strip) --- */
.rd-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.rd-gallery-tile {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    background: #e9e4d6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.rd-gallery-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.rd-gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.rd-gallery-tile:hover img {
    transform: scale(1.06);
}

.rd-gallery-tile::after {
    content: '\f00e';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rd-gallery-tile:hover::after,
.rd-gallery-tile:focus-visible::after {
    opacity: 1;
}

.rd-gallery-tile:focus-visible {
    outline: var(--focus-ring);
    outline-offset: 4px;
}

@media (max-width: 992px) {
    .rd-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

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

/* --- Full-width dark reservation panel (replaces the sticky sidebar) --- */
.rd-reserve-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(200, 164, 92, 0.2);
    border-radius: var(--border-radius);
    padding: 3rem;
}

.rd-reserve-price {
    margin-top: 1.75rem;
}

.rd-reserve-price small {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.35rem;
}

.rd-reserve-price__value {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold-deep);
}

.rd-reserve-price__value span {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 6px;
}

.rd-reserve-form .form-label {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.7rem;
}

.rd-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--color-gold-soft);
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.rd-input:focus {
    outline: none;
    border-color: var(--color-gold-deep);
    background: rgba(255, 255, 255, 0.1);
}

.rd-input option {
    background: var(--color-forest);
    color: #fff;
}

@media (max-width: 991px) {
    .rd-reserve-panel {
        padding: 2rem 1.5rem;
    }
}