@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ==========================================
   DESIGN SYSTEM / GLOBAL CSS VARIABLES
   ========================================== */
:root {
    /* Colors */
    --color-dark: #151312;
    --color-white: #ffffff;

    /* Layout */
    --site-max-width: 1440px;

    /* Typography Settings */
    --font-primary: 'Montserrat', sans-serif;

    /* Font Weights */
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100vh;
    font-family: var(--font-primary);
    color: var(--color-dark);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

/* ==========================================
   GLOBAL TYPOGRAPHY & REUSABLE CLASSES
   ========================================== */

/* H1 Heading (Hero / Main spaces) */
h1,
.h1 {
    font-size: clamp(24px, 5.2vw, 48px);
    font-weight: var(--fw-semibold);
    line-height: 1.18;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* H2 Heading (Section Headings) */
h2,
.h2 {
    font-size: clamp(20px, 3.8vw, 40px);
    font-weight: var(--fw-regular);
    line-height: 1.22;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* H3 Heading (Card / Module Titles) */
h3,
.h3 {
    font-size: clamp(17px, 2.6vw, 28px);
    font-weight: var(--fw-medium);
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* H4 Heading (Sub-Headings) */
h4,
.h4 {
    font-size: clamp(14px, 2vw, 20px);
    font-weight: var(--fw-medium);
    line-height: 1.35;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Sub-title / Tagline Badge (e.g. OUR ROOMS) */
.sub-title,
.tagline {
    font-size: clamp(11.5px, 1.4vw, 15px);
    font-weight: var(--fw-medium);
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Paragraph / Description Text */
p,
.text-desc {
    font-size: clamp(13px, 1.1vw, 14px);
    font-weight: var(--fw-light);
    line-height: 1.8;
    letter-spacing: 0;
    color: var(--color-dark);
}


/* ==========================================
   BUTTONS (REUSABLE UTILITIES)
   ========================================== */
.btn {
    display: inline-block;
    padding: 12px 32px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: var(--fw-medium);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-outline-white {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.85);
}

.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-dark);
}

.btn-dark {
    background: var(--color-dark);
    color: var(--color-white);
    border: 1px solid var(--color-dark);
}

.btn-dark:hover {
    background: var(--color-white);
    color: var(--color-dark);
}


/* ==========================================
   HEADER SECTION & SMOOTH STICKY EFFECT
   ========================================== */
/* ==========================================
   HEADER SECTION & SMOOTH STICKY EFFECT
   ========================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
}

/* Down-flow White Background Overlay */
.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* When Scrolled: Background slides down smoothly */
.site-header.scrolled .header-bg {
    transform: translateY(0);
}

/* Top Header Bar (Logo & Actions) */
.header-top {
    position: relative;
    z-index: 1;
    padding: 10px 40px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-height: 100px;
    opacity: 1;
    transform: translateY(0);
    transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1),
        padding 0.5s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.4s ease,
        transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
        background 0.4s ease,
        backdrop-filter 0.4s ease;
    overflow: hidden;
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.site-header.scrolled .header-top {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.header-left {
    min-width: 160px;
    opacity: 0;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.header-logo img {
    height: 52px;
    width: auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 160px;
    justify-content: flex-end;
}

/* CALL Button: Simple button with black border matching BOOK button shape */
.nav-call {
    display: inline-block;
    padding: 10px 28px;
    background: transparent;
    color: var(--color-dark);
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: var(--fw-medium);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--color-dark);
    line-height: normal;
    text-align: center;
    vertical-align: middle;
    box-sizing: border-box;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Initial State BOOK Button: White Background with Dark Border */
.btn-book {
    display: inline-block;
    padding: 10px 28px;
    background: var(--color-white);
    color: var(--color-dark);
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: var(--fw-medium);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--color-dark);
    line-height: normal;
    text-align: center;
    vertical-align: middle;
    box-sizing: border-box;
    transition: all 0.35s ease;
}

.btn-book:hover {
    background: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
}

/* Scrolled Sticky State BOOK Button: Dark Background */
.site-header.scrolled .btn-book {
    background: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
}

.site-header.scrolled .btn-book:hover {
    background: var(--color-white);
    color: var(--color-dark);
    border-color: var(--color-dark);
}

.site-header.scrolled .nav-call {
    background: transparent;
    color: var(--color-dark);
    border: 1px solid var(--color-dark);
}

/* Bottom Nav Bar */
.header-nav-bar {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    padding: 14px 40px;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
}

.site-header.scrolled .header-nav-bar {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-top-color: transparent;
    padding: 10px 40px;
}

.nav-bar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--site-max-width);
    margin: 0 auto;
}

.nav-bar-left {
    flex: 1 1 200px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.nav-bar-right {
    flex: 1 1 200px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Scrolled Logo (Left side of nav bar) */
.nav-logo-scrolled {
    display: flex;
    align-items: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(0) scale(0.9);
    transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.4s ease;
    pointer-events: none;
}

.nav-logo-scrolled img {
    height: 38px;
    width: auto;
}

.site-header.scrolled .nav-logo-scrolled {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

/* Scrolled Actions (Right side of nav bar) */
.nav-bar-right .header-actions {
    opacity: 0;
    visibility: hidden;
    transform: translateX(0) scale(0.9);
    transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.4s ease;
    pointer-events: none;
}

.site-header.scrolled .nav-bar-right .header-actions {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.nav-menu {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    list-style: none;
    margin: 0 auto;
}

/* Nav Link Vertical Text Flip / Roll Animation */
.nav-link {
    display: inline-block;
    height: 14px;
    line-height: 14px;
    overflow: hidden;
    position: relative;
    font-size: 13px;
    font-weight: var(--fw-regular);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-dark);
    text-decoration: none;
    vertical-align: middle;
}

.nav-link-inner {
    display: flex;
    flex-direction: column;
    transition: transform 0.88s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-link-inner span {
    display: block;
    height: 14px;
    line-height: 14px;
    white-space: nowrap;
}

.nav-link:hover .nav-link-inner {
    transform: translateY(-50%);
}

.nav-sep {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================
   HERO BANNER & HOME HERO SLIDER
   ========================================== */
.hero-banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #12100e;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
}

/* Home Hero Dynamic Slider Wrapper */
.home-hero-slider {
    background-image: none !important;
}

.hero-slides-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.08);
    transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1), transform 7s cubic-bezier(0.1, 0, 0.2, 1), visibility 1.6s;
    will-change: transform, opacity;
}

.hero-bg-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

/* Luxury Multi-layer Gradient Overlay for crisp contrast & readability */
.hero-slider-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.42) 0%,
        rgba(0, 0, 0, 0.25) 35%,
        rgba(0, 0, 0, 0.40) 70%,
        rgba(0, 0, 0, 0.68) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 1050px;
    margin-bottom: -15%;
}

/* Elegant Slide Navigation Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-dot {
    position: relative;
    width: 32px;
    height: 4px;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    border-radius: 2px;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    transition: width 0.4s ease, background-color 0.3s ease;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.hero-dot.active {
    width: 50px;
    background: rgba(255, 255, 255, 0.35);
}

.hero-dot .dot-progress {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: #ffffff;
    border-radius: 2px;
}

.hero-dot.active .dot-progress {
    animation: heroProgressAnim 5s linear forwards;
}

@keyframes heroProgressAnim {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-slider-dots {
        bottom: 25px;
        gap: 8px;
    }
    .hero-dot {
        width: 24px;
        height: 3.5px;
    }
    .hero-dot.active {
        width: 38px;
    }
}

/* ==========================================
   STATS / CLOCK COUNTER SECTION
   ========================================== */
.stats-section {
    width: 100%;
    background-color: var(--color-white);
    padding: 150px 0 100px;
}

.stats-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    gap: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 250px;
}

.stat-number-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

/* Number Box (50px fixed height mask) */
.stat-number-box {
    display: flex;
    align-items: center;
    height: 50px;
    overflow: hidden;
}

.digit-col {
    display: block;
    height: 50px;
    min-width: 26px;
    overflow: hidden;
    flex-shrink: 0;
}

.digit-list {
    display: flex;
    flex-direction: column;
    height: auto;
    flex-shrink: 0;
    transform: translateY(0);
    transition: transform 2.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.digit-list span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    min-height: 50px;
    max-height: 50px;
    line-height: 1;
    font-size: 40px;
    font-weight: var(--fw-medium, 500);
    color: #18171C;
    text-align: center;
    flex-shrink: 0;
    flex-grow: 0;
}

/* Plus Symbol (+) */
.stat-plus {
    font-size: 40px;
    font-weight: var(--fw-regular, 400);
    line-height: 50px;
    color: #A3A3A3;
    margin-left: 2px;
    flex-shrink: 0;
}

/* Description Text */
.stat-desc {
    font-size: 14px;
    font-weight: var(--fw-regular, 400);
    line-height: 27px;
    color: var(--color-dark);
    max-width: 210px;
}

/* Vertical Divider Lines */
.stat-divider {
    width: 1px;
    height: 54px;
    background-color: rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
    margin-top: 6px;
}

/* Clock / Rolling Digit Animations */
/* Stat 1 (10+) */
.stats-section.animated .stat-item:nth-child(1) .digit-col:nth-child(1) .digit-list {
    transform: translateY(-50px);
    /* 0 -> 1 */
}

.stats-section.animated .stat-item:nth-child(1) .digit-col:nth-child(2) .digit-list {
    transform: translateY(-500px);
    /* 0 -> ... -> 0 */
}

/* Stat 2 (25+) */
.stats-section.animated .stat-item:nth-child(3) .digit-col:nth-child(1) .digit-list {
    transform: translateY(-100px);
    /* 0 -> ... -> 2 */
}

.stats-section.animated .stat-item:nth-child(3) .digit-col:nth-child(2) .digit-list {
    transform: translateY(-250px);
    /* 0 -> ... -> 5 */
}

/* Stat 3 (15+) */
.stats-section.animated .stat-item:nth-child(5) .digit-col:nth-child(1) .digit-list {
    transform: translateY(-50px);
    /* 0 -> 1 */
}

.stats-section.animated .stat-item:nth-child(5) .digit-col:nth-child(2) .digit-list {
    transform: translateY(-250px);
    /* 0 -> ... -> 5 */
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    .stats-section {
        padding: 50px 0;
    }

    .stats-container {
        flex-direction: column;
        gap: 36px;
        align-items: center;
    }

    .stat-item {
        align-items: center;
        text-align: center;
    }

    .stat-number-wrapper {
        justify-content: center;
    }

    .stat-divider {
        display: none;
    }
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
    width: 100%;
    background-color: var(--color-white);
    padding: 50px 0 100px;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
}

/* Left Column: Image */
.about-img-col {
    flex: 1 1 50%;
    max-width: 620px;
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Right Column: Content */
.about-content-col {
    flex: 1 1 50%;
    max-width: 580px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-emblem-icon {
    width: 37px;
    height: auto;
    margin-bottom: 24px;
}

.about-content-col .sub-title {
    margin-bottom: 12px;
}

.about-title {
    margin-bottom: 12px;
}

.about-subtitle {
    font-size: 13px;
    font-weight: var(--fw-medium);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #151312;
    margin-bottom: 24px;
}

.about-desc {
    margin-bottom: 32px;
}

/* Responsive Styles for About Section */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        gap: 50px;
    }

    .about-img-col,
    .about-content-col {
        max-width: 100%;
        flex: 1 1 100%;
    }
}

/* ==========================================
   OUR ROOMS SECTION & STAGE SLIDER
   ========================================== */
.rooms-section {
    width: 100%;
    background-color: var(--color-white);
    padding: 50px 0 150px;
    position: relative;
    overflow: hidden;
}

.rooms-header-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;
}

.rooms-emblem {
    width: 37px;
    height: auto;
    margin-bottom: 20px;
}

.rooms-header-stack .sub-title {
    margin-bottom: 12px;
}

.rooms-title {
    margin-bottom: 10px;
}

.rooms-tagline {
    font-size: 14px;
    font-weight: var(--fw-light);
    color: #151312;
    letter-spacing: 0.02em;
}

/* Slider Stage Container */
.rooms-slider-container {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.rooms-slider-viewport {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.rooms-slider-track {
    display: flex;
    align-items: center;
    gap: 30px;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.room-slide {
    flex: 0 0 1050px;
    max-width: 1050px;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s ease, filter 1s ease;
    opacity: 0.45;
    transform: scale(0.92);
    filter: grayscale(30%);
}

.room-slide.active {
    opacity: 1;
    transform: scale(1);
    filter: grayscale(0%);
}

.room-image-box {
    width: 100%;
    height: 580px;
    overflow: hidden;
}

.room-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Dashed Circular Arrow Buttons */
.rooms-nav-btn {
    position: absolute;
    top: 310px;
    transform: translateY(-50%);
    z-index: 25;
    width: 52px;
    height: 52px;
    border: 1.5px dashed var(--color-dark);
    border-radius: 50%;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s ease;
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.rooms-nav-btn:hover {
    background: var(--color-dark);
    border-style: solid;
    border-color: var(--color-dark);
}

.rooms-nav-btn svg path {
    transition: fill 0.35s ease;
}

.rooms-nav-btn:hover svg path {
    fill: var(--color-white);
}

.rooms-nav-btn.prev-btn {
    left: 20px;
}

.rooms-nav-btn.next-btn {
    right: 20px;
}

.rooms-nav-btn.next-btn svg {
    transform: rotate(180deg);
}

/* Room Details Info Bar (Below Active Slide) */
.room-details-container {
    max-width: 1050px;
    margin: 40px auto 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    padding: 0 20px;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.room-details-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex: 0 0 320px;
}

.room-name {
    font-size: 32px;
    font-weight: var(--fw-regular);
    letter-spacing: 0.01em;
    color: var(--color-dark);
    margin: 0;
}

.room-details-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.room-desc {
    font-size: 14px;
    font-weight: var(--fw-light);
    line-height: 27px;
    color: var(--color-dark);
    margin: 0 0 20px 0;
}

.room-details-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.room-amenities {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: var(--fw-regular);
    color: var(--color-dark);
}

.amenity-item img,
.amenity-item svg {
    width: 20px;
    height: 20px;
}

.amenity-sep {
    color: rgba(0, 0, 0, 0.2);
    font-weight: 300;
}

/* Responsive Styles for Rooms Slider */
@media (max-width: 1200px) {
    .room-slide {
        flex: 0 0 85vw;
        max-width: 85vw;
    }
}

@media (max-width: 992px) {
    .room-slide {
        flex: 0 0 85vw;
        max-width: 85vw;
    }

    .room-image-box {
        height: 340px;
    }

    .room-details-container {
        flex-direction: column;
        gap: 30px;
    }

    .room-details-left {
        flex: 1 1 100%;
    }

    .rooms-nav-btn.prev-btn {
        left: 5px;
    }

    .rooms-nav-btn.next-btn {
        right: 5px;
    }
}

/* ==========================================
   FOOTER SECTION (3 DISTINCT FACES LAYOUT)
   ========================================== */
.site-footer {
    width: 100%;
    background-color: var(--color-dark);
    /* #151312 */
    color: var(--color-white);
    padding: 40px 0 0 0;
    font-family: var(--font-primary);
}

.footer-container {
    max-width: var(--site-max-width);
    /* 1440px */
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* Common Footer Headings */
.footer-heading {
    font-size: 14px;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 22px;
}

.footer-subheading {
    margin-top: 36px;
}

/* FACE 1: LEFT SECTION (About & Contact Info) */
.footer-face-left {
    flex: 1 1 360px;
    max-width: 400px;
}

.footer-about-text {
    font-size: 13px;
    font-weight: var(--fw-light);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    font-weight: var(--fw-light);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--color-white);
}

/* FACE 2: CENTER SECTION (Dyore Logo) */
.footer-face-center {
    flex: 0 0 240px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 8px;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* FACE 3: RIGHT SECTION (Company Links, Popular Links & Follow Box) */
.footer-face-right {
    flex: 1 1 420px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
}

.footer-links-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}

.footer-links-col {
    flex: 1;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links-list a {
    font-size: 13px;
    font-weight: var(--fw-light);
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-list a:hover {
    color: var(--color-white);
}

/* Follow Us Box inside Face 3 */
.footer-follow-box {
    margin-top: 70px;
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.follow-text {
    font-size: 16px;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-white);
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icon-btn {
    width: 47px;
    height: 47px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
    text-decoration: none;
}

.social-icon-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

/* FOOTER BOTTOM BAR */
.footer-bottom-wrapper {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    max-width: var(--site-max-width);
    /* 1440px */
    margin: 0 auto;
    padding: 20px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-weight: var(--fw-light);
    color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
}

/* RESPONSIVE BREAKPOINTS FOR 3 FACES */
@media (max-width: 1024px) {
    .footer-container {
        flex-wrap: wrap;
    }

    .footer-face-left {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .footer-face-center {
        order: -1;
        width: 100%;
        justify-content: flex-start;
    }

    .footer-face-right {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .footer-container {
        padding: 0 20px;
    }

    .footer-links-wrapper {
        flex-direction: column;
        gap: 24px;
    }

    .footer-follow-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 20px;
    }
}

/* ==========================================
   ROYAL AMENITIES SECTION & CAROUSEL
   ========================================== */
.amenities-section {
    position: relative;
    width: 100%;
    padding: 150px 0 0 0;
    background-color: var(--color-white);
    overflow: hidden;
}

.amenities-header-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.amenities-emblem {
    width: 37px;
    height: auto;
    margin-bottom: 12px;
}

.amenities-header-stack .sub-title {
    color: var(--color-dark);
    margin-bottom: 10px;
}

.amenities-title {
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.amenities-tagline {
    font-size: 14px;
    font-weight: 300;
    color: #151312;
    letter-spacing: 0.02em;
}

/* Slider Viewport */
.amenities-slider-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.amenities-slider-track {
    display: flex;
    width: 100%;
    will-change: transform;
}

/* Amenity Card Item */
.amenity-card {
    position: relative;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    height: 600px;
    overflow: hidden;
    cursor: pointer;
}

.amenity-img-box {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.amenity-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.amenity-card:hover .amenity-img-box img {
    transform: scale(1.08);
}

/* Hover Overlay (Exact match to Screenshot 3) */
.amenity-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(21, 19, 18, 0.78);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 32px;
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 5;
}

.amenity-card:hover .amenity-hover-overlay {
    opacity: 1;
    visibility: visible;
}

.amenity-overlay-emblem {
    width: 37px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    margin-bottom: 18px;
    transform: translateY(12px);
    transition: transform 0.4s ease;
}

.amenity-overlay-title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 16px;
    transform: translateY(12px);
    transition: transform 0.4s ease 0.05s;
}

.amenity-overlay-desc {
    font-family: var(--font-primary);
    font-size: 13.5px;
    font-weight: 300;
    line-height: 23px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 320px;
    margin-bottom: 24px;
    transform: translateY(12px);
    transition: transform 0.4s ease 0.1s;
}

.amenity-overlay-divider {
    width: 40px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
    transform: translateY(12px);
    transition: transform 0.4s ease 0.15s;
}

.amenity-card:hover .amenity-overlay-emblem,
.amenity-card:hover .amenity-overlay-title,
.amenity-card:hover .amenity-overlay-desc,
.amenity-card:hover .amenity-overlay-divider {
    transform: translateY(0);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .amenity-card {
        flex: 0 0 50%;
        max-width: 50%;
        height: 480px;
    }
}

@media (max-width: 640px) {
    .amenities-section {
        padding: 60px 0 0 0;
    }

    .amenities-title {
        font-size: 30px;
    }

    .amenity-card {
        flex: 0 0 100%;
        max-width: 100%;
        height: 440px;
    }

    .amenity-hover-overlay {
        padding: 30px 20px;
    }
}

/* ==========================================
   DYORE EXPERIENCES - ROYAL ESCAPE SECTION
   ========================================== */
.royal-escape-section {
    display: flex;
    width: 100%;
    min-height: 620px;
    background-color: #fff;
    overflow: hidden;
    gap: 2px;
}

.royal-escape-img-col {
    flex: 1 1 70%;
    width: 50%;
    position: relative;
    overflow: hidden;
}

.royal-escape-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.royal-escape-content-col {
    flex: 1 1 40%;
    width: 50%;
    background-color: #121212;
    background-image: url('./assets/images/Experiences-element.png');
    background-repeat: repeat;
    background-position: center;
    background-size: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 70px;
    color: #ffffff;
}

.royal-escape-emblem {
    width: 37px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    margin-bottom: 24px;
}

.royal-escape-sub {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.royal-escape-title {
    font-family: var(--font-primary);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 24px;
    max-width: 425px;
}

.royal-escape-desc {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 300;
    line-height: 27px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    max-width: 440px;
}

.btn-explore-suites {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #151312;
    padding: 16px 36px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #ffffff;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-explore-suites:hover {
    background-color: transparent;
    color: #ffffff;
}

/* Responsive adjustments for Royal Escape Section */
@media (max-width: 992px) {
    .royal-escape-section {
        flex-direction: column;
        min-height: auto;
    }

    .royal-escape-img-col,
    .royal-escape-content-col {
        width: 100%;
        flex: none;
    }

    .royal-escape-img-col {
        height: 400px;
    }

    .royal-escape-content-col {
        padding: 60px 40px;
    }

    .royal-escape-title {
        font-size: 32px;
        max-width: 100%;
    }

    .royal-escape-desc {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .royal-escape-img-col {
        height: 320px;
    }

    .royal-escape-content-col {
        padding: 48px 24px;
    }

    .royal-escape-title {
        font-size: 26px;
    }

    .btn-explore-suites {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================
   NEARBY ATTRACTIONS SECTION & HOVER ANIMATION
   ========================================== */
.attractions-section {
    position: relative;
    width: 100%;
    padding: 150px 0;
    background-color: var(--color-white);
}

.attractions-header-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
}

.attractions-emblem {
    width: 37px;
    height: auto;
    margin-bottom: 12px;
}

.attractions-title {
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--color-dark);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.attractions-subtitle {
    font-size: 14px;
    font-weight: 300;
    color: #151312;
    letter-spacing: 0.02em;
}

/* 4 Cards Grid */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.attraction-card {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    cursor: pointer;
}

.attraction-img-box {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.attraction-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.attraction-card:hover .attraction-img-box img {
    transform: scale(1.08);
}

.attraction-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.45s ease;
    z-index: 1;
}

.attraction-card:hover .attraction-card-overlay {
    opacity: 1;
}

.attraction-info-wrap {
    position: absolute;
    inset: 0;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    z-index: 2;
    pointer-events: none;
}

/* Initial State: Distance is at upper position (hidden), Name is at lower position (hidden) */
.attraction-distance {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.04em;
    opacity: 0;
    transform: translateY(0);
    transition: transform 0.88s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.45s ease;
}

.attractions-section .attraction-name {
    font-family: var(--font-primary);
    font-size: 20px !important;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(0);
    transition: transform 0.88s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.45s ease;
    background: #1a1a1aa6;
    padding: 10px 20px;
}

/* Hover Swap State:
   - Distance moves DOWN to lower position
   - Name moves UP to upper position
*/
.attraction-card:hover .attraction-distance {
    opacity: 1;
    transform: translateY(180px);
}

.attraction-card:hover .attraction-name {
    opacity: 1;
    transform: translateY(-75px);
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .attractions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .attraction-card {
        height: 280px;
    }

    .attraction-info-wrap {
        padding: 40px 20px;
    }

    .attraction-card:hover .attraction-distance {
        transform: translateY(170px);
    }

    .attraction-card:hover .attraction-name {
        transform: translateY(-120px);
    }
}

@media (max-width: 576px) {
    .attractions-section {
        padding: 60px 0;
    }

    .attractions-title {
        font-size: 28px;
    }

    .attractions-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .attraction-card {
        height: 280px;
    }

    .attraction-card:hover .attraction-distance {
        transform: translateY(190px);
    }

    .attraction-card:hover .attraction-name {
        transform: translateY(-90px);
    }

    .hotel-gallery-section .gallery-grid>.gallery-col {
        padding: 0 !important;
        margin: 0 !important;
    }
}

/* ==========================================
   HOLIDAY MONTH OFFER CTA SECTION
   ========================================== */
.offers-cta-section {
    position: relative;
    width: 100%;
    background-image: url('./assets/images/home/offers-cta-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 140px 0;
}

.offers-cta-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.holiday-offer-card {
    position: relative;
    width: 615px;
    max-width: 100%;
    background-color: var(--color-white);
    padding: 56px 56px 56px 64px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card-element-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 104px;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    pointer-events: none;
    z-index: 1;
}

.card-content-wrap {
    position: relative;
    z-index: 2;
}

.offer-card-title {
    font-family: var(--font-primary);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0;
    color: var(--color-dark);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.offer-card-desc {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
    line-height: 27px;
    color: #151312;
    margin-bottom: 36px;
    max-width: 526px;
}

.offer-card-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-offer-get {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #151312;
    color: #ffffff;
    padding: 16px 36px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #151312;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-offer-get:hover {
    background-color: #ffffff;
    color: #151312;
}

.btn-offer-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #97033C;
    color: #ffffff;
    padding: 16px 36px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #97033C;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-offer-check:hover {
    background-color: #7b0230;
    border-color: #7b0230;
    color: #ffffff;
}

/* Responsive adjustments for Offer CTA Section */
@media (max-width: 992px) {
    .offers-cta-section {
        padding: 80px 0;
    }

    .offers-cta-container {
        justify-content: center;
    }

    .holiday-offer-card {
        padding: 44px 32px;
    }

    .offer-card-title {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .offers-cta-section {
        padding: 60px 0;
    }

    .holiday-offer-card {
        padding: 36px 20px;
    }

    .offer-card-title {
        font-size: 28px;
    }

    .offer-card-desc {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 24px;
    }

    .offer-card-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-offer-get,
    .btn-offer-check {
        width: 100%;
        text-align: center;
    }
}


/* ==========================================
   TESTIMONIALS / STORIES FROM OUR STAYS
   ========================================== */
.testimonials-section {
    position: relative;
    width: 100%;
    padding: 150px 0;
    background-color: var(--color-white);
    overflow: hidden;
}

.testimonials-header-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.testimonials-emblem {
    width: 37px;
    height: auto;
    margin-bottom: 12px;
}

.testimonials-header-stack .sub-title {
    color: var(--color-dark);
    margin-bottom: 10px;
}

.testimonials-title {
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--color-dark);
    text-transform: uppercase;
}

/* Viewport & Track */
.testimonials-slider-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 60px;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
}

.testimonials-slider-viewport.is-dragging {
    cursor: grabbing;
}

.testimonials-slider-track {
    display: flex;
    width: 100%;
    will-change: transform;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    user-select: none;
    -webkit-user-select: none;
}

.testimonials-slider-track.is-dragging {
    transition: none !important;
}

/* Card Column & Vertical Divider Lines */
.testimonial-card {
    flex: 0 0 65vw;
    width: 65vw;
    max-width: 720px;
    position: relative;
    padding: 0 70px;
    border-right: 1px solid #EBE8E3;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
}

.testimonial-card img {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.testimonial-card:last-child {
    border-right: 1px solid #EBE8E3;
}

/* Card Inner Floating Box */
.testimonial-card-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 40px;
    background-color: transparent;
    border-radius: 4px;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.45s ease, box-shadow 0.45s ease;
}

/* Hover Elevation Floating Card (Screenshot 1: On Hover) */
.testimonial-card:hover .testimonial-card-inner {
    background-color: #ffffff;
    transform: translateY(-8px);
    box-shadow: 0px 10px 50px 0px #0000001A;
}

/* Rating Badge & Time Row */
.testimonial-badge-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

/* Rating Stars Container */
.rating-stars-container {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.star-always-visible {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    object-fit: contain;
}

/* Expandable 4 Gold Stars (Figma spec: initial stage 1 star, hover stage 5 stars) */
.stars-expand-wrap {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    transform: translateX(-8px);
    transition: max-width 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.35s ease, transform 0.45s ease;
}

.stars-expand-wrap .star-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    flex-shrink: 0;
    object-fit: contain;
    transform: scale(0.65) rotate(-10deg);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    transition-delay: calc(var(--i) * 0.06s);
}

/* Slide out 4 extra stars strictly on Hover */
.testimonial-card:hover .stars-expand-wrap {
    max-width: 100px;
    opacity: 1;
    transform: translateX(0);
}

.testimonial-card:hover .stars-expand-wrap .star-icon {
    transform: scale(1) rotate(0deg);
    opacity: 1;
}

.rating-box {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: #151312;
    line-height: 1;
}

.rating-sep {
    color: #D0D0D0;
    font-size: 13px;
}

.review-time {
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: #888888;
    text-transform: uppercase;
}

/* Customer Name & Divider Line */
.reviewer-name {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--color-dark);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.reviewer-name-divider {
    width: 100%;
    height: 1px;
    background-color: #EBE8E3;
    margin-bottom: 24px;
}

/* Review Text Body */
.review-text {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 300;
    line-height: 27px;
    color: #555555;
    max-width: 480px;
}

/* Bottom Progress Track & Bar */
.testimonials-progress-track {
    position: relative;
    width: 100%;
    height: 2px;
    background-color: #EAE6DF;
}

.testimonials-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 25%;
    background-color: #151312;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1), width 0.3s ease;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 80vw;
        width: 80vw;
        max-width: 80vw;
        padding: 0 25px;
    }

    .reviewer-name {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-title {
        font-size: 26px;
    }

    .testimonial-card {
        flex: 0 0 88vw;
        width: 88vw;
        max-width: 88vw;
        padding: 0 15px;
    }

    .reviewer-name {
        font-size: 22px;
    }

    .review-text {
        font-size: 14px;
        line-height: 24px;
    }
}

/* ==========================================
   LIGHTWEIGHT UTILITY CLASSES
   ========================================== */
.container {
    width: 100%;
    max-width: var(--site-max-width);
    /* 1440px */
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--color-white);
}

.text-dark {
    color: var(--color-dark);
}

/* ==========================================
   GLOBAL CURTAIN REVEAL UTILITY (AOS-STYLE)
   ========================================== */
.reveal-curtain,
.reveal-curtain-down,
.reveal-curtain-left,
.reveal-curtain-right {
    position: relative;
    overflow: hidden;
}

.reveal-curtain::after,
.reveal-curtain-down::after,
.reveal-curtain-left::after,
.reveal-curtain-right::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    z-index: 20;
    pointer-events: none;
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

/* Down Curtain Reveal (Default - Top to Bottom) */
.reveal-curtain::after,
.reveal-curtain-down::after {
    transform: translateY(0);
}

.reveal-curtain.in-view::after,
.reveal-curtain-down.in-view::after {
    transform: translateY(100%);
}

/* Up Curtain Reveal */
.reveal-curtain-up::after {
    transform: translateY(0);
}

.reveal-curtain-up.in-view::after {
    transform: translateY(-100%);
}

/* Left Curtain Reveal */
.reveal-curtain-left::after {
    transform: translateX(0);
}

.reveal-curtain-left.in-view::after {
    transform: translateX(-100%);
}

/* Right Curtain Reveal */
.reveal-curtain-right::after {
    transform: translateX(0);
}

.reveal-curtain-right.in-view::after {
    transform: translateX(100%);
}

/* Stagger Delays */
.reveal-delay-1::after {
    transition-delay: 0.15s;
}

.reveal-delay-2::after {
    transition-delay: 0.3s;
}

.reveal-delay-3::after {
    transition-delay: 0.45s;
}

.offer-card-actions>a {
    flex: 1;
}

/* ==========================================
   HOTEL GALLERY SECTION (4-COLUMN LAYOUT)
   ========================================== */
.hotel-gallery-section {
    padding: 0px 0 100px;
    background-color: #ffffff;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 4 Vertical Columns Flex Container */
.hotel-gallery-section .gallery-grid {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

/* Base Column Style */
.hotel-gallery-section .gallery-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

/* Column 1: Push image to bottom so middle has space */
.hotel-gallery-section .gallery-col-1 .gallery-card {
    margin-top: auto;
}

/* Column 1 Header Block */
.hotel-gallery-section .gallery-header-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 5px;
    padding-bottom: 20px;
    padding-right: 10px;
}

.hotel-gallery-section .gallery-emblem-icon {
    width: 37px;
    height: auto;
    margin-bottom: 30px;
}

.hotel-gallery-section .gallery-badge {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: #151312;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hotel-gallery-section .gallery-title {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.12;
    letter-spacing: 0.04em;
    color: #151312;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hotel-gallery-section .gallery-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.65;
    color: #151312;
    max-width: 250px;
}

/* Gallery Cards (Image Containers) */
.hotel-gallery-section .gallery-card {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f7f7f7;
    border-radius: 0px;
}

.hotel-gallery-section .gallery-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.hotel-gallery-section .gallery-card:hover img {
    transform: scale(1.04);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hotel-gallery-section .gallery-grid {
        flex-wrap: wrap;
        gap: 10px;
    }

    .hotel-gallery-section .gallery-col-1 {
        flex: 0 0 100%;
        margin-bottom: 10px;
    }

    .hotel-gallery-section .gallery-col-1 .gallery-card {
        margin-top: 0;
    }

    .hotel-gallery-section .gallery-header-block {
        padding-bottom: 15px;
    }

    .hotel-gallery-section .gallery-col-2,
    .hotel-gallery-section .gallery-col-3,
    .hotel-gallery-section .gallery-col-4 {
        flex: 0 0 calc(33.333% - 7px);
    }
}

@media (max-width: 768px) {
    .hotel-gallery-section {
        padding: 60px 0;
    }

    .hotel-gallery-section .gallery-container {
        padding: 0 15px;
    }

    .hotel-gallery-section .gallery-col-2,
    .hotel-gallery-section .gallery-col-3,
    .hotel-gallery-section .gallery-col-4 {
        flex: 0 0 calc(50% - 5px);
    }

    .hotel-gallery-section .gallery-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {

    .hotel-gallery-section .gallery-col-2,
    .hotel-gallery-section .gallery-col-3,
    .hotel-gallery-section .gallery-col-4 {
        flex: 0 0 100%;
    }
}


.hotel-gallery-section .gallery-col.gallery-col-1 {
    margin-top: 50px;
}

.hotel-gallery-section .gallery-col.gallery-col-2 {
    margin-top: 30px;
}

.hotel-gallery-section .gallery-col.gallery-col-4 {
    margin-top: 30px;
}

/* ==========================================
   GUEST FAQ'S SECTION
   ========================================== */
.faq-section {
    padding: 50px 0 50px;
    background-color: #ffffff;
}

.faq-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 30px;
}

.faq-grid {
    display: flex;
    gap: 65px;
    align-items: stretch;
}

/* Left Column: Image */
.faq-image-col {
    flex: 0 0 44%;
    max-width: 44%;
    position: relative;
    overflow: hidden;
}

.faq-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 580px;
    max-height: 720px;
}

/* Right Column: Accordion */
.faq-content-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.faq-header-block {
    margin-bottom: 35px;
}

.faq-emblem-icon {
    width: 37px;
    height: auto;
    margin-bottom: 28px;
    display: block;
}

.faq-badge {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: #151312;
    text-transform: uppercase;
    margin-bottom: 18px;
    display: block;
}

.faq-title {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.12;
    letter-spacing: 0.04em;
    color: #151312;
    text-transform: uppercase;
}

/* Accordion Container with Custom Sleek Scrollbar */
.faq-accordion {
    display: flex;
    flex-direction: column;
    max-height: 511px;
    overflow-y: auto;
    padding-right: 15px;
    /* Firefox Thin Scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #151312 #f4f4f4;
}

/* Custom Sleek Webkit Scrollbar for Luxury Aesthetic */
.faq-accordion::-webkit-scrollbar {
    width: 4px;
}

.faq-accordion::-webkit-scrollbar-track {
    background: #f4f4f4;
    border-radius: 4px;
}

.faq-accordion::-webkit-scrollbar-thumb {
    background: #151312;
    border-radius: 4px;
}

.faq-accordion::-webkit-scrollbar-thumb:hover {
    background: #444444;
}

.faq-item {
    border-bottom: 1px solid #e2e2e2;
    padding: 22px 0;
    transition: border-color 0.3s ease;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    color: #151312;
    line-height: 1.45;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #000000;
}

/* Toggle Icon inside Circle */
.faq-toggle-icon {
    width: 26px;
    height: 26px;
    border: 1px solid #999999;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 20px;
    color: #151312;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.faq-toggle-icon .icon-plus {
    display: block;
}

.faq-toggle-icon .icon-cross {
    display: none;
}

/* Active Open Accordion State */
.faq-item.active .faq-toggle-icon {
    border-color: #151312;
}

.faq-item.active .faq-toggle-icon .icon-plus {
    display: none;
}

.faq-item.active .faq-toggle-icon .icon-cross {
    display: block;
}

/* Answer Slide Down Effect */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, margin-top 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
    margin-top: 14px;
}

.faq-answer p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.68;
    color: #151312;
    max-width: 92%;
}

/* FAQ Responsive Layout */
@media (max-width: 1024px) {
    .faq-section {
        padding: 70px 0 80px;
    }

    .faq-grid {
        flex-direction: column;
        gap: 40px;
    }

    .faq-image-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .faq-img {
        min-height: 420px;
        max-height: 450px;
    }
}

@media (max-width: 768px) {
    .faq-container {
        padding: 0 20px;
    }

    .faq-title {
        font-size: 32px;
    }

    .faq-question {
        font-size: 15px;
    }

    .faq-answer p {
        max-width: 100%;
    }
}

/* ==========================================
   GOOGLE MAP SECTION
   ========================================== */
.map-section {
    padding: 0 0 150px;
    background-color: #ffffff;
}

.map-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 30px;
}

.map-card {
    position: relative;
    width: 100%;
    height: 480px;
    border: 2px solid #D6D6D6;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f7f7f7;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.map-card:hover {
    border-color: #b5b5b5;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.map-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%);
    transition: filter 0.5s ease-in-out;
    display: block;
}

.map-card:hover iframe {
    filter: grayscale(0%);
}

@media (max-width: 1024px) {
    .map-card {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .map-section {
        padding: 0 0 60px;
    }

    .map-container {
        padding: 0 20px;
    }

    .map-card {
        height: 350px;
        border-radius: 8px;
    }
}

/* ==========================================
   BAR & COCKTAIL HERO BANNER SECTION (100% FULL WIDTH)
   ========================================== */
.bar-hero-banner {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    min-height: 700px;
    max-height: 1000px;
    background-color: #000000;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* Left Graphic Element (Absolute, Aligned to Bottom Left) */
.bar-hero-element {
    position: absolute;
    left: 0;
    bottom: -12px;
    z-index: 1;
    height: 88%;
    max-height: 820px;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
}

.bar-hero-element-img {
    height: 100%;
    width: auto;
    max-width: 60vw;
    object-fit: contain;
    object-position: bottom left;
    display: block;
}

@keyframes barHeroFloat {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-6px);
    }
}

/* Right 588px Gradient Circle Card (Absolute) */
.bar-circle-card {
    position: absolute;
    right: 13vw;
    bottom: -70px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: linear-gradient(218.93deg, #97033C -47.01%, #040704 79.81%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;


    /* Fade-up from bottom animation initial state */
    opacity: 0;
    transform: translateY(120%) scale(0.9);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
    z-index: 0;
}

/* When In-View (Animated Upwards from Bottom) */
.bar-circle-card.in-view {
    opacity: 1;
    transform: translateY(-32%) scale(1);
}

/* Inside Circle Elements */
.bar-circle-emblem {
    width: 37px;
    height: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 22px;
    opacity: 0.95;
}

.bar-circle-title {
    font-family: var(--font-primary);
    font-size: 28px !important;
    font-weight: 600;
    line-height: 1.34;
    letter-spacing: 0.05em;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 18px;
    max-width: 410px;
}

.bar-circle-desc {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.85);
    max-width: 340px;
    margin-bottom: 28px;
}

.bar-circle-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.bar-circle-cta::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #ffffff;
    transition: width 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.bar-circle-cta:hover::after {
    width: calc(100% - 24px);
}

.bar-circle-cta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.bar-circle-cta:hover .bar-circle-cta-arrow {
    transform: translateX(6px);
}

@media (max-width: 1440px) {
    .bar-circle-card {
        right: 5vw;
        bottom: -150px;
    }
}

/* Responsive Media Queries for Bar & Cocktail Banner */
@media (max-width: 1280px) {
    .bar-circle-card {
        right: 3vw;
        bottom: -120px;
        width: 540px;
        height: 540px;
        padding-top: 60px;
        padding-left: 45px;
        padding-right: 45px;
    }

    .bar-circle-title {
        font-size: 21px;
        font-weight: 400 !important;
    }
}

@media (max-width: 992px) {
    .bar-hero-banner {
        height: 100vh;
        min-height: 520px;
        max-height: 720px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 85px 20px 30px;
        background-color: #000000;
        overflow: hidden;
    }

    .bar-hero-element {
        display: none !important;
    }

    .bar-circle-card {
        position: relative;
        right: auto;
        left: auto;
        bottom: auto;
        transform: none !important;
        opacity: 1 !important;
        width: 360px;
        height: 360px;
        max-width: 86vw;
        max-height: 86vw;
        aspect-ratio: 1 / 1;
        border-radius: 50% !important;
        background: linear-gradient(218.93deg, #97033C -47.01%, #040704 79.81%);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), inset 0 0 35px rgba(151, 3, 60, 0.3);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 24px 22px;
        margin: auto;
        box-sizing: border-box;
    }

    .bar-circle-card.in-view {
        transform: none !important;
        opacity: 1 !important;
    }

    .bar-circle-emblem {
        width: 26px;
        height: auto;
        margin-bottom: 10px;
    }

    .bar-circle-title {
        font-size: 17px !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
        max-width: 260px;
    }

    .bar-circle-desc {
        font-size: 11.5px !important;
        line-height: 1.45 !important;
        margin-bottom: 14px !important;
        max-width: 240px;
    }

    .bar-circle-cta {
        font-size: 12px !important;
        gap: 8px;
        padding: 4px 0;
    }
}

@media (max-width: 576px) {
    .rooms-nav-btn {
        top: 200px !important;
    }

    .bar-hero-banner {
        min-height: 480px;
        max-height: 640px;
        padding: 75px 16px 25px;
    }

    .bar-circle-card {
        width: 320px;
        height: 320px;
        max-width: 88vw;
        max-height: 88vw;
        padding: 20px 16px;
    }

    .bar-circle-emblem {
        width: 20px;
        margin-bottom: 6px;
    }

    .bar-circle-title {
        font-size: 14.5px !important;
        line-height: 1.28 !important;
        margin-bottom: 6px !important;
        max-width: 230px;
    }

    .bar-circle-desc {
        font-size: 10.5px !important;
        line-height: 1.4 !important;
        margin-bottom: 10px !important;
        max-width: 210px;
    }

    .bar-circle-cta {
        font-size: 11px !important;
        gap: 6px;
        padding: 4px 0;
    }
}

@media (max-width: 380px) {
    .bar-circle-card {
        width: 280px;
        height: 280px;
        max-width: 90vw;
        max-height: 90vw;
        padding: 14px 12px;
    }

    .bar-circle-emblem {
        width: 18px;
        margin-bottom: 4px;
    }

    .bar-circle-title {
        font-size: 13px !important;
        line-height: 1.25 !important;
        max-width: 200px;
        margin-bottom: 4px !important;
    }

    .bar-circle-desc {
        font-size: 9.5px !important;
        line-height: 1.35 !important;
        max-width: 190px;
        margin-bottom: 8px !important;
    }

    .bar-circle-cta {
        font-size: 10px !important;
    }
}

/* ===================================================
   SIGNATURE COCKTAILS VS ARTISANAL MOCKTAILS SECTION
   =================================================== */
.cocktail-compare-section {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding: 100px 24px 120px;
    box-sizing: border-box;
}

.cocktail-compare-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

/* Header Stack */
.cocktail-compare-header {
    text-align: center;
    margin-bottom: 54px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cocktail-compare-emblem {
    width: 37px;
    height: auto;
    display: block;
    margin-bottom: 14px;
}

.cocktail-compare-sub {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #151312;
    margin-bottom: 14px;
    display: block;
}

.cocktail-compare-title {
    font-family: var(--font-primary);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #151312;
    margin: 0 0 14px 0;
    text-align: center;
}

.cocktail-compare-tagline {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
    color: #151312;
    margin: 0;
    text-align: center;
}

/* Asymmetrical 2-Row Wrapper */
.cocktail-compare-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.cocktail-compare-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
}

/* Row 1 (Top): Bottom-aligned so Copper Mug image sits at the bottom with empty space on top */
.cocktail-compare-row.row-top {
    align-items: end;
}

/* Row 2 (Bottom): Top-aligned so Coupe Glass image sits at the top with empty space below */
.cocktail-compare-row.row-bottom {
    align-items: start;
}

/* Cards (Top-Left & Bottom-Right) */
.cocktail-compare-card {
    position: relative;
    padding: 44px 38px 38px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #e8e8e8;
    min-height: 460px;
    box-sizing: border-box;
    background-color: #fafafa;
    overflow: hidden;
    transition: box-shadow 0.35s ease;
}

.cocktail-compare-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.card-signature {
    background-image: url('./assets/images/mock_cock/our_selection_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-mocktails {
    background-image: url('./assets/images/mock_cock/our_choice.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cocktail-card-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cocktail-card-tag {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
    color: #2c2a29;
    text-transform: lowercase;
    display: block;
    margin-bottom: 6px;
}

.cocktail-card-title {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 400;
    line-height: 1.22;
    color: #151312;
    margin: 0 0 16px 0;
}

.cocktail-card-line {
    width: 175px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.15);
    margin-bottom: 24px;
}

.cocktail-card-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cocktail-card-desc {
    font-family: var(--font-primary);
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.76;
    color: #444444;
    margin: 0 0 34px 0;
}

.cocktail-card-btn {
    display: inline-block;
    background-color: #151312;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 44px;
    border: 1px solid #151312;
    cursor: pointer;
    width: fit-content;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.cocktail-card-btn:hover {
    background-color: #7b182b;
    border-color: #7b182b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(123, 24, 43, 0.25);
}

/* Image Wrappers (Top-Right & Bottom-Left) - Smooth Height Grow Animation */
.cocktail-compare-image-wrap {
    position: relative;
    width: 100%;
    height: 55%;
    min-height: 250px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    box-sizing: border-box;
    display: block;
    transition: height 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: height;
}

.cocktail-compare-image-wrap.in-view {
    height: 100%;
}

.cocktail-compare-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.cocktail-compare-image-wrap:hover .cocktail-compare-img {
    transform: scale(1.035);
}

/* Responsive Styles for Cocktail Comparison */
@media (max-width: 992px) {
    .cocktail-compare-section {
        padding: 70px 20px 90px;
    }

    .cocktail-compare-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cocktail-compare-row.row-top,
    .cocktail-compare-row.row-bottom {
        align-items: stretch;
    }

    .cocktail-compare-title {
        font-size: 30px;
    }

    .cocktail-compare-card {
        min-height: auto;
        padding: 38px 28px;
    }

    .cocktail-compare-image-wrap {
        height: auto;
        min-height: unset;
        aspect-ratio: 831 / 347;
    }
}

@media (max-width: 576px) {
    .cocktail-compare-section {
        padding: 60px 16px 75px;
    }

    .cocktail-compare-header {
        margin-bottom: 38px;
    }

    .cocktail-compare-title {
        font-size: 23px;
        line-height: 1.3;
    }

    .cocktail-compare-tagline {
        font-size: 13.5px;
    }

    .cocktail-card-title {
        font-size: 26px;
    }

    .cocktail-card-desc {
        font-size: 13px;
        line-height: 1.65;
        margin-bottom: 26px;
    }

    .cocktail-compare-card {
        padding: 28px 20px;
    }

    .cocktail-card-btn {
        padding: 13px 32px;
        font-size: 12px;
    }
}

/* ===================================================
   BEST BAR IN JAIPUR - 6 CARDS FEATURES SECTION
   =================================================== */
.bar-features-section {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding: 30px 24px 100px;
    box-sizing: border-box;
}

.bar-features-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

/* Header Stack */
.bar-features-header {
    text-align: center;
    margin-bottom: 54px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bar-features-emblem {
    width: 37px;
    height: auto;
    display: block;
    margin-bottom: 14px;
}

.bar-features-sub {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #151312;
    margin-bottom: 14px;
    display: block;
}

.bar-features-title {
    font-family: var(--font-primary);
    font-size: 38px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #151312;
    margin: 0 0 14px 0;
    text-align: center;
    max-width: 960px;
}

.bar-features-tagline {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
    color: #151312;
    margin: 0;
    text-align: center;
}

/* 6-Cards Grid */
.bar-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.bar-feature-card {
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    padding: 18px 18px 36px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    transition: box-shadow 0.35s ease;
}

.bar-feature-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.bar-feature-img-wrap {
    width: 100%;
    aspect-ratio: 599 / 398;
    overflow: hidden;
    margin-bottom: 28px;
    background-color: #f7f7f7;
}

.bar-feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.bar-feature-card:hover .bar-feature-img {
    transform: scale(1.04);
}

.bar-feature-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 0 6px;
    position: relative;
}

.bar-feature-title {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #151312;
    margin: 0 0 16px 0;
    text-align: center;
}

.bar-feature-desc-wrap {
    position: relative;
    width: 100%;
    max-height: 240px;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.bar-feature-desc-inner {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.76;
    color: #555555;
    text-align: center;
}

.bar-feature-desc-inner p {
    margin: 0 0 10px 0;
}

.bar-feature-desc-inner p:last-child {
    margin-bottom: 0;
}

.bar-feature-desc-inner ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    text-align: center;
}

.bar-feature-desc-inner ul li {
    font-size: 12.5px;
    line-height: 1.65;
    color: #555555;
    margin-bottom: 6px;
    position: relative;
}

/* Gradient fade mask at bottom when collapsed */
.bar-feature-card:not(.is-expanded) .bar-feature-desc-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 80%, #ffffff 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Expanded state */
.bar-feature-card.is-expanded .bar-feature-desc-wrap {
    max-height: 2500px;
}

.bar-feature-card.is-expanded .bar-feature-desc-wrap::after {
    opacity: 0;
}

/* Read More Toggle Button */
.btn-read-more-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #97033C;
    margin-top: 14px;
    padding: 6px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
    z-index: 2;
}

.btn-read-more-toggle:hover {
    color: #151312;
    background-color: rgba(151, 3, 60, 0.06);
}

.btn-read-more-toggle .read-less-text {
    display: none;
}

.btn-read-more-toggle .read-more-text {
    display: inline-block;
}

.btn-read-more-toggle .read-more-arrow {
    transition: transform 0.35s ease;
    stroke: currentColor;
}

.bar-feature-card.is-expanded .btn-read-more-toggle .read-more-text {
    display: none;
}

.bar-feature-card.is-expanded .btn-read-more-toggle .read-less-text {
    display: inline-block;
}

.bar-feature-card.is-expanded .btn-read-more-toggle .read-more-arrow {
    transform: rotate(180deg);
}

/* When content is short (no overflow) */
.bar-feature-card.no-overflow .btn-read-more-toggle {
    display: none !important;
}

.bar-feature-card.no-overflow .bar-feature-desc-wrap {
    max-height: none !important;
}

.bar-feature-card.no-overflow .bar-feature-desc-wrap::after {
    display: none !important;
}

.bar-feature-desc {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.76;
    color: #555555;
    margin: 0;
    text-align: center;
}

/* Responsive Styles for 6-Cards Grid */
@media (max-width: 992px) {
    .bar-features-section {
        padding: 20px 20px 90px;
    }

    .bar-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .bar-features-title {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .bar-features-section {
        padding: 10px 16px 70px;
    }

    .bar-features-header {
        margin-bottom: 36px;
    }

    .bar-features-title {
        font-size: 22px;
        line-height: 1.3;
    }

    .bar-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bar-feature-card {
        padding: 14px 14px 28px 14px;
    }

    .bar-feature-title {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .bar-feature-desc {
        font-size: 12.5px;
        line-height: 1.65;
    }
}

/* ===================================================
   BAR QUOTE / RESERVATION CTA RIBBON BANNER
   =================================================== */
.bar-quote-ribbon {
    position: relative;
    width: 100%;
    height: 194px;
    min-height: 194px;
    background: linear-gradient(rgba(151, 3, 60, 0.88), rgba(151, 3, 60, 0.88)),
        url('./assets/images/bar-cta/bar-cta-bg.png') center / cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin: 0px 0 100px 0;
    box-sizing: border-box;
}

.bar-quote-container {
    width: 100%;
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

/* Left Cutout Table & Velvet Chairs Image */
.bar-quote-table-wrap {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
    z-index: 1;
}

.bar-quote-table-img {
    height: 194px;
    width: auto;
    object-fit: contain;
    object-position: bottom left;
    display: block;
}

/* Center Quote Text */
.bar-quote-text-wrap {
    position: relative;
    z-index: 2;
    margin-left: 470px;
    margin-right: auto;
    max-width: 730px;
    padding: 0 20px 0 0;
    box-sizing: border-box;
}

.bar-quote-text {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    font-style: italic;
    line-height: 27px;
    letter-spacing: 0;
    color: #ffffff;
    margin: 0;
    text-align: left;
}

.bar-quote-underline {
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 700;
}

/* Right Outline Quote Icon */
.bar-quote-icon-wrap {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bar-quote-icon-img {
    width: 100px;
    height: auto;
    display: block;
}

/* Responsive Styles for Bar Quote Ribbon */
@media (max-width: 1280px) {
    .bar-quote-ribbon {
        height: 180px;
        min-height: 180px;
    }

    .bar-quote-table-img {
        height: 180px;
    }

    .bar-quote-text-wrap {
        margin-left: 420px;
        max-width: 600px;
    }

    .bar-quote-text {
        font-size: 16px;
        line-height: 24px;
    }

    .bar-quote-icon-wrap {
        right: 40px;
    }

    .bar-quote-icon-img {
        width: 58px;
    }
}

@media (max-width: 1080px) {
    .bar-quote-text-wrap {
        margin-left: 360px;
        max-width: 500px;
    }

    .bar-quote-table-img {
        height: 160px;
    }

    .bar-quote-text {
        font-size: 14.5px;
        line-height: 22px;
    }
}

@media (max-width: 900px) {
    .bar-quote-ribbon {
        height: auto;
        min-height: auto;
        padding: 40px 20px;
        margin: 20px 0 60px 0;
    }

    .bar-quote-container {
        height: auto;
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 0;
    }

    .bar-quote-table-wrap {
        position: static;
        height: auto;
        width: 100%;
        justify-content: center;
    }

    .bar-quote-table-img {
        height: 140px;
        object-position: center;
    }

    .bar-quote-text-wrap {
        margin: 0 auto;
        max-width: 100%;
        padding: 0;
    }

    .bar-quote-text {
        text-align: center;
        font-size: 15px;
        line-height: 23px;
    }

    .bar-quote-icon-wrap {
        position: static;
        transform: none;
        margin-top: 10px;
    }

    .bar-quote-icon-img {
        width: 48px;
    }
}

/* ===================================================
   BAR EXPERIENCE FOG ANIMATION & GLASS OVERLAY
   =================================================== */
/* Animated Fog Layer (Flowing smoothly Right to Left) */
.bar-exp-fog-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-image: url('./assets/images/bar_page/fog-img.png');
    background-size: 50% 100%;
    background-repeat: repeat-x;
    background-position: 0 0;
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 2;
    opacity: 0.65;
    animation: fogFlowRightToLeft 50s linear infinite;
    will-change: transform;
}

@keyframes fogFlowRightToLeft {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Foreground Cutout: Cocktail Glass placed over Fog */
.bar-exp-glass-img {
    position: absolute;
    bottom: -39px;
    left: 48.9%;
    transform: translateX(-50%);
    height: 111%;
    width: auto;
    object-fit: contain;
    display: block;
    z-index: 3;
    pointer-events: none;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.45));
}

/* ==========================================
   GLOBAL TEXT UTILITIES & PAGE HERO OVERRIDES
   ========================================== */
.text-white {
    color: var(--color-white) !important;
}

.text-center {
    text-align: center !important;
}

/* Dyore Experiences (Lounge) Banner Background */
.dyore-exp-banner {
    background-image: url('./assets/images/dyore-experience-page/lounge-banner.png');
}

/* ==========================================
   MOBILE HEADER & OFF-CANVAS NAVIGATION DRAWER
   ========================================== */
@media (max-width: 991px) {
    .site-header {
        position: sticky !important;
        top: 0 !important;
        z-index: 9999 !important;
    }

    .site-header .header-bg {
        display: none !important;
    }

    .site-header .header-top {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 14px 20px !important;
        max-height: none !important;
        opacity: 1 !important;
        transform: none !important;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06) !important;
        overflow: visible !important;
    }

    .site-header.scrolled .header-top {
        max-height: none !important;
        padding: 10px 20px !important;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        background: rgba(255, 255, 255, 0.98) !important;
    }

    .site-header .header-left {
        min-width: auto !important;
        flex: 0 0 auto !important;
        display: flex !important;
        align-items: center !important;
        opacity: 1;
    }

    .site-header .menu-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        padding: 6px;
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .site-header .hamburger-bar {
        display: block;
        width: 22px;
        height: 2px;
        background-color: var(--color-dark, #151312);
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .site-header .menu-toggle.is-active .hamburger-bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .site-header .menu-toggle.is-active .hamburger-bar:nth-child(2) {
        opacity: 0;
    }

    .site-header .menu-toggle.is-active .hamburger-bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .site-header .header-branding {
        flex: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .site-header .header-branding .header-logo img,
    .site-header .header-branding .site-logo img {
        height: 38px !important;
        width: auto !important;
    }

    .site-header .header-actions {
        min-width: auto !important;
        gap: 16px !important;
        flex: 0 0 auto !important;
    }

    .site-header .header-actions .nav-call {
        display: inline-block !important;
        padding: 8px 18px !important;
        background: transparent !important;
        color: var(--color-dark, #151312) !important;
        border: 1px solid var(--color-dark, #151312) !important;
        font-family: var(--font-primary) !important;
        font-size: 12px !important;
        font-weight: var(--fw-medium, 500) !important;
        letter-spacing: 0.08em !important;
        text-transform: uppercase !important;
        text-decoration: none !important;
        line-height: normal !important;
        box-sizing: border-box !important;
    }

    /* Original Theme BOOK Button Style: Clean White button with border */
    .site-header .header-actions .btn-book {
        display: inline-block !important;
        padding: 8px 20px !important;
        background: var(--color-white, #ffffff) !important;
        color: var(--color-dark, #151312) !important;
        border: 1px solid rgba(0, 0, 0, 0.18) !important;
        font-family: var(--font-primary) !important;
        font-size: 12px !important;
        font-weight: var(--fw-medium, 500) !important;
        letter-spacing: 0.08em !important;
        text-transform: uppercase !important;
        border-radius: 0 !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    }

    .site-header.scrolled .header-actions .btn-book {
        background: var(--color-dark, #151312) !important;
        color: var(--color-white, #ffffff) !important;
        border-color: var(--color-dark, #151312) !important;
    }

    /* Hide desktop horizontal nav bar on mobile */
    .site-header .header-nav-bar {
        display: none !important;
    }
}

/* ==========================================
   OFF-CANVAS MOBILE DRAWER
   ========================================== */
.mobile-nav-drawer {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999998 !important;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0.35s ease;
}

.mobile-nav-drawer.is-open {
    visibility: visible !important;
    pointer-events: auto !important;
}

.mobile-drawer-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 15, 14, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.mobile-nav-drawer.is-open .mobile-drawer-backdrop {
    opacity: 1;
}

.mobile-drawer-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: #ffffff;
    box-shadow: 10px 0 35px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    padding: 28px 24px;
    box-sizing: border-box;
    overflow-y: auto;
}

.mobile-nav-drawer.is-open .mobile-drawer-panel {
    transform: translateX(0);
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-drawer-logo img {
    height: 38px;
    width: auto;
}

.mobile-drawer-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #F7F5F2;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--color-dark, #151312);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    outline: none;
}

.mobile-drawer-close:hover {
    background: var(--color-dark, #151312);
    color: var(--color-white, #ffffff);
}

.mobile-drawer-body {
    flex: 1;
    padding: 16px 0;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-item {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-link {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 14px;
    font-weight: var(--fw-medium, 500);
    letter-spacing: 0.08em;
    color: var(--color-dark, #151312);
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-menu-link:hover {
    color: #707070;
    padding-left: 4px;
}

.mobile-drawer-footer {
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Original Theme Dark Button in Drawer */
.mobile-drawer-book-btn {
    width: 100%;
    height: 46px;
    background: var(--color-dark, #151312);
    color: var(--color-white, #ffffff);
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 12.5px;
    font-weight: var(--fw-medium, 500);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-dark, #151312);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.mobile-drawer-book-btn:hover {
    background: var(--color-white, #ffffff);
    color: var(--color-dark, #151312);
}

.mobile-drawer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 12.5px;
    font-weight: var(--fw-medium, 500);
    color: var(--color-dark, #151312);
    text-decoration: none;
}

.mobile-address-link {
    text-decoration: none;
    display: block;
    line-height: 1.4;
}

.mobile-address-label {
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    font-size: 11px;
    color: #707070;
    transition: color 0.3s ease;
}

.mobile-address-link:hover .mobile-address-label {
    color: var(--color-dark, #151312);
}

/* ==========================================================================
   RESPONSIVE TYPOGRAPHY, CONTAINER & SECTION SPACING SYSTEM
   ========================================================================== */

/* 1. Tablet Responsive (≤ 1024px) */
@media (max-width: 1024px) {

    /* Headings scaling */
    h1,
    .h1,
    .hero-title {
        font-size: 38px;
        line-height: 1.2;
    }

    h2,
    .h2,
    .section-title,
    .rooms-title,
    .about-title,
    .amenities-title,
    .attractions-title,
    .hotel-gallery-title,
    .faq-title {
        font-size: 32px;
        line-height: 1.25;
    }

    h3,
    .h3,
    .room-name,
    .card-title {
        font-size: 24px;
        line-height: 1.3;
    }

    h4,
    .h4,
    .sub-heading {
        font-size: 18px;
        line-height: 1.35;
    }

    .sub-title,
    .tagline,
    .section-tagline,
    .about-subtitle {
        font-size: 13px;
        letter-spacing: 0.08em;
    }

    p,
    .text-desc,
    .about-desc,
    .room-desc {
        font-size: 14px;
        line-height: 1.7;
    }

    /* Container horizontal padding for tablets (30px) */
    .container,
    [class*="-container"] {
        padding-left: 30px;
        padding-right: 30px;
        box-sizing: border-box;
    }

    /* Unified Tablet Section Vertical Spacing (55px - 60px max) */
    section,
    .section,
    [class*="-section"],
    .about-story-section,
    .about-why-section,
    .heritage-rooms-section,
    .rooms-showcase-section,
    .rooms-amenities-section,
    .rooms-gallery-section,
    .stats-section,
    .attractions-section,
    .events-carousel-section,
    .events-about-section,
    .evenings-dyore-section,
    .events-gallery-section,
    .gallery-showcase-section,
    .video-gallery-section,
    .offers-cta-section,
    .stay-cta-section,
    .testimonials-section,
    .faq-section,
    .bar-about-drinks-section,
    .cocktail-compare-section,
    .bar-features-section,
    .multi-exp-section,
    .why-choose-section,
    .lounge-detail-section,
    .lounge-cscheme-section,
    .contact-info-section,
    .contact-form-section,
    .blog-listing-section,
    .blog-detail-main-content,
    .seo-features-section {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .site-footer {
        padding-top: 55px;
        padding-bottom: 25px;
    }

    .map-section {
        margin-top: 40px;
        margin-bottom: 0;
        padding: 0;
    }
}

/* 2. Mobile / Phablet Responsive (≤ 768px) */
@media (max-width: 768px) {

    /* Headings scaling */
    h1,
    .h1,
    .hero-title {
        font-size: 30px;
        line-height: 1.22;
    }

    h2,
    .h2,
    .section-title,
    .rooms-title,
    .about-title,
    .amenities-title,
    .attractions-title,
    .hotel-gallery-title,
    .faq-title {
        font-size: 26px;
        line-height: 1.26;
    }

    h3,
    .h3,
    .room-name,
    .card-title {
        font-size: 20px;
        line-height: 1.3;
    }

    h4,
    .h4,
    .sub-heading {
        font-size: 16px;
        line-height: 1.35;
    }

    .sub-title,
    .tagline,
    .section-tagline,
    .about-subtitle {
        font-size: 12px;
        letter-spacing: 0.07em;
    }

    p,
    .text-desc,
    .about-desc,
    .room-desc {
        font-size: 13.5px;
        line-height: 1.65;
    }

    /* Strict Mobile Container horizontal padding: exactly 20px */
    .container,
    [class*="-container"] {
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box;
    }

    /* Unified Mobile Section Vertical Spacing (48px - 50px max) */
    section,
    .section,
    [class*="-section"],
    .about-story-section,
    .about-why-section,
    .heritage-rooms-section,
    .rooms-showcase-section,
    .rooms-amenities-section,
    .rooms-gallery-section,
    .stats-section,
    .attractions-section,
    .events-carousel-section,
    .events-about-section,
    .evenings-dyore-section,
    .events-gallery-section,
    .gallery-showcase-section,
    .video-gallery-section,
    .offers-cta-section,
    .stay-cta-section,
    .testimonials-section,
    .faq-section,
    .bar-about-drinks-section,
    .cocktail-compare-section,
    .bar-features-section,
    .multi-exp-section,
    .why-choose-section,
    .lounge-detail-section,
    .lounge-cscheme-section,
    .contact-info-section,
    .contact-form-section,
    .blog-listing-section,
    .blog-detail-main-content,
    .seo-features-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .section-header-stack,
    .rooms-header-stack,
    .attractions-header-stack,
    .about-story-header,
    .about-why-header,
    .video-gallery-header-stack,
    .why-choose-header,
    .events-header-stack,
    .contact-info-header,
    .blog-listing-header,
    .seo-section-header,
    .evenings-dyore-header,
    .events-gallery-header,
    .cocktail-compare-header,
    .bar-features-header {
        margin-bottom: 24px;
    }

    .map-section {
        margin-top: 35px;
        margin-bottom: 0;
        padding: 0;
    }

    .site-footer {
        padding-top: 45px;
        padding-bottom: 22px;
    }
}

/* 3. Small Mobile Phones (≤ 480px) */
@media (max-width: 480px) {

    /* Headings scaling */
    h1,
    .h1,
    .hero-title {
        font-size: 24px;
        line-height: 1.25;
    }

    h2,
    .h2,
    .section-title,
    .rooms-title,
    .about-title,
    .amenities-title,
    .attractions-title,
    .hotel-gallery-title,
    .faq-title {
        font-size: 22px;
        line-height: 1.28;
    }

    h3,
    .h3,
    .room-name,
    .card-title {
        font-size: 18px;
        line-height: 1.3;
    }

    h4,
    .h4,
    .sub-heading {
        font-size: 14.5px;
        line-height: 1.35;
    }

    .sub-title,
    .tagline,
    .section-tagline,
    .about-subtitle {
        font-size: 11px;
        letter-spacing: 0.06em;
    }

    p,
    .text-desc,
    .about-desc,
    .room-desc {
        font-size: 13px;
        line-height: 1.6;
    }

    /* Strict Small Mobile Container horizontal padding: exactly 16px */
    .container,
    [class*="-container"] {
        padding-left: 16px !important;
        padding-right: 16px !important;
        box-sizing: border-box;
    }

    /* Unified Small Mobile Section Vertical Spacing (40px) */
    section,
    .section,
    [class*="-section"],
    .about-story-section,
    .about-why-section,
    .heritage-rooms-section,
    .rooms-showcase-section,
    .rooms-amenities-section,
    .rooms-gallery-section,
    .stats-section,
    .attractions-section,
    .events-carousel-section,
    .events-about-section,
    .evenings-dyore-section,
    .events-gallery-section,
    .gallery-showcase-section,
    .video-gallery-section,
    .offers-cta-section,
    .stay-cta-section,
    .testimonials-section,
    .faq-section,
    .bar-about-drinks-section,
    .cocktail-compare-section,
    .bar-features-section,
    .multi-exp-section,
    .why-choose-section,
    .lounge-detail-section,
    .lounge-cscheme-section,
    .contact-info-section,
    .contact-form-section,
    .blog-listing-section,
    .blog-detail-main-content,
    .seo-features-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .section-header-stack,
    .rooms-header-stack,
    .attractions-header-stack,
    .about-story-header,
    .about-why-header,
    .video-gallery-header-stack,
    .why-choose-header,
    .events-header-stack,
    .contact-info-header,
    .blog-listing-header,
    .seo-section-header,
    .evenings-dyore-header,
    .events-gallery-header,
    .cocktail-compare-header,
    .bar-features-header {
        margin-bottom: 18px;
    }

    .map-section {
        margin-top: 25px;
        margin-bottom: 60px;
        padding: 0;
    }

    .site-footer {
        padding-top: 38px;
        padding-bottom: 18px;
    }
}

/* ==========================================================================
   Floating WhatsApp Hanging Button (Right Bottom)
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45), 0 6px 16px rgba(0, 0, 0, 0.3);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: whatsapp-pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.12) translateY(-2px);
    background-color: #20ba5a;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.65), 0 8px 20px rgba(0, 0, 0, 0.4);
}

.floating-whatsapp svg {
    width: 34px;
    height: 34px;
    fill: #ffffff;
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover svg {
    transform: rotate(5deg);
}

/* WhatsApp Tooltip */
.floating-whatsapp .whatsapp-tooltip {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 72px;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateX(10px);
    pointer-events: none;
}

.floating-whatsapp .whatsapp-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #1a1a1a;
}

.floating-whatsapp:hover .whatsapp-tooltip {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

/* Subtle Pulse Animation */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 4px 18px rgba(37, 211, 102, 0.45);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0), 0 4px 18px rgba(37, 211, 102, 0.45);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 4px 18px rgba(37, 211, 102, 0.45);
    }
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }
    .floating-whatsapp .whatsapp-tooltip {
        display: none;
    }
}
