/* Rooms Page Specific Styles */
:root {
    --room-primary: #A0254E;
}

/* Top Bar Overrides */
.room-top-bar {
    background: var(--room-primary) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 10px 0;
}

.room-top-bar .contact-info span {
    font-family: "DM Sans";
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
    vertical-align: middle;
    margin-right: 30px;
}

.room-top-bar .contact-info .contact-phone {
    color: #B9F8B1 !important;
    /* Retaining the green phone color from global */
    font-weight: 700 !important;
    font-size: 16px !important;
}

.room-top-bar .contact-info .contact-email {
    color: white !important;
    font-weight: 400 !important;
    font-size: 16px !important;
}

.room-top-bar .social-icons a {
    color: #fff;
    font-size: 14px;
    margin-left: 15px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.room-top-bar .social-icons a:hover {
    opacity: 1;
}

/* Room Header */
html body header.room-header {

    background: #f9f4f0 !important;
    background-image: none !important;
    background-color: #f9f4f0 !important;
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

/* Logo */
.room-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.room-icon {
    width: 40px;
    height: auto;
    display: block;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}

.brand-name {
    font-family: "Rethink Sans" !important;
    font-weight: 400 !important;
    font-size: 13.07px !important;
    line-height: 10px !important;
    color: #0f172a !important;
}

.product-name {
    font-family: "Rethink Sans" !important;
    font-weight: 700 !important;
    font-size: 26.13px !important;
    color: #0f172a !important;
}

/* Navbar */
.room-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.room-nav ul li a {
    text-decoration: none;
    color: #000000 !important;
    font-family: "Rethink Sans" !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 15px !important;
    padding-bottom: 15px;
    position: relative;
    transition: color 0.3s;
}

.room-nav ul li a:hover,
.room-nav ul li a.active {
    color: #000000 !important;
}

/* Active Indicator */
.room-nav ul li a.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 0;
    border-bottom: 2px solid;
    border-image-source: linear-gradient(90deg, var(--room-primary) 0%, var(--room-primary) 100%);
    border-image-slice: 1;
    background-color: transparent;
}

/* Login Button */
.btn-room-login {
    background: var(--room-primary);
    color: white;
    font-family: "DM Sans";
    font-weight: 500;
    font-size: 15px;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
}

.btn-room-login:hover {
    background: #8e1f44;
    color: white;
    transform: translateY(-1px);
}

/* Room Hero Section */
.room-hero-section {
    position: relative;
    padding: 10px 0 20px;
    background: #FFF1D2;
    /* Requested background color */
    overflow: hidden;
    color: #0f172a;
    text-align: center;
}

/* Background Animation Container */
.hero-bg-animation {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    z-index: 5;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0;
}

.hero-row {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    display: flex;
    background: #00000045;
}

.hero-row-1 {
    height: 120px;
}

.hero-row-2 {
    height: 250px;
}

/* Marquee Tracks */
.marquee-track-1,
.marquee-track-2 {
    display: flex;
    gap: 5px;
    animation: scroll 60s linear infinite;
    width: max-content;
}

.marquee-track-2 {
    animation-direction: reverse;
}

.hero-row img {
    height: 100%;
    width: auto;
    object-fit: contain;
    opacity: 0.3;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center,
            rgba(160, 37, 78, 0.8) 0%,
            /* room primary with opacity */
            rgba(160, 37, 78, 0.95) 100%);
    z-index: 2;
    display: none;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 50px;
    display: block !important;
}

.room-hero-section h1 {
    font-family: "Rethink Sans";
    font-weight: 800;
    font-size: 53.1px;
    line-height: 58px;
    margin-bottom: 10px;
    letter-spacing: 0%;
    text-align: center;
    color: #0f172a;
}

.hero-subhead {
    font-family: "DM Sans";
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 15px;
    color: #4b5563;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Inter";
    font-weight: 500;
    font-size: 16px;
    line-height: 36px;
    letter-spacing: 0%;
}

.icon-wrapper {
    width: 32px;
    height: 32px;
    background: var(--room-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.hero-feature-item img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Buttons */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.btn-room-white {
    background: var(--room-primary);
    /* Requested button background color */
    color: white;
    font-family: "DM Sans";
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    cursor: pointer;
}

.btn-room-white:hover {
    background: #8e1f44;
}

.btn-room-outline {
    position: relative;
    background-image: linear-gradient(var(--room-primary), var(--room-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    border: 1px solid transparent;
    font-family: "DM Sans";
    font-weight: 500;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 1;
}

.btn-room-outline::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    /* Set border thickness */
    background: var(--room-primary);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    transition: all 0.3s ease;
}

.btn-room-outline:hover {
    -webkit-text-fill-color: white;
    color: white;
}

.btn-room-outline:hover::after {
    background: #8e1f44;
    -webkit-mask: none;
    mask: none;
    padding: 0;
}

/* Dashboard Preview */
#hero-dashboard-image {
    margin: 0 auto !important;
    display: block !important;
    border-radius: 12px 12px 0 0 !important;
    object-fit: cover !important;
    object-position: top center !important;
}

.dashboard-img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
}



/* ========================================
   WHO THIS SERVICE IS BEST SUITED FOR SECTION
   ======================================== */

.suited-for-section {
    background-color: #ffffff;
    padding: 10px 10px;
    overflow-x: hidden;
}

/* --- 1. The Proportional Scaling Engine --- */
.scale-wrapper {
    container-type: inline-size;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.semi-circle-stage {
    position: relative;
    width: 100cqi;
    height: 52cqi;
}

/* --- 2. Geometry Backgrounds (Scaled in cqi) --- */
.glow-dome {
    position: absolute;
    bottom: 4.16cqi;
    left: 50%;
    transform: translateX(-50%);
    width: 80cqi;
    height: 40cqi;
    background: radial-gradient(70.74% 74.61% at 50.05% 100%,
            #ffffff 0%,
            #FFF1D2 100%);
    border-radius: 80cqi 80cqi 0 0;
    z-index: 1;
    pointer-events: none;
}

.arc-ring {
    position: absolute;
    bottom: 4.16cqi;
    left: 50%;
    transform: translateX(-50%);
    border: max(1px, 0.1cqi) solid rgba(0, 0, 0, 0.1);
    border-bottom: none;
    z-index: 2;
    pointer-events: none;
}

/* The 4 perfectly spaced concentric rings */
.r1 {
    width: 36.66cqi;
    height: 18.33cqi;
    border-radius: 36.66cqi 36.66cqi 0 0;
    border-color: rgba(0, 0, 0, 0.04);
}

.r2 {
    width: 58.33cqi;
    height: 29.16cqi;
    border-radius: 58.33cqi 58.33cqi 0 0;
    border-color: rgba(0, 0, 0, 0.04);
}

.r3 {
    width: 80cqi;
    height: 40cqi;
    border-radius: 80cqi 80cqi 0 0;
}

.r4 {
    width: 95cqi;
    height: 45.5cqi;
    border-radius: 95cqi 95cqi 0 0;
}

.arc-line {
    position: absolute;
    bottom: 4.16cqi;
    left: 50%;
    width: 1px;
    height: 46cqi;
    /* Split color exactly at the dome's edge (40cqi / 46cqi = ~86.9%) */
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.04) 0%,
            rgba(0, 0, 0, 0.04) 86.9%,
            rgba(0, 0, 0, 0.1) 86.9%,
            rgba(0, 0, 0, 0.1) 100%);
    transform-origin: bottom center;
    z-index: 2;
    pointer-events: none;
}

/* --- 3. Exact Typography (Center Text) --- */
.center-text {
    position: absolute;
    bottom: 9cqi;
    left: 50%;
    transform: translateX(-50%);
    width: 50cqi;
    text-align: center;
    z-index: 10;
}

.center-text h2 {
    font-family: "Rethink Sans";
    font-weight: 700;
    font-size: 3.5cqi;
    line-height: 4.33cqi;
    letter-spacing: 0%;
    color: #1f2937;
    margin-bottom: 1cqi;
}

.center-text p {
    font-family: "DM Sans";
    font-weight: 500;
    font-size: 1.66cqi;
    line-height: 2.83cqi;
    letter-spacing: 0%;
    color: #6b7280;
    padding-bottom: 3cqi;
}

/* --- 4. Exact Typography (Floating Badges) --- */
.badge {
    position: absolute;
    transform: translate(-50%, 50%);
    background: #ffffff;
    border: max(1px, 0.12cqi) solid var(--room-primary);
    padding: 0.66cqi 1cqi;
    width: 25cqi;
    justify-content: flex-start;
    border-radius: 5cqi;
    display: flex;
    align-items: center;
    gap: 0.83cqi;
    box-shadow: 0 0.33cqi 1.25cqi rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    z-index: 20;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    cursor: default;
    font-family: "Inter";
    font-weight: 600;
    font-size: 1.23cqi;
    line-height: 1.78cqi;
    letter-spacing: 0%;
    color: #2F2D2D;
    animation: badgeFloat 4s ease-in-out infinite;
}

@keyframes badgeFloat {

    0%,
    100% {
        margin-top: 0;
    }

    50% {
        margin-top: -0.5cqi;
    }
}

.badge:hover {
    box-shadow: 0 0.5cqi 1.66cqi rgba(160, 37, 78, 0.15);
    transform: translate(-50%, 50%) translateY(-0.25cqi);
}

.icon {
    width: 1.5cqi;
    height: 1.5cqi;
    min-width: 1.5cqi;
    flex-shrink: 0;
    background: var(--room-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.83cqi;
    font-weight: bold;
}

.icon img {
    width: 55%;
    height: auto;
    filter: brightness(0) invert(1);
    display: block;
}

/* Top Badge */
.b-top {
    bottom: 45cqi;
    left: 50%;
    animation-delay: 0s;
}

/* Left Side Badges */
.b-left-1 {
    bottom: 37cqi;
    left: 19cqi;
    animation-delay: 0.2s;
}

.b-left-2 {
    bottom: 29cqi;
    left: 23cqi;
    animation-delay: 0.4s;
}

.b-left-3 {
    bottom: 21cqi;
    left: 17cqi;
    animation-delay: 0.6s;
}

.b-left-4 {
    bottom: 13cqi;
    left: 8cqi;
    animation-delay: 0.8s;
}

.b-left-5 {
    bottom: 5cqi;
    left: 11cqi;
    animation-delay: 1s;
}

/* Right Side Badges */
.b-right-1 {
    bottom: 37cqi;
    left: 81cqi;
    animation-delay: 0.1s;
}

.b-right-2 {
    bottom: 29cqi;
    left: 77cqi;
    animation-delay: 0.3s;
}

.b-right-3 {
    bottom: 21cqi;
    left: 83cqi;
    animation-delay: 0.5s;
}

.b-right-4 {
    bottom: 13cqi;
    left: 92cqi;
    animation-delay: 0.7s;
}

.b-right-5 {
    bottom: 5cqi;
    left: 89cqi;
    animation-delay: 0.9s;
}

/* ========================================
   ROOMS TABS SECTION
   ======================================== */

.room-tabs-section {
    padding-bottom: 60px;
    background-color: #FFF1D2;
}

/* Full-Width Sticky Tabs Header Wrapper */
.room-tabs-section .tabs-header-wrapper {
    position: sticky;
    top: 50px;
    z-index: 999;
    background-color: #FFF1D2;
    width: 100%;
    box-shadow: 0 6px 15px -3px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
    border-top: 1px solid #E5E7EB;
}

.room-tabs-section .tabs-header-inner {
    padding-top: 5px;
}

/* Tabs Header */
.room-tabs-section .tabs-header {
    display: flex;
    justify-content: center;
    gap: 30px;
    position: relative;
    overflow-x: auto;
    scrollbar-width: none;
}

.room-tabs-section .tabs-header::-webkit-scrollbar {
    display: none;
}

.room-tabs-section .tab-item {
    font-family: "DM Sans";
    font-weight: 500;
    font-size: 16px;
    color: #6b7280;
    padding-bottom: 15px;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.3s ease;
    position: relative;
}

.room-tabs-section .tab-item:hover {
    color: #111827;
}

.room-tabs-section .tab-item.active {
    color: var(--room-primary);
    font-weight: 700;
}

.room-tabs-section .tab-indicator {
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 3px;
    background-color: var(--room-primary);
    border-radius: 3px 3px 0 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 10;
    pointer-events: none;
}

/* Tab Headlines */
.room-tabs-section .tab-headline {
    text-align: center;
    margin-bottom: 40px;
}

.r-tab-badge {
    display: inline-block;
    padding: 6px 16px;
    color: var(--room-primary);
    font-family: "DM Sans";
    font-weight: 700;
    font-size: 14px;
    border-radius: 50px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.room-tabs-section .tab-headline h2 {
    font-family: "Rethink Sans";
    font-weight: 700;
    font-size: 36px;
    line-height: 48px;
    color: #0f172a;
}

/* Tab Content */
.room-tabs-section .tab-content {
    display: block !important;
    opacity: 0;
    transform: translateX(50px);
    transition: all 1.2s ease-out;
    padding-top: 20px;
    margin-bottom: 80px;
}

.room-tabs-section .tab-content.slide-in {
    opacity: 1;
    transform: translateX(0);
}

.room-tabs-section .tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Tab 1 Special Overrides */
.t1-red-card {
    flex: 1.8;
    min-height: 480px;
}

.t1-img-back {
    position: absolute;
    bottom: -2px;
    right: 40px;
    width: calc(100% - 90px);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    z-index: 1;
    margin-bottom: -15px;
}

.t1-img-front {
    position: absolute;
    bottom: -2px;
    left: 30px;
    width: 30%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    z-index: 2;
    margin-bottom: -15px;
}

@media (max-width: 900px) {
    .t1-img-back {
        width: 90%;
        right: 20px;
    }
}

@media (max-width: 600px) {
    .t1-img-back {
        width: 100%;
        right: 0;
        border-radius: 0;
    }

    .t1-img-front {
        width: 65%;
        left: 15px;
    }
}

@media (max-width: 768px) {
    .room-tabs-section .tabs-header {
        justify-content: flex-start;
    }
}

/* Tab 2 Images Layout */
.r-tab2-images {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
}

.r-tab2-images-container {
    min-height: 450px;
    /* Force minimum height for Tab 2 */
}

.r-tab2-img-back {
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
    border-radius: 8px;
    z-index: 1;
}

.r-tab2-img-front {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    z-index: 2;
    margin-bottom: -20px;
}

@media (max-width: 900px) {
    .r-tab2-images-container {
        min-height: 400px;
    }
}

@media (max-width: 600px) {
    .r-tab2-images-container {
        min-height: 350px;
    }

    .r-tab2-img-back {
        width: 80%;
    }

    .r-tab2-img-front {
        width: 100%;
        border-radius: 0;
        bottom: 0;
        margin-bottom: 0;
    }
}

/* ----------------------------------
   GUEST MANAGEMENT TAB (Tab 2)
   ---------------------------------- */
.top-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    align-items: stretch;
}

.bottom-row {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

/* Left Stack in Top Row */
.left-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Shared Card Base Styles */
.card {
    border-radius: 12px;
    position: relative;
}

/* White Cards */
.white-card {
    background-color: #ffffff;
    padding: 30px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
}

.white-card h4 {
    font-family: "Rethink Sans";
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 10px 0;
    line-height: 24px;
}

.white-card p {
    font-family: "DM Sans";
    font-size: 15px;
    color: #6b7280;
    line-height: 24px;
    margin: 0;
}

/* Red Card (Burgundy) */
.red-card {
    background-color: var(--room-primary);
    flex: 2;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    min-height: 450px;
}

/* Overlapping Images inside the Red Card */
.img-back {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    border-radius: 8px;
    z-index: 1;
}

.img-front {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    z-index: 2;
    margin-bottom: -20px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .top-row {
        flex-direction: column;
    }

    .bottom-row {
        flex-direction: column;
    }

    .red-card {
        min-height: 400px;
    }
}

@media (max-width: 600px) {
    .white-card {
        padding: 25px 30px;
    }

    .red-card {
        min-height: 350px;
    }

    .img-back {
        width: 80%;
    }

    .img-front {
        width: 100%;
        border-radius: 0;
        bottom: 0;
        margin-bottom: 0;
    }
}

/* ----------------------------------
   ROOM SERVICES TAB (Tab 3)
   ---------------------------------- */
.t3-img-left {
    position: absolute;
    left: 5%;
    bottom: -2px;
    width: 37%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    z-index: 1;
    margin-bottom: -15px;
}

.t3-img-center {
    position: absolute;
    left: 22%;
    bottom: -2px;
    width: 65%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    z-index: 2;
    margin-bottom: -15px;
}

.t3-img-right {
    position: absolute;
    right: 0%;
    bottom: -2px;
    width: 63%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    z-index: 3;
    margin-bottom: -15px;
}

@media (max-width: 900px) {
    .t3-img-left {
        width: 30%;
        left: -2%;
    }

    .t3-img-center {
        width: 65%;
        left: 20%;
    }

    .t3-img-right {
        width: 55%;
        right: 0;
    }
}

@media (max-width: 600px) {
    .t3-img-left {
        display: none;
    }

    .t3-img-center {
        width: 85%;
        left: 5%;
    }

    .t3-img-right {
        width: 75%;
        right: -5%;
    }
}

/* ----------------------------------
   REPORTS TAB (Tab 4)
   ---------------------------------- */
.t4-content-row {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.t4-left-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.t4-white-card {
    background-color: #ffffff;
    padding: 24px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Match global shadow */
    border-radius: 12px;
    flex: 1;
}

.t4-white-card h4 {
    font-family: "Rethink Sans";
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
    line-height: 24px;
}

.t4-white-card p {
    font-family: "DM Sans";
    font-size: 14px;
    color: #6b7280;
    line-height: 24px;
    margin: 0;
}

.t4-red-card {
    background-color: var(--room-primary);
    flex: 2;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    min-height: 550px;
}

/* Images inside the Red Card */
.t4-img-back {
    position: absolute;
    top: 6%;
    right: 12%;
    width: 75%;
    border-radius: 8px;
    z-index: 1;
    margin-bottom: -15px;
}

.t4-img-mid {
    position: absolute;
    left: 3%;
    bottom: -2px;
    width: 50%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    z-index: 2;
    margin-bottom: -20px;
}

.t4-img-front {
    position: absolute;
    right: 4%;
    bottom: -2px;
    width: 70%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    z-index: 3;
    margin-bottom: -15px;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .t4-content-row {
        flex-direction: column;
    }

    .t4-red-card {
        min-height: 450px;
    }

    .t4-img-back {
        width: 80%;
        right: 10%;
    }

    .t4-img-mid {
        width: 50%;
        left: 0%;
    }

    .t4-img-front {
        width: 70%;
        right: 0%;
    }
}

@media (max-width: 600px) {
    .t4-white-card {
        padding: 20px 25px;
    }

    .t4-red-card {
        min-height: 380px;
    }

    .t4-img-back {
        width: 85%;
        right: 0;
        top: 3%;
    }

    .t4-img-mid {
        width: 50%;
        left: -2%;
    }

    .t4-img-front {
        width: 80%;
        right: -2%;
    }
}

/* ----------------------------------
   EXPENSE MANAGEMENT TAB (Tab 5)
   ---------------------------------- */
.t5-card {
    border-radius: 12px;
    position: relative;
}

.t5-red-card {
    background-color: var(--room-primary);
    color: white;
    overflow: hidden;
    display: flex;
}

.t5-red-card h3 {
    font-family: "Rethink Sans";
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.t5-red-card p {
    font-family: "DM Sans";
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

.t5-white-card {
    background-color: #ffffff;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.t5-white-card h4 {
    font-family: "Rethink Sans";
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin: 0 0 10px 0;
}

.t5-white-card p {
    font-family: "DM Sans";
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.t5-wide-banner {
    flex-direction: row;
    align-items: stretch;
    min-height: 260px;
    margin-bottom: 24px;
}

.t5-wide-banner .text-content {
    flex: 0 0 40%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.t5-voucher-wrapper {
    flex: 1;
    position: relative;
    min-height: 260px;
}

.t5-voucher-img {
    position: absolute;
    border-radius: 8px;
    height: auto;
}

.t5-voucher-left {
    width: 40%;
    bottom: -10%;
    left: 2%;
    z-index: 1;
}

.t5-voucher-center {
    width: 45%;
    bottom: -5%;
    left: 20%;
    z-index: 3;
    margin-bottom: -15px;
}

.t5-voucher-right {
    width: 55%;
    top: 2%;
    right: 1%;
    z-index: 2;
}

.t5-bottom-grid {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.t5-mobile-card {
    flex: 1;
    flex-direction: column;
}

.t5-mobile-card .text-content {
    padding: 40px 40px 0 40px;
}

.t5-phone-wrapper {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-top: 30px;
}

.t5-phone-wrapper img {
    width: 55%;
    height: auto;
    display: block;
    margin-bottom: -5px;
}

.t5-right-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.t5-right-stack .t5-white-card {
    flex: 1;
    min-height: 130px;
    border-radius: 12px;
}

@media (max-width: 900px) {
    .t5-wide-banner {
        flex-direction: column;
    }

    .t5-wide-banner .text-content {
        flex: none;
        width: 100%;
        padding-bottom: 20px;
    }

    .t5-voucher-wrapper {
        min-height: 280px;
    }

    .t5-bottom-grid {
        flex-direction: column;
    }

    .t5-right-stack .t5-white-card {
        min-height: auto;
    }
}

@media (max-width: 600px) {

    .t5-wide-banner .text-content,
    .t5-mobile-card .text-content,
    .t5-white-card {
        padding: 30px 25px;
    }

    .t5-voucher-left {
        width: 50%;
        left: -5%;
    }

    .t5-voucher-center {
        width: 55%;
        left: 20%;
    }

    .t5-voucher-right {
        width: 50%;
        right: -10%;
    }

    .t5-phone-wrapper img {
        width: 70%;
    }
}

/* ----------------------------------
   FEATURES TAB (Tab 6)
   ---------------------------------- */
.t6-top-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    align-items: stretch;
}

.t6-bottom-row {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

/* Right Stack in Top Row */
.t6-right-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.t6-white-card {
    background-color: #ffffff;
    padding: 30px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Match global shadow */
    border-radius: 12px;
    flex: 1;
}

.t6-white-card h4 {
    font-family: "Rethink Sans";
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
    line-height: 24px;
}

.t6-white-card p {
    font-family: "DM Sans";
    font-size: 15px;
    color: #6b7280;
    line-height: 24px;
    margin: 0;
}

.t6-red-card {
    background-color: var(--room-primary);
    flex: 2;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

/* Images inside the Red Card */
.t6-img-back {
    position: absolute;
    left: 6%;
    bottom: -2px;
    width: 58%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    z-index: 1;
    margin-bottom: -15px;
}

.t6-img-front {
    position: absolute;
    right: 6%;
    bottom: -2px;
    width: 50%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    z-index: 2;
    margin-bottom: -15px;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .t6-top-row {
        flex-direction: column;
    }

    .t6-bottom-row {
        flex-direction: column;
    }

    .t6-red-card {
        min-height: 450px;
    }

    .t6-img-back {
        width: 65%;
        left: 5%;
    }

    .t6-img-front {
        width: 55%;
        right: 5%;
    }
}

@media (max-width: 600px) {
    .t6-white-card {
        padding: 25px 30px;
    }

    .t6-red-card {
        min-height: 380px;
    }

    .t6-img-back {
        width: 75%;
        left: 0%;
        border-radius: 0;
    }

    .t6-img-front {
        width: 65%;
        right: -2%;
    }
}

/* ----------------------------------
   INTEGRATIONS TAB (Tab 7)
   ---------------------------------- */
.t7-integrations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.t7-integrations-split-card {
    background-color: var(--room-primary);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    padding: 40px 40px 0 40px;
}

.t7-integrations-split-card .text-content {
    flex: 1;
    margin-bottom: 40px;
}

.t7-integrations-split-card h2 {
    font-family: "Rethink Sans";
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: white;
}

.t7-integrations-split-card p {
    font-family: "DM Sans";
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: white;
    opacity: 0.95;
}

.t7-integrations-split-card .image-content {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.t7-integrations-split-card .image-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 0;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.t7-integrations-full-card {
    background-color: #ffffff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.t7-integrations-full-card h2 {
    font-family: "Rethink Sans";
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111;
}

.t7-integrations-full-card p {
    font-family: "DM Sans";
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

@media (max-width: 900px) {
    .t7-integrations-grid {
        grid-template-columns: 1fr;
    }

    .t7-integrations-split-card {
        padding: 32px 32px 0 32px;
        text-align: center;
    }

    .t7-integrations-split-card .text-content {
        margin-bottom: 32px;
    }

    .t7-integrations-full-card {
        padding: 32px;
        text-align: center;
    }
}

/* ========================================
   ACCOUNTING & EXPENSES SECTION (ROOM PAGE)
   ======================================== */
.r-accounting-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.r-accounting-header {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 60px;
}

.r-accounting-header h2 {
    font-family: "Rethink Sans";
    font-size: 48px;
    font-weight: 800;
    color: black;
    margin-bottom: 20px;
    line-height: 100%;
}

.r-accounting-header p {
    font-family: "DM Sans";
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 26px;
}

.r-accounting-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.r-accounting-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 16px;
    overflow: hidden;
    position: sticky;
    top: 120px;
    z-index: 10;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05), 0 10px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

/* Base Content Styles */
.r-acc-content {
    flex: 1;
    padding: 60px;
}

.r-acc-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.r-acc-image-wrapper img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.r-acc-content h3 {
    font-family: "Rethink Sans";
    font-size: 31.5px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 40px;
}

.r-acc-content p {
    font-family: "DM Sans";
    font-size: 15.6px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 26px;
}

.r-acc-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.r-acc-feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-family: "DM Sans";
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}

/* Bullet Point Icon Wrap */
.r-acc-icon-wrap {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 8px;
}

.r-acc-icon-wrap img {
    display: block;
    width: 14px;
    height: 14px;
    object-fit: contain;
}

/* Removing old icon pseudo-element styles */

/* -------------------------------------
   Specific Card Themes (Light & Dark)
   ------------------------------------- */

/* Light Cards (Card 1 & 2) */
.r-acc-theme-light .r-acc-content h3 {
    color: #111827;
}

.r-acc-theme-light .r-acc-content p {
    color: #4b5563;
}

.r-acc-theme-light .r-acc-feature-list li {
    color: #374151;
}

/* Light Card Icons (Berry bg, White icon) */
.r-acc-theme-light .r-acc-icon-wrap {
    background: var(--room-primary);
}

.r-acc-theme-light .r-acc-icon-wrap img {
    filter: brightness(0) invert(1); /* Pure white icon on burgundy bg */
}

/* Dark Cards (Card 3 & 4) */
.r-acc-theme-dark .r-acc-content h3,
.r-acc-theme-dark .r-acc-content p,
.r-acc-theme-dark .r-acc-feature-list li {
    color: #ffffff;
}

/* Dark Card Icons (White bg, Berry icon) */
.r-acc-theme-dark .r-acc-icon-wrap {
    background: #ffffff;
}

/* Cleaned up empty ruleset */

/* -------------------------------------
   Responsive Adjustments
   ------------------------------------- */
@media (max-width: 900px) {
    .r-accounting-card {
        flex-direction: column;
        top: 100px;
    }

    .r-acc-content {
        padding: 40px;
    }

    .r-acc-image-wrapper {
        padding: 0 40px 40px;
    }
}

@media (max-width: 600px) {
    .r-accounting-header h2 {
        font-size: 32px;
    }

    .r-acc-content {
        padding: 30px;
    }

    .r-acc-content h3 {
        font-size: 24px;
        line-height: 32px;
    }

    .r-acc-image-wrapper {
        padding: 0 30px 30px;
    }

    .r-acc-feature-list li {
        font-size: 16px;
    }
}

/* --- Guest Confirmation Voucher Section --- */
/* --- Smart Tag Printing Section (Migrated from test.html) --- */
.r-voucher-section {
    background-color: #f8fafc;
    font-family: "Rethink Sans";
    padding: 60px 20px;
    color: #0f172a;
    /* brand-dark */
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
    --voucher-brand: #A0254E;
    --r-voucher-brand-dark: #0f172a;
    --r-voucher-brand-gray: #64748b;
    --r-voucher-bg-light: #f8fafc;
    --r-voucher-dimmed-bg: #00000054;
    --r-voucher-line-color: #94a3b8;
}

/* --- Typography --- */
.r-voucher-section-label {
    color: var(--voucher-brand);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
    text-align: center;
}

.r-voucher-main-header {
    font-family: "Inter";
    font-size: 39.4px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-align: center;
    line-height: 49px;
    letter-spacing: -1.5px;
    vertical-align: middle;
    color: black;
}

.r-voucher-subtitle {
    font-family: "Inter";
    font-weight: 400;
    font-size: 14.6px;
    color: #575757;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 20px auto;
    line-height: 29px;
    letter-spacing: 0%;
    vertical-align: middle;
}

/* --- Top Feature Pills --- */
.r-voucher-features-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 60px;
    max-width: 900px;
}

.r-voucher-feature-pill {
    background: #fdf5e6;
    color: #A0254E;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    font-family: "DM Sans";
    text-align: center;

    border: 1px solid #f2dbb3;
}

/* --- Interactive Section Layout --- */
.r-voucher-diagram-container {
    position: relative;
    max-width: 1350px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 100px;
    padding: 0 20px;
}

/* SVG Overlay for Lines */
.r-voucher-svg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    /* Lines sit behind the buttons */
}

/* Interactive strictly straight lines (Orthogonal) */
.r-voucher-connection-line {
    fill: none;
    stroke: var(--r-voucher-line-color);
    stroke-width: 1.2px;
    stroke-linejoin: miter;
    transition:
        stroke 0.3s ease,
        stroke-width 0.3s ease;
    opacity: 0.5;
}

.r-voucher-connection-line.active {
    stroke: var(--voucher-brand);
    stroke-width: 2.5px;
    opacity: 1;
}

/* The continuous structural semi-circles */
.r-voucher-structural-arc {
    fill: none;
    stroke: var(--voucher-brand);
    stroke-width: 1.5px;
    opacity: 0.6;
}

/* --- Side Buttons (The Arms) --- */
.r-voucher-side-column {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    z-index: 2;
    /* Buttons sit above the SVG lines */
    width: 250px;
    padding: 10px 0;
}

.r-voucher-left-col {
    align-items: flex-end;
}

.r-voucher-right-col {
    align-items: flex-start;
}

/* BASE BUTTON STYLES */
.r-voucher-arm-btn {
    background: white;
    border: 1px solid var(--voucher-brand);
    color: var(--r-voucher-brand-dark);
    padding: 10px 16px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    overflow: visible;
    box-sizing: border-box;
    width: 170px;
    margin: 0;
}

/* STAGGERING: Push the middle buttons further outward */
.r-voucher-left-col .r-voucher-arm-btn:nth-child(2),
.r-voucher-left-col .r-voucher-arm-btn:nth-child(3) {
    margin-right: 60px;
}

.r-voucher-right-col .r-voucher-arm-btn:nth-child(2),
.r-voucher-right-col .r-voucher-arm-btn:nth-child(3) {
    margin-left: 60px;
}

/* Button Ends & Triangles */
.r-voucher-left-col .r-voucher-arm-btn {
    border-radius: 20px 0 0 20px;
    border-right: none;
}

.r-voucher-right-col .r-voucher-arm-btn {
    border-radius: 0 20px 20px 0;
    border-left: none;
}

.r-voucher-arm-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 19px solid transparent;
    border-bottom: 19px solid transparent;
}

.r-voucher-left-col .r-voucher-arm-btn::before {
    right: -18px;
    border-left: 18px solid white;
    filter: drop-shadow(1px 0 0 var(--voucher-brand));
}

.r-voucher-right-col .r-voucher-arm-btn::before {
    left: -18px;
    border-right: 18px solid white;
    filter: drop-shadow(-1px 0 0 var(--voucher-brand));
}

/* Hover & Active States */
.r-voucher-arm-btn:hover,
.r-voucher-arm-btn.active {
    background-color: var(--voucher-brand);
    color: white;
}

.r-voucher-left-col .r-voucher-arm-btn:hover::before,
.r-voucher-left-col .r-voucher-arm-btn.active::before {
    border-left-color: var(--voucher-brand);
}

.r-voucher-right-col .r-voucher-arm-btn:hover::before,
.r-voucher-right-col .r-voucher-arm-btn.active::before {
    border-right-color: var(--voucher-brand);
}

/* --- Center Image Wrapper --- */
.r-voucher-image-wrapper {
    position: relative;
    z-index: 2;
    padding: 0;
    background: white;
    border-radius: 4px;
    border: 2px solid var(--voucher-brand);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    width: 100%;
}

.r-voucher-printing-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

/* --- Highlight Zones --- */
.r-voucher-highlight-zone {
    position: absolute;
    background-color: transparent;
    border: 2px solid var(--voucher-brand);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 4px;
    z-index: 10;
}

.r-voucher-highlight-zone.active {
    opacity: 1;
    box-shadow: 0 0 0 9999vmax var(--r-voucher-dimmed-bg);
}

.r-voucher-highlight-zone.active::after {
    content: "";
    position: absolute;
    top: -4px;
    right: -4px;
    bottom: -4px;
    left: -4px;
    border: 2px solid var(--voucher-brand);
    border-radius: 6px;
    opacity: 0;
    animation: r-voucher-pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes r-voucher-pulse-ring {
    0% {
        transform: scale(0.95);
        opacity: 1;
    }

    100% {
        transform: scale(1.1);
        opacity: 0;
    }
}

/* --- Zone Positioning (Booking Confirmation Voucher Receipt) --- */

/* LEFT side zones */
.r-voucher-zone-prop-details {
    top: 1%;
    left: 3%;
    width: 55%;
    height: 12%;
}

.r-voucher-zone-contact-info {
    top: 30%;
    left: 3%;
    width: 35%;
    height: 12%;
}

.r-voucher-zone-room-charges {
    top: 72%;
    left: 3%;
    width: 94%;
    height: 5%;
}

.r-voucher-zone-amenities {
    top: 54%;
    left: 33%;
    width: 20%;
    height: 11%;
}

.r-voucher-zone-stay-guide {
    top: 81%;
    left: 3%;
    width: 58%;
    height: 8%;
}

/* RIGHT side zones */
.r-voucher-zone-booking-info {
    top: 46%;
    left: 56%;
    width: 38%;
    height: 17%;
}

.r-voucher-zone-guest-info {
    top: 47%;
    left: 3%;
    width: 26%;
    height: 17%;
}

.r-voucher-zone-payment-summary {
    top: 81%;
    left: 65%;
    width: 32%;
    height: 12%;
}

.r-voucher-zone-prop-policies {
    top: 54%;
    left: 33%;
    width: 20%;
    height: 11%;
}

.r-voucher-zone-nearby-attractions {
    top: 6%;
    left: 69%;
    width: 30%;
    height: 20%;
}

/* Responsive */
@media (max-width: 1024px) {
    .r-voucher-diagram-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .r-voucher-side-column {
        height: auto;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        width: 100%;
        max-width: 600px;
    }

    .r-voucher-image-wrapper {
        order: -1;
        max-width: 400px;
        margin-bottom: 20px;
    }

    .r-voucher-svg-overlay {
        display: none;
    }

    .r-voucher-left-col .r-voucher-arm-btn:nth-child(2),
    .r-voucher-left-col .r-voucher-arm-btn:nth-child(3),
    .r-voucher-right-col .r-voucher-arm-btn:nth-child(2),
    .r-voucher-right-col .r-voucher-arm-btn:nth-child(3) {
        margin: 0;
    }

    .r-voucher-arm-btn {
        width: 180px;
        border-radius: 8px !important;
    }

    .r-voucher-arm-btn::before {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .r-voucher-section {
        padding: 30px 15px;
    }

    .r-voucher-main-header {
        font-size: 32px;
    }

    .r-voucher-side-column {
        flex-direction: column;
        align-items: stretch;
    }

    .r-voucher-arm-btn {
        width: 100%;
        padding: 14px 16px;
        font-size: 15px;
    }
}

/* ========================================
   ROOM DASHBOARD SECTION
   ======================================== */
.r-dashboard-section {
    background: var(--room-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-top: 80px;
    padding-bottom: 0;
    overflow: hidden;
    position: relative;
}

.r-dashboard-wrapper {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    padding: 0 20px;
}

.r-dashboard-title {
    font-family: "Rethink Sans";
    font-weight: 700;
    font-size: 48px;
    line-height: 1.1;
    color: #f9f9f9;
    margin-bottom: 24px;
}

.r-dashboard-description {
    font-family: "DM Sans";
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
}

.r-dashboard-image-container {
    width: 100%;
    max-width: 900px;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.r-dashboard-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .r-dashboard-title {
        font-size: 32px;
    }

    .r-dashboard-section {
        padding-top: 60px;
    }
}

/* ========================================
   AUTO-SCROLLING FEATURE CARDS SECTION
   ======================================== */
.r-dash-scroll-section {
    background: #FFF1D2;
    padding: 40px 0 50px 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.r-dash-scroll-track {
    display: flex;
    gap: 24px;
    animation: r-dash-scroll 40s linear infinite;
    width: max-content;
    padding-left: 24px;
}

.r-dash-scroll-track:hover {
    animation-play-state: paused;
}

.r-dash-scroll-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    width: 300px;
    flex-shrink: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    white-space: normal;
    transition: transform 0.3s ease;
}

.r-dash-scroll-card:hover {
    transform: translateY(-5px);
}

.r-dash-card-icon {
    background: var(--room-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}

.r-dash-card-icon img {
    width: 18px;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.r-dash-card-title {
    font-family: "Rethink Sans";
    font-weight: 700;
    font-size: 18px;
    color: #0f172a;
    margin: 0 0 10px 0;
}

.r-dash-card-desc {
    font-family: "DM Sans";
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

@keyframes r-dash-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   GST FILING & COMPLIANCE SECTION
   ======================================== */
.r-gst-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    background-color: #ffffff;
}

.r-gst-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    gap: 5%;
    align-items: stretch;
}

.r-gst-content-left {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

.r-gst-subtitle {
    color: var(--room-primary);
    font-weight: 600;
    font-size: 15px;
    margin: 0 0 10px 0;
    font-family: "Inter";
}

.r-gst-title {
    font-size: 42px;
    color: #2d333a;
    margin: 0 0 20px 0;
    font-weight: 700;
    line-height: 1.2;
    font-family: "Inter";
}

.r-gst-highlight-wrapper {
    position: relative;
    display: inline-block;
}

.r-gst-description {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 45px;
    max-width: 95%;
    font-family: "Inter";
}

.r-gst-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
    row-gap: 40px;
}

.r-gst-feature-item {
    display: flex;
    flex-direction: column;
}

.r-gst-icon-circle {
    width: 42px;
    height: 42px;
    background: var(--room-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(160, 37, 78, 0.2);
}

.r-gst-icon-circle img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.r-gst-feature-item h3 {
    font-size: 17px;
    color: #111827;
    margin: 0 0 12px 0;
    font-weight: 600;
    line-height: 1.3;
    font-family: "Inter";
}

.r-gst-feature-item p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    font-family: "Inter";
}

.r-gst-content-right {
    flex: 0 0 45%;
    position: relative;
}

.r-gst-bg {
    background: var(--room-primary);
    border-radius: 20px;
    width: 100%;
    height: 100%;
    position: relative;
    min-height: 420px;
}

.r-img-gst-1 {
    position: absolute;
    top: 10%;
    left: 0px;
    width: 420px;
    border-radius: 8px;
    z-index: 1;
}

.r-img-gst-2 {
    position: absolute;
    top: 47%;
    right: 0;
    width: 420px;
    border-radius: 8px;
    z-index: 2;
}

@media (max-width: 1024px) {
    .r-gst-container {
        flex-direction: column;
    }

    .r-gst-content-left {
        flex: 1 1 100%;
    }

    .r-gst-content-right {
        flex: 1 1 100%;
        margin-top: 60px;
    }

    .r-img-gst-1 {
        top: 5%;
        left: 10%;
        width: 45%;
    }

    .r-img-gst-2 {
        top: 40%;
        right: 10%;
        width: 45%;
    }

    .r-gst-bg {
        height: 500px;
    }
}

@media (max-width: 650px) {
    .r-gst-features-grid {
        grid-template-columns: 1fr;
    }

    .r-gst-title {
        font-size: 32px;
    }

    .r-img-gst-1,
    .r-img-gst-2 {
        width: 80%;
    }

    .r-img-gst-1 {
        left: 5%;
        top: 5%;
    }

    .r-img-gst-2 {
        right: 5%;
        bottom: -10%;
    }

    .r-gst-bg {
        height: 400px;
    }
}

/* ========================================
   QUICK ACTION SECTION
   ======================================== */
.r-qa-section {
    padding: 80px 40px;
    background: #ffffff;
    max-width: 1300px;
    margin: 0 auto;
}

/* Header */
.r-qa-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px auto;
}

.r-qa-label {
    display: inline-block;
    color: var(--room-primary);
    font-family: "DM Sans";
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 14px;
}

.r-qa-title {
    font-family: "Rethink Sans";
    font-size: 42px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.r-qa-title-highlight {
    color: var(--room-primary);
}

.r-qa-desc {
    font-family: "DM Sans";
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto;
}

/* Main 3-column grid */
.r-qa-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr 1fr;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 24px;
}

/* Feature columns */
.r-qa-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

/* Individual feature box — top 4 cards (icon top-left, text below) */
.r-qa-feat-box {
    background: #FFF1D2;
    border-radius: 12px;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
}

/* Bottom 2 cards — icon left, text right */
.r-qa-bottom-row .r-qa-feat-box {
    flex-direction: row;
    align-items: center;
}

.r-qa-feat-box p {
    font-family: "DM Sans";
    font-size: 14.5px;
    color: #1f2937;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.r-qa-feat-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    background: var(--room-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.r-qa-feat-icon img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

/* Center image card */
.r-qa-center-img-wrap {
    border: 2.5px solid var(--room-primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(160, 37, 78, 0.15);
}

.r-qa-center-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Bottom row — 2 wide feature boxes each taking half the total width */
.r-qa-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.r-qa-feat-box-wide {
    display: flex;
}

/* Responsive */
@media (max-width: 900px) {
    .r-qa-main-grid {
        grid-template-columns: 1fr;
    }

    .r-qa-bottom-row {
        padding: 0;
        grid-template-columns: 1fr;
    }

    .r-qa-title {
        font-size: 30px;
    }
}

/* ========================================
   WHATSAPP AUTOMATION & GUEST COMMUNICATION
   ======================================== */
.r-wa-section {
    padding: 80px 40px;
    background: #ffffff;
}

.r-wa-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: stretch;
}

/* Left — Phone demo card */
.r-wa-left {
    flex: 0 0 35%;
    max-width: 35%;
    display: flex;
    flex-direction: column;
}

.r-wa-phone-bg {
    background: var(--room-primary);
    border-radius: 24px;
    padding: 40px 30px 0 30px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-width: 300px;
    max-width: 340px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(160, 37, 78, 0.25);
}

.r-wa-phone-img {
    width: 100%;
    max-width: 280px;
    height: auto;
    display: block;
    border-radius: 12px 12px 0 0;
}

/* Right — Features */
.r-wa-right {
    flex: 0 0 calc(65% - 40px);
    max-width: calc(65% - 40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.r-wa-label {
    color: var(--room-primary);
    font-family: "DM Sans";
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.r-wa-title {
    font-family: "Rethink Sans";
    font-size: 42px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin: 0 0 20px 0;
    white-space: nowrap;
}

.r-wa-subtitle {
    font-family: "DM Sans";
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 48px 0;
    max-width: 700px;
}

.r-wa-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.r-wa-feat-item {
    background: #FFF1D2;
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.r-wa-feat-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--room-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.r-wa-feat-icon img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.r-wa-feat-item p {
    font-family: "DM Sans";
    font-size: 14.5px;
    color: #1f2937;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 900px) {
    .r-wa-container {
        flex-direction: column;
        gap: 40px;
    }

    .r-wa-phone-bg {
        max-width: 100%;
        min-width: unset;
        width: 100%;
        padding: 30px 20px 0;
    }

    .r-wa-title {
        font-size: 28px;
    }
}

/* ========================================
   WHATSAPP SECTION — COMMON HEADER & DEMO CARD
   ======================================== */
.r-wa-section {
    padding: 80px 40px;
    background: #ffffff;
}

.r-wa-common-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 48px auto;
}

.r-wa-demo-card {
    background: #A0254E;
    border-radius: 20px;
    padding: 32px 24px 0 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(160, 37, 78, 0.25);
}

/* ========================================
   MOBILE APPS SECTION — ROOM THEME
   ======================================== */
.r-mobile-app-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.r-mobile-app-subtitle {
    color: var(--room-primary);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
    font-family: "DM Sans";
}

.r-mobile-app-title {
    font-family: "Rethink Sans";
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 20px;
}

.r-mobile-app-description {
    text-align: center;
    color: #666666;
    font-size: 16px;
    margin-bottom: 50px;
    font-family: "DM Sans";
}

.r-ex-app-card {
    background-color: var(--room-primary);
    border-radius: 24px;
    padding: 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.r-ex-center-header {
    text-align: center;
    margin-bottom: 40px;
}

.r-ex-app-label {
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    font-family: "Rethink Sans";
}

.r-ex-app-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 24px;
    font-family: "DM Sans";
}

.r-ex-arrow-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin: 0 auto;
}

.r-ex-content-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    width: 100%;
    align-items: stretch;
}

.r-ex-features-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.r-ex-center-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.r-left-features .r-ex-feature-box,
.r-right-features .r-ex-feature-box {
    background: #761737;
    border-radius: 12px;
    padding: 24px;
}

.r-ex-icon-circle {
    width: 32px;
    height: 32px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.r-ex-icon-circle img {
    width: 14px;
    height: 14px;
    filter: brightness(0) saturate(100%) invert(18%) sepia(73%) saturate(1012%) hue-rotate(308deg) brightness(90%) contrast(95%);
}

.r-ex-feature-box h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: "Rethink Sans";
}

.r-ex-feature-box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    font-family: "DM Sans";
}

.r-ex-phone-col {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.r-ex-phone-img {
    max-width: 300px;
    display: block;
    margin-top: auto;
}

.r-ex-play-store {
    margin-top: 40px;
    text-align: center;
}

.r-ex-play-store img {
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .r-ex-content-grid {
        grid-template-columns: 1fr;
    }

    .r-ex-phone-col {
        order: 1;
        margin-bottom: 40px;
    }

    .r-left-features {
        order: 2;
    }

    .r-right-features {
        order: 3;
    }

    .r-ex-app-card {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .r-mobile-app-title {
        font-size: 32px;
    }
}

/* ========================================
   MULTIPLE INVOICE FORMATS SECTION
   ======================================== */
.r-inv-section {
    padding: 80px 20px;
    background: #ffffff;
    /* matching flow */
}

.r-inv-container {
    max-width: 1250px;
    margin: 0 auto;
}

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

.r-inv-badge {
    display: block;
    color: var(--room-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.r-inv-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px 0;
    line-height: 1.2;
    font-family: "Rethink Sans";
}

.r-inv-header p {
    font-size: 17px;
    color: #6b7280;
    margin: 0 auto;
    max-width: 800px;
    line-height: 1.5;
    font-family: "DM Sans";
}

.r-inv-grid {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.r-inv-side-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.r-inv-feature-card {
    background-color: #FFF1D2;
    /* Match theme background */
    padding: 20px 28px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.r-inv-icon-circle {
    width: 40px;
    height: 40px;
    background-color: var(--room-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.r-inv-icon-circle img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.r-inv-feature-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin: 0 0 12px 0;
    line-height: 1.4;
    font-family: "Rethink Sans";
}

.r-inv-feature-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-family: "DM Sans";
}

.r-inv-center-col {
    background-color: var(--room-primary);
    flex: 1.4;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    min-height: 550px;
}

.r-inv-center-col img {
    position: absolute;
    border-radius: 8px;
}

.r-img-inv-1 {
    top: 2%;
    left: 40%;
    transform: translateX(-50%);
    width: 68%;
    z-index: 1;
}

.r-img-inv-3 {
    bottom: 1px;
    left: -2%;
    width: 75%;
    z-index: 2;
    margin-bottom: -25px;
}

.r-img-inv-4 {
    bottom: -2px;
    right: 1%;
    width: 61%;
    z-index: 3;
    margin-bottom: -25px;
}

.r-img-inv-2 {
    top: 17%;
    right: 10%;
    width: 40%;
    z-index: 2;
}

@media (max-width: 1100px) {
    .r-inv-grid {
        flex-direction: column;
    }

    .r-inv-center-col {
        order: -1;
        min-height: 500px;
        width: 100%;
        margin-bottom: 24px;
    }

    .r-inv-side-col {
        flex-direction: row;
        width: 100%;
        flex-wrap: wrap;
    }

    .r-inv-feature-card {
        flex: 1 1 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .r-inv-header h2 {
        font-size: 32px;
    }

    .r-inv-side-col {
        flex-direction: column;
    }

    .r-inv-feature-card {
        flex: 1 1 100%;
    }

    .r-inv-center-col {
        min-height: 450px;
    }

    .r-img-inv-1 {
        width: 90%;
        top: 4%;
    }

    .r-img-inv-3 {
        width: 60%;
        left: -5%;
    }

    .r-img-inv-4 {
        width: 60%;
        right: -5%;
    }

    .r-img-inv-2 {
        width: 35%;
        right: 5%;
        top: 30%;
    }
}

@media (max-width: 480px) {
    .r-inv-center-col {
        min-height: 380px;
    }

    .r-img-inv-1 {
        width: 95%;
    }

    .r-img-inv-3 {
        width: 65%;
        left: -8%;
    }

    .r-img-inv-4 {
        width: 65%;
        right: -8%;
    }

    .r-img-inv-2 {
        width: 40%;
        right: 2%;
    }

    .r-inv-feature-card {
        padding: 24px 20px;
    }
}

/* ========================================
   ONBOARDING SECTION
   ======================================== */
.r-ob-section {
    padding: 100px 20px;
    background: var(--room-primary);
    color: white;
}

.r-ob-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.r-ob-left {
    flex: 0 0 45%;
    position: sticky;
    top: 120px;
    /* offset from navbar */
    padding-bottom: 40px;
}

.r-ob-subtitle {
    font-family: "DM Sans";
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 16px 0;
}

.r-ob-title {
    font-family: "Rethink Sans";
    font-size: 46px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 24px 0;
}

.r-ob-desc {
    font-family: "DM Sans";
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
}

.r-ob-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.r-ob-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    color: #111827;
}

.r-ob-card h3 {
    font-family: "Rethink Sans";
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 16px 0;
}

.r-ob-card p {
    font-family: "DM Sans";
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.r-ob-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.r-ob-list li {
    font-family: "DM Sans";
    font-size: 14.5px;
    font-weight: 600;
    color: #374151;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.r-ob-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: var(--room-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.r-ob-icon img {
    width: 12px;
    height: 12px;
    filter: brightness(0) invert(1);
}

@media (max-width: 900px) {
    .r-ob-container {
        flex-direction: column;
        gap: 40px;
    }

    .r-ob-left {
        position: static;
        flex: none;
        width: 100%;
    }
}

/* ========================================
   MULTI-USER ACCESS SECTION
   ======================================== */
.r-mu-section {
    padding: 80px 20px;
    background: #ffffff;
}

.r-mu-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
    align-items: start;
}

.r-mu-text-block {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
}

.r-mu-image-block {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.r-mu-subtitle {
    color: var(--room-primary);
    font-family: "DM Sans";
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.r-mu-title {
    font-family: "Rethink Sans";
    font-size: 42px;
    font-weight: 700;
    color: #333333;
    line-height: 1.25;
    margin: 0 0 20px 0;
}

.r-mu-desc {
    font-family: "DM Sans";
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 40px 0;
    max-width: 95%;
}

.r-mu-main-img {
    width: 80%;
    max-width: 550px;
    height: auto;
    display: block;
    padding-top: 50px;
}

.r-mu-feat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.r-mu-icon {
    width: 42px;
    height: 42px;
    background: var(--room-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.r-mu-icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.r-mu-feat-item h3 {
    font-family: "Rethink Sans";
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.r-mu-feat-item p {
    font-family: "DM Sans";
    font-size: 14.5px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .r-mu-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .r-mu-text-block {
        grid-column: span 2;
    }

    .r-mu-image-block {
        grid-column: span 2;
        grid-row: auto;
        justify-content: center;
        margin-top: 40px;
    }
}

@media (max-width: 600px) {
    .r-mu-container {
        grid-template-columns: 1fr;
    }

    .r-mu-text-block,
    .r-mu-image-block {
        grid-column: 1;
    }
}

/* ========================================
   INTEGRATIONS SECTION
   ======================================== */
.r-integrations-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.r-int-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.r-int-header h2 {
    font-family: "Rethink Sans";
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    color: #111;
}

@media (max-width: 768px) {
    .r-int-header h2 {
        font-size: 28px;
    }
}


/* ========================================
   PRICING SECTION
   ======================================== */
.r-pricing-section {
    padding: 80px 20px;
    background: #f7f8fa;
}

.r-pricing-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.r-pricing-title {
    font-family: "Rethink Sans";
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.25;
}

/* Custom underline for "Pricing Plans" */
.r-pricing-highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.r-pricing-highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 8px;
    background-color: linear-gradient(90deg, #0B5546 0%, #0F9A7D 100%) !important;

    /* Light version of var(--room-primary) */
    z-index: -1;
    border-radius: 4px;
    transform: rotate(-1deg);
}

/* Two-column grid for cards */
.r-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Each card is split left (plan info) + right (features) */
.r-pricing-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1.5px solid #e8e8e8;
    display: flex;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.r-pricing-card:hover {
    box-shadow: 0 8px 30px rgba(160, 37, 78, 0.12);
    border-color: var(--room-primary);
}

/* Left side — plan name, period, price, button */
.r-plan-left {
    background: #FFF1D2;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 160px;
    border-right: 1.5px solid #e8e8e8;
}

.r-plan-name {
    font-family: "Rethink Sans";
    font-size: 20px;
    font-weight: 700;
    color: var(--room-primary);
}

.r-plan-period {
    font-family: "DM Sans";
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

.r-plan-price {
    font-family: "Rethink Sans";
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: auto;
    padding-top: 16px;
}

.r-pricing-btn {
    background: var(--room-primary);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-family: "DM Sans";
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.r-pricing-btn:hover {
    background: #7d1c3d;
    transform: translateY(-1px);
}

/* Right side — features list */
.r-plan-right {
    padding: 28px 24px;
    flex: 1;
}

.r-features-header {
    font-family: "DM Sans";
    font-size: 14px;
    font-weight: 600;
    color: var(--room-primary);
    margin-bottom: 16px;
}

.r-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.r-pricing-features li {
    font-family: "DM Sans";
    font-size: 13.5px;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.r-pricing-features li::before {
    content: "✓";
    color: var(--room-primary);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

/* Disclaimer */
.r-pricing-disclaimer {
    text-align: center;
    font-family: "DM Sans";
    font-size: 13px;
    color: #333333;
    margin: 28px auto 0 auto;
    max-width: 1100px;
}

/* Add-on Banner */
.r-addon-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFF1D2;
    border-radius: 14px;
    padding: 28px 36px;
    max-width: 1100px;
    margin: 28px auto 0 auto;
    gap: 24px;
    border: 1px solid #ffe4cd;
}

.r-addon-text h3 {
    font-family: "Rethink Sans";
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px 0;
}

.r-addon-text p {
    font-family: "DM Sans";
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.r-addon-btn {
    background: var(--room-primary);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-family: "DM Sans";
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.r-addon-btn:hover {
    background: #7d1c3d;
}

.r-plan-left--plain {
    background: #ffffff;
    border-right-color: #e8e8e8;
}

/* Responsive */
@media (max-width: 900px) {
    .r-pricing-grid {
        grid-template-columns: 1fr;
    }

    .r-pricing-title {
        font-size: 30px;
    }
}

@media (max-width: 600px) {
    .r-pricing-card {
        flex-direction: column;
    }

    .r-plan-left {
        border-right: none;
        border-bottom: 1.5px solid #e8e8e8;
        min-width: unset;
    }

    .r-addon-section {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }
}

/* ========================================
   CUSTOM SOLUTION CTA SECTION
   ======================================== */
.r-cta-section {
    padding: 60px 20px;
    background: #ffffff;
}

.r-cta-card {
    background: linear-gradient(135deg, var(--room-primary) 0%, #67122F 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 12px 40px rgba(160, 37, 78, 0.25);
}

.r-cta-card h2 {
    font-family: "Rethink Sans";
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.cta-card p {
    max-width: 750px;
}

.r-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.r-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: "DM Sans";
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.r-btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.r-btn-phone {
    background: #ffffff;
    color: var(--room-primary);
}

.r-btn-email {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.r-faq-section {
    background: var(--room-primary);
    padding: 80px 20px;
}

.r-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.r-faq-left {
    width: 100%;
}

.r-faq-sub {
    font-family: "DM Sans";
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 12px 0;
}

.r-faq-heading {
    font-family: "Rethink Sans";
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 48px 0;
}

.r-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.r-faq-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 20px 24px;
    transition: background 0.2s ease;
}

.r-faq-item.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.r-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
}

.r-faq-question h3 {
    font-family: "DM Sans";
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
}

.r-toggle-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 12px;
    flex-shrink: 0;
}

.r-faq-item.active .r-toggle-icon {
    background: #ffffff;
    color: var(--room-primary);
}

.r-faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.r-faq-item.active .r-faq-answer {
    max-height: 200px;
    opacity: 1;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.r-faq-answer p {
    font-family: "DM Sans";
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .r-faq-heading {
        font-size: 30px;
    }

    .r-cta-card {
        padding: 40px 24px;
    }

    .r-cta-card h2 {
        font-size: 28px;
    }
}

/* ========================================
   ROOM PAGE — CTA & FAQ COLOR OVERRIDES
   (scoped to .room-page body class)
   ======================================== */

/* CTA Card — replace dark teal with room berry */
.room-page .cta-card {
    background-image: url('../images/ctashape.png');
}

.room-page .btn-phone {
    background: var(--room-primary);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.room-page .btn-email {
    background-color: #ffffff;
}

.room-page .btn-email i {
    color: var(--room-primary);
}

/* FAQ Section — exact billing layout with room colors */
.room-page .faq-section {
    background: #fff;
    background-image: none;
    padding: 80px 0;
}

.room-page .faq-container {
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.room-page .faq-left {
    background: transparent;
    padding: 0;
    width: 100%;
}

.room-page .faq-right {
    display: none;
}

.room-page .faq-section .section-sub-heading {
    color: var(--room-primary);
    text-align: center;
    margin-bottom: 10px;
    font-weight: 600;
    opacity: 1;
}

.room-page .faq-section .section-heading {
    font-family: "Rethink Sans";
    font-weight: 600;
    font-size: 40px;
    line-height: 52px;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, var(--room-primary) 0%, #7d1c3d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.room-page .faq-item {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.room-page .faq-item.active {
    background: #fff;
    border-color: var(--room-primary);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(160, 37, 78, 0.1);
}

.room-page .faq-question h3 {
    font-family: "Rethink Sans";
    font-weight: 600;
    font-size: 22px;
    line-height: 135%;
    color: #170f49;
    margin: 0;
    padding-right: 20px;
}

.room-page .toggle-icon {
    background: var(--room-primary);
    color: #fff;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.room-page .faq-answer {
    margin-top: 0;
    padding-top: 0;
    color: #6f6c8f;
    font-family: "DM Sans";
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.room-page .faq-item.active .faq-answer {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
    max-height: 200px;
    opacity: 1;
}

.room-page .faq-answer p {
    margin: 0;
    line-height: 1.6;
}

/* ========================================
   TRUSTED LOGOS BANNER
   ======================================== */
.r-trusted-banner {
    background: var(--room-primary);
    padding: 24px 0;
    overflow: hidden;
}

.r-trusted-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.r-marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 60px;
    animation: r-scroll 30s linear infinite;
    padding: 0 30px;
}

.r-marquee-track img {
    height: 48px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 0.9;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s;
}

.r-marquee-track img:hover {
    opacity: 1;
}

@keyframes r-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Rooms specific FAQ styling */
.r-faq-section {
    display: flex;
    background-color: #ffffff;
    padding: 60px 20px;
    justify-content: center;
}

.r-faq-container {
    width: 100%;
    max-width: 900px;
}

.r-faq-left {
    width: 100%;
}

.r-faq-sub-heading {
    text-align: center;
    color: #983434;
    font-family: 'DM Sans';
    font-weight: 400;
    font-size: 18px;
    line-height: 21.6px;
    vertical-align: middle;
    margin-bottom: 15px;
    /* Adjust spacing with header below */
}

.r-faq-heading {
    font-family: 'Rethink Sans';
    font-weight: 600;
    font-size: 40px;
    line-height: 52px;
    text-align: center;
    vertical-align: middle;
    color: #983434;
    margin-bottom: 40px;
}

.r-faq-section .faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.r-faq-section .faq-item {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px 25px;
    transition: all 0.3s;
    cursor: pointer;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.r-faq-section .faq-item.active {
    border: 1px solid #e5e5e5;
    background-color: #ffffff;
    border-radius: 8px;
}

.r-faq-section .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.r-faq-section .faq-question h3 {
    font-family: 'DM Sans';
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin: 0;
    color: #1f1e1f;
    padding-right: 20px;
}

.r-faq-section .toggle-icon {
    width: 28px;
    height: 28px;
    background: #983434;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    flex-shrink: 0;
}

.r-faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    opacity: 0;
}

.r-faq-section .faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 15px;
    opacity: 1;
}

.r-faq-section .faq-answer p {
    font-family: 'DM Sans';
    font-size: 14px;
    line-height: 1.6;
    color: #888;
    margin: 0;
}