body {
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
}

h1,
h2,
h3 {
    font-family: 'Poiret One', sans-serif;
    font-weight: bold;
}

.hero-mini-refined {
    margin-top: 0;
    background: url('../Resource/sourabha/sourabha1.JPG') center/cover fixed;
    height: 60vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Room Overview Grid (Fixes "Collapsed" Look) */
.room-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.room-overview-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    text-align: left;
}

.room-overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.room-overview-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.room-overview-content {
    padding: 25px;
}

.room-overview-content h3 {
    font-size: var(--fs-h3-card);
    color: #303646;
    margin-bottom: 10px;
}

.room-overview-content p {
    font-size: var(--fs-body-p);
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.room-overview-btn {
    display: inline-block;
    color: #B8A884;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: var(--fs-btn-text);
    border-bottom: 2px solid #B8A884;
    padding-bottom: 4px;
}

/* Brand-Aligned Modern Layout Styles */
#rooms-section {
    background-color: #f4f1e9;
    /* Soft Ivory Background */
    padding: 100px 0;
}

.room-stack-container {
    display: flex;
    flex-direction: column;
    gap: 180px;
    padding: 0 5vw;
    max-width: 1500px;
    margin: 0 auto;
}

.room-row-modern {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 600px;
}

.room-row-modern.reverse {
    flex-direction: row-reverse;
}

/* Large Visual Side */
.room-visual-modern {
    flex: 0 0 60%;
    /* Balanced ratio */
    height: 650px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 40px;
    /* Uniform Radius */
    cursor: pointer;
}

.room-visual-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Content Card */
.room-card-modern {
    flex: 0 0 45%;
    background: #ffffff;
    padding: 50px 60px;
    /* Reduced vertical padding */
    position: relative;
    z-index: 10;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.06);
    border-radius: 40px;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    min-height: 550px;
    /* Changed from fixed height */
    overflow: hidden;
    /* Prevent content spill */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-row-modern:not(.reverse) .room-card-modern {
    margin-left: -5%;
}

.room-row-modern.reverse .room-card-modern {
    margin-right: -5%;
}

/* Typography Refinements - Brand Palette */
.modern-type-label {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-section-topper);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 25px;
    display: block;
    font-weight: 600;
    color: #B8A884;
}

.premium-shine {
    background: linear-gradient(110deg, #B8A884 35%, #ffffff 50%, #B8A884 65%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine-text 3s linear infinite;
}

@keyframes shine-text {
    to {
        background-position: 200% center;
    }
}

.modern-room-title {
    font-family: 'Poiret One', sans-serif;
    font-size: var(--fs-page-h1);
    color: #303646;
    /* Brand Dark */
    margin-bottom: 30px;
    line-height: 1.05;
    font-weight: 300;
}

.modern-room-desc {
    font-family: 'Quicksand', sans-serif;
    font-size: var(--fs-lead-p);
    color: #555;
    line-height: 1.9;
    margin-bottom: 45px;
    max-width: 90%;
}

/* Modern Spec Grid */
.modern-spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.modern-spec-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.modern-spec-item i {
    color: #B8A884;
    /* Brand Gold icons */
    font-size: 1.1rem;
}

.modern-spec-item span {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-body-p);
    color: #444;
    font-weight: 500;
}

/* Brand Action Buttons */
.modern-actions {
    display: flex;
    gap: 15px;
    /* Compact gap */
}

.btn-solid-moss {
    padding: 14px 30px;
    /* Compact padding */
    background: #303646;
    /* Brand Dark */
    color: #B8A884;
    /* Brand Gold text */
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: var(--fs-btn-text);
    /* Reduced font size */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
    border-radius: 50px;
}

.btn-solid-moss:hover {
    background: #B8A884;
    /* Brand Gold on hover */
    color: #303646;
    /* Brand Dark on hover */
    box-shadow: 0 15px 30px rgba(184, 168, 132, 0.2);
    transform: translateY(-3px);
}

.btn-outline-modern {
    padding: 13px 29px;
    /* Compact padding offset for border */
    background: transparent;
    border: 1px solid #303646;
    /* Brand Dark border */
    color: #303646;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: var(--fs-btn-text);
    /* Reduced font size */
    transition: all 0.4s ease;
    cursor: pointer;
    border-radius: 50px;
}

.btn-outline-modern:hover {
    background: #303646;
    color: #f4f1e9;
}

.text-gold {
    color: #B8A884;
}

.theme-deep {
    background-color: #303646;
    color: #fff;
}

.theme-deep .text-gold {
    color: #B8A884;
}

.theme-deep h2 {
    color: #fff;
}

.amenity-lux-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding: 0 20px;
}

.amenity-lux-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    transition: transform 0.4s ease;
    border: 1px solid rgba(184, 168, 132, 0.1);
}

.amenity-lux-card h3 {
    color: #B8A884;
    margin-bottom: 15px;
}

.amenity-lux-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* FAQ Accordion Styling */
.accordion-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
}

.accordion-header {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #303646;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: #f9f9f9;
}

.accordion-header span:last-child {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.accordion-item.active .accordion-header span:last-child {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: #fff;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    /* Large enough for content */
}

.accordion-content p {
    padding: 0 30px 25px;
    color: #666;
    line-height: 1.8;
    font-family: 'Quicksand', sans-serif;
}

/* Footer Section Spacing */
#Footer {
    margin-top: 80px;
    min-height: 270px;
    background: #303646;
}

@media (max-width: 1300px) {


    .room-card-modern {
        padding: 50px 40px;
    }
}

@media (max-width: 1100px) {
    #rooms-section {
        padding: 60px 0;
    }

    .room-stack-container {
        gap: 80px;
    }

    .room-row-modern,
    .room-row-modern.reverse {
        flex-direction: column;
        min-height: auto;
    }

    .room-visual-modern {
        width: 100%;
        flex: none;
        height: 450px;
        border-radius: 30px !important;
    }

    .room-card-modern,
    .room-row-modern.reverse .room-card-modern {
        width: 95%;
        margin: -80px auto 0 auto !important;
        padding: 40px 30px;
        text-align: center;
    }

    .modern-spec-grid {
        justify-items: start;
        margin: 0 auto 30px auto;
        width: fit-content;
        text-align: left;
    }

    .modern-actions {
        flex-direction: column;
        gap: 15px;
    }



    .btn-solid-moss,
    .btn-outline-modern {
        width: 100%;
    }
}

/* Mobile Header Fix - Prevent Overlap */
@media screen and (max-width: 480px) {
    .hero-phone-number-span {
        font-size: var(--fs-page-h1);
    }

    .menuicon-wrapper {
        gap: 10px;
    }
}

h2 {
    font-size: var(--fs-section-h2);
}