/* --- MEETING ROOM STYLES --- */
:root {
    --primary-red: #d12c2c;
    --text-dark: #333;
}

/* BASE RESET */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* CONTAINER */
.meeting-room-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* SECTION */
.meeting-room-section {
    padding: 80px 0;
    background: #f8fdfe;
}

/* GRID */
.meeting-room-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

/* TRUST BADGE */
.meeting-room-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

.meeting-room-trust-badge img {
    width: 18px;
    height: 18px;
}

.meeting-room-trust-badge span {
    font-size: 13px;
    font-weight: 700;
    color: #555;
}

/* TEXT */
.meeting-room-title {
    font-size: 49px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    color: #000;
}

.meeting-room-text-gradient {
    background: linear-gradient(45deg, var(--primary-red), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.meeting-room-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.6;
}

/* AMENITIES */
/* AMENITIES CONTAINER */
.meeting-room-amenities {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    perspective: 1000px; /* Adds depth for hover effects */
}

/* THE CARD */
.meeting-room-amenity-card {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    cursor: default;
}

/* HIDDEN GLASS LAYER FOR HOVER */
.amenity-glass-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(209, 44, 44, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

/* ICON STYLING */
.meeting-room-amenity-icon {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 48px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.4s ease;
}

.meeting-room-amenity-icon span {
    font-size: 24px;
    color: var(--primary-red);
    transition: all 0.4s ease;
}

/* TEXT STYLING */
.amenity-info {
    position: relative;
    z-index: 2;
}

.amenity-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px !important;
}

.amenity-tagline {
    font-size: 12px;
    color: #888;
    margin: 0;
    font-weight: 500;
}

/* --- HOVER STATES --- */
.meeting-room-amenity-card:hover {
    transform: translateY(-8px);
    border-color: rgba(209, 44, 44, 0.2);
    box-shadow: 0 20px 40px rgba(209, 44, 44, 0.08);
}

.meeting-room-amenity-card:hover .amenity-glass-bg {
    opacity: 1;
}

.meeting-room-amenity-card:hover .meeting-room-amenity-icon {
    background: var(--primary-red);
    transform: rotateY(10deg);
}

.meeting-room-amenity-card:hover .meeting-room-amenity-icon span {
    color: #ffffff;
}

/* --- RESPONSIVE MOBILE FIX --- */

/* BUTTONS */
.meeting-room-button-group {
    display: flex;
    align-items: center;
}

.meeting-room-btn-primary {
    background: #000;
    color: #fff;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
}

.meeting-room-btn-primary:hover {
    background: var(--primary-red);
    box-shadow: 0 10px 20px rgba(209, 44, 44, 0.3);
    transform: translateY(-3px);
}

.meeting-room-btn-outline {
    border: 2px solid #ddd;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    color: #000;
    margin-left: 15px;
    transition: 0.3s;
}

.meeting-room-btn-outline:hover {
    border-color: #000;
    background: #f8f9fa;
}

/* IMAGE STACK */
.meeting-room-image-stack {
    position: relative;
}

.meeting-room-main-img-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.meeting-room-overlap-img-wrapper {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 60%;
}

.meeting-room-overlap-img-wrapper img {
    width: 100%;
    border-radius: 16px;
}

.meeting-room-glass-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}

/* FLOATING */
.meeting-room-floating {
    animation: float 6s ease-in-out infinite;
}

.meeting-room-floating-delayed {
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .meeting-room-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .meeting-room-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .meeting-room-amenities {
        flex-wrap: wrap;
        gap: 20px;
    }
    .meeting-room-amenity-card {
        width: 45%;
    }
    .meeting-room-button-group {
        flex-direction: column;
        gap: 15px;
    }
    .meeting-room-btn-primary,
    .meeting-room-btn-outline {
        width: 100%;
        margin: 0;
        text-align: center;
    }
}

/* --- ENHANCED IMAGE COMPOSITION --- */

/* Main Image Wrapper: Adding a subtle inner glow and custom shadow */
.meeting-room-main-img-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    padding: 10px; /* Creates breathing room for the shadow */
}

.meeting-room-main-img-wrapper img {
    width: 100%;
    border-radius: 28px;
    /* Soft multi-layered shadow for a "lifted" look */
    box-shadow: 
        0 10px 20px rgba(0,0,0,0.05),
        0 30px 60px rgba(0,0,0,0.1),
        inset 0 0 0 1px rgba(255,255,255,0.2);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: brightness(0.98) contrast(1.02);
}

/* Secondary Image: The "Magazine" Style */
.meeting-room-overlap-img-wrapper {
    position: absolute;
    bottom: -40px;
    right: -30px;
    width: 58%;
    z-index: 5;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s ease;
}

.meeting-room-overlap-img-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.2);
}

/* --- HOVER EFFECTS (THE "POPS") --- */

.meeting-room-visual:hover .meeting-room-main-img-wrapper img {
    transform: scale(1.02);
    filter: brightness(1.05) contrast(1.05);
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}

.meeting-room-visual:hover .meeting-room-overlap-img-wrapper {
    transform: translate(-10px, -10px) scale(1.05);
}

/* Glass Finish: Adding a "Silk Shine" overlay */
.meeting-room-main-img-wrapper::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 50%);
    border-radius: 28px;
    z-index: 3;
    pointer-events: none;
}

/* Decorative background blob for high-end feel */
.meeting-room-visual::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(209, 44, 44, 0.08) 0%, rgba(248, 253, 254, 0) 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}




/* Image Stack & Animations */
.meeting-gallery { position: relative; }

.image-stack { position: relative; width: 100%; height: 500px; }

.main-img-wrapper {
    width: 90%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}
.main-img { width: 100%; height: 100%; object-fit: cover; }

.overlap-img-wrapper {
    position: absolute;
    bottom: -40px;
    right: -20px;
    width: 240px;
    height: 180px;
    border-radius: 20px;
    overflow: hidden;
    border: 8px solid #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.overlap-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.glass-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    padding: 5px 12px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.floating { animation: float 6s ease-in-out infinite; }
.floating-delayed { animation: float 6s ease-in-out infinite; animation-delay: 2s; }

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .meeting-grid { grid-template-columns: 1fr; text-align: center; }
    .description { margin: 0 auto 40px; }
    .amenities-aesthetic { justify-content: center; }
    .image-stack { height: 400px; margin-top: 50px; }
    .overlap-img-wrapper { width: 180px; height: 140px; right: 0; }
}


/* --- ANY WHERE ANY TIME --- */

.meeting-room-on-demand {
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}

.meeting-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

/* ---------------- CONTENT ---------------- */

.elite-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 38, 38, 0.08);
    color: var(--managed-red);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--managed-dark);
    line-height: 1.1;
    margin-bottom: 25px;
}

.text-accent {
    color: var(--managed-red);
}

.meeting-description {
    font-size: 18px;
    color: var(--managed-gray);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* ---------------- CHECKLIST ---------------- */

.feature-checklist {
    display: grid;
    gap: 25px;
    margin-bottom: 50px;
}

.check-box {
    display: flex;
    gap: 15px;
}

.check-box span {
    color: var(--managed-red);
    font-size: 24px;
}

.check-box strong {
    display: block;
    font-size: 16px;
    color: var(--managed-dark);
}

.check-box p {
    font-size: 14px;
    color: var(--managed-gray);
    margin: 4px 0 0;
}

/* ---------------- CTA ---------------- */

.meeting-cta {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* FIXED: BOOK NOW BUTTON */
.btn-dark {
    background: var(#d12c2c);
    color: #0a0a0a;
    padding: 14px 30px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.btn-dark:hover {
    background: var(--managed-red);
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(220,38,38,0.3);
}

.network-stat {
    border-left: 2px solid #e5e7eb;
    padding-left: 20px;
}

.network-stat strong {
    display: block;
    font-size: 24px;
    color: var(--managed-red);
}

.network-stat span {
    font-size: 13px;
    color: var(--managed-gray);
    font-weight: 600;
}

/* ---------------- VISUAL ---------------- */

.meeting-image-container {
    position: relative;
}

.meeting-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.12);
}

/* FIXED: PRICING VISIBILITY */
.pricing-glass-card {
    position: absolute;
    top: -25px;
    right: -20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(18px);
    padding: 26px 30px;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.06);
    text-align: center;
    z-index: 5;
}

.pricing-glass-card .tag {
    display: inline-block;
    background: var(--managed-red);
    color: rgb(91, 93, 93);
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 8px;
}

.price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin: 10px 0;
    color: var(--managed-dark);
}

.price-row .currency {
    font-size: 18px;
    font-weight: 700;
}

.price-row .amount {
    font-size: 40px;
    font-weight: 900;
}

.price-row .per {
    font-size: 14px;
    color: var(--managed-gray);
}

.pricing-glass-card p {
    font-size: 13px;
    color: var(--managed-gray);
    font-weight: 600;
}

/* TECH TAG */

.tech-tag {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--managed-dark);
    color: white;
    padding: 10px 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 1024px) {
    .meeting-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-checklist {
        justify-content: center;
    }

    .check-box {
        text-align: left;
    }

    .meeting-cta {
        flex-direction: column;
        gap: 20px;
    }

    .network-stat {
        border-left: none;
        border-top: 2px solid #e5e7eb;
        padding-left: 0;
        padding-top: 15px;
    }

    .pricing-glass-card {
        top: auto;
        bottom: -30px;
        right: 50%;
        transform: translateX(50%);
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 34px;
    }

    .meeting-img {
        height: 420px;
    }
}


/*TYPES OF ROOMS SECTION*/

/* --- Room Types Section --- */
.room-types-section {
    padding: 100px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.room-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.room-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.room-icon-box {
    width: 60px;
    height: 60px;
    background: #fdf2f2; /* Very light red */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: 0.3s;
}

.room-icon-box span {
    color: var(--primary-red);
    font-size: 32px;
}

.room-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.capacity-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-red);
    background: rgba(209, 44, 44, 0.1);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.room-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Hover Effect for Icon */
.room-card:hover .room-icon-box {
    background: var(--primary-red);
}
.room-card:hover .room-icon-box span {
    color: #fff;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .rooms-grid {
        grid-template-columns: 1fr;
    }
}

















@media (max-width: 480px) {

    /* Same Row Layout */
    .meeting-room-amenities {
        display: flex;
        justify-content: center;
        gap: 12px;
    }

    /* Compact Icon Cards */
    .meeting-room-amenity-card {
        flex: 1;
        max-width: 90px;
        height: 80px;
        padding: 10px;
        border-radius: 16px;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    /* Center Icon */
    .meeting-room-amenity-icon {
        margin: 0;
        width: 42px;
        height: 42px;
    }

    .meeting-room-amenity-icon span {
        font-size: 20px;
    }

    /* Tooltip Style Info */
    .amenity-info {
        position: absolute;
        bottom: -65px;
        left: 50%;
        transform: translateX(-50%) scale(0.9);
        background: #fff;
        padding: 8px 12px;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        opacity: 0;
        transition: all 0.25s ease;
        width: max-content;
        max-width: 150px;
        text-align: center;
        pointer-events: none;
        z-index: 20;
    }

    /* Show on Hover OR Focus (for mobile tap) */
    .meeting-room-amenity-card:hover .amenity-info,
    .meeting-room-amenity-card:active .amenity-info,
    .meeting-room-amenity-card:focus-within .amenity-info {
        opacity: 1;
        transform: translateX(-50%) scale(1);
        bottom: -75px;
    }

    /* Remove lift animation on small screens */
    .meeting-room-amenity-card:hover {
        transform: none;
    }
}
