/* ==========================================================================
           1. CORE VARIABLES & MAPPINGS
           ========================================================================== */
        :root {
            /* --- GLOBAL BASE PALETTE (From Home Page) --- */
            --bg-white: #E6E1DC;        /* Base: Warm Taupe */
            --text-dark: #2B2420;       /* Deepest Espresso */
            --text-grey: #5E544F;       /* Dark Stone */
            --accent-gold: #B09B80;     /* Antique Bronze */
            
            /* --- SECTION 2: UTILITIES --- */
            --util-divider: #A38F75;
            
            /* --- SECTION 3: NAVIGATION --- */
            --nav-glass-bg: rgba(230, 225, 220, 0.9);
            --nav-glass-border: rgba(176, 155, 128, 0.4);
            --nav-text: #3D3430;
            --nav-btn-bg: #D1C7BD;
            --nav-btn-text: #2B2420;
            
            /* --- SECTION 4: HERO SECTION --- */
            --hero-bg: #D6D0C8;    
            --hero-text: #3D3430;    
            --hero-gold: #A38F75;    
            --hero-black: #FFFFFF;    
            --hero-overlay-grad: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0) 50%, rgba(190, 180, 170, 0.4) 100%);
            --hero-glass: rgba(230, 225, 220, 0.5);
            --hero-border: rgba(163, 143, 117, 0.4);

            /* --- SECTION 10: FOOTER --- */
            --footer-bg: #5E544F;        
            --footer-text: #F2F0ED;      
            --footer-border: rgba(255, 255, 255, 0.15);

            /* --- APP SPECIFIC MAPPINGS --- */
            --bg-color: var(--bg-white); 
            --gold-light: var(--nav-btn-bg); /* #D1C7BD */
            --gold-main: var(--accent-gold); /* #B09B80 */
            --gold-dark: var(--util-divider); /* #A38F75 */
            
            --glass-bg: rgba(230, 225, 220, 0.45); 
            --glass-border: var(--nav-glass-border); 
            --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); 
            --di-bg: rgba(43, 36, 32, 0.85); 

            /* Microscopic physical grain texture for VisionOS Frosted Glass */
            --noise-pattern: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Lato', sans-serif; background-color: var(--bg-color); color: var(--text-dark); min-height: 100vh; overflow-x: hidden; display: flex; flex-direction: column; align-items: center; }

        /* Ambient Background */
        .ambient-bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; background: var(--bg-color); }
        .orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.7; animation: floatOrb 25s infinite alternate ease-in-out; }
        .orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(176, 155, 128, 0.6) 0%, transparent 70%); top: -100px; left: -100px; }
        .orb-2 { width: 800px; height: 800px; background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, transparent 70%); bottom: -200px; right: -150px; animation-delay: -5s; }
        @keyframes floatOrb { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(40px, 60px) scale(1.15); } }

        /* Isolate stacking contexts so the noise stays inside the glass */
        .glass-panel, .modal-content, .dynamic-island-container, .hero-pricing-card, .receipt-items-box, .mobile-header-pill {
            position: relative;
            z-index: 1;
        }

        /* Inject the noise layer behind the content but above the blur */
        .glass-panel::before, .modal-content::before, .dynamic-island-container::before, .hero-pricing-card::before, .receipt-items-box::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: var(--noise-pattern);
            opacity: 0.6;
            pointer-events: none;
            z-index: -1;
            border-radius: inherit;
            mix-blend-mode: overlay;
        }

        /* =========================================================
           DEVICE VISIBILITY TOGGLES
           ========================================================= */
        @media (min-width: 901px) { .mobile-only { display: none !important; } }
        @media (max-width: 900px) { .desktop-only { display: none !important; } }

        /* =========================================================
           GLOBAL HEADER & DYNAMIC ISLAND
           ========================================================= */
        .super-wrapper { width: 100%; display: flex; flex-direction: column; align-items: center; flex: 1; }
        .global-header { position: relative; width: 100%; z-index: 100; display: flex; align-items: center; justify-content: center; padding-top: 25px; margin-bottom: 20px; }

        /* Dynamic Island - BASE (Defaults to Mobile Spec) */
        .dynamic-island-container { display: flex; gap: 6px; justify-content: center; align-items: center; background: var(--di-bg); backdrop-filter: blur(20px) saturate(150%); padding: 6px 12px; border-radius: 50px; border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 15px 35px rgba(0,0,0,0.2), inset 0 2px 5px rgba(255,255,255,0.2); position: relative; transition: var(--transition-smooth); }
        .di-step { display: flex; align-items: center; justify-content: flex-start; background: rgba(255,255,255,0.1); border-radius: 50px; height: 34px; min-width: 34px; max-width: 34px; cursor: pointer; overflow: hidden; white-space: nowrap; transition: var(--transition-smooth); }
        .di-step:hover:not(.active) { background: rgba(255,255,255,0.2); }
        
        .di-back-btn { background: transparent; border: 1px solid rgba(255,255,255,0.2); justify-content: center; }
        .di-back-btn:hover { background: rgba(255,255,255,0.15); border-color: var(--gold-main); }
        .di-back-btn i { font-size: 0.9rem; color: #FFF; transition: 0.2s; }
        .di-back-btn:hover i { color: var(--gold-main); transform: translateX(-2px); }

        .di-icon { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; min-width: 34px; color: var(--gold-main); transition: var(--transition-smooth); }
        .di-text { font-size: 0.7rem; font-weight: 800; color: #FFF; text-transform: uppercase; letter-spacing: 1px; opacity: 0; max-width: 0; padding-right: 0; transition: var(--transition-smooth); display: inline-block; }
        .di-step.active { max-width: 140px; background: linear-gradient(135deg, var(--gold-light), var(--gold-main)); box-shadow: 0 0 20px rgba(176, 155, 128, 0.4); }
        .di-step.active .di-icon { color: var(--text-dark); }
        .di-step.active .di-text { opacity: 1; max-width: 100px; padding-right: 12px; color: var(--text-dark); }

        /* Left-Aligned Headers globally enforced */
        h1 { display: flex; align-items: center; justify-content: flex-start; text-align: left; font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; margin-bottom: 5px; color: var(--text-dark); line-height: 1; letter-spacing: -1px; }
        p.subtitle { font-size: 0.95rem; color: var(--text-grey); margin-bottom: 25px; line-height: 1.5; text-align: left; }
        
        .tailored-header { text-align: left; margin-bottom: 25px; }
        .tailored-header h1 { justify-content: flex-start; }
        
        .sub-step-header { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--text-dark); margin: 20px 0 15px 0; font-weight: 600; display: flex; align-items: center; gap: 10px;}
        .sub-step-num { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; background: var(--gold-main); color: #FFF; border-radius: 50%; font-family: 'Lato', sans-serif; font-size: 0.8rem; font-weight: 800; }

        /* Glassmorphic Inputs */
        .input-group { position: relative; margin-bottom: 15px; width: 100%; text-align: left; }
        .input-group input, .input-group textarea, .input-group select { 
            width: 100%; padding: 26px 20px 10px 20px; font-size: 1.05rem; font-family: 'Lato', sans-serif; font-weight: 600; color: var(--text-dark); 
            background: rgba(255, 255, 255, 0.4); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.5); 
            border-radius: 12px; outline: none; transition: all 0.3s ease; box-shadow: inset 0 2px 5px rgba(0,0,0,0.02); 
        }
        .input-group select { appearance: none; -webkit-appearance: none; cursor: pointer; }
        .input-group.is-select::after {
            content: '\f107'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
            position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
            color: var(--gold-main); pointer-events: none; font-size: 1.2rem;
        }
        .input-group textarea { resize: vertical; min-height: 100px; padding-top: 30px; }
        .input-group label { position: absolute; top: 18px; left: 20px; font-size: 1rem; color: #8C8276; transition: all 0.3s ease; pointer-events: none; }
        
        .input-group input:focus ~ label, .input-group input:not(:placeholder-shown) ~ label, 
        .input-group textarea:focus ~ label, .input-group textarea:not(:placeholder-shown) ~ label,
        .input-group select:valid ~ label, .input-group select:focus ~ label { 
            top: 8px; font-size: 0.65rem; font-weight: 800; color: var(--gold-main); text-transform: uppercase; letter-spacing: 1px; 
        }
        .input-group input:focus, .input-group textarea:focus, .input-group select:focus { 
            background: rgba(255,255,255,0.7); border-color: var(--gold-main); box-shadow: 0 0 0 4px rgba(176, 155, 128, 0.15), inset 0 2px 5px rgba(0,0,0,0.02); 
        }
        
        /* Custom Glass Dropdowns */
        .custom-select { cursor: pointer; user-select: none; }
        .cs-trigger { width: 100%; padding: 26px 20px 10px 20px; font-size: 1.05rem; font-family: 'Lato', sans-serif; font-weight: 600; color: var(--text-dark); background: rgba(255, 255, 255, 0.4); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 12px; outline: none; transition: all 0.3s ease; box-shadow: inset 0 2px 5px rgba(0,0,0,0.02); display: flex; justify-content: space-between; align-items: center; min-height: 60px;}
        .cs-trigger .cs-display { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 90%; display: inline-block; vertical-align: middle; line-height: 1.2;}
        .cs-trigger i { color: var(--gold-main); transition: transform 0.3s; font-size: 1.1rem; flex-shrink: 0; }
        .custom-select.active .cs-trigger { border-color: var(--gold-main); background: rgba(255,255,255,0.7); box-shadow: 0 0 0 4px rgba(176, 155, 128, 0.15), inset 0 2px 5px rgba(0,0,0,0.02); }
        .custom-select.active .cs-trigger i { transform: rotate(180deg); }
        .custom-select.has-value label, .custom-select.active label { top: 8px; font-size: 0.65rem; font-weight: 800; color: var(--gold-main); text-transform: uppercase; letter-spacing: 1px; }
        .cs-options { position: absolute; top: calc(100% + 5px); left: 0; width: 100%; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(25px); border: 1px solid var(--glass-border); border-radius: 12px; box-shadow: 0 15px 35px rgba(43, 36, 32, 0.1); max-height: 220px; overflow-y: auto; z-index: 100; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
        .custom-select.active .cs-options { opacity: 1; visibility: visible; transform: translateY(0); }
        .cs-option { padding: 15px 20px; font-size: 1rem; font-weight: 600; color: var(--text-dark); transition: 0.2s; border-bottom: 1px solid rgba(163, 143, 117, 0.1); display: flex; justify-content: space-between; align-items: center;}
        .cs-option:last-child { border-bottom: none; }
        .cs-option:hover, .cs-option.selected { background: rgba(176, 155, 128, 0.15); color: var(--gold-dark); }
        .cs-option.selected::after { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--gold-main); font-size: 0.9rem;}

        /* Step Grid Rows */
        .row-half { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 15px; width: 100%; }
        .row-2 { display: grid; grid-template-columns: 2fr 1fr; gap: 15px; margin-bottom: 15px; }
        .row-3 { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 15px; margin-bottom: 15px; }
        .row-half .input-group, .row-2 .input-group, .row-3 .input-group { margin-bottom: 0; }

        .autocomplete-dropdown { position: absolute; top: calc(100% + 5px); left: 0; width: 100%; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 12px; box-shadow: 0 15px 35px rgba(43, 36, 32, 0.1); max-height: 220px; overflow-y: auto; z-index: 100; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all 0.3s ease; list-style: none; }
        .autocomplete-dropdown.active { opacity: 1; visibility: visible; transform: translateY(0); }
        .autocomplete-item { padding: 15px 20px; display: flex; align-items: center; gap: 15px; cursor: pointer; border-bottom: 1px solid rgba(163, 143, 117, 0.2); }
        .autocomplete-item:hover { background: rgba(176, 155, 128, 0.1); }
        .item-icon { color: var(--gold-main); font-size: 1.1rem; }
        .item-text { display: flex; flex-direction: column; }
        .item-main { font-weight: 700; color: var(--text-dark); font-size: 0.95rem; }
        .item-sub { font-size: 0.75rem; color: #8C8276; }

        /* Base App Structure */
        #view-address { display: block; width: 100%; margin: auto; }
        #view-main { display: none; width: 100%; gap: 30px; margin: auto; }
        .col-main { flex: 1; display: flex; flex-direction: column; gap: 20px; }

        /* TIER BADGE */
        .dynamic-tailored-banner { display: flex; align-items: center; justify-content: space-between; background: linear-gradient(135deg, rgba(43, 36, 32, 0.95), rgba(20, 15, 12, 0.98)); border: 1px solid rgba(176, 155, 128, 0.4); border-radius: 16px; padding: 14px 20px; margin-bottom: 25px; box-shadow: 0 15px 35px rgba(0,0,0,0.2), inset 0 2px 10px rgba(255,255,255,0.1); position: relative; overflow: hidden; flex-wrap: wrap; gap: 12px; }
        .dynamic-tailored-banner::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 50% 50%, rgba(176, 155, 128, 0.15), transparent 60%); animation: rotateGlow 10s linear infinite; pointer-events: none; }
        @keyframes rotateGlow { 100% { transform: rotate(360deg); } }
        .banner-core { display: flex; align-items: center; gap: 14px; position: relative; z-index: 2; }
        .pulse-ring { width: 36px; height: 36px; border-radius: 50%; background: rgba(176, 155, 128, 0.15); border: 1px solid rgba(176, 155, 128, 0.3); display: flex; align-items: center; justify-content: center; color: var(--gold-light); font-size: 0.9rem; box-shadow: 0 0 15px rgba(176, 155, 128, 0.4); animation: pulseMagic 2s infinite alternate ease-in-out; }
        @keyframes pulseMagic { 0% { transform: scale(0.95); box-shadow: 0 0 10px rgba(176, 155, 128, 0.2); } 100% { transform: scale(1.05); box-shadow: 0 0 25px rgba(176, 155, 128, 0.8); } }
        .banner-message { font-size: 0.9rem; color: #F2F0ED; font-weight: 500; line-height: 1.3; }
        .glowing-sqft { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: var(--gold-main); text-shadow: 0 0 12px rgba(176, 155, 128, 0.6); margin: 0 3px;}
        .pricing-info-trigger { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #FFF; padding: 8px 16px; border-radius: 50px; font-family: 'Lato', sans-serif; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: 0.3s; display: flex; align-items: center; gap: 6px; position: relative; z-index: 2; backdrop-filter: blur(10px); }
        .pricing-info-trigger i { color: var(--gold-main); }
        .pricing-info-trigger:hover { background: rgba(255,255,255,0.2); border-color: var(--gold-main); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.3); }

        /* Package Toggle */
        .package-toggle { display: flex; background: rgba(255, 255, 255, 0.4); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.6); border-radius: 50px; padding: 6px; position: relative; max-width: 400px; box-shadow: inset 0 2px 10px rgba(0,0,0,0.05); }
        .pkg-tab { flex: 1; padding: 14px; text-align: center; border: none; background: transparent; font-family: 'Lato', sans-serif; font-weight: 800; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; color: #8C8276; cursor: pointer; transition: 0.3s; position: relative; z-index: 2; border-radius: 50px; }
        .pkg-tab.active { color: var(--text-dark); }
        .toggle-glider { position: absolute; top: 6px; bottom: 6px; width: calc(50% - 6px); background: #fff; border-radius: 50px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1); z-index: 1; border: 1px solid var(--gold-main); }
        .package-toggle.toggle-bundle .toggle-glider { transform: translateX(100%); }

        /* HERO PRICING CARD */
        .hero-pricing-card { background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(20px); border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(43, 36, 32, 0.08), inset 0 2px 5px rgba(255,255,255,0.5); border: 1px solid var(--gold-main); transition: var(--transition-smooth); position: relative; margin-bottom: 20px; display: flex; flex-direction: column; }
        .hero-pricing-card:hover { box-shadow: 0 25px 60px rgba(176, 155, 128, 0.2); transform: translateY(-3px); }
        
        .hero-image-container { position: relative; width: 100%; display: flex; flex-direction: column; }
        .mobile-toggle-wrap { padding: 15px 15px 0 15px; }

        .hero-slider { position: relative; width: 100%; aspect-ratio: 3 / 2; height: auto; overflow: hidden; }
        .slider-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; height: 100%; cursor: pointer;}
        .slider-track::-webkit-scrollbar { display: none; }
        .slider-track img { flex: 0 0 100%; width: 100%; height: 100%; object-fit: cover; scroll-snap-align: center; }
        .hero-slider::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 70%; background: linear-gradient(to top, rgba(20,15,12,0.95) 0%, rgba(20,15,12,0.5) 40%, rgba(20,15,12,0) 100%); pointer-events: none; z-index: 5; }
        
        .slider-dots { position: absolute; top: 15px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; z-index: 10; }
        .slider-dots .dot { width: 8px; height: 8px; background: rgba(255,255,255,0.4); border-radius: 50%; transition: 0.3s; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
        .slider-dots .dot.active { background: #fff; transform: scale(1.3); box-shadow: 0 2px 5px rgba(0,0,0,0.5); }
        
        .hero-overlay-content { position: absolute; bottom: 15px; left: 20px; right: 20px; z-index: 15; display: flex; flex-direction: column; gap: 15px; pointer-events: auto; }
        .hero-header-row { display: flex; justify-content: space-between; align-items: flex-end; width: 100%; color: #fff; }
        .hero-header-row h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; margin: 0; color: #FFF; line-height: 1.1; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        .hero-overlay-price { display: flex; flex-direction: column; align-items: flex-end; }
        .hero-overlay-price .strike-price { font-size: 1rem; color: rgba(255,255,255,0.7); text-decoration: line-through; margin-bottom: -5px; font-family: 'Lato', sans-serif; font-weight: 700; }
        .hero-overlay-price #hero-pkg-price { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 700; color: var(--gold-light); line-height: 1; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        
        .btn-reveal-features { align-self: flex-start; background: rgba(255,255,255,0.15); backdrop-filter: blur(15px) saturate(150%); border: 1px solid rgba(255,255,255,0.3); color: #FFF; padding: 10px 18px; border-radius: 50px; font-family: 'Lato', sans-serif; font-weight: 800; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: var(--transition-smooth); box-shadow: 0 4px 15px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 8px; }
        .btn-reveal-features:hover { background: rgba(255,255,255,0.3); border-color: var(--gold-main); color: var(--gold-light); transform: translateY(-2px); }
        .btn-reveal-features i { color: var(--gold-main); }

        .features-glass-panel { position: absolute; inset: 0; background: rgba(20, 15, 12, 0.8); backdrop-filter: blur(25px) saturate(150%); z-index: 20; display: flex; flex-direction: column; padding: 25px; transform: translateY(100%); opacity: 0; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); pointer-events: none; border-radius: 20px 20px 0 0; }
        .features-glass-panel.active { transform: translateY(0); opacity: 1; pointer-events: auto; }
        .features-glass-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 15px; }
        .features-glass-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: #FFF; margin: 0; }
        .btn-close-features { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); width: 36px; height: 36px; border-radius: 50%; color: #FFF; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: 0.3s; }
        .btn-close-features:hover { background: var(--gold-main); border-color: var(--gold-main); transform: rotate(90deg); }
        
        .hero-features { display: flex; flex-wrap: wrap; gap: 10px; overflow-y: auto; align-content: flex-start; scrollbar-width: none; }
        .hero-features::-webkit-scrollbar { display: none; }
        .feature-item { padding: 8px 16px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50px; font-size: 0.85rem; font-weight: 700; color: #FFF; display: flex; align-items: center; gap: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
        .feature-item i { color: var(--gold-light); font-size: 1.1rem; text-shadow: 0 0 10px rgba(176,155,128,0.5); }

        .hero-card-footer { padding: 20px; background: #FFF; z-index: 10; display: flex; align-items: center; justify-content: center; }
        
        .btn-add-addons { width: 100%; background: linear-gradient(135deg, rgba(176, 155, 128, 0.2), rgba(163, 143, 117, 0.4)); border: 1px solid var(--gold-main); color: var(--text-dark); padding: 16px; border-radius: 12px; font-family: 'Lato', sans-serif; font-weight: 900; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: 0.3s; display: flex; justify-content: center; align-items: center; gap: 8px; box-shadow: 0 4px 15px rgba(176, 155, 128, 0.2); animation: gentlePulse 2s infinite alternate;}
        .btn-add-addons i { font-size: 1.2rem; color: var(--gold-main); }
        .btn-add-addons:hover { background: var(--gold-main); color: #FFF; box-shadow: 0 5px 15px rgba(176, 155, 128, 0.4); transform: translateY(-2px); animation: none;}
        .btn-add-addons:hover i { color: #FFF; }
        @keyframes gentlePulse { 0% { box-shadow: 0 0 0 0 rgba(176, 155, 128, 0.4); } 100% { box-shadow: 0 0 0 10px rgba(176, 155, 128, 0); } }

        /* =========================================================
           SEAMLESS MODALS (GLASSMORPHIC)
           ========================================================= */
        .modal-overlay {
            position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.4); backdrop-filter: blur(10px);
            z-index: 9999; display: flex; align-items: center; justify-content: center;
            opacity: 0; visibility: hidden; transition: var(--transition-smooth);
        }
        .modal-overlay.active { opacity: 1; visibility: visible; }
        .modal-content {
            background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(40px) saturate(150%);
            border: 1px solid var(--glass-border); border-radius: 24px;
            width: 90%; max-width: 550px; max-height: 85vh; display: flex; flex-direction: column;
            transform: translateY(50px); transition: var(--transition-smooth);
            box-shadow: 0 30px 60px rgba(0,0,0,0.2), inset 0 2px 10px rgba(255,255,255,0.5);
            overflow: hidden;
        }
        .modal-overlay.active .modal-content { transform: translateY(0); }
        
        .modal-header { padding: 25px 30px; border-bottom: 1px solid rgba(163, 143, 117, 0.4); display: flex; justify-content: space-between; align-items: center; background: rgba(255,255,255,0.5); }
        .modal-header h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; margin: 0; color: var(--text-dark); }
        .btn-close-modal { background: rgba(163, 143, 117, 0.2); border: none; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text-dark); transition: 0.2s; font-size: 1.1rem; }
        .btn-close-modal:hover { background: var(--gold-main); color: #FFF; transform: rotate(90deg); }
        .modal-scroll-area { padding: 20px 30px; overflow-y: auto; flex: 1; scrollbar-width: none; }
        .modal-scroll-area::-webkit-scrollbar { display: none; }

        .accordion-item { border: 1px solid rgba(163, 143, 117, 0.4); border-radius: 16px; margin-bottom: 15px; background: rgba(255,255,255,0.4); overflow: hidden; transition: 0.3s; }
        .accordion-item.active { background: #FFF; border-color: var(--gold-main); box-shadow: 0 10px 20px rgba(176, 155, 128, 0.1); }
        .accordion-header { padding: 20px; font-weight: 800; color: var(--text-dark); display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; user-select: none; }
        .accordion-header i { transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); color: var(--gold-dark); font-size: 1.2rem; }
        .accordion-item.active .accordion-header i { transform: rotate(180deg); color: var(--gold-main); }
        .accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1); padding: 0 20px; opacity: 0; }
        .accordion-item.active .accordion-body { max-height: 800px; padding-bottom: 20px; opacity: 1; }

        .modal-footer { padding: 20px 30px; border-top: 1px solid rgba(163, 143, 117, 0.4); background: rgba(255,255,255,0.8); display: flex; justify-content: space-between; align-items: center; }
        .modal-footer-label { font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: #8C8276; display: block; margin-bottom: 4px; }
        .modal-footer-total { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; color: var(--text-dark); line-height: 1; }

        /* Minimalist Pricing Modal Styles */
        .minimal-pricing-list { display: flex; flex-direction: column; gap: 15px; margin-top: 10px; }
        .m-tier { display: flex; flex-direction: column; padding: 12px; background: rgba(255,255,255,0.05); border-radius: 12px; border: 1px solid rgba(176, 155, 128, 0.2); transition: 0.3s; }
        .m-tier:hover { background: rgba(176, 155, 128, 0.1); border-color: rgba(176, 155, 128, 0.4); transform: translateY(-2px); }
        .m-tier-top { display: flex; align-items: flex-end; justify-content: space-between; width: 100%; margin-bottom: 4px; }
        .m-sqft { font-family: 'Lato', sans-serif; font-weight: 800; font-size: 1.05rem; color: #FFF; letter-spacing: 0.5px;}
        .m-dots { flex-grow: 1; border-bottom: 1px dotted rgba(176, 155, 128, 0.4); margin: 0 12px 6px 12px; }
        .m-price { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--gold-main); line-height: 1; }
        .m-sub { font-size: 0.75rem; color: rgba(255,255,255,0.6); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

        /* Add-ons styling inside Accordion */
        .product-card { background: rgba(255, 255, 255, 0.6); border: 1px solid rgba(163, 143, 117, 0.5); border-radius: 12px; padding: 15px; display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; cursor: pointer; transition: 0.3s; }
        .product-card:last-child { margin-bottom: 0; }
        .product-card:hover { background: #FFF; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
        .product-card.selected { background: #FFF; border-color: var(--gold-main); box-shadow: 0 5px 15px rgba(176, 155, 128, 0.15); }
        .prod-info h3 { font-family: 'Lato', sans-serif; font-weight: 800; font-size: 1rem; color: var(--text-dark); margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
        .prod-info h3 i { color: var(--gold-main); font-size: 1.1rem; }
        .prod-info p { font-size: 0.75rem; color: #8C8276; line-height: 1.4; }
        .prod-action { display: flex; align-items: center; gap: 15px; }
        .prod-price { font-weight: 800; font-size: 1rem; color: var(--text-dark); display: flex; flex-direction: column; align-items: flex-end; }
        .strike-price { font-size: 0.7rem; text-decoration: line-through; color: #9C948C; font-weight: 400; }
        .check-circle { width: 22px; height: 22px; border-radius: 50%; border: 2px solid #D9D2C9; display: flex; align-items: center; justify-content: center; transition: 0.2s; position: relative; }
        .check-circle i { color: #FFF; font-size: 0.6rem; opacity: 0; transform: scale(0.5); transition: 0.2s; }
        .product-card.selected .check-circle { background: var(--gold-main); border-color: var(--gold-main); }
        .product-card.selected .check-circle i { opacity: 1; transform: scale(1); }

        /* Tier Grid for Addons */
        .tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); gap: 10px; padding-top: 15px; border-top: 1px solid rgba(163, 143, 117, 0.3); margin-top: 15px; animation: fadeIn 0.3s ease; }
        .tier-card { position: relative; background: rgba(255,255,255,0.4); border: 1px solid rgba(176,155,128,0.4); border-radius: 12px; padding: 15px 10px; text-align: center; cursor: pointer; transition: 0.3s; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.02); }
        .tier-card:hover { background: rgba(255,255,255,0.8); border-color: var(--gold-main); transform: translateY(-2px); }
        .tier-card.selected { background: var(--gold-main); border-color: var(--gold-main); box-shadow: 0 5px 15px rgba(176,155,128,0.4); transform: translateY(-2px); }
        .t-qty { display: block; font-family: 'Lato', sans-serif; font-weight: 800; font-size: 0.95rem; color: var(--text-dark); margin-bottom: 5px; transition: 0.3s;}
        .t-price { display: block; font-size: 0.85rem; color: var(--text-grey); font-weight: 700; transition: 0.3s;}
        .tier-card.selected .t-qty, .tier-card.selected .t-price { color: #FFF; }
        .t-check { position: absolute; top: -10px; right: -10px; width: 22px; height: 22px; background: #FFF; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; }
        .tier-card.selected .t-check { top: 6px; right: 6px; opacity: 1; color: var(--gold-main); font-size: 0.6rem; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }

        /* Summary Receipt Styles for Modal */
        .receipt-body { padding: 0; display: flex; flex-direction: column; gap: 20px; }
        .receipt-detail-group { display: flex; gap: 15px; align-items: flex-start; }
        .receipt-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(176, 155, 128, 0.15); color: var(--gold-dark); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; border: 1px solid rgba(176, 155, 128, 0.3); }
        .receipt-text { flex: 1; }
        .receipt-label { font-size: 0.7rem; text-transform: uppercase; font-weight: 900; color: #8C8276; letter-spacing: 1.5px; margin-bottom: 2px; }
        .receipt-value { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); line-height: 1.3; }
        .receipt-value-sub { font-size: 0.85rem; color: #5E544F; font-weight: 400; display: block; margin-top: 2px; }
        .receipt-items-box { background: rgba(255,255,255,0.4); border-radius: 12px; padding: 15px; border: 1px solid rgba(255, 255, 255, 0.6); box-shadow: inset 0 2px 10px rgba(0,0,0,0.02); }
        .receipt-item-row { display: flex; justify-content: space-between; font-size: 0.9rem; margin-bottom: 10px; color: var(--text-dark); font-weight: 600; }
        .receipt-item-row:last-child { margin-bottom: 0; }

        /* =========================================================
           GLASS CALENDAR & FLEXIBLE WINDOW
           ========================================================= */
        .schedule-tabs { display: flex; gap: 10px; margin-bottom: 15px; background: rgba(255,255,255,0.4); padding: 6px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.6); backdrop-filter: blur(10px); }
        .sch-tab { flex: 1; padding: 14px; border: none; background: transparent; font-family: 'Lato', sans-serif; font-weight: 800; font-size: 0.85rem; color: #8C8276; border-radius: 8px; cursor: pointer; transition: 0.3s; text-transform: uppercase; letter-spacing: 1px; }
        .sch-tab:hover { color: var(--text-dark); }
        .sch-tab.active { background: #FFFFFF; color: var(--gold-dark); box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
        .sch-panel { display: none; animation: fadeIn 0.4s ease forwards; background: transparent; padding: 0; border: none; }
        .sch-panel.active { display: block; }
        
        .calendar-container { background: linear-gradient(135deg, rgba(43, 36, 32, 0.95), rgba(20, 15, 12, 0.98)); backdrop-filter: blur(25px) saturate(150%); border: 1px solid rgba(176, 155, 128, 0.4); border-radius: 20px; padding: 25px; margin-bottom: 25px; box-shadow: 0 20px 50px rgba(0,0,0,0.2), inset 0 2px 10px rgba(255,255,255,0.1); position: relative; overflow: hidden;}
        .calendar-container::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 50% 50%, rgba(176, 155, 128, 0.08), transparent 60%); pointer-events: none; z-index: 0;}
        .calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; position: relative; z-index: 1;}
        .calendar-header .pill-btn { background: rgba(255,255,255,0.1); color: #FFF; border: 1px solid rgba(255,255,255,0.2); border-radius: 10px; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; transition: 0.3s;}
        .calendar-header .pill-btn:hover { background: var(--gold-main); border-color: var(--gold-main); transform: scale(1.05); }
        .calendar-month-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: #FFF; letter-spacing: 1px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
        
        .calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; position: relative; z-index: 1;}
        .calendar-day-name { text-align: center; font-size: 0.7rem; font-weight: 900; color: rgba(255,255,255,0.5); text-transform: uppercase; margin-bottom: 15px; letter-spacing: 1px; }
        
        .calendar-date { padding: 12px 0; text-align: center; border-radius: 12px; cursor: pointer; font-family: 'Lato', sans-serif; font-weight: 700; font-size: 1rem; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); border: 1px solid rgba(255,255,255,0.05); color: #FFF; background: rgba(255,255,255,0.03); }
        .calendar-date:hover:not(.disabled):not(.active) { border-color: rgba(176, 155, 128, 0.6); background: rgba(176, 155, 128, 0.15); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
        .calendar-date.active { background: linear-gradient(135deg, var(--gold-main), var(--gold-dark)); border-color: var(--gold-light); color: #FFF; box-shadow: 0 5px 20px rgba(176, 155, 128, 0.6), inset 0 2px 5px rgba(255,255,255,0.3); transform: translateY(-4px) scale(1.05); }
        .calendar-date.disabled { opacity: 0.2; cursor: not-allowed; background: transparent; border-color: transparent; }
        .calendar-date.in-range { background: rgba(176, 155, 128, 0.2); color: var(--gold-light); border-color: rgba(176, 155, 128, 0.3); border-radius: 6px; }
        
        .time-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 15px; min-height: 100px; justify-content: flex-start; }
        
        .time-slot { 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            background: linear-gradient(145deg, rgba(255,255,255,0.8), rgba(255,255,255,0.4)); 
            backdrop-filter: blur(10px); 
            border: 1px solid rgba(255,255,255,0.8); 
            border-radius: 50px; 
            padding: 12px 24px; 
            text-align: center; 
            font-size: 0.95rem; 
            font-weight: 800; 
            cursor: pointer; 
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); 
            color: var(--text-dark); 
            box-shadow: 0 5px 15px rgba(0,0,0,0.05), inset 0 2px 5px rgba(255,255,255,0.8); 
            animation: fadeInUp 0.4s ease forwards; 
            opacity: 0; 
            transform: translateY(10px); 
        }
        @keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
        .time-slot:nth-child(1) { animation-delay: 0.05s; } .time-slot:nth-child(2) { animation-delay: 0.1s; } .time-slot:nth-child(3) { animation-delay: 0.15s; } .time-slot:nth-child(4) { animation-delay: 0.2s; } .time-slot:nth-child(5) { animation-delay: 0.25s; }

        .time-slot:hover { border-color: var(--gold-main); background: #FFF; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(176, 155, 128, 0.2); }
        .time-slot.active { background: linear-gradient(135deg, var(--gold-main), var(--gold-dark)); border-color: var(--gold-light); color: #FFF; box-shadow: 0 8px 25px rgba(176, 155, 128, 0.5), inset 0 2px 5px rgba(255,255,255,0.3); transform: translateY(-3px); }
        .time-empty-state { grid-column: 1 / -1; text-align: center; color: #8C8276; font-style: italic; padding: 30px; font-size: 0.95rem; background: rgba(255,255,255,0.4); border-radius: 16px; border: 1px dashed rgba(176,155,128,0.4); }

        .flex-window-selector { display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.6); border-radius: 20px; padding: 10px; margin-bottom: 25px; backdrop-filter: blur(10px); box-shadow: inset 0 2px 10px rgba(0,0,0,0.02); position: relative;}
        .flex-node { display: flex; align-items: center; gap: 12px; flex: 1; padding: 12px; border-radius: 14px; cursor: pointer; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); border: 1px solid transparent; background: transparent; }
        .flex-node:hover { background: rgba(255,255,255,0.6); }
        .flex-node.active-target { background: #FFF; border-color: var(--gold-main); box-shadow: 0 10px 20px rgba(176, 155, 128, 0.15); transform: translateY(-2px); }
        .node-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(176, 155, 128, 0.15); color: var(--gold-main); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: 0.3s; }
        .flex-node.active-target .node-icon { background: var(--gold-main); color: #FFF; box-shadow: 0 0 15px rgba(176, 155, 128, 0.4); }
        .node-content { display: flex; flex-direction: column; text-align: left;}
        .node-label { font-size: 0.65rem; text-transform: uppercase; font-weight: 800; color: #8C8276; letter-spacing: 1px; margin-bottom: 2px; }
        .node-val { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; color: var(--text-dark); line-height: 1; }
        .flex-connector { width: 30px; height: 2px; background: rgba(163, 143, 117, 0.3); margin: 0 5px; position: relative; border-radius: 2px; }

        .sch-note { font-size: 0.85rem; color: #5E544F; font-style: italic; line-height: 1.4; margin-bottom: 20px; display: flex; gap: 8px; align-items: flex-start;}

        .schedule-summary-box { background: rgba(255,255,255,0.6); backdrop-filter: blur(10px); border: 1px solid var(--gold-main); border-radius: 12px; padding: 15px 20px; margin-bottom: 25px; display: flex; align-items: center; gap: 15px; box-shadow: 0 5px 15px rgba(176, 155, 128, 0.1); }
        .schedule-summary-icon { font-size: 1.8rem; color: var(--gold-main); }
        .schedule-summary-text { display: flex; flex-direction: column; }
        .schedule-summary-title { font-size: 0.75rem; text-transform: uppercase; font-weight: 800; color: #8C8276; letter-spacing: 1px; margin-bottom: 3px;}
        .schedule-summary-details { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--text-dark); line-height: 1.2; }

        /* The Readiness Guarantee (Step 5) */
        .readiness-guarantee { display: flex; align-items: flex-start; gap: 15px; background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,255,255,0.5)); border: 2px solid rgba(176, 155, 128, 0.3); border-radius: 16px; padding: 20px; margin-bottom: 25px; cursor: pointer; transition: 0.3s; transform-style: preserve-3d; }
        .readiness-guarantee:not(.checked) { animation: gentleNeonPulse 2s infinite alternate; }
        @keyframes gentleNeonPulse { 0% { box-shadow: 0 0 0 0 rgba(176, 155, 128, 0.4); } 100% { box-shadow: 0 0 0 8px rgba(176, 155, 128, 0); } }
        .readiness-guarantee.checked { border-color: var(--gold-main); box-shadow: 0 10px 30px rgba(176, 155, 128, 0.2), inset 0 0 15px rgba(176, 155, 128, 0.1); animation: none; transform: translateY(-2px); }
        .rg-checkbox { width: 24px; height: 24px; min-width: 24px; border: 2px solid var(--gold-main); border-radius: 6px; display: flex; align-items: center; justify-content: center; transition: 0.2s; background: rgba(255,255,255,0.5); margin-top: 2px;}
        .rg-checkbox i { color: #FFF; font-size: 0.8rem; opacity: 0; transform: scale(0.5); transition: 0.2s; }
        .readiness-guarantee.checked .rg-checkbox { background: var(--gold-main); }
        .readiness-guarantee.checked .rg-checkbox i { opacity: 1; transform: scale(1); }
        .rg-text h4 { font-family: 'Lato', sans-serif; font-size: 1rem; font-weight: 800; color: var(--text-dark); margin-bottom: 5px; }
        .rg-text p { font-size: 0.85rem; color: #5E544F; line-height: 1.4; margin: 0;}

        /* BUTTONS */
        .lux-btn { position: relative; width: 100%; padding: 20px; background: linear-gradient(135deg, rgba(61, 52, 48, 0.95), rgba(43, 36, 32, 1)); color: #F2F0ED; border: 1px solid rgba(255, 255, 255, 0.2); border-top: 1px solid rgba(255, 255, 255, 0.4); border-radius: 12px; font-size: 0.9rem; font-family: 'Lato', sans-serif; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; overflow: hidden; transition: all 0.4s ease; display: flex; justify-content: center; align-items: center; gap: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.2); }
        .lux-btn:hover:not(:disabled) { transform: translateY(-3px); background: linear-gradient(135deg, rgba(176, 155, 128, 0.9), rgba(61, 52, 48, 0.95)); box-shadow: 0 15px 35px rgba(176, 155, 128, 0.3); border-color: var(--gold-main); }
        .lux-btn:disabled { background: #D9D2C9; color: #9C948C; cursor: not-allowed; box-shadow: none; }
        .glass-shimmer { position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.3) 50%, rgba(255,255,255,0)); transform: skewX(-25deg); animation: glassRefract 3s infinite ease-in-out; pointer-events: none; }
        @keyframes glassRefract { 0% { left: -100%; opacity: 0; } 50% { opacity: 1; } 100% { left: 200%; opacity: 0; } }

        /* Mind-Boggling Travel Stats Banner */
        .travel-stats-banner { display: flex; align-items: center; justify-content: space-around; background: linear-gradient(135deg, rgba(176, 155, 128, 0.15), rgba(10, 8, 6, 0.8)); border: 1px solid rgba(176, 155, 128, 0.4); border-radius: 20px; padding: 25px 20px; position: relative; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.4), inset 0 2px 20px rgba(176, 155, 128, 0.15); }
        .travel-stats-banner::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 50% 50%, rgba(176, 155, 128, 0.25), transparent 60%); animation: rotateGlow 10s linear infinite; pointer-events: none; }
        .stat-block { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 2; }
        .stat-label { font-size: 0.8rem; text-transform: uppercase; font-weight: 900; color: rgba(255,255,255,0.6); letter-spacing: 2px; margin-bottom: 8px; }
        .stat-value { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 700; color: #FFF; line-height: 1; text-shadow: 0 4px 15px rgba(0,0,0,0.6); display: flex; align-items: baseline; gap: 6px; }
        .stat-value.highlight { color: var(--gold-light); text-shadow: 0 0 30px rgba(176, 155, 128, 0.8); }
        .stat-unit { font-family: 'Lato', sans-serif; font-size: 1rem; color: rgba(255,255,255,0.7); font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
        .stat-divider { width: 2px; height: 70px; background: linear-gradient(to bottom, transparent, rgba(176, 155, 128, 0.5), transparent); position: relative; z-index: 2; }
        #travel-modal-overlay .btn-toggle-tiers { color: #FFF !important; border-color: rgba(255,255,255,0.2) !important; background: rgba(255,255,255,0.05) !important; }
        #travel-modal-overlay .btn-toggle-tiers:hover { background: rgba(176, 155, 128, 0.2) !important; border-color: var(--gold-main) !important; color: var(--gold-main) !important; }
        #travel-modal-overlay .travel-desc { color: rgba(255,255,255,0.85) !important; }

        /* =========================================================
           SOCIAL MEDIA UPSELL MODAL
           ========================================================= */
        #upsell-modal-overlay .modal-content {
            padding: 0;
            background: #0A0806;
            border: 1px solid var(--gold-main);
            max-width: 420px; 
            overflow: hidden;
        }

        .upsell-video-container {
            position: relative;
            width: 100%;
            aspect-ratio: 9/16;
            max-height: 80vh;
            background: #000;
            overflow: hidden;
        }

        .upsell-video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .upsell-video-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 80px 30px 30px 30px;
            background: linear-gradient(to top, rgba(10,8,6,1) 0%, rgba(10,8,6,0.85) 40%, transparent 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .upsell-upgrade-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(176, 155, 128, 0.3);
            border-radius: 12px;
            padding: 20px;
            cursor: pointer;
            transition: var(--transition-smooth);
        }

        .upsell-upgrade-card:hover {
            background: rgba(176, 155, 128, 0.15);
            border-color: var(--gold-main);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(176, 155, 128, 0.15);
        }

        /* =========================================================
           STRICT DESKTOP UI (Min-width: 901px)
           ========================================================= */
        @media (min-width: 901px) {
            body { padding: 40px 20px; padding-bottom: 100px; }
            .super-wrapper { width: 100%; max-width: 1400px; margin: 0 auto; flex: 1; }
            .global-header { justify-content: center; padding-top: 0; margin-bottom: 30px; position: relative; }
            .app-wrapper { position: relative; width: 100%; max-width: 850px; transition: var(--transition-smooth); display: flex; flex-direction: column; flex: 1; margin: 0 auto; }
            .app-wrapper.expanded { max-width: 1100px; }
            
            .dynamic-island-container { gap: 12px; padding: 8px 16px; height: 60px; border-radius: 60px; }
            .island-brand { display: flex; align-items: center; gap: 10px; padding-right: 18px; margin-right: 5px; border-right: 1px solid rgba(255,255,255,0.2); height: 44px; pointer-events: none;}
            .island-brand img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
            .island-brand span { font-family: 'Lato', sans-serif; font-weight: 900; font-size: 0.85rem; letter-spacing: 0.5px; color: #FFF; text-transform: uppercase; white-space: nowrap; }

            .di-step { height: 44px; min-width: 44px; max-width: 44px; }
            .di-icon { width: 44px; height: 44px; min-width: 44px; font-size: 1.1rem; } 
            .di-step.active { max-width: 200px; }
            .di-text { font-size: 0.85rem; padding-right: 20px; }
            .di-back-btn i { font-size: 1.1rem; }
            
            .di-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.2); margin: 0 5px; }
            .di-summary-btn { 
                max-width: 250px !important; 
                background: linear-gradient(135deg, rgba(176, 155, 128, 0.2), rgba(163, 143, 117, 0.4)); 
                border: 1px solid rgba(176, 155, 128, 0.5); 
                box-shadow: 0 0 15px rgba(176, 155, 128, 0.3); 
                padding-right: 18px;
            }
            .di-summary-label { color: #FFF; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-right: 8px; white-space: nowrap; opacity: 0.9; transition: var(--transition-smooth); }
            .di-summary-btn .di-text { color: var(--gold-light); font-size: 0.95rem; opacity: 1; max-width: 100px; padding-right: 0; }
            .di-summary-btn:hover { background: var(--gold-main); transform: translateY(-2px); box-shadow: 0 5px 20px rgba(176, 155, 128, 0.5); }
            .di-summary-btn:hover .di-icon, .di-summary-btn:hover .di-text, .di-summary-btn:hover .di-summary-label { color: #FFF; opacity: 1; }

            .glass-panel { background: var(--glass-bg); backdrop-filter: blur(60px) saturate(150%); border: 1px solid var(--glass-border); border-radius: 24px; padding: 25px 40px 40px 40px; box-shadow: 0 30px 60px rgba(43, 36, 32, 0.08), inset 0 2px 20px rgba(255, 255, 255, 0.6); width: 100%; transition: opacity 0.4s ease, transform 0.4s ease; }
            .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 15px; }
            .full-width { grid-column: 1 / -1; }
            .col-main { flex: 1; display: flex; flex-direction: column; gap: 20px; align-items: center; width: 100%;}
            
            #step-1-search-mode, #step-1-confirm-mode, #step-products-content, #step-schedule-content, #step-contact-content, #step-summary-content { width: 100%; max-width: 700px; margin: 0 auto; }
            #step-products-content { max-width: 800px; } 

            .hero-pricing-card { border-radius: 24px; border-width: 2px; }
            .hero-image-container { position: relative; }
            .hero-slider { width: 100%; aspect-ratio: 16 / 10; border-radius: 22px 22px 0 0; }
            .hero-slider::after { height: 100%; background: linear-gradient(to top, rgba(20,15,12,0.95) 0%, rgba(20,15,12,0.3) 50%, rgba(20,15,12,0.7) 100%); }
            
            .mobile-toggle-wrap { position: absolute; top: 30px; left: 0; right: 0; z-index: 10; display: flex; justify-content: center; padding: 0; }
            .package-toggle { background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(15px); }
            .pkg-tab { color: #FFF; }
            .pkg-tab.active { color: var(--text-dark); }
            .toggle-glider { background: rgba(255,255,255,0.95); }

            .hero-overlay-content { bottom: 35px; left: 40px; right: 40px; }
            .hero-header-row h2 { font-size: 3rem; text-shadow: 0 4px 15px rgba(0,0,0,0.8); }
            .hero-overlay-price #hero-pkg-price { font-size: 3.5rem; text-shadow: 0 4px 15px rgba(0,0,0,0.8); }
            
            .btn-reveal-features { font-size: 0.95rem; padding: 12px 24px; margin-top: 10px; }
            .features-glass-panel { padding: 40px; }
            .features-glass-header h3 { font-size: 2rem; }
            .feature-item { font-size: 1rem; padding: 10px 20px; }

            .hero-card-footer { padding: 30px; }
            .btn-view-addons { padding: 20px; font-size: 1rem; }
            
            /* Shrink Time Bubbles on Desktop */
            .time-grid { gap: 10px !important; }
            .time-slot { padding: 10px 20px !important; font-size: 0.85rem !important; }
            
            /* MIND-BOGGLING SUMMARY MODAL (DESKTOP) */
            #summary-modal-overlay.active, #pricing-modal-overlay.active, #travel-modal-overlay.active { background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(15px); }
            #summary-modal-overlay .modal-content, #pricing-modal-overlay .modal-content, #travel-modal-overlay .modal-content { background: rgba(20, 15, 12, 0.85); backdrop-filter: blur(50px) saturate(200%); border: 1px solid rgba(176, 155, 128, 0.6); box-shadow: 0 50px 100px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.1) inset, 0 0 50px rgba(176, 155, 128, 0.25); border-radius: 30px; transform: scale(0.9) translateY(50px) rotateX(15deg); opacity: 0; transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); perspective: 1000px; }
            #summary-modal-overlay.active .modal-content, #pricing-modal-overlay.active .modal-content, #travel-modal-overlay.active .modal-content { transform: scale(1) translateY(0) rotateX(0deg); opacity: 1; }
            
            #summary-modal-overlay .modal-header, #pricing-modal-overlay .modal-header, #travel-modal-overlay .modal-header { background: linear-gradient(to bottom, rgba(176, 155, 128, 0.15), transparent); border-bottom: 1px solid rgba(176, 155, 128, 0.3); padding: 30px 40px; }
            #summary-modal-overlay .modal-header h2, #pricing-modal-overlay .modal-header h2, #travel-modal-overlay .modal-header h2 { color: #FFF; font-size: 2.2rem; text-shadow: 0 2px 10px rgba(176, 155, 128, 0.5); }
            #summary-modal-overlay .btn-close-modal, #pricing-modal-overlay .btn-close-modal, #travel-modal-overlay .btn-close-modal { color: #FFF; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); width: 44px; height: 44px; }
            #summary-modal-overlay .btn-close-modal:hover, #pricing-modal-overlay .btn-close-modal:hover, #travel-modal-overlay .btn-close-modal:hover { background: var(--gold-main); border-color: var(--gold-main); }
            
            #summary-modal-overlay .modal-scroll-area, #pricing-modal-overlay .modal-scroll-area, #travel-modal-overlay .modal-scroll-area { padding: 30px 40px; }
            #summary-modal-overlay .receipt-label { color: var(--gold-main); }
            #summary-modal-overlay .receipt-value { color: #FFF; }
            #summary-modal-overlay .receipt-value-sub { color: rgba(255,255,255,0.6); }
            #summary-modal-overlay .receipt-icon { background: rgba(176, 155, 128, 0.15); color: var(--gold-light); border-color: rgba(176, 155, 128, 0.3); }
            
            #summary-modal-overlay .receipt-items-box { background: rgba(255,255,255,0.03); border: 1px solid rgba(176, 155, 128, 0.2); padding: 25px; border-radius: 20px;}
            #summary-modal-overlay .receipt-item-row { color: #FFF; font-size: 1rem; margin-bottom: 15px; }
            
            #summary-modal-overlay .modal-footer, #pricing-modal-overlay .modal-footer, #travel-modal-overlay .modal-footer { background: rgba(10, 8, 6, 0.95); border-top: 1px solid rgba(176, 155, 128, 0.4); padding: 30px 40px; }
            #summary-modal-overlay .modal-footer-label { color: rgba(255,255,255,0.5); }
            #summary-modal-overlay .modal-footer-total { color: var(--gold-light); text-shadow: 0 2px 15px rgba(176, 155, 128, 0.4); font-size: 2.8rem; }
            #summary-modal-overlay .lux-btn, #pricing-modal-overlay .lux-btn, #travel-modal-overlay .lux-btn { background: linear-gradient(135deg, var(--gold-main), var(--gold-dark)); color: var(--text-dark); border: none; font-size: 1rem; box-shadow: 0 10px 30px rgba(176, 155, 128, 0.3); }
            #summary-modal-overlay .lux-btn:hover, #pricing-modal-overlay .lux-btn:hover, #travel-modal-overlay .lux-btn:hover { box-shadow: 0 15px 40px rgba(176, 155, 128, 0.5); transform: translateY(-3px); }
        }

        /* =========================================================
           STRICT MOBILE UI (Max-width: 900px)
           ========================================================= */
           /* Add this at the very top of your mobile media query, right inside @media (max-width: 900px) */
html, body {
    background-color: var(--bg-color);
}

/* Replace your existing body.step1-locked with this: */
body.step1-locked { 
    overflow: hidden !important; 
    height: 100dvh !important; 
    width: 100vw !important;
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    touch-action: none; 
}
body.step1-locked .autocomplete-dropdown { 
    touch-action: auto; 
    overflow-y: auto; 
    pointer-events: auto; 
}
        @media (max-width: 900px) {
            body { padding: 0; background: var(--bg-color); } 
            
            .super-wrapper { background: rgba(255, 255, 255, 0.75); backdrop-filter: blur(40px) saturate(150%); min-height: 100vh; width: 100%; }
            .app-wrapper { width: 100%; border-radius: 0; display: flex; flex-direction: column; flex: 1; }
            
            .global-header { 
                display: block; 
                padding: calc(10px + env(safe-area-inset-top)) 15px 10px 15px; 
                margin-bottom: 0; 
                width: 100%;
            }
#travel-modal-overlay .travel-desc {
    font-size: 0.7rem !important; 
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
}
            /* THE UNIFIED MOBILE HEADER PILL */
            .mobile-header-pill {
                display: flex;
                align-items: center;
                justify-content: space-between;
                background: var(--di-bg); /* Match desktop dynamic island dark glass */
                backdrop-filter: blur(20px) saturate(150%);
                border: 1px solid rgba(255, 255, 255, 0.1);
                border-radius: 50px;
                padding: 6px;
                box-shadow: 0 15px 35px rgba(0,0,0,0.2), inset 0 2px 5px rgba(255,255,255,0.2);
                width: 100%;
                position: relative;
                z-index: 10;
            }
/* --- MOBILE UPSELL VIDEO OVERLAY FIX --- */
        .upsell-video-overlay {
            padding: 40px 20px 20px 20px !important; /* Shrinks the massive top gradient padding */
            background: linear-gradient(to top, rgba(10,8,6,1) 0%, rgba(10,8,6,0.9) 60%, transparent 100%) !important;
        }
        
        .upsell-video-overlay h2 {
            font-size: 1.5rem !important; /* Shrinks the "Stand Out" header */
            margin-bottom: 2px !important;
        }
        
        .upsell-video-overlay p {
            font-size: 0.75rem !important; /* Shrinks the description paragraph */
            margin-bottom: 12px !important;
            line-height: 1.3 !important;
        }
        
        .upsell-video-overlay .lux-btn {
            padding: 12px !important; /* Shrinks the primary Add button */
            font-size: 0.8rem !important;
            margin-bottom: 0 !important;
        }
        
        .upsell-video-overlay button:last-child {
            font-size: 0.65rem !important; /* Shrinks the "No thanks" text */
            padding: 5px !important;
            margin-top: 0 !important;
        }
        
        /* Make the upgrade cards smaller on mobile too */
        #upsell-screen-2 {
            padding: 25px 20px !important;
        }
        .upsell-upgrade-card {
            padding: 15px !important;
        }
        .upsell-upgrade-card h3 {
            font-size: 0.95rem !important;
        }
        .upsell-upgrade-card span {
            font-size: 0.95rem !important;
        }
            .mhp-brand {
                display: flex;
                align-items: center;
                gap: 8px;
                pointer-events: none;
            }

            .mhp-brand img {
                width: 36px;
                height: 36px;
                border-radius: 50%;
                box-shadow: 0 2px 5px rgba(0,0,0,0.15);
                border: 1px solid rgba(176, 155, 128, 0.4);
            }

            .mhp-brand span {
                font-family: 'Lato', sans-serif;
                font-weight: 900;
                font-size: 0.85rem; /* Match desktop sizing */
                text-transform: uppercase;
                letter-spacing: 0.5px;
                color: #FFF; /* Match desktop text color */
                white-space: nowrap;
            }

            /* Sleek Actionable Cart Button inside pill */
            .mhp-cart {
                display: flex;
                align-items: center;
                gap: 10px;
                background: linear-gradient(135deg, rgba(176, 155, 128, 0.2), rgba(163, 143, 117, 0.4)); /* Match desktop button */
                padding: 4px 6px 4px 16px;
                border-radius: 50px;
                cursor: pointer;
                border: 1px solid rgba(176, 155, 128, 0.5);
                box-shadow: 0 0 15px rgba(176, 155, 128, 0.3);
                transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            }

            .mhp-cart:active {
                transform: scale(0.95);
            }

            .mhp-cart-inner {
                display: flex;
                flex-direction: column;
                align-items: flex-end;
                justify-content: center;
            }

            .mhp-cart-label {
                font-size: 0.55rem;
                text-transform: uppercase;
                font-weight: 900;
                color: #FFF;
                opacity: 0.9;
                letter-spacing: 1px;
                margin-bottom: -2px;
            }

            .mhp-cart-total {
                font-family: 'Cormorant Garamond', serif;
                font-size: 1.15rem;
                font-weight: 700;
                color: var(--gold-light);
                line-height: 1;
            }

            .mhp-cart-icon {
                width: 28px;
                height: 28px;
                background: transparent;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #FFF;
                font-size: 0.8rem;
            }
                        
            .dynamic-island-container { display: none !important; } 

            .dev-nav-panel { display: flex; gap: 8px; justify-content: center; padding: 10px; width: 100%; flex-wrap: wrap; z-index: 50; }
            .dev-nav-btn { background: rgba(43, 36, 32, 0.8); color: #FFF; border: 1px solid var(--gold-main); border-radius: 6px; padding: 6px 12px; font-size: 0.75rem; font-weight: 800; cursor: pointer; text-transform: uppercase; backdrop-filter: blur(10px); }
            .dev-nav-btn:hover { background: var(--gold-main); }

            h1 { font-size: 2.2rem; }
            .tailored-header { margin-bottom: 20px; margin-top: 0; text-align: left; }
            .mobile-title-back { display: inline-flex !important; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.8); color: var(--text-dark); margin-right: 12px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); border: none; cursor: pointer;}
            .mobile-title-back.hidden { display: none !important; }

            .glass-panel { padding: 10px 20px 100px 20px !important; background: transparent !important; border: none !important; box-shadow: none !important; border-radius: 0 !important; }
            .form-grid { grid-template-columns: 1fr; gap: 0; }
            
            /* Lock scrolling on Step 1 for mobile */
            body.step1-locked { overflow: hidden !important; height: 100vh !important; height: 100dvh !important; position: fixed; width: 100%; touch-action: none; }
            body.step1-locked .autocomplete-dropdown { touch-action: auto; overflow-y: auto; pointer-events: auto; }
            
            .row-half { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 10px; margin-bottom: 15px; }
            .row-half .input-group { margin-bottom: 0; }
            .row-2 { grid-template-columns: 2fr 1fr; gap: 10px; }
            .row-3 { grid-template-columns: 2fr 1fr 1fr; gap: 10px; }
            .row-half .input-group input, .row-2 .input-group input, .row-3 .input-group input, .row-2 .input-group select, .row-3 .input-group select, .cs-trigger { padding: 26px 10px 10px 10px; font-size: 0.9rem; }
            .row-half .input-group label, .row-2 .input-group label, .row-3 .input-group label { left: 10px; font-size: 0.85rem; }

            .package-toggle { margin-bottom: 20px; width: 100%; }
            .pkg-tab { padding: 12px; font-size: 0.8rem; }
            .hero-pricing-card { border-radius: 24px; }
            .hero-slider { border-radius: 24px 24px 0 0; }

            .hero-overlay-content { bottom: 15px; left: 20px; right: 20px; }
            .hero-header-row h2 { font-size: 2.2rem; }
            .hero-overlay-price #hero-pkg-price { font-size: 2.4rem; }
            .btn-reveal-features { font-size: 0.75rem; padding: 8px 16px; margin-top: 5px; }

            .features-glass-panel { padding: 25px 20px; }
            .features-glass-header h3 { font-size: 1.5rem; }
            .feature-item { font-size: 0.75rem; padding: 6px 12px; }

            .hero-actions-row { flex-direction: column; }
            .btn-view-addons { width: 100%; padding: 16px;}

            .addons-modal-content { width: 100%; border-radius: 30px 30px 0 0; margin-top: auto; max-height: 90vh; transform: translateY(100%); }
            .addons-modal-overlay.active .addons-modal-content { transform: translateY(0); }

            .product-card { flex-direction: column; align-items: stretch; gap: 0;}
            .prod-info { width: 100%; margin-bottom: 12px; }
            .prod-action { width: 100%; justify-content: space-between; flex-direction: row; border-top: 1px solid rgba(163, 143, 117, 0.4); padding-top: 12px; }

            .flex-date-wrapper { flex-direction: column; }
            
            .dynamic-tailored-banner { padding: 10px 12px; gap: 8px; border-radius: 12px; margin-bottom: 15px; flex-wrap: nowrap; }
            .banner-core { gap: 8px; }
            .pulse-ring { width: 28px; height: 28px; min-width: 28px; font-size: 0.7rem; }
            .banner-message { font-size: 0.75rem; line-height: 1.2; }
            .glowing-sqft { font-size: 1.1rem; }
            .pricing-info-trigger { padding: 6px 10px; font-size: 0.65rem; gap: 4px; white-space: nowrap; }

            .flex-window-selector { padding: 8px; border-radius: 16px; }
            .flex-node { padding: 8px; gap: 8px; flex-direction: column; text-align: center; }
            .node-content { align-items: center; }
            .node-icon { width: 30px; height: 30px; font-size: 0.85rem; }
            .node-val { font-size: 1.1rem; }
            .flex-connector { width: 15px; }

            .travel-stats-banner { padding: 15px; border-radius: 16px; }
            .stat-value { font-size: 2.2rem; } 
            .stat-unit { font-size: 0.85rem; } 
            .stat-label { font-size: 0.7rem; letter-spacing: 1px; margin-bottom: 4px; }
            .stat-divider { height: 50px; }
            #travel-modal-overlay .modal-footer { padding: 20px !important; }
            
            /* MIND-BOGGLING CENTERED MOBILE SUMMARY & PRICING POPUPS */
            #summary-modal-overlay, #pricing-modal-overlay, #travel-modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; height: 100dvh; z-index: 99999 !important; display: flex; align-items: center; justify-content: center; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(15px); }
            #summary-modal-overlay .modal-content, #pricing-modal-overlay .modal-content, #travel-modal-overlay .modal-content { width: 92%; max-width: 400px; height: auto; max-height: 85dvh; border-radius: 28px; margin: auto; background: linear-gradient(180deg, rgba(25, 20, 18, 0.95) 0%, rgba(10, 8, 6, 0.98) 100%); border: 1px solid rgba(176, 155, 128, 0.4); transform: scale(0.9); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 2px 10px rgba(255,255,255,0.1); display: flex; flex-direction: column; }
            #summary-modal-overlay.active .modal-content, #pricing-modal-overlay.active .modal-content, #travel-modal-overlay.active .modal-content { transform: scale(1); }
            
            #summary-modal-overlay .modal-header, #pricing-modal-overlay .modal-header, #travel-modal-overlay .modal-header { padding: 20px 25px; border-bottom: 1px solid rgba(176, 155, 128, 0.2); background: transparent; display: flex; justify-content: space-between; align-items: center;}
            #summary-modal-overlay .modal-header h2, #pricing-modal-overlay .modal-header h2, #travel-modal-overlay .modal-header h2 { color: #FFF; font-size: 1.8rem; text-shadow: 0 2px 10px rgba(176, 155, 128, 0.3); margin: 0; }
            #summary-modal-overlay .btn-close-modal, #pricing-modal-overlay .btn-close-modal, #travel-modal-overlay .btn-close-modal { display: flex !important; background: rgba(163, 143, 117, 0.15); color: #FFF; border: 1px solid rgba(176, 155, 128, 0.3); width: 34px; height: 34px; border-radius: 50%; justify-content: center; align-items: center;}
            
            #summary-modal-overlay .modal-scroll-area, #pricing-modal-overlay .modal-scroll-area, #travel-modal-overlay .modal-scroll-area { padding: 20px 25px; flex: 1; overflow-y: auto; }
            
            #summary-modal-overlay .receipt-label { color: var(--gold-main); font-size: 0.65rem;}
            #summary-modal-overlay .receipt-value { color: #FFF; font-size: 0.95rem;}
            #summary-modal-overlay .receipt-value-sub { color: rgba(255,255,255,0.6); font-size: 0.8rem;}
            #summary-modal-overlay .receipt-icon { background: rgba(176, 155, 128, 0.15); color: var(--gold-light); border-color: rgba(176, 155, 128, 0.3); width: 36px; height: 36px; font-size: 0.9rem;}
            #summary-modal-overlay .receipt-items-box { background: rgba(255,255,255,0.03); border: 1px solid rgba(176, 155, 128, 0.2); padding: 15px; border-radius: 16px; box-shadow: 0 4px 15px rgba(0,0,0,0.2);}
            #summary-modal-overlay .receipt-item-row { color: #FFF; font-size: 0.9rem; margin-bottom: 12px; }
            
            #summary-modal-overlay .modal-footer, #pricing-modal-overlay .modal-footer, #travel-modal-overlay .modal-footer { position: relative; bottom: 0; background: rgba(0, 0, 0, 0.3); border-top: 1px solid rgba(176, 155, 128, 0.3); padding: 20px 25px; border-radius: 0 0 28px 28px; display: flex; justify-content: space-between; align-items: center;}
            #summary-modal-overlay .modal-footer-label { color: rgba(255,255,255,0.5); font-size: 0.75rem;}
            #summary-modal-overlay .modal-footer-total { color: var(--gold-light); text-shadow: 0 2px 15px rgba(176, 155, 128, 0.4); font-size: 2.2rem; margin-top: 2px;}
            #summary-modal-overlay .lux-btn, #pricing-modal-overlay .lux-btn, #travel-modal-overlay .lux-btn { background: linear-gradient(135deg, var(--gold-main), var(--gold-dark)); color: var(--text-dark); border: none; font-size: 0.9rem; box-shadow: 0 10px 25px rgba(0,0,0,0.3); padding: 12px 24px !important; margin: 0;}
            
            .floating-contact-btn { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1.2rem; }
            .contact-card-inner { padding: 40px 20px 30px 20px; }
            .contact-name { font-size: 2.2rem; }
            .cm-value { font-size: 0.95rem; }
            
            .input-group.has-icon .input-icon { top: 20px; }
            .divider-or { margin: 20px 0; }
            .btn-manual-entry { max-width: 100%; }
        }
        /* --- PREMIUM MOBILE TRAVEL UI --- */
            .premium-travel-scroll { 
                display: flex !important; 
                flex-direction: column; 
                gap: 15px; 
                height: 100%; 
            }
            .premium-travel-desc { 
                font-size: 0.75rem; 
                color: rgba(255,255,255,0.7); 
                margin: 0; 
                line-height: 1.4; 
                text-align: center; 
            }
            .premium-travel-stats { 
                display: flex; 
                justify-content: space-evenly; 
                align-items: center; 
                background: rgba(0,0,0,0.4); 
                border: 1px solid rgba(176,155,128,0.3); 
                border-radius: 12px; 
                padding: 12px 10px; 
                box-shadow: inset 0 2px 10px rgba(0,0,0,0.5);
            }
            .pt-stat { display: flex; flex-direction: column; align-items: center; }
            .pt-label { font-size: 0.65rem; text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 800; letter-spacing: 1px; margin-bottom: 2px; }
            .pt-val { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: #FFF; font-weight: 700; line-height: 1; }
            .pt-val small { font-family: 'Lato', sans-serif; font-size: 0.8rem; text-transform: uppercase; margin-left: 2px; color: rgba(255,255,255,0.6); }
            .pt-val.highlight { color: var(--gold-main); text-shadow: 0 0 15px rgba(176,155,128,0.5); }
            .pt-divider { width: 1px; height: 35px; background: rgba(176,155,128,0.3); }
            
            /* The Magic Map Wrapper */
            .premium-map-wrapper { 
                flex: 1 1 auto; /* Allows it to expand to all remaining space dynamically */
                min-height: 200px; 
                width: 100%; 
                position: relative; /* Crucial for map sizing */
                border-radius: 16px; 
                overflow: hidden; 
                border: 2px solid rgba(176, 155, 128, 0.4); 
                box-shadow: 0 10px 20px rgba(0,0,0,0.3); 
            }
            .premium-map-wrapper #route-map { 
                position: absolute; /* Forces map to perfectly match wrapper bounds */
                top: 0; 
                left: 0; 
                width: 100%; 
                height: 100%; 
            }
            
            .travel-tiers-toggle-wrap { text-align: center; }
        /* =========================================================
           FLOATING CONTACT BUTTON & MIND-BOGGLING POPUP
           ========================================================= */
        .floating-contact-btn { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-main), var(--gold-dark)); border: 2px solid rgba(255,255,255,0.4); color: #FFF; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 999; box-shadow: 0 10px 25px rgba(176, 155, 128, 0.5); transition: var(--transition-smooth); }
        .floating-contact-btn:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 15px 35px rgba(176, 155, 128, 0.8); }
        .fcb-glow { position: absolute; inset: -5px; border-radius: 50%; background: radial-gradient(circle, rgba(176, 155, 128, 0.8) 0%, transparent 70%); z-index: -1; animation: fcbPulse 2s infinite alternate; }
        @keyframes fcbPulse { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.4); opacity: 0; } }

        /* Contact Modal Extreme Animations */
        #contact-modal-overlay .contact-modal-content { background: linear-gradient(145deg, rgba(30, 25, 22, 0.95), rgba(10, 8, 6, 0.98)); border: 1px solid rgba(176, 155, 128, 0.5); box-shadow: 0 50px 100px rgba(0,0,0,0.8), inset 0 0 40px rgba(176, 155, 128, 0.2); overflow: hidden; transform: scale(0.7) translateY(100px) rotateX(20deg); perspective: 1000px; padding: 0; }
        #contact-modal-overlay.active .contact-modal-content { transform: scale(1) translateY(0) rotateX(0deg); }

        .contact-card-inner { position: relative; padding: 50px 30px 40px 30px; text-align: center; z-index: 2; display: flex; flex-direction: column; align-items: center; }
        .contact-ambient-orb { position: absolute; top: -50px; left: 50%; transform: translateX(-50%); width: 300px; height: 300px; background: radial-gradient(circle, rgba(176, 155, 128, 0.3) 0%, transparent 70%); filter: blur(40px); z-index: -1; pointer-events: none; animation: orbBreathe 4s infinite alternate; }
        @keyframes orbBreathe { 0% { transform: translateX(-50%) scale(0.8); opacity: 0.5; } 100% { transform: translateX(-50%) scale(1.2); opacity: 1; } }

        .contact-avatar-wrapper { position: relative; width: 110px; height: 110px; margin-bottom: 20px; }
        .contact-avatar-wrapper img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 3px solid var(--gold-main); position: relative; z-index: 5; box-shadow: 0 10px 25px rgba(0,0,0,0.5); }
        .avatar-ring-1, .avatar-ring-2 { position: absolute; inset: -10px; border-radius: 50%; border: 2px dashed rgba(176, 155, 128, 0.5); animation: spinRing 15s linear infinite; }
        .avatar-ring-2 { inset: -20px; border: 1px solid rgba(176, 155, 128, 0.2); animation: spinRing 25s linear infinite reverse; }
        @keyframes spinRing { 100% { transform: rotate(360deg); } }

        .contact-name { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; color: #FFF; margin: 0 0 5px 0; text-shadow: 0 0 20px rgba(176, 155, 128, 0.5); }
        .contact-title { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold-main); font-weight: 800; margin-bottom: 30px; }

        .contact-methods-grid { display: flex; flex-direction: column; gap: 15px; width: 100%; }
        .contact-method-card { position: relative; display: flex; align-items: center; gap: 15px; background: rgba(255,255,255,0.05); border: 1px solid rgba(176, 155, 128, 0.3); padding: 15px 20px; border-radius: 16px; text-decoration: none; overflow: hidden; transition: 0.3s; }
        .contact-method-card:hover { background: rgba(176, 155, 128, 0.15); border-color: var(--gold-main); transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 30px rgba(176, 155, 128, 0.2); }
        .cm-icon-wrapper { width: 45px; height: 45px; min-width: 45px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-main), var(--gold-dark)); display: flex; align-items: center; justify-content: center; color: #FFF; font-size: 1.2rem; box-shadow: 0 5px 15px rgba(176, 155, 128, 0.4); }
        .cm-details { display: flex; flex-direction: column; text-align: left; overflow: hidden; }
        .cm-label { font-size: 0.7rem; text-transform: uppercase; font-weight: 900; color: rgba(255,255,255,0.5); letter-spacing: 1px; }
        .cm-value { font-family: 'Lato', sans-serif; font-size: 1.1rem; font-weight: 800; color: #FFF; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .cm-shimmer { position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent); transform: skewX(-25deg); animation: glassRefract 3s infinite ease-in-out; }

        /* =========================================================
           ELEGANT STEP 1 SEARCH UI & MICRO-INTERACTIONS
           ========================================================= */
        .input-group.has-icon .input-icon { position: absolute; left: 20px; top: 22px; color: #8C8276; font-size: 1.1rem; pointer-events: none; transition: 0.3s ease; z-index: 5; }
        .input-group.has-icon input { padding-left: 55px; padding-right: 45px; }
        .input-group.has-icon label { left: 55px; }
        .input-group.has-icon input:focus ~ .input-icon { color: var(--gold-main); }
        .input-group.has-icon input:focus { background: #FFF; border-color: var(--gold-main); box-shadow: 0 10px 30px rgba(176, 155, 128, 0.15), inset 0 2px 5px rgba(0,0,0,0.02); transform: translateY(-2px); }

        .divider-or { display: flex; align-items: center; text-align: center; margin: 25px 0; color: rgba(163, 143, 117, 0.6); }
        .divider-or::before, .divider-or::after { content: ''; flex: 1; border-bottom: 1px solid rgba(163, 143, 117, 0.3); }
        .divider-or span { padding: 0 15px; font-size: 0.75rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }

        .btn-manual-entry { background: transparent; border: 1px solid rgba(163, 143, 117, 0.5); color: var(--text-grey); padding: 14px 25px; border-radius: 50px; font-family: 'Lato', sans-serif; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: var(--transition-smooth); width: 100%; max-width: 300px; margin: 0 auto; display: block; }
        .btn-manual-entry:hover { background: rgba(176, 155, 128, 0.1); color: var(--gold-dark); border-color: var(--gold-main); transform: translateY(-2px); }

        .option-icon { width: 20px; color: var(--gold-main); margin-right: 8px; text-align: center; opacity: 0.8; transition: 0.2s; }
        .cs-option:hover .option-icon, .cs-option.selected .option-icon { opacity: 1; transform: scale(1.1); }
        .cs-display i { margin-right: 8px; color: var(--gold-main); }

        .input-helper-text { font-size: 0.75rem; color: #8C8276; margin-top: 4px; margin-left: 15px; font-weight: 600; display: flex; align-items: center; gap: 6px; opacity: 0.8; }
        .input-helper-text i { color: var(--gold-main); font-size: 0.8rem; }

        .clear-search-icon { position: absolute; right: 20px; top: 22px; color: rgba(163, 143, 117, 0.5); font-size: 1.1rem; cursor: pointer; z-index: 10; transition: 0.2s ease; }
        .clear-search-icon:hover { color: var(--text-dark); transform: scale(1.1); }

        .slider-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; height: 100%; cursor: pointer; }

        /* =========================================================
           PREMIUM TOAST NOTIFICATIONS
           ========================================================= */
        .toast-container { position: fixed; top: 20px; right: 20px; z-index: 10000; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
        .toast { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(15px); border-left: 4px solid var(--gold-main); padding: 16px 24px; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.15); font-family: 'Lato', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--text-dark); display: flex; align-items: center; gap: 12px; transform: translateX(120%); opacity: 0; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease; pointer-events: auto; }
        .toast.show { transform: translateX(0); opacity: 1; }
        .toast.error { border-left-color: #ff6b6b; }
        .toast.success { border-left-color: #4ade80; }

        /* =========================================================
           ANIMATED SKELETON LOADERS
           ========================================================= */
        .skeleton-slot { height: 45px; border-radius: 50px; width: 100px; background: linear-gradient(90deg, rgba(255,255,255,0.3) 25%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0.3) 75%); background-size: 200% 100%; animation: skeletonShimmer 1.5s infinite linear; border: 1px solid rgba(255,255,255,0.4); box-shadow: inset 0 2px 5px rgba(255,255,255,0.5); }
        @keyframes skeletonShimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

        /* =========================================================
           SMOOTH SLIDE TRANSITIONS
           ========================================================= */
        .fade-in { animation: slideFadeIn 0.5s forwards cubic-bezier(0.16, 1, 0.3, 1); }
        .fade-out { animation: slideFadeOut 0.5s forwards cubic-bezier(0.16, 1, 0.3, 1); }
        @keyframes slideFadeIn { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
        @keyframes slideFadeOut { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(-30px); } }

        /* =========================================================
           MAGNETIC BUTTON PHYSICS (Desktop Only)
           ========================================================= */
        @media (hover: hover) and (pointer: fine) {
            .lux-btn { transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease; }
            .lux-btn span { display: inline-block; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
            .lux-btn.magnetic-active:hover:not(:disabled) { transform: none; }
        }

        /* =========================================================
           CINEMATIC VIEW TRANSITIONS API
           ========================================================= */
        ::view-transition-old(root) { animation: slideFadeOut 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
        ::view-transition-new(root) { animation: slideFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

        /* =========================================================
           WEB ACCESSIBILITY (a11y)
           ========================================================= */
        *:focus-visible { outline: 2px solid var(--gold-main); outline-offset: 3px; border-radius: 4px; }