/* Extracted from index.php below-the-fold inline <style> blocks (About/Services/Location, Proximity, Booking, Trust badges, Reviews, Trust-proof/Private-rooms) — moved here so head parsing isn't blocked on ~27KB of non-critical CSS. Loaded async via print/onload pattern in index.php. */

        /* About Rangeela Block Styles */
        .about-section {
            padding: 60px 0;
            background-color: #ffffff;
            color: #333333;
        }
        .about-content {
            background: #f9f9f9;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        .about-content h2 {
            font-size: 28px;
            color: #d49a2a;
            margin-bottom: 25px;
            font-weight: 700;
            line-height: 1.3;
        }
        .highlight-text {
            font-size: 18px;
            font-weight: 600;
            color: #222222;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        .about-content p {
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 20px;
            color: #555555;
        }
        .feature-box {
            background: rgba(212, 154, 42, 0.05);
            border-left: 4px solid #d49a2a;
            padding: 20px 25px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .feature-box p {
            margin: 0;
            color: #333333;
            font-style: italic;
        }
        .info-footer {
            margin-top: 30px;
            padding-top: 25px;
            border-top: 1px solid #e0e0e0;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .info-footer p {
            margin: 0;
            font-size: 15px;
        }
        .read-more-btn {
            display: inline-block;
            align-self: flex-start;
            background-color: #d49a2a;
            color: #ffffff;
            padding: 10px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .read-more-btn:hover {
            background-color: #b58220;
            color: #ffffff;
            text-decoration: none;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(212, 154, 42, 0.3);
        }
        @media (max-width: 768px) {
            .about-content {
                padding: 25px;
            }
            .about-content h2 {
                font-size: 24px;
            }
        }

        /* Services Matrix Section */
        .services-matrix-section {
            background-color: #ffffff;
            color: #333333;
            padding: 60px 0;
        }
        .services-matrix-section .section-title {
            font-size: 32px;
            color: #222222;
            font-weight: 700;
            margin-bottom: 15px;
        }
        .services-matrix-section .section-subtitle {
            font-size: 16px;
            color: #555555;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        .pricing-matrix-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        .matrix-card {
            background: #ffffff;
            border: 1px solid #eeeeee;
            border-radius: 10px;
            padding: 20px;
            display: flex;
            align-items: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .matrix-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        }
        .matrix-card .mc-icon {
            font-size: 32px;
            margin-right: 15px;
        }
        .matrix-card .mc-details {
            flex-grow: 1;
        }
        .matrix-card .mc-details h4 {
            margin: 0 0 5px;
            font-size: 18px;
            color: #d49a2a;
            font-weight: 600;
        }
        .matrix-card .mc-details p {
            margin: 0;
            font-size: 14px;
            color: #666666;
            text-align: left;
        }
        .matrix-card .mc-price {
            font-size: 20px;
            font-weight: 700;
            color: #222222;
            text-align: right;
            white-space: nowrap;
        }
        .matrix-card .mc-price span {
            font-size: 13px;
            color: #888888;
            font-weight: 400;
        }
        .specialist-highlight {
            background: #fdfbf5;
            border-left: 4px solid #d49a2a;
            padding: 20px 25px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 10px;
            border-top: 1px solid #eee;
            border-right: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }
        .specialist-highlight i {
            font-size: 24px;
            color: #d49a2a;
        }
        .specialist-highlight p {
            margin: 0;
            font-size: 16px;
            color: #444444;
            line-height: 1.6;
        }
        .therapy-details {
            margin-top: 40px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
        }
        .therapy-item {
            background: #ffffff;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.04);
            border: 1px solid #f0f0f0;
            border-left: 6px solid #d49a2a;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .therapy-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.08);
            border-color: #e5e5e5;
            border-left-color: #d49a2a;
        }
        .therapy-item h3 {
            font-size: 20px;
            color: #222222;
            margin-bottom: 12px;
            font-weight: 700;
        }
        .therapy-item p {
            font-size: 15px;
            color: #555555;
            line-height: 1.7;
            margin: 0;
        }
        .matrix-cta {
            background: #ffffff;
            border: 1px solid #eeeeee;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            margin-top: 20px;
        }
        .matrix-cta h4 {
            font-size: 24px;
            color: #222222;
            margin-bottom: 10px;
        }
        .matrix-cta p {
            font-size: 16px;
            color: #666666;
            margin-bottom: 25px;
        }
        .btn-whatsapp-cta {
            display: inline-block;
            background-color: #25D366;
            color: #ffffff;
            font-size: 18px;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        .btn-whatsapp-cta:hover, .btn-whatsapp-cta:focus {
            background-color: #1ebe57;
            color: #ffffff;
            text-decoration: none;
        }
        .btn-whatsapp-cta i {
            margin-right: 8px;
        }

        /* Geo Location Section */
        .location-geo-section {
            background-color: #f9f9f9;
            padding: 60px 0;
            border-top: 1px solid #eeeeee;
        }
        .location-geo-section .section-title {
            font-size: 32px;
            color: #222222;
            font-weight: 700;
            margin-bottom: 30px;
        }
        .location-contact-cards {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .lc-card {
            background: #ffffff;
            border-left: 4px solid #d49a2a;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.04);
            display: flex;
            align-items: center;
            gap: 20px;
            transition: transform 0.3s;
        }
        .lc-card:hover {
            transform: translateX(5px);
        }
        .lc-card i {
            font-size: 30px;
            color: #d49a2a;
            width: 40px;
            text-align: center;
        }
        .lc-card h5 {
            margin: 0 0 5px;
            font-size: 16px;
            color: #333333;
            font-weight: 700;
            text-align: left;
}
        .lc-card p {
            margin: 0;
            font-size: 15px;
            color: #666666;
        }
        .lc-card p a {
            color: #d49a2a;
            text-decoration: none;
            font-weight: 600;
        }
        .location-description-box {
            background: #ffffff;
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid #eeeeee;
            height: 100%;
        }
        .location-description-box p {
            font-size: 16px;
            color: #555555;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        .areas-served {
            margin-top: 30px;
            padding-top: 25px;
            border-top: 1px dashed #dddddd;
        }
        .areas-served h5 {
            font-size: 18px;
            color: #222222;
            margin-bottom: 15px;
            font-weight: 700;
        }
        .area-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .area-badges span {
            background: #fdfbf5;
            color: #a37213;
            border: 1px solid #ebdca1;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }

  .rgl-proximity{
    --rgl-teal:#10333B;
    --rgl-teal-2:#183F48;
    --rgl-gold:#D7AC53;
    --rgl-copper:#C97A4B;
    --rgl-ivory:#F5EFE2; 
    color:var(--rgl-ivory);
    padding:3.5rem 1.5rem 3rem; 
  }
  .rgl-proximity *{ box-sizing:border-box; }

  .rgl-head{
    max-width:640px;
    margin:0 auto 2.4rem;
    text-align:center;
  }
  .rgl-eyebrow{ 
    text-transform:uppercase;
    letter-spacing:0.14em; 
    color:var(--rgl-gold);
  }
  .rgl-head h2{ 
    font-weight:600; 
    margin:0.6rem 0 0.7rem;
  }
  .text-black {
    color: black !important;
}
  .rgl-head p{ 
    line-height:1.55;
    color:rgba(245,239,226,0.72);
    margin:0;
  }

  /* legend explaining the two stat types once, up top */
  .rgl-legend{
    display:flex;
    justify-content:center;
    gap:2rem;
    margin:1.4rem 0 0;  
    color:rgba(245,239,226,0.55);
  }
  .rgl-legend span{ display:flex; align-items:center; gap:0.4rem; }
  .rgl-legend svg{ width:14px; height:14px; opacity:0.8; }

  .rgl-list{
    max-width:820px;
    margin:2rem auto 0;
    display:flex;
    flex-direction:column;
    gap:0.65rem;
  }

  .rgl-row{
    display:flex;
    align-items:center;
    gap:1.1rem;
    background:var(--rgl-teal-2);
    border:1px solid rgba(245,239,226,0.1);
    border-radius:6px;
    padding:1rem 1.2rem;
  }

  .rgl-num{
    flex:0 0 auto;
    width:30px; height:30px;
    border-radius:50%;
    background:rgba(215,172,83,0.12);
    border:1px solid rgba(215,172,83,0.4);
    color:var(--rgl-gold);  
    display:flex; align-items:center; justify-content:center;
  }

  .rgl-body{ flex:1 1 auto; min-width:0; }
  .rgl-body h4{ 
    font-weight:500; 
    font-size:20px;
    color: var(--color-secondary-pink);
    margin:0 0 0.2rem;
  }
  .rgl-body p{ 
    line-height:1.4;
    color:rgba(245,239,226,0.68);
    margin:0;
  }

  /* the two stat blocks, clearly separated and labeled */
  .rgl-stats{
    flex:0 0 auto;
    display:flex;
    gap:0.9rem;
  }
  .rgl-stat{
    text-align:center;
    min-width:78px;
    padding:0.4rem 0.6rem;
    border-radius:4px;
  }
  .rgl-stat.distance{ background:rgba(215,172,83,0.1); }
  .rgl-stat.time{ background:rgba(201,122,75,0.12); }
  .rgl-stat .rgl-label{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:0.3rem;  
    text-transform:uppercase;
    letter-spacing:0.06em;
    margin-bottom:0.3rem;
  }
  .rgl-stat.distance .rgl-label{ color:var(--rgl-gold); }
  .rgl-stat.time .rgl-label{ color:var(--rgl-copper); }
  .rgl-stat svg{ width:11px; height:11px; }
  .rgl-stat .rgl-value{ 
    font-weight:600; 
    color:var(--rgl-ivory);
    line-height:1;
  }
  .rgl-stat .rgl-unit{ 
    color:rgba(245,239,226,0.5);
  }

  .rgl-foot{
    text-align:center;
    max-width:640px;
    margin:1.8rem auto 0;  
    color:rgba(245,239,226,0.4);
    line-height:1.6;
  }

  @media (max-width:600px){
    .rgl-row{ flex-wrap:wrap; }
    .rgl-body{ order:2; flex:1 1 100%; }
    .rgl-num{ order:1; }
    .rgl-stats{ order:3; flex:1 1 100%; justify-content:flex-start; margin-left:41px; }
  }

    .booking-section {
    padding: 60px 20px;  
    text-align: center;
}

 

.booking-container h2 {
    color: #d4af37; /* Consistent Gold Theme */
    margin-bottom: 20px;
}

.contact-details {
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-align: left;
    display: inline-block;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    padding: 15px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: transform 0.2s;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.btn-call {
    background: #d4af37; 
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .cta-grid {
        grid-template-columns: 1fr;
    }
}

        /* ── DESKTOP: normal single row ── */

        .tb-20260611-wrap {
            width: 100%;
            max-width: 1200px;
            background: linear-gradient(135deg, #0f2540 0%, #1a3a5c 100%);
            border-radius: 12px;
            overflow: hidden;
        }

        .tb-20260611-inner {
            display: flex;
            align-items: stretch;
            flex-wrap: nowrap;
        }

        .tb-20260611-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 15px 20px;
            flex: 1 1 0;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
            white-space: nowrap;
            transition: background 0.15s ease;
            cursor: default;
            min-width: 0;
        }

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

        .tb-20260611-item:hover {
            background: rgba(255, 255, 255, 0.07);
        }

        .tb-20260611-icon {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            font-size: 14px;
        }

        .tb-20260611-icon-green {
            background: rgba(74, 222, 128, 0.15);
            color: #4ade80;
        }

        .tb-20260611-icon-gold {
            background: rgba(251, 191, 36, 0.15);
            color: #fbbf24;
        }

        .tb-20260611-icon-blue {
            background: rgba(96, 200, 255, 0.15);
            color: #60c8ff;
        }

        .tb-20260611-icon-purple {
            background: rgba(167, 139, 250, 0.15);
            color: #a78bfa;
        }

        .tb-20260611-text {
            display: flex;
            flex-direction: column;
            gap: 1px;
            overflow: hidden;
        }

        .tb-20260611-label {
            font-size: 12px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: rgba(255, 255, 255, 0.45);
            line-height: 1;
        }

        .tb-20260611-value {
            font-size: 13px;
            font-weight: 500;
            color: #ffffff;
            line-height: 1.3;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .tb-20260611-value .tb-20260611-highlight {
            color: #fbbf24;
        }

        .tb-20260611-stars {
            color: #fbbf24;
            font-size: 11px;
            letter-spacing: 0.5px;
        }

        .tb-20260611-sep {
            color: rgba(255, 255, 255, 0.3);
            margin: 0 4px;
        }

        /* ── MOBILE: marquee ticker ── */

        .tb-20260611-marquee-wrap {
            display: none;
        }

        @media (max-width: 768px) {
            .tb-20260611-inner {
                display: none;
            }

            .tb-20260611-marquee-wrap {
                display: flex;
                align-items: center;
                overflow: hidden;
                height: 48px;
                position: relative;
            }

            /* fade edges */
            .tb-20260611-marquee-wrap::before,
            .tb-20260611-marquee-wrap::after {
                content: '';
                position: absolute;
                top: 0;
                width: 40px;
                height: 100%;
                z-index: 2;
                pointer-events: none;
            }

            .tb-20260611-marquee-wrap::before {
                left: 0;
                background: linear-gradient(to right, #0f2540, transparent);
            }

            .tb-20260611-marquee-wrap::after {
                right: 0;
                background: linear-gradient(to left, #1a3a5c, transparent);
            }

            .tb-20260611-marquee-track {
                display: flex;
                align-items: center;
                gap: 0;
                animation: tb-scroll 22s linear infinite;
                will-change: transform;
            }

            .tb-20260611-marquee-wrap:hover .tb-20260611-marquee-track {
                animation-play-state: paused;
            }

            .tb-20260611-marquee-item {
                display: flex;
                align-items: center;
                gap: 7px;
                padding: 0 22px;
                white-space: nowrap;
                border-right: 1px solid rgba(255, 255, 255, 0.12);
            }

            .tb-20260611-marquee-item:last-child {
                border-right: 1px solid rgba(255, 255, 255, 0.12);
            }

            .tb-20260611-marquee-icon {
                flex-shrink: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 24px;
                height: 24px;
                border-radius: 50%;
                font-size: 12px;
            }

            .tb-20260611-marquee-label {
                font-size: 10px;
                font-weight: 500;
                text-transform: uppercase;
                letter-spacing: 0.06em;
                color: rgba(255, 255, 255, 0.45);
                margin-right: 4px;
            }

            .tb-20260611-marquee-value {
                font-size: 13px;
                font-weight: 500;
                color: #ffffff;
                white-space: nowrap;
            }

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

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

        .body_2026_06_12 {
            box-sizing: border-box;
            margin: 0;
            padding: 40px 20px;
            font-family: 'Roboto', sans-serif;
            background-color: #f8f9fa;
            color: #333;
        }

        .body_2026_06_12 *, 
        .body_2026_06_12 *::before, 
        .body_2026_06_12 *::after {
            box-sizing: border-box;
        }

        .reviews_container_2026_06_12 {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Business Profile Header */
        .biz_header_2026_06_12 {
            background: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.02);
        }

        .biz_info_left_2026_06_12 h2 {
            font-size: 22px;
            color: #202124;
            font-weight: 700;
            margin: 0 0 8px 0;
        }

        .biz_stats_row_2026_06_12 {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 15px;
            color: #4d5156;
            flex-wrap: wrap;
        }

        .rating_num_2026_06_12 {
            font-weight: 700;
            color: #202124;
        }

        .stars_inline_2026_06_12 {
            color: #fbbc05;
            font-size: 14px;
        }

        .review_count_2026_06_12 {
            color: #1a0dab;
            text-decoration: none;
        }

        .review_count_2026_06_12:hover {
            text-decoration: underline;
        }

        .biz_type_2026_06_12 {
            color: #70757a;
        }

        .biz_type_2026_06_12::before {
            content: "·";
            margin: 0 6px;
            font-weight: bold;
        }

        /* Write a Review Button */
        .write_review_btn_2026_06_12 {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: #1a73e8;
            color: white;
            text-decoration: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 15px;
            transition: background-color 0.2s, transform 0.1s;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .write_review_btn_2026_06_12:hover {
            background-color: #1557b0;
        }

        .write_review_btn_2026_06_12:active {
            transform: scale(0.98);
        }

        /* 2 Rows, 3 Columns Grid Layout */
        .reviews_grid_2026_06_12 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        /* Individual Review Card */
        .review_card_2026_06_12 {
            background: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .review_card_2026_06_12:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
        }

        /* User Profile Info */
        .user_info_2026_06_12 {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .avatar_2026_06_12 {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 18px;
            text-transform: uppercase;
        }

        /* Avatar Background Colors */
        .bg_blue_2026_06_12 { background-color: #4285F4; }
        .bg_red_2026_06_12 { background-color: #EA4335; }
        .bg_yellow_2026_06_12 { background-color: #FBBC05; }
        .bg_green_2026_06_12 { background-color: #34A853; }
        .bg_purple_2026_06_12 { background-color: #a142f4; }
        .bg_orange_2026_06_12 { background-color: #fa7b17; }

        .user_details_2026_06_12 h4 {
            font-size: 15px;
            font-weight: 500;
            color: #202124;
            margin: 0;
        }

        .user_meta_2026_06_12 {
            font-size: 12px;
            color: #70757a;
            margin-top: 2px;
        }

        /* Rating Stars */
        .rating_stars_2026_06_12 {
            color: #fbbc05;
            font-size: 14px;
            margin-bottom: 12px;
        }

        /* Review Text */
        .review_text_2026_06_12 {
            font-size: 14px;
            line-height: 1.5;
            color: #3c4043;
            margin: 0;
        }

        /* Responsive Breakpoints */
        @media (max-width: 992px) {
            .reviews_grid_2026_06_12 {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 650px) {
            .reviews_grid_2026_06_12 {
                grid-template-columns: 1fr;
            }
            .biz_header_2026_06_12 {
                flex-direction: column;
                align-items: flex-start;
                padding: 20px;
            }
            .write_review_btn_2026_06_12 {
                width: 100%;
                justify-content: center;
            }
        }
    </style>

    <style>
        .trust-proof-section {
            padding: 30px 0;
            background: linear-gradient(180deg, #f8f1e4 0%, #fff 100%);
        }

        .trust-proof-shell {
            background: #ffffff;
            border: 1px solid rgba(172, 3, 3, 0.08);
            border-radius: 28px;
            box-shadow: 0 24px 60px rgba(25, 32, 56, 0.08);
            overflow: hidden;
        }

        .trust-proof-header {
            padding: 48px 48px 24px;
            text-align: center;
        }

        .trust-proof-kicker {
            display: inline-block;
            margin-bottom: 14px;
            color: #d49a2a;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .trust-proof-title {
            margin: 0;
            color: #1c1c1c;
            font-size: 38px;
            line-height: 1.2;
        }

        .trust-proof-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
            padding: 0 32px 32px;
        }

        .trust-proof-card {
            display: flex;
            gap: 14px;
            align-items: flex-start;
            min-height: 132px;
            padding: 22px 18px;
            background: linear-gradient(180deg, #fff 0%, #fffaf2 100%);
            border: 1px solid rgba(172, 3, 3, 0.08);
            border-radius: 20px;
            box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .trust-proof-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 38px rgba(15, 23, 42, 0.1);
        }

        .trust-proof-icon {
            flex: 0 0 52px;
            width: 52px;
            height: 52px;
            border-radius: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: rgb(212 154 42);
            background: rgba(172, 3, 3, 0.08);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
        }

        .trust-proof-icon svg {
            width: 24px;
            height: 24px;
            fill: none;
            stroke: rgb(212 154 42);
            stroke-width: 1.9;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .trust-proof-text {
            color: #2f2f2f;
            font-size: 16px;
            font-weight: 700;
            line-height: 1.55;
        }

        .trust-proof-text strong {
            display: block;
            color: #151515;
            font-size: 18px;
            margin-bottom: 4px;
        }

        .trust-proof-summary {
            padding: 0 48px 48px;
        }

        .trust-proof-summary-box {
            padding: 28px 30px;
            border-radius: 22px;
            background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
            box-shadow: 0 18px 45px rgba(17, 24, 39, 0.18);
        }

        .trust-proof-summary-box p {
            margin: 0;
            color: rgba(255, 255, 255, 0.9);
            font-size: 16px;
            line-height: 1.85;
        }

        @media (max-width: 1199px) {
            .trust-proof-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 767px) {
            .trust-proof-section {
                padding: 30px 0;
            }

            .trust-proof-header {
                padding: 36px 20px 18px;
            }

            .trust-proof-title {
                font-size: 28px;
            }

            .trust-proof-grid {
                grid-template-columns: 1fr;
                padding: 0 16px 20px;
            }

            .trust-proof-card {
                min-height: auto;
                padding: 18px 16px;
            }

            .trust-proof-summary {
                padding: 0 16px 28px;
            }

            .trust-proof-summary-box {
                padding: 22px 18px;
            }
        }

        .private-rooms-section {
            padding: 50px 0;
            background: linear-gradient(180deg, #ffffff 0%, #f9f4ea 100%);
        }

        .private-rooms-shell {
            display: grid;
            grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
            gap: 28px;
            align-items: center;
        }

        .private-rooms-copy {
            padding: 18px 0;
        }

        .private-rooms-kicker {
            display: inline-block;
            margin-bottom: 14px;
            color: #d49a2a;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .private-rooms-title {
            margin: 0 0 18px;
            color: #1c1c1c;
            font-size: 40px;
            line-height: 1.15;
        }

        .private-rooms-copy p {
            margin: 0;
            color: #555555;
            font-size: 17px;
            line-height: 1.85;
        }

        .private-rooms-points {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
            margin: 26px 0 0;
            padding: 0;
            list-style: none;
        }

        .private-rooms-points li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 13px 15px;
            background: #ffffff;
            border: 1px solid rgba(212, 154, 42, 0.18);
            border-radius: 16px;
            box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
            color: #2d2d2d;
            font-size: 15px;
            font-weight: 600;
        }

        .private-rooms-points svg {
            flex: 0 0 18px;
            width: 18px;
            height: 18px;
            fill: none;
            stroke: #d49a2a;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .room-slider {
            position: relative;
            padding: 18px;
            background: rgba(255, 255, 255, 0.94);
            border: 1px solid rgba(212, 154, 42, 0.14);
            border-radius: 28px;
            box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
            overflow: hidden;
        }

        .room-slider__viewport {
            overflow: hidden;
            border-radius: 22px;
            background: #efe7da;
        }

        .room-slider__track {
            display: flex;
            will-change: transform;
            transition: transform 0.5s ease;
        }

        .room-slide {
            min-width: 100%;
            position: relative;
        }

        .room-slide figure {
            margin: 0;
            position: relative;
            aspect-ratio: 16 / 11;
            overflow: hidden;
            background: #ece4d5;
        }

        .room-slide img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }

        .room-slide figcaption {
            position: absolute;
            left: 18px;
            right: 18px;
            bottom: 18px;
            padding: 14px 16px;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(17, 24, 39, 0.82), rgba(17, 24, 39, 0.6));
            color: #ffffff;
            font-size: 14px;
            font-weight: 600;
            line-height: 1.5;
            backdrop-filter: blur(6px);
        }

        .room-slider__controls {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            display: flex;
            justify-content: space-between;
            padding: 0 30px;
            transform: translateY(-50%);
            pointer-events: none;
        }

        .room-slider__button {
            width: 46px;
            height: 46px;
            border: 0;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.95);
            color: #1f2937;
            box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
            cursor: pointer;
            pointer-events: auto;
            transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
        }

        .room-slider__button:hover,
        .room-slider__button:focus-visible {
            transform: scale(1.06);
            box-shadow: 0 18px 36px rgba(15, 23, 42, 0.24);
            background: #ffffff;
            outline: none;
        }

        .room-slider__button svg {
            width: 18px;
            height: 18px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2.2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .room-slider__dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            padding: 18px 0 4px;
        }

        .room-slider__dot {
            width: 10px;
            height: 10px;
            border: 0;
            padding: 0;
            border-radius: 999px;
            background: rgba(31, 41, 55, 0.18);
            cursor: pointer;
            transition: width 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
        }

        .room-slider__dot.is-active {
            width: 28px;
            background: #d49a2a;
            transform: translateZ(0);
        }

        @media (max-width: 1199px) {
            .private-rooms-shell {
                grid-template-columns: 1fr;
            }

            .private-rooms-copy {
                padding: 0;
            }
        }

        @media (max-width: 767px) {
            .private-rooms-section {
                padding: 70px 0;
            }

            .private-rooms-title {
                font-size: 30px;
            }

            .private-rooms-copy p {
                font-size: 16px;
            }

            .private-rooms-points {
                grid-template-columns: 1fr;
            }

            .room-slider {
                padding: 12px;
                border-radius: 22px;
            }

            .room-slider__controls {
                padding: 0 16px;
            }

            .room-slider__button {
                width: 40px;
                height: 40px;
            }

            .room-slide figcaption {
                left: 12px;
                right: 12px;
                bottom: 12px;
                padding: 12px 14px;
                font-size: 13px;
            }
        }
