
        :root {
            /* General Branding */
            --gold: #b8860b;
            --gold-light: #d4a017;
            --radius: 16px;
            --light-bg: #f7f5f0;
            --dark-text: #111;
            
            /* Hotel Theme (Current values for fallback) */
            --bg: var(--light-bg);
            --surface: #ffffff;
            --surface2: #fefcf6;
            --border: rgba(0,0,0,0.06);
            --text: var(--dark-text);
            --muted: #888;
            
            /* Yurt Theme (Haan-Dyt) */
            --yurt-bg: #38402f;
            --yurt-surface: rgba(255,255,255,0.05);
            --yurt-border: rgba(255,255,255,0.1);
            --yurt-gold: #e1d3a5;
        }
        
        * { margin:0; padding:0; box-sizing:border-box; -webkit-tap-highlight-color: transparent; }
        
        body { 
            font-family:'Inter',sans-serif; 
            background:var(--bg); 
            color:var(--text); 
            padding-bottom: 80px; 
            transition: background 0.8s cubic-bezier(0.4, 0, 0.2, 1), color 0.5s ease;
        }
        
        body.yurt-theme {
            --bg: var(--yurt-bg);
            --surface: var(--yurt-surface);
            --surface2: rgba(255,255,255,0.1);
            --border: var(--yurt-border);
            --text: #ffffff;
            --muted: rgba(255,255,255,0.5);
            --gold: var(--yurt-gold);
        }

        .serif { font-family: 'Playfair Display', serif; }
        
        /* Fix: Prevent images from sticking to finger during scroll */
        img { 
            -webkit-user-drag: none; 
            -khtml-user-drag: none; 
            -moz-user-drag: none; 
            -o-user-drag: none; 
            user-drag: none;
            -webkit-touch-callout: none;
            user-select: none;
            pointer-events: none; /* Allows scroll to pass through the image to the container */
        }
        
        /* App Header */
        .app-header {
            position: sticky; top: 0; z-index: 50; 
            background: rgba(255,255,255,0.85);
            backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
            padding: env(safe-area-inset-top) 1.5rem 1rem; border-bottom: 1px solid var(--border);
            display: flex; justify-content: space-between; align-items: flex-end; height: calc(60px + env(safe-area-inset-top));
            transition: background 0.5s ease, border 0.5s ease;
        }
        body.yurt-theme .app-header {
            background: rgba(56,64,47,0.85);
            border-bottom-color: var(--yurt-border);
        }
        .app-title { font-size: 1.1rem; font-weight: 800; letter-spacing: 2px; }
        .app-title em { color: var(--gold); font-style: normal; }
        .app-phone { font-size: .8rem; color: var(--gold); text-decoration: none; font-weight: 600; }

        /* Views */
        .view { display: none; padding: 1rem .8rem; animation: viewFade .4s cubic-bezier(0.4, 0, 0.2, 1); }
        .view.active { display: block; }
        @keyframes viewFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
        
        .view-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 1.2rem; line-height: 1.1; }

        /* Animations */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .animate-up { animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both; }

        /* Cards */
        .room-card {
            background: var(--surface); border-radius: var(--radius); border: 1px solid var(--border);
            margin-bottom: 1.5rem; overflow: hidden; position: relative; display: flex; flex-direction: column;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, background 0.5s ease, border 0.5s ease;
        }
        body.yurt-theme .room-card {
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            border-color: rgba(225,211,165,0.1);
        }
        
        .room-gallery-wrap { position: relative; width: 100%; height: 220px; overflow: hidden; }
        .room-gallery {
            width: 100%; height: 100%; overflow-x: auto;
            scroll-snap-type: x mandatory; display: flex; scrollbar-width: none;
            -webkit-overflow-scrolling: touch;
        }
        .room-gallery::-webkit-scrollbar { display: none; }
        .room-img-wrap { flex: 0 0 100%; height: 100%; scroll-snap-align: start; }
        .room-gallery img { width: 100%; height: 100%; object-fit: cover; pointer-events: auto !important; }
        
        .room-info { padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: 0.6rem; }
        .room-header-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; width: 100%; margin-bottom: 2px; }
        .room-name { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.5px; color: var(--text); flex: 1; line-height: 1.2; }
        .capacity-badge { 
            background: rgba(0,0,0,0.4); color: #fff; padding: 4px 10px; border-radius: 8px; 
            font-size: 0.85rem; font-weight: 700; display: flex; align-items: center; gap: 4px; flex-shrink: 0;
            border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(4px);
        }
        body.yurt-theme .capacity-badge { background: rgba(255,255,255,0.08); }
        
        .room-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.4; margin-top: -2px; }
        
        .room-meta { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2px; }
        .room-meta-item {
            font-size: 0.72rem; padding: 3px 8px; background: var(--surface2);
            border-radius: 6px; color: var(--muted); border: 1px solid var(--border);
            display: flex; align-items: center; gap: 4px; font-weight: 600;
        }
        body.yurt-theme .room-meta-item { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.1); }

        .room-amenities-mini {
            display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem;
            margin: 0.4rem 0;
        }
        .amenity-item {
            display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text);
        }
        .amenity-item span { font-size: 1rem; width: 20px; text-align: center; }

        .room-footer {
            margin-top: 0.5rem; padding-top: 1rem; border-top: 1px solid var(--border);
            display: flex; flex-direction: column; gap: 1rem;
        }
        
        .tariff-box {
            background: var(--surface2); padding: 12px 14px; border-radius: 12px;
            display: flex; justify-content: space-between; align-items: center;
            border: 1px solid var(--border);
        }
        body.yurt-theme .tariff-box { background: rgba(0,0,0,0.2); }
        
        .tariff-info { flex: 1; min-width: 0; }
        .tariff-name { font-weight: 700; font-size: 0.82rem; color: var(--gold); margin-bottom: 2px; }
        .tariff-badge { font-size: 0.72rem; color: var(--muted); display: flex; align-items: center; gap: 4px; }
        
        .info-btn { 
            width: 28px; height: 28px; border-radius: 50%; background: var(--border);
            display: flex; align-items: center; justify-content: center; font-size: 0.8rem;
            color: var(--muted); border: none; flex-shrink: 0; margin-left: 10px;
        }
        
        /* Tariff Popover */
        .tariff-popover {
            position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
            z-index: 1000; display: none; align-items: center; justify-content: center; padding: 1.5rem;
        }
        .tariff-popover.open { display: flex; }
        .tp-content {
            background: var(--surface); padding: 1.8rem; border-radius: 24px; width: 100%; max-width: 340px;
            box-shadow: 0 30px 90px rgba(0,0,0,0.4); border: 1px solid var(--border);
            position: relative; animation: modalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .tp-close {
            position: absolute; top: 12px; right: 12px; width: 32px; height: 32px;
            border-radius: 50%; background: var(--surface2); border: none; color: var(--text);
            display: flex; align-items: center; justify-content: center;
        }

        .room-price-row { display: flex; justify-content: space-between; align-items: flex-end; }
        .price-wrap { display: flex; flex-direction: column; }
        .price-total { font-size: 1.6rem; font-weight: 900; color: var(--gold); line-height: 1; letter-spacing: -0.5px; }
        .price-sub { font-size: 0.75rem; color: var(--muted); margin-top: 6px; font-weight: 500; }
        
        .btn-select-premium, .btn-select {
            background: var(--gold); color: #fff; border: none; padding: 12px 24px;
            border-radius: 14px; font-weight: 800; font-size: 0.92rem; letter-spacing: 0.5px;
            box-shadow: 0 10px 25px rgba(184,134,11,0.25); transition: 0.2s;
            font-family: inherit; display: inline-flex; align-items: center; justify-content: center;
        }
        .btn-select-premium:active, .btn-select:active { transform: scale(0.96); }
        
        body.yurt-theme .btn-select-premium, body.yurt-theme .btn-select {
            background: var(--yurt-gold) !important; color: var(--yurt-bg) !important;
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
        }

        .g-arrow {
            position: absolute; top: 50%; transform: translateY(-50%); width: 34px; height: 34px;
            background: rgba(255,255,255,0.8); backdrop-filter: blur(10px); color: #000; border: none; border-radius: 50%; display: flex;
            align-items: center; justify-content: center; font-size: 1.1rem; z-index: 10;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .g-arrow.left { left: 8px; }
        .g-arrow.right { right: 8px; }

        /* Bottom Nav */
        .bottom-nav {
            position: fixed; bottom: 0; left: 0; right: 0; height: calc(65px + env(safe-area-inset-bottom));
            background: rgba(255,255,255,0.95); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
            border-top: 1px solid var(--border); display: flex; justify-content: space-around;
            padding-bottom: env(safe-area-inset-bottom); z-index: 100;
            transition: background 0.5s ease, border 0.5s ease;
        }
        body.yurt-theme .bottom-nav {
            background: rgba(45,52,38,0.95);
            border-top-color: var(--yurt-border);
        }
        .nav-item {
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            flex: 1; color: var(--muted); gap: .2rem; font-size: .65rem; font-weight: 600;
            transition: .2s; border: none; background: transparent; font-family: inherit; cursor: pointer;
            height: 100%;
        }
        .nav-item.active { color: var(--gold); }
        .card-meta span { color: var(--gold); }

        /* Guest Selector Styles */
        .guest-selector {
            display: flex;
            align-items: center;
            background: var(--surface2);
            border-radius: 12px;
            padding: 0.8rem 1rem;
            margin-bottom: 1.2rem;
            border: 1px solid var(--border);
        }
        .guest-selector label {
            font-size: 0.85rem;
            color: var(--muted);
            margin-bottom: 0px !important;
            flex: 1;
        }
        .guest-selector select {
            background: transparent;
            border: none;
            color: var(--text);
            font-size: 0.95rem;
            font-weight: 700;
            outline: none;
            cursor: pointer;
            text-align: right;
            -webkit-appearance: none;
            padding-right: 5px;
        }
        .nav-icon { font-size: 1.4rem; line-height: 1; }
        
        .room-price-row {
            display: flex; justify-content: space-between; align-items: flex-end;
            margin-top: 0; flex-wrap: nowrap; gap: 0.5rem;
        }

        /* Inline Booking Container */
        .book-modal {
            display: none; background: var(--surface);
            border-top: 1px dashed var(--border);
            margin: 1.2rem -1.2rem -1.2rem -1.2rem;
            border-radius: 0 0 16px 16px; overflow: hidden;
            border-bottom: 2px solid var(--gold);
        }
        .book-modal.open {
            display: block;
            animation: slideDown 0.3s ease-out forwards;
        }
        @keyframes slideDown { 
            0% { opacity: 0; transform: translateY(-10px); } 
            100% { opacity: 1; transform: translateY(0); } 
        }
        .bm-content { padding: 1.5rem 1.2rem; background: rgba(0,0,0,.02); }
        body.yurt-theme .bm-content { background: rgba(0,0,0,0.2); }

        /* Custom Calendar */
        .cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
        .cal-header button { background: var(--surface2); border: none; color: var(--text); width: 32px; height: 32px; border-radius: 8px; font-size: 1.2rem; }
        .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; text-align: center; margin-bottom: 1.5rem; }
        .cal-day-name { font-size: .7rem; color: var(--muted); font-weight: 600; margin-bottom: .5rem; text-transform: uppercase; }
        .cal-day {
            aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
            border-radius: 8px; font-size: .9rem; font-weight: 600; background: var(--surface);
            transition: .2s; cursor: pointer; border: 1px solid transparent; color: var(--text);
        }
        .cal-day.disabled { opacity: 0.2; pointer-events: none; }
        .cal-day.booked-full { background: rgba(255,100,100,0.3); color: #fff; text-decoration: none; pointer-events: none; }
        .cal-day.booked-in { background: linear-gradient(135deg, transparent 50%, rgba(255,100,100,0.3) 50%); color: #ff6b6b; }
        .cal-day.booked-out { background: linear-gradient(135deg, rgba(255,100,100,0.3) 50%, transparent 50%); color: #ff6b6b; }
        .cal-day.turn-in { background: linear-gradient(135deg, transparent 50%, rgba(255,100,100,0.3) 50%); }
        .cal-day.turn-out { background: linear-gradient(135deg, rgba(255,100,100,0.3) 50%, transparent 50%); }
        .cal-day.today { border-color: var(--muted); }
        .cal-day.range-start { background: var(--gold); color: #fff; border-radius: 8px 0 0 8px; }
        .cal-day.range-end { background: var(--gold); color: #fff; border-radius: 0 8px 8px 0; }
        .cal-day.range-mid { background: rgba(184,134,11,.15); color: var(--gold); border-radius: 0; }
        .cal-day.range-start.range-end { border-radius: 8px; }
        .cal-day.range-start.booked-out { background: linear-gradient(135deg, rgba(255,50,50,.2) 50%, var(--gold) 50%); color: #fff; }
        .cal-day.range-end.booked-in { background: linear-gradient(135deg, var(--gold) 50%, rgba(255,50,50,.2) 50%); color: #fff; }

        .date-display { display: flex; justify-content: space-between; background: var(--surface2); padding: 1rem; border-radius: 12px; margin-bottom: 1rem; }
        .date-display div { display: flex; flex-direction: column; }
        .date-display label { font-size: .7rem; color: var(--muted); text-transform: uppercase; margin-bottom: .2rem; }
        .date-display span { font-size: .95rem; font-weight: 700; color: var(--gold); }

        .addon-card {
            background: var(--surface); border: 1.5px solid var(--border); padding: 1rem; border-radius: 12px;
            display: flex; justify-content: space-between; align-items: center; margin-bottom: .8rem;
        }
        .addon-card.selected { border-color: var(--gold); background: rgba(184,134,11,.05); }
        .addon-info h4 { font-size: .95rem; margin-bottom: .2rem; }
        .addon-info p { font-size: .75rem; color: var(--muted); }
        .addon-price { font-weight: 700; color: var(--gold); }

        .form-group { margin-bottom: 1.2rem; }
        .form-group label { display: block; font-size: .8rem; color: var(--muted); margin-bottom: .5rem; }
        .form-group input { width: 100%; background: var(--surface); border: 1px solid var(--border); color: var(--text); padding: 1rem; border-radius: 12px; font-size: 1rem; outline: none; font-family: inherit; }
        .form-group input:focus { border-color: var(--gold); }
        .consent-box { margin: 1rem 0; font-size: 0.75rem; color: var(--muted); display: flex; gap: 0.8rem; align-items: flex-start; }
        .consent-box input { width: auto; margin-top: 0.2rem; }
        .consent-box a { color: var(--gold); text-decoration: underline; }

        .checkout-box { background: var(--surface2); padding: 1.5rem; border-radius: 16px; margin-top: 2rem; }
        .checkout-row { display: flex; justify-content: space-between; font-size: .9rem; margin-bottom: .5rem; color: var(--muted); }
        .checkout-total { display: flex; justify-content: space-between; font-size: 1.2rem; font-weight: 800; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); color: var(--text); }
        
        .btn-master {
            width: 100%; background: var(--gold); color: #fff; padding: 1.2rem; border: none;
            border-radius: 12px; font-size: 1.05rem; font-weight: 800; margin-top: 1.5rem; box-shadow: 0 4px 20px rgba(184,134,11,.2);
        }

        /* Loading / Skeleton */
        .skeleton { background: var(--surface2); animation: pulse 1.5s infinite; border-radius: 12px; }
        @keyframes pulse { 0% { opacity: 1; } 50% { opacity: .5; } 100% { opacity: 1; } }

        /* Details */
        ::-webkit-scrollbar { display: none; }
        
        /* Time slots for sauna */
        .time-slot {
            background: var(--surface2); border: 1px solid var(--border); border-radius: 8px;
            padding: .6rem 0; text-align: center; font-size: .8rem; font-weight: 600;
            color: var(--text); transition: .2s; cursor: pointer;
        }
        .time-slot.booked { background: rgba(255,50,50,.15); color: #ff6b6b; pointer-events: none; opacity: 0.5; }
        .time-slot.selected { background: var(--gold); color: #fff; border-color: var(--gold); }

        /* KHAAN-DYT CARDS */
        .kd-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; margin-bottom: 1rem; overflow: hidden; pointer-events: none; }
        .kd-img { width: 100%; height: 200px; object-fit: cover; }
        .kd-body { padding: 1.5rem; }
        .kd-title { color: var(--gold); font-family: 'Playfair Display', serif; font-size: 1.25rem; margin-bottom: 1rem; font-weight: 700; letter-spacing: 1px; }
        .kd-list { list-style: none; padding: 0; margin: 0; }
        .kd-list li { position: relative; padding-left: 1.2rem; margin-bottom: 0.6rem; font-size: 0.85rem; color: var(--text); opacity: 0.85; line-height: 1.4; }
        .kd-list li::before { content: 'вЂў'; position: absolute; left: 0; color: var(--gold); font-size: 1.2rem; line-height: 1; }

        .btn-tg-float {
            position: fixed; bottom: 140px; right: 20px; width: 52px; height: 52px;
            background: transparent; border-radius: 20%;
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 8px 25px rgba(0,0,0,0.25);
            z-index: 99; transition: .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            animation: tgPulse 2s infinite;
            pointer-events: auto !important;
            overflow: hidden;
        }
        .btn-tg-float img { width: 100%; height: 100%; object-fit: contain; }
        .btn-tg-float:hover { transform: scale(1.1) translateY(-5px); }
        @keyframes tgPulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }
        
        /* ===== ULTRA-PREMIUM INFO VIEW REBUILD ===== */
        #view-info {
            overflow-x: hidden !important; 
            width: 100%;
            position: relative;
            background: var(--bg);
            min-height: calc(100vh - 140px);
        }
        
        /* Background Animated Blobs */
        .info-blobs {
            position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
        }
        .blob {
            position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.15;
            animation: blobFloat 20s infinite alternate;
        }
        .blob-1 { width: 300px; height: 300px; background: var(--gold); top: -100px; right: -50px; }
        .blob-2 { width: 250px; height: 250px; background: var(-- gold-light); bottom: 10%, left: -50px; animation-duration: 25s; animation-delay: -5s; }
        @keyframes blobFloat {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(30px, 50px) scale(1.1); }
        }

        .info-content-wrap { position: relative; z-index: 2; }

        .info-hero {
            background: #111;
            background-image: radial-gradient(circle at 50% 120%, rgba(184,134,11,0.3) 0%, transparent 70%);
            border-radius: 28px;
            padding: 3.5rem 1.5rem;
            color: #fff;
            text-align: center;
            margin-bottom: 2.5rem;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(225,211,165,0.25);
        }
        .info-hero::before {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 100%);
        }
        .info-hero::after {
            content: '';
            position: absolute; inset: 0;
            background: url('uploads/chalama_logo.png') no-repeat center/contain;
            opacity: 0.08;
            transform: scale(1.3);
            pointer-events: none;
        }
        body.yurt-theme .info-hero::after { background-image: url('uploads/kd_logo.png'); }

        .info-hero-badge {
            background: rgba(184,134,11,0.2);
            color: var(--gold);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 1rem;
            border: 1px solid rgba(184,134,11,0.3);
            backdrop-filter: blur(5px);
        }

        .info-hero h2 { font-family: 'Playfair Display', serif; font-size: 2.4rem; margin-bottom: 0.5rem; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
        .info-hero p { font-size: 1rem; color: rgba(255,255,255,0.7); font-weight: 400;}

        .info-section { margin-bottom: 3.5rem; }
        .info-section-title {
            font-size: 1.5rem; font-family: 'Playfair Display', serif; font-weight: 800;
            margin-bottom: 1.5rem; color: var(--text);
            display: flex; align-items: center; gap: 0.8rem;
        }
        .info-section-title i { color: var(--gold); font-size: 1.2rem; }
        
        /* Ultra-Premium Glass Card */
        .info-card {
            background: var(--surface);
            background-image: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.01) 100%);
            backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(184,134,11,0.18);
            border-radius: 28px;
            padding: 1.8rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            position: relative;
            overflow: hidden;
        }
        body.yurt-theme .info-card {
            background: rgba(40,40,40,0.4);
            border-color: rgba(225,211,165,0.25);
            box-shadow: 0 20px 50px rgba(0,0,0,0.4);
        }
        
        .info-card::before {
            content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
            background: radial-gradient(circle at center, rgba(184,134,11,0.05) 0%, transparent 60%);
            pointer-events: none;
        }

        .info-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; }
        .info-card-title { font-weight: 800; font-size: 1.3rem; color: var(--gold); font-family: 'Playfair Display', serif; overflow: hidden; text-overflow: ellipsis; }
        .info-card-price { 
            border: 1px solid var(--gold); color: var(--gold); 
            background: rgba(184,134,11,0.08); padding: 0.4rem 1rem; border-radius: 12px;
            font-weight: 800; font-size: 0.9rem; white-space: nowrap;
        }

        .info-card-desc { font-size: 0.95rem; color: var(--text); line-height: 1.7; opacity: 0.8; margin-bottom: 1rem;}
        
        /* Gallery Fixed for No Wiggle */
        .info-gallery {
            display: flex; gap: 0.8rem; padding: 0.5rem 0 1.5rem;
            overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none;
            scroll-snap-type: x mandatory;
            margin: 0 -0.5rem; /* Reduced to avoid overflow triggers */
        }
        .info-gallery::-webkit-scrollbar { display: none; }
        .info-gallery-item {
            position: relative; flex: 0 0 82%; height: 240px;
            border-radius: 20px; overflow: hidden; scroll-snap-align: center;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            border: 1px solid rgba(255,255,255,0.1);
        }
        .info-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
        .info-gallery-item:active img { transform: scale(1.05); }

        .info-gallery-label {
            position: absolute; bottom: 15px; left: 15px;
            background: rgba(0,0,0,0.7); backdrop-filter: blur(10px);
            color: #fff; padding: 0.4rem 1rem; border-radius: 12px; font-size: 0.7rem; font-weight: 800; letter-spacing: 1.5px;
            border: 1px solid rgba(255,255,255,0.15);
        }

        /* Contacts Premium */
        .contact-list { background: rgba(0,0,0,0.02); border-radius: 28px; border: 1px solid var(--border); padding: 0.5rem 1.8rem; }
        body.yurt-theme .contact-list { background: rgba(255,255,255,0.03); border-color: rgba(225,211,165,0.15); }
        .contact-item {
            display: flex; align-items: center; gap: 1.2rem; padding: 1.5rem 0;
            border-bottom: 1px solid var(--border); text-decoration: none; color: var(--text);
        }
        .contact-item:last-child { border-bottom: none; }
        .contact-icon {
            width: 48px; height: 48px; border-radius: 16px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); color: #fff;
            display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
            box-shadow: 0 8px 15px rgba(184,134,11,0.25);
        }

        /* Lightbox Mobile */
        .m-lightbox {
            position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 1000;
            display: none; align-items: center; justify-content: center;
            backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
            opacity: 0; transition: opacity 0.3s ease;
        }
        .m-lightbox.open { display: flex; opacity: 1; }
        .m-lightbox-img { max-width: 95%; max-height: 80vh; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); transform: scale(0.9); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
        .m-lightbox.open .m-lightbox-img { transform: scale(1); }
        .m-lightbox-close { position: absolute; top: 40px; right: 20px; color: #fff; font-size: 2rem; background: none; border: none; }

        /* ===== INDUSTRY CARDS (BRANCHES) ===== */
        .industry-card {
            position: relative;
            width: 100%;
            height: 280px;
            border-radius: 32px;
            margin-bottom: 1.8rem;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2rem;
            box-shadow: 0 15px 45px rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.1);
            text-decoration: none;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .industry-card:active { transform: scale(0.97); }
        
        .industry-bg {
            position: absolute; inset: 0; z-index: 1;
            background-size: cover; background-position: center;
            transition: transform 0.6s ease;
        }
        .industry-card:active .industry-bg { transform: scale(1.1); }
        
        .industry-overlay {
            position: absolute; inset: 0; z-index: 2;
            background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
        }
        
        .industry-label {
            position: absolute; top: 1.5rem; right: 1.5rem; z-index: 3;
            background: rgba(184,134,11,0.25); color: var(--gold);
            backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
            padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.65rem;
            font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
            border: 1px solid rgba(184,134,11,0.3);
        }
        
        .industry-content { position: relative; z-index: 3; color: #fff; }
        .industry-title { 
            font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; 
            margin-bottom: 0.6rem; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.5); 
        }
        .industry-desc { 
            font-size: 0.9rem; color: rgba(255,255,255,0.8); line-height: 1.4; margin-bottom: 1.2rem;
            max-width: 85%;
        }
        
        .industry-btn {
            display: inline-flex; align-items: center; gap: 0.6rem;
            background: #fff; color: #111; padding: 0.8rem 1.4rem;
            border-radius: 14px; font-size: 0.85rem; font-weight: 800;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .industry-btn i { font-size: 0.8rem; color: var(--gold); }

        /* Animation class */
        .reveal-up {
            opacity: 0; transform: translateY(50px);
            transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .reveal-up.is-revealed { opacity: 1; transform: translateY(0); }
    
        /* ===== AVAILABILITY MODAL (MOBILE) ===== */
        .av-modal-bg {
            position: fixed; inset: 0; background: rgba(0,0,0,0.92);
            backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
            z-index: 2000; display: none; flex-direction: column;
            opacity: 0; transition: opacity .4s ease;
        }
        .av-modal-bg.open { display: flex; opacity: 1; }
        
        .av-header {
            padding: calc(1rem + env(safe-area-inset-top)) 1.5rem 1rem;
            background: rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.1);
            position: relative; text-align: center;
        }
        .av-close {
            position: absolute; top: calc(0.8rem + env(safe-area-inset-top)); right: 1rem;
            width: 36px; height: 36px; border-radius: 50%;
            background: rgba(255,255,255,0.1); border: none; color: #fff;
            font-size: 1.5rem; display: flex; align-items: center; justify-content: center;
        }
        
        .av-body { flex: 1; overflow-y: auto; padding: 1.5rem 1rem env(safe-area-inset-bottom); }
        .av-month-title { font-size: 1.2rem; font-weight: 800; color: var(--gold); }
        .av-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
        .av-nav-btn { background: rgba(255,255,255,0.05); border: none; color: #fff; width: 44px; height: 44px; border-radius: 12px; font-size: 1.2rem; }

        .av-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
        .av-weekday { font-size: .65rem; color: rgba(255,255,255,0.4); text-align: center; font-weight: 700; text-transform: uppercase; margin-bottom: .5rem; }
        .av-day {
            aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
            border-radius: 12px; font-size: 1rem; font-weight: 700; background: rgba(255,255,255,0.03);
            color: #fff; transition: .2s; border: 1px solid rgba(255,255,255,0.05);
        }
        .av-day.past { opacity: 0.2; pointer-events: none; }
        .av-day.today { border-color: var(--gold); color: var(--gold); }
        .av-day.busy {
            background: rgba(255,100,100,0.1) !important; color: #ff6b6b !important;
            text-decoration: line-through; opacity: 0.6; pointer-events: none;
        }
        .av-day.range-start, .av-day.range-end {
            background: var(--gold) !important; color: #fff !important;
            box-shadow: 0 8px 20px rgba(184,134,11,0.3);
        }
        .av-day.range { background: rgba(184,134,11,0.2) !important; border-radius: 0; }
        
        .busy-hint-row {
            display: flex; align-items: center;
            background: linear-gradient(135deg, rgba(184,134,11,0.08) 0%, rgba(184,134,11,0.02) 100%);
            border: 1px solid rgba(184,134,11,0.3);
            border-radius: 20px; padding: 1.2rem;
            margin-bottom: 1.5rem; text-decoration: none;
            transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            -webkit-tap-highlight-color: transparent;
        }
        .busy-hint-row:active { transform: scale(0.96); }

        .bh-icon {
            width: 48px; height: 48px; flex-shrink: 0;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
            color: #fff; border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.4rem; box-shadow: 0 8px 20px rgba(184,134,11,0.35);
            margin-right: 1.2rem;
        }

        .bh-content { flex: 1; min-width: 0; }
        .bh-title { font-weight: 800; font-size: 1.1rem; color: var(--text); margin-bottom: 0.3rem; font-family: 'Playfair Display', serif; line-height: 1.2; }
        .bh-subtitle { font-size: 0.82rem; color: var(--muted); line-height: 1.35; padding-right: 5px; }

        .bh-arrow {
            width: 32px; height: 32px; flex-shrink: 0;
            background: var(--surface); border: 1px solid var(--border);
            border-radius: 50%; color: var(--gold);
            display: flex; align-items: center; justify-content: center;
            font-size: 0.9rem; margin-left: 0.5rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            transition: 0.2s;
        }
        .busy-hint-row:active .bh-arrow { transform: translateX(3px); }

        body.yurt-theme .busy-hint-row {
            background: linear-gradient(135deg, rgba(225,211,165,0.08) 0%, rgba(225,211,165,0.02) 100%);
            border-color: rgba(225,211,165,0.25);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }
        body.yurt-theme .bh-icon { background: linear-gradient(135deg, #e1d3a5 0%, #b8a670 100%); color: #38402f; box-shadow: 0 8px 20px rgba(225,211,165,0.2); }
        body.yurt-theme .bh-title { color: #e1d3a5; }
        body.yurt-theme .bh-subtitle { color: rgba(255,255,255,0.6); }
        body.yurt-theme .bh-arrow { background: rgba(255,255,255,0.05); border-color: rgba(225,211,165,0.2); color: #e1d3a5; }

        /* Premium Mobile Modal (Checkout) */
        .m-modal-bg {
            position: fixed; inset: 0; background: rgba(0,0,0,0.85);
            backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
            z-index: 3000; display: none; align-items: flex-end;
            transition: opacity .3s ease;
        }
        .m-modal-bg.open { display: flex; }
        
        .m-modal {
            background: var(--surface); width: 100%; max-height: 92vh;
            border-top-left-radius: 30px; border-top-right-radius: 30px;
            padding: 2rem 1.5rem calc(2rem + env(safe-area-inset-bottom));
            transform: translateY(100%); transition: transform .4s cubic-bezier(0.19, 1, 0.22, 1);
            position: relative; overflow-y: auto;
        }
        .m-modal-bg.open .m-modal { transform: translateY(0); }
        
        .m-modal-close {
            position: absolute; top: 1rem; right: 1rem;
            width: 32px; height: 32px; border-radius: 50%;
            background: var(--surface2); border: none; color: var(--text);
            font-size: 1.2rem; display: flex; align-items: center; justify-content: center; z-index: 10;
        }
        
        .m-modal-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
        .m-modal-icon {
            width: 50px; height: 50px; border-radius: 14px;
            background: linear-gradient(135deg, rgba(184,134,11,.15), rgba(184,134,11,.05));
            display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
        }
        .m-modal-header h3 { font-size: 1.25rem; font-weight: 800; margin: 0; color: var(--text); }
        .m-modal-header p { font-size: .85rem; color: var(--muted); margin: .3rem 0 0; }
        
        .m-summary-box {
            background: var(--surface2); border: 1px solid var(--border);
            border-radius: 18px; padding: 1.2rem; margin-bottom: 2rem;
        }
        
        .m-form-grid { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
        .m-legal-group { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1rem; }
        .m-consent-item { display: flex; gap: .8rem; align-items: flex-start; font-size: .82rem; color: var(--muted); line-height: 1.4; }
        .m-consent-item input { margin-top: .2rem; width: 18px; height: 18px; }
        .m-consent-item a { color: var(--gold); text-decoration: underline; }
