@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Raleway&display=swap');

:root {
    --primary: #c5a059;
    --primary-dark: #a68549;
    --primary-light: #eaddc2;
    --dark: #1a1a1a;
    --white: #ffffff;
    --bg-light: #fcfaf5;
    --gray: #666666;
    --border: rgba(0, 0, 0, 0.08);
    --transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.8;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.serif {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

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

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

/* --- Global Section Layouts --- */
section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-white {
    background-color: var(--white);
}

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

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title span {
    color: var(--primary);
    text-transform: none;
    letter-spacing: 5px;
    font-size: 11px;
    font-weight: 700;
    display: block;
    margin-bottom: 20px;
}

.section-title h2 {
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.1;
}

.section-title.left {
    text-align: left;
}

/* --- Buttons --- */
.btn-gold,
.btn-premium {
    padding: 16px 40px;
    font-size: 12px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 2px;
    display: inline-block;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

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

.btn-gold:hover {
    background-color: var(--dark);
    transform: translateY(-5px);
}

.btn-premium {
    padding: 12px 55px;
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
}

.btn-premium:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.scrolled .btn-premium {
    background: var(--dark);
    color: var(--white);
}

.scrolled .btn-premium:hover {
    background: var(--primary);
    color: var(--white);
}

.header-btns {
    display: flex;
    align-items: center;
    gap: 35px;
    flex: 1;
    justify-content: flex-end;
}

/* --- Navigation Header --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    transition: var(--transition);
}

header.scrolled {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

header.header-dark {
    background-color: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

header.header-dark .logo a,
header.header-dark .nav-links a,
header.header-dark #menuToggle {
    color: var(--dark);
}

header.header-dark .btn-premium {
    background-color: var(--dark);
    color: var(--white);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.logo a {
    font-size: 24px;
    letter-spacing: 5px;
    text-transform: none;
    color: var(--white);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.logo img {
    transition: filter 0.3s ease;
    filter: brightness(0) invert(1);
}

header.scrolled .logo a {
    color: var(--dark);
}

header.scrolled .logo img,
header.header-dark .logo img {
    filter: brightness(0) invert(0);
}

.nav-links {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.nav-links a {
    font-size: 11px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 2px;
    color: var(--white);
    position: relative;
    padding: 10px 0;
}

header.scrolled .nav-links a {
    color: var(--dark);
}

.nav-links a:hover {
    color: var(--primary) !important;
}

/* Mobile Menu Button */
#menuToggle {
    display: none;
    background: rgba(197, 160, 89, 0.15);
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    color: var(--white);
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 20px;
    transition: all 0.3s ease;
}

#menuToggle:hover {
    background: var(--primary);
}

header.scrolled #menuToggle {
    color: var(--dark);
    background: rgba(197, 160, 89, 0.15);
}

header.scrolled #menuToggle:hover {
    background: var(--primary);
    color: white;
}

@media (max-width: 991px) {
    .container {
        padding: 0 20px;
    }

    header {
        padding: 15px 0;
    }

    .nav-wrapper {
        gap: 10px;
    }

    .logo {
        flex: 0 0 auto;
        max-width: 60%;
    }

    .logo a {
        font-size: 18px;
        letter-spacing: 3px;
    }

    .logo img {
        max-height: 40px !important;
        width: auto !important;
    }

    .header-btns {
        flex: 0 0 auto;
        gap: 10px;
    }

    .header-btns .btn-premium,
    .header-btns a.btn-premium {
        display: none !important;
        /* Hide reservation button on mobile */
    }

    /* Better visibility for the menu toggle */
    #menuToggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        font-size: 20px;
        background: rgba(197, 160, 89, 0.15);
        /* Slightly more visible gold */
        border-radius: 10px;
        transition: all 0.3s ease;
        color: var(--dark) !important;
        /* Force dark by default on mobile for better visibility */
    }

    /* Override for the homepage hero where it needs to be white */
    header:not(.header-dark):not(.scrolled) #menuToggle {
        color: var(--white) !important;
    }

    header.scrolled #menuToggle,
    header.header-dark #menuToggle,
    header.header-transparent #menuToggle {
        background: rgba(197, 160, 89, 0.2);
        color: var(--dark) !important;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: #111;
        /* Premium Dark Background */
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 40px 40px;
        gap: 0;
        transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -15px 0 50px rgba(0, 0, 0, 0.5);
        z-index: 9999;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
        color:#fff;
    }

    .nav-links li {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        opacity: 0;
        transform: translateX(20px);
        transition: 0.4s;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    /* Staggered animation for menu items */
    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-links.active li:nth-child(6) {
        transition-delay: 0.6s;
    }

    .nav-links>li>a {
        color: #fff !important;
        font-size: 18px !important;
        font-weight: 500;
        letter-spacing: 1px;
        padding: 22px 0 !important;
        display: block;
        width: 100%;
        font-family: 'Tenor Sans', serif;
    }

    .nav-links a:hover {
        color: var(--primary) !important;
        padding-left: 10px !important;
    }

    /* Mobile dropdown */
    .has-dropdown .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.03);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        padding: 0 !important;
    }

    .has-dropdown.active .dropdown {
        max-height: 500px;
        padding: 10px 0 !important;
    }

    .dropdown li {
        border-bottom: none !important;
    }

    .dropdown li a {
        padding: 12px 20px !important;
        font-size: 14px !important;
        color: rgba(255, 255, 255, 0.7) !important;
    }

    /* Mobile overlay */
    .nav-links.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(5px);
        z-index: -1;
    }

    /* Close button in mobile menu */
    .nav-links.active::after {
        content: '\f00d';
        /* FontAwesome X icon */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        top: 25px;
        right: 25px;
        font-size: 20px;
        color: #fff;
        cursor: pointer;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--primary);
        border-radius: 12px;
        transition: 0.3s;
        box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
    }
}

/* --- Hero Section Slider --- */
.hero-swiper {
    height: 100vh;
    width: 100%;
    position: relative;
}

.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    padding: 0 20px;
    text-align: center;
}

.slide-content p {
    font-size: 14px;
    letter-spacing: 5px;
    text-transform: none;
    color: var(--primary);
    margin-bottom: 20px;
}

.slide-content h1 {
    font-size: clamp(40px, 8vw, 90px);
    margin-bottom: 40px;
}

/* --- About Us Components (Homepage) --- */
.about-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 60px;
    align-items: center;
}

.about-content {
    grid-column: span 6;
}

.about-images {
    grid-column: span 6;
    position: relative;
    height: 650px;
}

.premium-line {
    width: 60px;
    height: 2px;
    background: var(--primary);
    margin-bottom: 30px;
}

.about-stats {
    display: flex;
    gap: 50px;
}

.stat-item h3 {
    font-size: 44px;
    color: var(--primary);
    margin-bottom: 5px;
    display: flex;
    align-items: baseline;
}

.stat-item h3 span:last-child {
    font-size: 20px;
    margin-left: 2px;
}

.stat-item p {
    font-size: 11px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 1px;
    color: var(--gray);
}

.about-img-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    object-fit: cover;
    z-index: 1;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.about-img-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 65%;
    height: 65%;
    object-fit: cover;
    z-index: 2;
    border: 15px solid var(--white);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

/* --- Rooms Grid & Cards (Homepage) --- */
.room-card {
    background: var(--white);
    border: 1px solid var(--border);
    transition: var(--transition);
}

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

.room-img-wrapper {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.room-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s;
}

.room-card:hover .room-img-wrapper img {
    transform: scale(1.1);
}

.room-price-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--dark);
    color: var(--white);
    padding: 12px 25px;
    z-index: 5;
    text-align: center;
}

.room-price-badge span {
    display: block;
    font-size: 10px;
    opacity: 0.7;
    letter-spacing: 1px;
}

.room-info {
    padding: 40px;
    text-align: center;
}

.room-info h3 {
    font-size: 28px;
    margin-bottom: 25px;
}

.room-features-mini {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.room-features-mini span {
    font-size: 11px;
    color: var(--gray);
    text-transform: none;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
}

.room-features-mini i {
    color: var(--primary);
    font-size: 16px;
}

.btn-room-detail {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--dark);
    position: relative;
}

.btn-room-detail::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

/* --- Services Section - Split Showcase --- */
.services-split {
    display: flex;
    align-items: stretch;
    background: var(--white);
    margin-top: 50px;
    border: 1px solid var(--border);
}

.services-mood-img {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.services-mood-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2s ease;
    opacity: 0.8;
}

.services-split:hover .services-mood-img img {
    transform: scale(1.1);
}

.services-list {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.service-item {
    padding: 45px 35px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
}

.service-item:nth-child(2n) {
    border-right: none;
}

.service-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.service-item i {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-item h3 {
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: none;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-item p {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.6;
}

.service-item:hover {
    background: var(--bg-light);
}

.service-item:hover i {
    transform: translateY(-5px);
}

/* --- Testimonials Swiper --- */
.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    text-align: center;
}

.star-rating {
    color: #ffc107;
    font-size: 14px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.testimonial-quote {
    font-size: 28px;
    font-style: italic;
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 50px;
}

.testimonial-user {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.user-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.user-info span {
    font-size: 11px;
    color: var(--primary);
    font-weight: 700;
    text-transform: none;
    letter-spacing: 1px;
}

/* --- About Showcase Page (Architectural Typography) --- */
.about-header-minimal {
    padding: 180px 0 100px;
    background: var(--white);
    text-align: center;
}

.about-header-minimal span {
    color: var(--primary);
    text-transform: none;
    letter-spacing: 8px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 25px;
    display: block;
}

.about-header-minimal h1 {
    font-size: 80px;
    line-height: 1;
    margin-bottom: 40px;
}

.about-intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 24px;
    font-family: 'Montserrat';
    line-height: 1.6;
    color: var(--dark);
    font-style: italic;
}

.masterpiece-section {
    padding: 100px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.masterpiece-content {
    padding: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--border);
}

.masterpiece-visual {
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px;
}

.masterpiece-visual .brand-symbol {
    font-size: 150px;
    color: var(--primary);
    opacity: 0.1;
    font-family: 'Montserrat';
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 80px;
    align-items: center;
    padding: 120px 0;
}

.story-visual {
    grid-column: span 6;
    position: relative;
    padding-right: 40px;
}

.story-visual img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 60px 40px;
    text-align: center;
    z-index: 5;
}

.story-content {
    grid-column: span 6;
}

/* --- Room Showcase Page (Rooms List Page) --- */
.rooms-hero {
    height: 60vh;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rooms-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?q=80&w=2070') center/cover no-repeat;
    opacity: 0.4;
}

.rooms-hero-content {
    position: relative;
    z-index: 5;
    color: var(--white);
}

.rooms-hero-content h1 {
    font-size: clamp(40px, 6vw, 70px);
    margin-bottom: 20px;
}

.rooms-hero-content p {
    letter-spacing: 5px;
    text-transform: none;
    color: var(--primary);
    font-weight: 700;
}

.room-showcase-item {
    display: flex;
    align-items: center;
    min-height: 700px;
    margin-bottom: 120px;
    background: var(--white);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
}

.room-showcase-item.reverse {
    flex-direction: row-reverse;
}

.room-visual {
    flex: 0 0 60%;
    height: 700px;
    overflow: hidden;
    position: relative;
}

.room-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

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

.room-detail-box {
    flex: 1;
    padding: 80px;
    position: relative;
}

.room-tag {
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: none;
    margin-bottom: 30px;
    display: block;
}

.room-detail-box h2 {
    font-size: 42px;
    margin-bottom: 40px;
    line-height: 1.2;
}

.room-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
    border-top: 1px solid var(--border);
    padding-top: 40px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.spec-item i {
    color: var(--primary);
    font-size: 18px;
}

.spec-item span {
    font-size: 11px;
    font-weight: 700;
    text-transform: none;
    color: var(--gray);
    letter-spacing: 1px;
}

.room-action {
    display: flex;
    align-items: center;
    gap: 40px;
}

.room-price {
    font-size: 24px;
    font-family: 'Montserrat';
}

.room-price b {
    color: var(--primary);
}

/* --- Footer --- */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 120px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 80px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 3px;
    margin-bottom: 40px;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--primary);
}

.footer-about .logo {
    margin-bottom: 30px;
    font-size: 28px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.8;
}

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

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 10px;
}

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

.footer-contact ul li {
    margin-bottom: 25px;
    display: flex;
    gap: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-contact ul li i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 3px;
}

.footer-socials {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.footer-socials a {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: none;
}

/* --- About Refined (Minimalist & Delicate) --- */
.about-refined-header {
    padding: 160px 0 80px;
    background: var(--white);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.about-refined-header .pre-title {
    color: var(--primary);
    text-transform: none;
    letter-spacing: 6px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.about-refined-header h1 {
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--dark);
}

.about-refined-header .delicate-line {
    width: 30px;
    height: 1px;
    background: var(--primary);
    margin: 0 auto 25px;
}

.about-refined-header p {
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--gray);
    text-transform: none;
    font-weight: 500;
}

.story-layered-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 100px;
    align-items: center;
}

.premium-para {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 35px;
}

.quote-box {
    padding: 35px;
    background: var(--bg-light);
    border-left: 2px solid var(--primary);
    position: relative;
}

.quote-box i {
    font-size: 20px;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 12px;
    display: block;
}

.quote-box p {
    font-style: italic;
    color: var(--dark);
    font-size: 16px;
    line-height: 1.6;
}

.layered-image-container {
    position: relative;
    height: 600px;
}

.layer-1 {
    width: 85%;
    height: 90%;
    object-fit: cover;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.08);
}

.layer-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 50%;
    object-fit: cover;
    border: 12px solid var(--white);
    box-shadow: -15px -15px 50px rgba(0, 0, 0, 0.05);
}

.experience-seal {
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 40px 25px;
    text-align: center;
    z-index: 10;
}

.experience-seal span {
    font-size: 36px;
    display: block;
    font-family: 'Montserrat';
    line-height: 1;
}

.experience-seal small {
    font-size: 8px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: none;
}

.values-flex {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-card {
    padding: 60px 40px;
    background: var(--white);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 24px;
    color: var(--primary);
}

.philosophy-section {
    padding: 150px 0;
    background: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?q=80&w=2070') center/cover no-repeat fixed;
    position: relative;
    text-align: center;
    color: var(--white);
}

.philosophy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.philosophy-content {
    position: relative;
    z-index: 5;
}

.philosophy-content h2 {
    font-size: 50px;
    margin-bottom: 40px;
}

@media (max-width: 1200px) {
    .story-layered-grid {
        gap: 60px;
        grid-template-columns: 1fr;
    }

    .layered-image-container {
        height: 600px;
    }
}

@media (max-width: 991px) {
    .values-flex {
        grid-template-columns: 1fr;
    }

    .about-hero-glass {
        padding: 40px 20px;
    }

    .philosophy-content h2 {
        font-size: 32px;
    }
}

/* --- Swiper Pagination --- */
.swiper-pagination {
    position: relative !important;
    margin-top: 50px;
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    background: var(--dark) !important;
    opacity: 0.1 !important;
    border-radius: 0 !important;
    width: 15px !important;
    height: 3px !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
    opacity: 1 !important;
    width: 35px !important;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .story-grid {
        gap: 60px;
    }

    .about-images {
        height: 500px;
    }

    .masterpiece-content {
        padding: 50px;
    }
}

@media (max-width: 991px) {
    section {
        padding: 80px 0;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-images {
        height: 500px;
        order: 1;
        margin-bottom: 40px;
    }

    .about-content {
        order: 2;
        text-align: center;
    }

    .premium-line {
        margin: 0 auto 30px;
    }

    .about-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .room-card {
        margin-bottom: 30px;
    }

    .room-img-wrapper {
        height: 300px;
    }

    .services-split {
        flex-direction: column;
    }

    .services-mood-img {
        height: 350px;
        flex: 0 0 350px;
    }

    .services-list {
        grid-template-columns: 1fr;
    }

    .about-header-minimal h1 {
        font-size: 50px;
    }

    .about-intro-text {
        font-size: 18px;
    }

    .masterpiece-section {
        grid-template-columns: 1fr;
    }

    .masterpiece-content {
        padding: 60px 30px;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

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

    .story-visual {
        grid-column: span 1;
        padding: 0;
        margin-bottom: 40px;
    }

    .story-visual img {
        height: 400px;
    }

    .experience-badge {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin-top: -30px;
        margin-left: 20px;
        display: inline-block;
        padding: 40px 30px;
    }

    .room-showcase-item {
        flex-direction: column !important;
        min-height: auto;
    }

    .room-visual {
        flex: 0 0 450px;
        width: 100%;
    }

    .room-detail-box {
        padding: 50px 30px;
    }

    .room-action {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .stat-item {
        flex: 0 0 calc(50% - 25px);
        text-align: center;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* --- Motion & Reveal System --- */
.reveal-effect {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-effect.active {
    opacity: 1;
    transform: translateY(0);
}

.float-anim {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.layered-image-container:hover .layer-1 {
    transform: scale(1.02) translate(-5px, -5px);
}

.layered-image-container:hover .layer-2 {
    transform: scale(1.05) translate(10px, 10px);
}

.experience-seal {
    animation: floating 4s ease-in-out infinite;
}

.value-card:hover .value-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotateY(180deg);
}

.delicate-line {
    transition: width 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

/* --- Room Detail (Celestial Suite) --- */
.room-detail-hero {
    height: 70vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--dark);
}

.room-detail-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.room-detail-hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    max-width: 800px;
}

.room-detail-hero-content h1 {
    font-size: clamp(40px, 6vw, 70px);
    line-height: 1.1;
    margin-bottom: 20px;
}

.room-info-bar {
    background: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 80px;
}

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

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item i {
    color: var(--primary);
    font-size: 20px;
}

.info-item div span {
    display: block;
    font-size: 10px;
    color: var(--gray);
    font-weight: 700;
    text-transform: none;
    letter-spacing: 1px;
}

.info-item div b {
    font-size: 14px;
    color: var(--dark);
    font-family: "Montserrat";
}

.room-detail-main-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 80px;
    margin-bottom: 120px;
}

.detail-section-title {
    font-size: 24px;
    text-transform: none;
    letter-spacing: 3px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.detail-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--primary);
}

.detail-amenity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    font-size: 13px;
    color: var(--dark);
    font-weight: 500;
}

.amenity-item i {
    color: var(--primary);
}

.reservation-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 50px 40px;
    position: sticky;
    top: 120px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
}

.res-price {
    font-size: 38px;
    font-family: "Montserrat";
    color: var(--dark);
    margin-bottom: 10px;
    display: block;
    text-align: center;
}

.res-price b {
    color: var(--primary);
}

.res-price+span {
    display: block;
    text-align: center;
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: none;
    margin-bottom: 40px;
}

.reservation-form label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--dark);
}

.reservation-form input {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid var(--border);
    margin-bottom: 30px;
    font-family: "Montserrat";
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.reservation-form input:focus {
    border-color: var(--primary);
}

@media (max-width: 991px) {
    .info-bar-flex {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }

    .room-detail-main-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .detail-amenity-grid {
        grid-template-columns: 1fr 1fr;
    }

    .reservation-card {
        position: static;
        margin-top: 40px;
    }
}

/* --- Room Detail - Ultra-Luxe Boutique System --- */
.room-detail-hero {
    height: 100vh;
    background: var(--dark);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.room-detail-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    transform: scale(1.1);
    transition: transform 10s ease;
}

.active .room-detail-hero-img {
    transform: scale(1);
}

.room-detail-hero-content {
    max-width: 900px;
    z-index: 5;
}

.room-detail-hero-content .room-tag {
    background: var(--primary);
    color: var(--white);
    padding: 8px 15px;
    display: inline-block;
    margin-bottom: 30px;
}

.room-detail-hero-content h1 {
    font-size: clamp(50px, 8vw, 100px);
    line-height: 0.95;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

/* Slim Info Bar Enhancement */
.room-info-bar {
    background: var(--white);
    padding: 40px 0;
    margin-top: -60px;
    position: relative;
    z-index: 20;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.info-bar-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.info-item {
    text-align: center;
    flex: 1;
    border-right: 1px solid var(--border);
}

.info-item:last-child {
    border-right: none;
}

/* Mosaic Gallery Perfection */
.room-mosaic-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 300px;
    gap: 30px;
    margin: 120px 0;
}

.mosaic-item {
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.mosaic-item.item-main {
    grid-column: span 8;
    grid-row: span 2;
}

.mosaic-item.item-tall {
    grid-column: span 4;
    grid-row: span 2;
}

.mosaic-item.item-wide {
    grid-column: span 12;
    height: 500px;
}

.mosaic-item.item-regular {
    grid-column: span 4;
}

/* Reservation Concierge Redesign */
.reservation-card {
    background: var(--white);
    border: none;
    padding: 60px 45px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.08);
}

.reservation-card::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--border);
    pointer-events: none;
}

.reservation-form input {
    background: transparent;
    padding: 18px 0;
    font-size: 15px;
    border-bottom: 2px solid var(--bg-light);
}

.reservation-form input:focus {
    border-color: var(--primary);
}

/* Mobile Perfection */
@media (max-width: 1200px) {
    .room-mosaic-gallery {
        grid-auto-rows: 250px;
    }

    .mosaic-item.item-main {
        grid-column: span 12;
    }

    .mosaic-item.item-tall {
        grid-column: span 6;
    }

    .mosaic-item.item-regular {
        grid-column: span 6;
    }
}

@media (max-width: 991px) {
    .room-detail-hero {
        height: 70vh;
    }

    .room-info-bar {
        margin-top: 0;
        padding: 30px 0;
    }

    .info-item {
        border-right: none;
        margin-bottom: 20px;
    }

    .info-bar-flex {
        flex-direction: column;
    }

    .room-mosaic-gallery {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .mosaic-item {
        height: 400px !important;
    }
}

/* --- Room Detail - Elite Experience Narrative --- */
.room-experience-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 1000px;
    margin: 0 auto 120px;
}

.experience-narrative {
    text-align: center;
    padding: 0 40px;
}

.experience-narrative .premium-para {
    font-size: 22px;
    line-height: 2;
    color: var(--dark);
    font-style: italic;
    font-family: "Montserrat", serif;
    margin-bottom: 60px;
}

.lifestyle-perks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 100px;
    border-top: 1px solid var(--border);
    padding-top: 100px;
}

.perk-item {
    text-align: center;
}

.perk-item i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 30px;
    display: block;
}

.perk-item h4 {
    font-size: 14px;
    text-transform: none;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.perk-item p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.8;
}

/* Concierge CTA Section */
.concierge-cta-block {
    background: var(--bg-light);
    padding: 120px 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

.concierge-cta-block span {
    display: block;
    color: var(--primary);
    letter-spacing: 4px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 20px;
}

.concierge-cta-block h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.concierge-cta-block p {
    max-width: 600px;
    margin: 0 auto 50px;
    color: var(--gray);
}

.booking-action-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.btn-outline {
    padding: 16px 40px;
    border: 1px solid var(--dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: none;
    transition: var(--transition);
    display: inline-block;
    color: var(--dark);
    text-decoration: none;
}

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

@media (max-width: 991px) {
    .lifestyle-perks-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-action-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* --- Room Detail - Grand Panorama Elite System --- */
.couture-detail-wrapper {
    background: var(--white);
}

.grand-panorama-header {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    grid-template-rows: 650px;
    gap: 8px;
    padding: 8px;
    background: #111;
}

.panorama-main {
    position: relative;
    overflow: hidden;
}

.panorama-side-grid {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
}

.panorama-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--dark);
}

.panorama-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2.5s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0.85;
}

.panorama-item:hover img {
    transform: scale(1.1);
    opacity: 1;
}

.panorama-caption {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 10;
    color: var(--white);
    pointer-events: none;
}

.panorama-caption h1 {
    font-size: 56px;
    font-family: "Montserrat";
    margin: 0;
    line-height: 1;
}

.panorama-caption span {
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: none;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

/* Compact Content Management */
.couture-main-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 70px;
    padding: 60px 0;
}

.couture-story-section h2 {
    font-size: 24px;
    text-transform: none;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: var(--dark);
}

.couture-story-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
}

.couture-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.feature-item-lux {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #eee;
}

.feature-item-lux i {
    font-size: 16px;
    color: var(--primary);
}

.feature-item-lux h4 {
    font-size: 10px;
    text-transform: none;
    letter-spacing: 2px;
    margin-bottom: 2px;
    color: var(--gray);
    font-weight: 600;
}

.feature-item-lux p {
    font-size: 13px;
    color: var(--dark);
    font-weight: 700;
    margin: 0;
}

.couture-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.couture-booking-card {
    background: var(--white);
    padding: 35px;
    border: 1px solid var(--border);
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
}

.couture-price b {
    font-size: 36px;
    color: var(--dark);
    font-family: "Montserrat";
}

.couture-price span {
    display: block;
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--gray);
    margin-top: 5px;
}

.couture-booking-card .btn-gold {
    width: 100%;
    padding: 16px;
    font-size: 12px;
    letter-spacing: 2px;
    margin: 25px 0;
}

.contact-direct {
    font-size: 11px;
    color: var(--gray);
}

.contact-direct a {
    color: var(--dark);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--primary);
}

@media (max-width: 1100px) {
    .grand-panorama-header {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }

    .panorama-side-grid {
        display: none;
    }

    .couture-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* --- Motion & Reveal System (Restored) --- */
.reveal-effect {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-effect.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Room Detail - Bespoke Boutique (Refined) --- */
.bespoke-detail-wrapper {
    background: var(--white);
    padding-top: 100px;
}

.bespoke-gallery-container {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.bespoke-grid-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 550px;
    gap: 15px;
}

.bg-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.bg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.bg-item:hover img {
    transform: scale(1.08);
}

.bg-side-grid {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
}

.bespoke-header {
    text-align: center;
    margin-bottom: 50px;
}

.bespoke-header span {
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: none;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 15px;
}

.bespoke-header h1 {
    font-size: 52px;
    font-family: "Montserrat";
    margin: 0;
    color: var(--dark);
}

.bespoke-main-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 80px;
    padding-bottom: 100px;
}

.bespoke-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.bespoke-card {
    background: var(--white);
    padding: 45px;
    border: 1px solid var(--border);
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1100px) {
    .bespoke-grid-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: 400px;
    }

    .bg-side-grid {
        display: none;
    }

    .bespoke-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* --- Ultimate Room Detail Restoration --- */
.room-page-hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    background: #000;
}

.room-page-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.room-page-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.room-page-hero-content span {
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: none;
    color: var(--primary);
    margin-bottom: 25px;
    display: block;
}

.room-page-hero-content h1 {
    font-size: clamp(50px, 9vw, 110px);
    font-family: "Montserrat", serif;
    margin-bottom: 40px;
    line-height: .9;
}

.room-page-main-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 100px;
    padding: 120px 0;
}

.room-detail-story h2 {
    font-size: 36px;
    font-family: "Montserrat";
    margin-bottom: 40px;
    position: relative;
}

.room-detail-story h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 1px;
    background: var(--primary);
}

.room-detail-story p {
    font-size: 18px;
    line-height: 2;
    color: #444;
    margin-bottom: 40px;
}

.room-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 80px 0;
}

.room-spec-card {
    padding: 40px;
    background: #fbfbfb;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

.room-spec-card:hover {
    background: #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
}

.room-spec-card i {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 25px;
    display: block;
}

.room-spec-card h4 {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: none;
    color: #888;
    margin-bottom: 10px;
}

.room-spec-card b {
    font-size: 16px;
    color: var(--dark);
    font-weight: 700;
}

.room-page-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.room-booking-panel {
    background: #fff;
    padding: 60px 45px;
    border: 1px solid var(--border);
    text-align: center;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.06);
}

.price-display {
    margin-bottom: 50px;
}

.price-display b {
    font-size: 48px;
    font-family: "Montserrat";
    color: var(--dark);
}

.price-display span {
    display: block;
    font-size: 11px;
    letter-spacing: 4px;
    color: #999;
    margin-top: 15px;
}

.btn-luxury {
    background: var(--dark);
    color: #fff;
    width: 100%;
    padding: 22px;
    display: inline-block;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 4px;
    font-size: 13px;
    transition: var(--transition);
}

.btn-luxury:hover {
    background: var(--primary);
    color: #fff;
}

.room-concierge-footer {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #f0f0f0;
    font-size: 12px;
    color: #999;
}

.room-concierge-footer a {
    color: var(--dark);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--primary);
}

@media (max-width: 1200px) {
    .room-page-main-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .room-page-sidebar {
        position: static;
    }
}

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

    .room-page-hero-content h1 {
        font-size: 60px;
    }
}

/* --- Gallery Exhibition System --- */
.gallery-exhibition {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 150px;
    gap: 20px;
    margin-top: 80px;
}

.gallery-item-ex {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
    cursor: pointer;
}

.gallery-item-ex img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.gallery-item-ex:hover img {
    transform: scale(1.05);
}

.gallery-item-ex.main {
    grid-column: span 8;
    grid-row: span 4;
}

.gallery-item-ex.side-top {
    grid-column: span 4;
    grid-row: span 2;
}

.gallery-item-ex.side-bottom {
    grid-column: span 4;
    grid-row: span 2;
}

.gallery-overlay-ex {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.gallery-overlay-ex i {
    color: #fff;
    font-size: 24px;
    transform: translateY(10px);
    transition: var(--transition);
}

.gallery-item-ex:hover .gallery-overlay-ex i {
    transform: translateY(0);
}

@media (max-width: 991px) {
    .gallery-exhibition {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
        display: flex;
        flex-direction: column;
    }

    .gallery-item-ex.main,
    .gallery-item-ex.side-top,
    .gallery-item-ex.side-bottom {
        grid-column: span 1;
        grid-row: span 1;
        height: 300px;
    }
}

/* Mobile Button Controls */
#menuToggle,
#phoneBtn,
.mobile-only-btn {
    display: none;
}

@media (max-width: 768px) {

    #menuToggle,
    #phoneBtn,
    .mobile-only-btn {
        display: flex !important;
    }
}