/* ==========================================
   LUXURY "CYBER-ELEGANCE" THEME (AGOID BRANDING)
   ========================================== */
:root {
    /* AGOID Signature Brand Colors */
    --accent-cyan: #33D5E5; /* Original Brand Cyan */
    --accent-pink: #E849E8; /* Original Brand Pink */
    --dark-blue: #0A0A2A;   /* Deep Navy Background */
    --charcoal: #050515;    /* Ultra Dark Navy for Sleep Sections */
}

body, p, span, a, input, button {
    font-family: 'Poppins', sans-serif;
    color: #D1D5DB; /* Soft reading text */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
    color: #FFFFFF;
}

/* 2.0 Frosted Matte Glass Effect (Cyan Tinted) */
.frosted-glass, .matte-glass {
    background: rgba(10, 10, 42, 0.4) !important;
    backdrop-filter: blur(25px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(120%) !important;
    border: 1px solid rgba(51, 213, 229, 0.15) !important; /* Brand Cyan Border */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
    border-radius: 20px;
}

/* ==========================================
   CINEMATIC HERO SECTION CSS
   ========================================== */
.bedroom-hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #0a0a0a; /* Fallback */
}

.hero-bg-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.8;
    /* Optional: Add slight warm filter to video */
    filter: sepia(30%) brightness(80%); 
}

.hero-video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.8));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-glass-box {
    padding: 50px;
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
}

/* Luxury Buttons */
.luxury-btn-solid {
    background: linear-gradient(135deg, #D4AF37, #E6C287) !important;
    color: #000 !important;
    border: none !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    padding: 15px 35px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.luxury-btn-outline {
    background: transparent !important;
    color: #fff !important;
    border: 1px solid rgba(212, 175, 55, 0.5) !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500 !important;
    border-radius: 50px !important;
    padding: 15px 35px !important;
    backdrop-filter: blur(5px);
}
.luxury-btn-outline:hover {
    background: rgba(212, 175, 55, 0.1) !important;
    border-color: #D4AF37 !important;
}

/* Breadcrumb Fix */
.breadcrumbs-container {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    z-index: 20;
    background: transparent;
    padding: 10px 0;
}
.breadcrumbs-container a, .breadcrumbs-container span {
    font-size: 0.85rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    font-weight: 500;
}

/* --- PREMIUM CALCULATOR STYLES --- */
.calc-section {
    background: #0d0d35; /* Premium Dark Blue */
    padding: 80px 0;
    position: relative;
}
.calc-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-top: 40px;
}
@media (max-width: 991px) { .calc-grid { grid-template-columns: 1fr; } }

/* Left: Inputs */
.calc-input-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.calc-label {
    color: #fff;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
    font-size: 1rem;
}
.calc-select, .calc-input {
    width: 100%;
    padding: 15px;
    background: #0A0A2A;
    border: 1px solid #33D5E5;
    color: #fff;
    border-radius: 8px;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}
.calc-select:focus, .calc-input:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(51, 213, 229, 0.3);
}
.area-toggle-group {
    display: flex;
    background: #0A0A2A;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #33D5E5;
    margin-top: 5px;
}
.area-type-btn {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    color: #aaa;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 500;
}
.area-type-btn.active {
    background: #33D5E5;
    color: #000;
    font-weight: 700;
}
.area-helper {
    font-size: 0.85rem;
    color: #ccc;
    margin-top: 10px;
    min-height: 20px;
}
.area-helper.error { color: #ff6b6b; }

/* Right: Summary Card */
.summary-card {
    background: linear-gradient(145deg, #14143a, #0b0b2e);
    border: 1px solid rgba(232, 73, 232, 0.4);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    position: sticky;
    top: 100px;
}
.summary-header {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
    margin-bottom: 20px;
    text-align: center;
}
.summary-header h3 { color: var(--accent-cyan); }
.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #e0e0e0;
}
.summary-val {
    font-weight: 600;
    color: #fff;
}
.discount-row {
    color: #ff6b6b;
}
.total-row {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed rgba(255,255,255,0.3);
    font-size: 1.4rem;
    color: var(--accent-cyan);
    font-weight: 700;
}
.get-proposal-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(90deg, #E849E8, #33D5E5);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 25px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(51, 213, 229, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.get-proposal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(232, 73, 232, 0.5);
}

/* Rate Chart Table */
.rate-table-container {
    margin-top: 60px;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
}
.rate-table {
    width: 100%;
    border-collapse: collapse;
    background: #1a1a40;
    min-width: 700px;
}
.rate-table th {
    background: #0f0f36;
    padding: 18px;
    color: var(--accent-cyan);
    text-align: center;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    font-size: 1rem;
}
.rate-table td {
    padding: 15px;
    text-align: center;
    color: #ddd;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.95rem;
}
.rate-table tr:hover { background: rgba(255,255,255,0.03); }
.rate-table td:first-child { text-align: left; font-weight: 600; padding-left: 20px; color: #fff; }

/* Proposal Modal */
.proposal-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10005;
    backdrop-filter: blur(8px);
}
.proposal-modal.active { display: flex; }
.proposal-content {
    background: #14143a;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    border: 1px solid var(--accent-cyan);
    position: relative;
    text-align: center;
    box-shadow: 0 0 50px rgba(51, 213, 229, 0.2);
}
.close-modal {
    position: absolute; top: 15px; right: 20px;
    background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer;
}
.modal-input {
    width: 100%; padding: 15px; margin-bottom: 15px;
    background: #0A0A2A; border: 1px solid #444; color: #fff; border-radius: 8px;
    font-family: 'Poppins', sans-serif;
}
.modal-input:focus { border-color: var(--accent-cyan); outline: none; }
.modal-actions { display: flex; gap: 15px; justify-content: center; margin-top: 20px; }
.whatsapp-btn { background: #25D366; color: #fff; border: none; padding: 12px 25px; border-radius: 50px; cursor: pointer; display: flex; align-items: center; gap: 8px; font-weight: 600; transition: 0.3s; }
.whatsapp-btn:hover { background: #20bd5a; transform: translateY(-2px); }
.pdf-btn { background: #E74C3C; color: #fff; border: none; padding: 12px 25px; border-radius: 50px; cursor: pointer; display: flex; align-items: center; gap: 8px; font-weight: 600; transition: 0.3s; }
.pdf-btn:hover { background: #c0392b; transform: translateY(-2px); }

/* Rate Chart Tab Styles */
.rate-tab-btn {
    background: transparent;
    border: 1px solid rgba(51, 213, 229, 0.3);
    color: #ccc;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.rate-tab-btn:hover {
    border-color: var(--accent-cyan);
    color: #fff;
}
.rate-tab-btn.active {
    background: linear-gradient(90deg, #E849E8, #33D5E5);
    border: none;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(51, 213, 229, 0.3);
}

/* Clickable Category Link Style */
.category-link {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
    display: block;
}
.category-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* Quick Size Buttons Style */
.size-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: #fff;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    line-height: 1.2;
}
.size-btn:hover {
    background: rgba(51, 213, 229, 0.1);
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}
.size-btn.active {
    background: var(--accent-cyan);
    color: #000;
    font-weight: 600;
    border-color: var(--accent-cyan);
}

/* Material Tab Styles */
.mat-tab-btn {
    padding: 10px 25px;
    background: transparent;
    border: 1px solid rgba(232, 73, 232, 0.3);
    color: #ccc;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.mat-tab-btn:hover {
    border-color: var(--accent-pink);
    color: #fff;
    background: rgba(232, 73, 232, 0.1);
}
.mat-tab-btn.active {
    background: linear-gradient(90deg, #E849E8, #33D5E5);
    border: none;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(232, 73, 232, 0.3);
}

/* Responsive Fixes */
@media (max-width: 991px) { 
    .calc-grid { grid-template-columns: 1fr; } 
    .summary-card { position: relative; top: 0; }
}
@media (max-width: 768px) {
    .breadcrumbs-container { top: 70px; padding-left: 15px; }
    .modal-actions { flex-direction: column; }
}

/* Category Grid Enhancement (Original) */
.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 350px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid var(--border-color);
    transition: transform 0.4s ease;
}
.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.category-card:hover img {
    transform: scale(1.1);
}
.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, #0A0A2A, transparent);
    z-index: 2;
}
.category-content h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 5px;
}
.category-content p {
    color: var(--accent-cyan);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Size Guide Section (Original) */
.size-guide-box {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: 0.3s;
}
.size-guide-box:hover {
    border-color: var(--accent-pink);
    transform: translateY(-5px);
}
.size-icon {
    font-size: 2.5rem;
    color: var(--accent-cyan);
    margin-bottom: 15px;
}

/* ==========================================
   MICRO-INTERACTIONS & BREATHING EFFECT
   ========================================== */
/* Smooth hover transition for all cards */
.category-card, .size-guide-box, .style-card {
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.6s ease !important;
}

/* Floating Parallax Class (Will be controlled by JS) */
.parallax-float {
    transition: transform 0.1s linear;
    will-change: transform;
}

/* Breathing / Pulse Effect for Main Buttons */
.breathing-btn {
    animation: breatheGlow 3s ease-in-out infinite;
}

@keyframes breatheGlow {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); transform: scale(1); }
    50% { box-shadow: 0 0 20px 10px rgba(212, 175, 55, 0); transform: scale(1.02); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); transform: scale(1); }
}

/* Apply Frosted Glass to Calculator Cards to match theme */
.calc-input-card, .summary-card {
    background: rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(212, 175, 55, 0.1) !important;
}

/* ==========================================
   INTERACTIVE STUDIO CSS (BEDROOM)
   ========================================== */
/* Tab Buttons */
.studio-tab-btn {
    background: transparent; border: 1px solid rgba(212,175,55,0.3);
    color: #aaa; padding: 12px 25px; border-radius: 50px;
    font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 500;
    cursor: pointer; transition: 0.3s;
}
.studio-tab-btn:hover { background: rgba(212,175,55,0.1); color: #fff; }
.studio-tab-btn.active {
    background: linear-gradient(135deg, #D4AF37, #E6C287);
    color: #000; font-weight: 700; border: none;
    box-shadow: 0 5px 15px rgba(212,175,55,0.4);
}

/* ASMR Cards (Extreme Zoom) */
.asmr-card {
    position: relative; border-radius: 15px; overflow: hidden;
    aspect-ratio: 1; border: 1px solid rgba(255,255,255,0.1);
}
.asmr-img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Very slow cinematic zoom */
    cursor: zoom-in;
}
.asmr-card:hover .asmr-img { transform: scale(1.6); }
.asmr-label {
    position: absolute; bottom: 0; left: 0; width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #fff; padding: 25px 15px 15px; text-align: center;
    font-family: 'Playfair Display', serif; font-size: 1.2rem; pointer-events: none;
}

/* Hotspot Styling Overrides for Bedroom (Gold Theme) */
.tech-hotspot { position: absolute; width: 30px; height: 30px; transform: translate(-50%, -50%); z-index: 10; cursor: pointer; }
.hotspot-core {
    position: absolute; width: 100%; height: 100%; background: var(--accent-cyan);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #000; z-index: 2; transition: 0.3s; box-shadow: 0 0 15px var(--accent-cyan);
}
.tech-hotspot:hover .hotspot-core { transform: scale(1.2); }
.radar-ping {
    position: absolute; top: 50%; left: 50%; width: 100%; height: 100%;
    transform: translate(-50%, -50%); border: 2px solid var(--accent-cyan);
    border-radius: 50%; z-index: 1; animation: radarPulse 2s infinite ease-out;
}

.glass-tooltip {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%) translateY(10px);
    width: 250px; padding: 15px; border-radius: 12px; opacity: 0; visibility: hidden;
    transition: all 0.3s ease; pointer-events: none; text-align: center;
}
.tech-hotspot:hover .glass-tooltip { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }


/* ==========================================
   PACKAGE COMPARISON GRID SECTION 
   ========================================== */
/* Custom Grid Logic for Perfect Alignment */
.pkg-grid-container {
    display: grid;
    gap: 20px;
    width: 100%;
}

/* Mobile First (Default): 1 Column */
.pkg-grid-container {
    grid-template-columns: 1fr;
}

/* Tablet / Small Laptop (Min 768px): 2 Columns (2 Up, 2 Down) */
@media (min-width: 768px) {
    .pkg-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop / Large Screen (Min 1200px): 4 Columns (All in one line) */
@media (min-width: 1200px) {
    .pkg-grid-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Card Hover Effect */
.pkg-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
}

/* Night Mode Glow Update */
.sleep-science-section.night-mode .glow-text {
    color: #fff;
    text-shadow: 0 0 20px rgba(51, 213, 229, 0.6); /* Cyan Glow */
    transition: 1s ease;
}

/* ==========================================
   🚀 WORLD-CLASS SLEEP SCIENCE BENTO GRID
   ========================================== */
.sleep-science-section {
    background-color: var(--charcoal, #050515);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(51, 213, 229, 0.1);
}

/* Ambient Glowing Orbs in Background */
.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}
.orb-left {
    width: 400px; height: 400px;
    background: var(--accent-cyan, #33D5E5);
    top: -100px; left: -150px;
}
.orb-right {
    width: 500px; height: 500px;
    background: var(--accent-pink, #E849E8);
    bottom: -150px; right: -150px;
}

.science-header {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.tech-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(51, 213, 229, 0.1);
    border: 1px solid rgba(51, 213, 229, 0.3);
    color: var(--accent-cyan);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(51, 213, 229, 0.2);
}

.glow-title {
    font-size: 3.2rem;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    font-family: 'Playfair Display', serif;
}

.premium-desc {
    color: #A0AABF;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

/* THE BENTO GRID ARCHITECTURE */
.bento-science-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* ২ কলামের গ্রিড */
    gap: 30px;
    position: relative;
    z-index: 2;
}

.science-bento-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    padding: 40px;
    background: rgba(10, 10, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 380px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* Desktop Spanning Logic */
.acoustics-card { grid-column: span 2; min-height: 420px; } /* এটি প্রথম লাইনে পুরো জায়গা নেবে */
.lighting-card { grid-column: span 1; } /* এটি দ্বিতীয় লাইনের অর্ধেক নেবে */
.blackout-card { grid-column: span 1; } /* এটি দ্বিতীয় লাইনের বাকি অর্ধেক নেবে */

/* Cinematic Background Images inside Cards */
.card-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}
.acoustic-bg { background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=1000'); }
.lighting-bg { background-image: url('https://images.unsplash.com/photo-1554995207-c18c203602cb?q=80&w=800'); }
.blackout-bg { background-image: url('https://images.unsplash.com/photo-1534447677768-be436bb09401?q=80&w=800'); }

/* Gradient overlay to make text highly readable */
.science-bento-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(5,5,21,0.95) 0%, rgba(5,5,21,0.3) 100%);
    z-index: 1;
}

/* Hover Effects - The "Wow" Factor */
.science-bento-card:hover {
    transform: translateY(-10px);
    border-color: rgba(51, 213, 229, 0.4);
    box-shadow: 0 30px 60px rgba(51, 213, 229, 0.15);
}
.lighting-card:hover { 
    border-color: rgba(232, 73, 232, 0.4); 
    box-shadow: 0 30px 60px rgba(232, 73, 232, 0.15); 
}

.science-bento-card:hover .card-bg-overlay {
    transform: scale(1.1); /* ইমেজে সিনেমাটিক জুম হবে */
    opacity: 0.4;
}

/* Content Layout inside Card */
.card-content {
    position: relative;
    z-index: 2;
}

.sc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.sc-icon {
    width: 60px; height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--accent-cyan);
    backdrop-filter: blur(10px);
    transition: 0.4s;
}
.lighting-card .sc-icon { color: var(--accent-pink); }

.science-bento-card:hover .sc-icon {
    background: var(--accent-cyan);
    color: #000;
    box-shadow: 0 0 20px rgba(51, 213, 229, 0.6);
}
.lighting-card:hover .sc-icon {
    background: var(--accent-pink);
    box-shadow: 0 0 20px rgba(232, 73, 232, 0.6);
}

.sc-metric {
    background: rgba(255,255,255,0.1);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #fff;
    font-weight: 600;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
}

.card-content h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 700;
}

.card-content p {
    font-size: 1.05rem;
    color: #A0AABF;
    line-height: 1.6;
    margin: 0;
}
.card-content p strong { color: #fff; font-weight: 600; }

/* Mobile Responsive */
@media(max-width: 991px) {
    .bento-science-grid { grid-template-columns: 1fr; }
    .acoustics-card, .lighting-card, .blackout-card { grid-column: span 1; min-height: 320px; }
    .glow-title { font-size: 2.2rem; }
}

/* ==========================================
   🚀 WORLD-CLASS: SMART WARDROBE HUB CSS
   ========================================== */
.wardrobe-masterclass-section {
    background-color: var(--charcoal, #050515);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(232, 73, 232, 0.1);
}

/* Tech Grid Background Pattern */
.tech-grid-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(51, 213, 229, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(51, 213, 229, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    opacity: 0.5;
}

/* Hub & Spoke Layout Grid */
.wardrobe-hub-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr; /* Center column is slightly wider */
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-top: 50px;
}

/* Feature Columns */
.w-feature-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Glassmorphism Tech Cards */
.w-tech-card {
    background: rgba(10, 10, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

/* Inner Glow Effect */
.w-tech-card::before {
    content: ''; position: absolute; top: -50px; right: -50px;
    width: 100px; height: 100px;
    background: radial-gradient(circle, rgba(51, 213, 229, 0.1) 0%, transparent 70%);
    border-radius: 50%; z-index: 0;
}

.w-tech-card:hover {
    transform: translateY(-8px);
    border-color: rgba(51, 213, 229, 0.3);
    box-shadow: 0 20px 50px rgba(51, 213, 229, 0.15);
    background: rgba(15, 15, 55, 0.7);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative; z-index: 1;
}

.w-icon {
    width: 50px; height: 50px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: #fff;
}
.cyan-glow { background: rgba(51, 213, 229, 0.1); border: 1px solid rgba(51, 213, 229, 0.3); color: var(--accent-cyan); }
.pink-glow { background: rgba(232, 73, 232, 0.1); border: 1px solid rgba(232, 73, 232, 0.3); color: var(--accent-pink); }

.w-tech-card:hover .cyan-glow { background: var(--accent-cyan); color: #000; box-shadow: 0 0 20px rgba(51, 213, 229, 0.5); }
.w-tech-card:hover .pink-glow { background: var(--accent-pink); color: #fff; box-shadow: 0 0 20px rgba(232, 73, 232, 0.5); }

.spec-label {
    font-size: 0.7rem; font-weight: 800; letter-spacing: 1px;
    color: #666; border: 1px solid #444; padding: 4px 8px; border-radius: 4px;
}

.w-tech-card h3 { font-size: 1.3rem; color: #fff; margin-bottom: 10px; font-weight: 700; position: relative; z-index: 1; }
.w-tech-card p { font-size: 0.95rem; color: #A0AABF; line-height: 1.6; margin: 0; position: relative; z-index: 1; }

/* 🚀 The Center Core Visualizer (The Magic) */
.w-center-col {
    display: flex; justify-content: center; align-items: center;
}

.w-glass-visualizer {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4; /* Perfect tall ratio for a wardrobe */
    border-radius: 30px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(51, 213, 229, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 60px rgba(51, 213, 229, 0.1);
    animation: floatingFrame 6s ease-in-out infinite;
}

@keyframes floatingFrame {
    0% { transform: translateY(0); box-shadow: 0 0 60px rgba(51, 213, 229, 0.1); }
    50% { transform: translateY(-15px); box-shadow: 0 30px 80px rgba(232, 73, 232, 0.2); border-color: rgba(232, 73, 232, 0.3); }
    100% { transform: translateY(0); box-shadow: 0 0 60px rgba(51, 213, 229, 0.1); }
}

.w-core-img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 20px;
    filter: contrast(0.9) brightness(0.8);
}

/* Sci-Fi Scanner Line */
.sci-fi-scanner {
    position: absolute;
    top: 10px; left: 10px;
    width: calc(100% - 20px);
    height: 4px;
    background: var(--accent-cyan);
    box-shadow: 0 0 20px 5px rgba(51, 213, 229, 0.6);
    opacity: 0.8;
    animation: scanAnimation 4s linear infinite;
    z-index: 5;
    border-radius: 10px;
}

@keyframes scanAnimation {
    0% { top: 10px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: calc(100% - 15px); opacity: 0; }
}

.w-core-tag {
    position: absolute;
    bottom: -15px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-pink));
    color: #000;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    white-space: nowrap;
    z-index: 10;
}

/* Mobile Responsive Layout */
@media (max-width: 991px) {
    .wardrobe-hub-grid {
        grid-template-columns: 1fr; /* Stacks everything in one column */
        gap: 30px;
    }
    .w-center-col {
        order: -1; /* Moves the image to the top on mobile */
        margin-bottom: 20px;
    }
    .w-glass-visualizer {
        width: 80%; /* Slightly smaller on tablet/mobile */
        aspect-ratio: 4 / 5;
    }
}

@media (max-width: 576px) {
    .w-glass-visualizer { width: 100%; }
}

/* ==========================================
   🚀 WORLD-CLASS: VASTU RADAR SYSTEM CSS
   ========================================== */
.vastu-premium-section {
    background-color: var(--charcoal, #050515);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(51, 213, 229, 0.1);
}

.vastu-bg-grid {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

.vastu-master-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
    align-items: center;
}

/* --- THE LEFT: RADAR BOX --- */
.vastu-radar-box {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(10, 10, 30, 0.8), rgba(5, 5, 15, 0.9));
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* The Glowing Radar Circles */
.radar-outer-ring {
    width: 280px; height: 280px;
    border-radius: 50%;
    border: 2px dashed rgba(51, 213, 229, 0.3);
    display: flex; justify-content: center; align-items: center;
    position: relative;
    animation: slowSpin 60s linear infinite; /* Outer ring slowly spins */
}

@keyframes slowSpin { 100% { transform: rotate(360deg); } }

.radar-inner-ring {
    width: 230px; height: 230px;
    border-radius: 50%;
    border: 1px solid rgba(51, 213, 229, 0.5);
    background: radial-gradient(circle, rgba(51, 213, 229, 0.05) 0%, transparent 70%);
    position: relative;
    animation: slowSpinReverse 60s linear infinite; /* Inner elements counter-spin to stay upright */
}

@keyframes slowSpinReverse { 100% { transform: rotate(-360deg); } }

/* Compass Directions Fixed Placement */
.dir {
    position: absolute; font-size: 0.9rem; font-weight: 800; color: #888;
    background: var(--charcoal); padding: 2px 6px; border-radius: 4px;
}
.dir-n { top: -10px; left: 50%; transform: translateX(-50%); color: var(--accent-cyan); text-shadow: 0 0 10px var(--accent-cyan); }
.dir-s { bottom: -10px; left: 50%; transform: translateX(-50%); }
.dir-e { right: -15px; top: 50%; transform: translateY(-50%); }
.dir-w { left: -15px; top: 50%; transform: translateY(-50%); }
.dir-ne { top: 25px; right: 25px; font-size: 0.7rem; }
.dir-sw { bottom: 25px; left: 25px; font-size: 0.7rem; }

/* The Needle & Center Dot */
.radar-center-dot {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 12px; height: 12px; background: #fff; border-radius: 50%;
    box-shadow: 0 0 15px #fff; z-index: 10;
}

.radar-needle-container {
    position: absolute; top: 5%; left: calc(50% - 2px);
    width: 4px; height: 45%;
    transform-origin: bottom center; /* Rotates from the center of the circle */
    transition: transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 5;
}

.needle-glow {
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, var(--accent-cyan), transparent);
    box-shadow: 0 -10px 20px var(--accent-cyan);
    border-radius: 50px 50px 0 0;
}
.needle-glow.pink-mode {
    background: linear-gradient(to bottom, var(--accent-pink), transparent);
    box-shadow: 0 -10px 20px var(--accent-pink);
}

/* Status Panel Below Radar */
.radar-status-panel {
    margin-top: 40px; text-align: center;
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
    padding: 20px; border-radius: 16px; width: 100%;
}
#vastu-dynamic-title { color: var(--accent-cyan); font-size: 1.3rem; margin-bottom: 10px; font-family: 'Playfair Display', serif; transition: 0.3s; }
#vastu-dynamic-desc { color: #aaa; font-size: 0.9rem; line-height: 1.5; margin: 0; transition: 0.3s; }

/* --- THE RIGHT: CONTROL CARDS --- */
.vastu-controls-list { display: flex; flex-direction: column; gap: 20px; }

.v-control-card {
    display: flex; align-items: center; gap: 20px;
    padding: 20px 25px; border-radius: 16px;
    background: rgba(10, 10, 30, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer; transition: all 0.4s ease;
    position: relative; overflow: hidden;
}

.v-control-card::before {
    content: ''; position: absolute; left: 0; top: 0; width: 4px; height: 100%;
    background: transparent; transition: 0.4s;
}

.v-control-card:hover { transform: translateX(10px); background: rgba(255,255,255,0.03); }

/* Active Card State */
.v-control-card.active-card {
    background: rgba(51, 213, 229, 0.05);
    border-color: rgba(51, 213, 229, 0.3);
    box-shadow: 0 10px 30px rgba(51, 213, 229, 0.1);
    transform: translateX(15px);
}
.v-control-card.active-card::before { background: var(--accent-cyan); }
.v-control-card.active-card.pink-active::before { background: var(--accent-pink); }
.v-control-card.active-card.pink-active {
    background: rgba(232, 73, 232, 0.05); border-color: rgba(232, 73, 232, 0.3);
    box-shadow: 0 10px 30px rgba(232, 73, 232, 0.1);
}

.v-icon-box {
    width: 50px; height: 50px; border-radius: 12px;
    background: rgba(255, 255, 255, 0.05); display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: #888; transition: 0.4s;
}
.v-control-card.active-card .v-icon-box { background: var(--accent-cyan); color: #000; box-shadow: 0 0 15px var(--accent-cyan); }
.v-control-card.active-card.pink-active .v-icon-box { background: var(--accent-pink); color: #fff; box-shadow: 0 0 15px var(--accent-pink); }

.v-card-text { flex-grow: 1; }
.v-card-text h3 { font-size: 1.15rem; color: #fff; margin-bottom: 4px; font-weight: 600; }
.v-card-text p { font-size: 0.85rem; color: #888; margin: 0; }

.v-arrow { color: #555; transition: 0.3s; }
.v-control-card.active-card .v-arrow { color: var(--accent-cyan); transform: translateX(5px); }
.v-control-card.active-card.pink-active .v-arrow { color: var(--accent-pink); }

/* Responsive fixes */
@media (max-width: 991px) {
    .vastu-master-layout { grid-template-columns: 1fr; }
    .radar-outer-ring { width: 240px; height: 240px; }
    .radar-inner-ring { width: 190px; height: 190px; }
}
@media (max-width: 576px) {
    .v-control-card { flex-direction: column; text-align: center; gap: 10px; padding: 25px 15px; }
    .v-control-card.active-card { transform: translateY(-5px); }
    .v-arrow { display: none; }
}

/* ==========================================
   🚀 WORLD-CLASS: AI STYLE MATCHMAKER CSS
   ========================================== */
.matchmaker-premium-section {
    background-color: var(--dark-blue, #0A0A2A);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(51, 213, 229, 0.1);
}

.match-orb {
    position: absolute; border-radius: 50%; filter: blur(150px); opacity: 0.2; z-index: 0; pointer-events: none;
}
.match-orb-cyan { width: 400px; height: 400px; background: var(--accent-cyan); top: 0; left: -100px; }
.match-orb-pink { width: 450px; height: 450px; background: var(--accent-pink); bottom: -100px; right: -100px; }

.matchmaker-master-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* --- LEFT: INFORMATIVE PANEL --- */
.match-info-panel .glow-title { margin-bottom: 20px; font-size: 3rem; }
.match-info-panel .premium-desc { margin-bottom: 40px; }

.match-features-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 25px; }
.match-features-list li { display: flex; align-items: flex-start; gap: 20px; }
.mf-icon {
    width: 50px; height: 50px; border-radius: 12px; flex-shrink: 0;
    background: rgba(255,255,255,0.05); color: var(--accent-cyan);
    display: flex; justify-content: center; align-items: center; font-size: 1.2rem;
    border: 1px solid rgba(51, 213, 229, 0.2);
}
.mf-text h4 { color: #fff; font-size: 1.1rem; margin-bottom: 5px; font-weight: 600; }
.mf-text p { color: #888; font-size: 0.9rem; margin: 0; line-height: 1.5; }

/* --- RIGHT: THE APP INTERFACE --- */
.app-glass-frame {
    background: rgba(10, 10, 30, 0.6);
    border-radius: 30px;
    padding: 25px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex; flex-direction: column;
    height: 600px; /* Fixed height for App feel */
}

/* App Header & Progress */
.app-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding: 0 10px; }
.progress-dots { display: flex; gap: 8px; }
.dot { width: 30px; height: 4px; background: rgba(255,255,255,0.1); border-radius: 5px; transition: 0.4s; }
.dot.active { background: var(--accent-cyan); box-shadow: 0 0 10px var(--accent-cyan); }
.app-status { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* Card Area */
.app-card-area { flex-grow: 1; position: relative; width: 100%; border-radius: 20px; perspective: 1000px; }

.quiz-card-stack { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.quiz-card {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 20px; background-size: cover; background-position: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.5s;
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 1;
}

.quiz-card::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); border-radius: 0 0 20px 20px;
}

.quiz-card.active { z-index: 10; }
.quiz-card.swipe-left { transform: translateX(-120%) rotate(-15deg); opacity: 0; }
.quiz-card.swipe-right { transform: translateX(120%) rotate(15deg); opacity: 0; }

/* App Controls (The Buttons - FIXED) */
.app-controls { display: flex; justify-content: center; gap: 20px; margin-top: 25px; padding: 0 10px; }

.btn-swipe {
    flex: 1; display: flex; justify-content: center; align-items: center; gap: 10px;
    padding: 15px 20px; border-radius: 50px; border: none; cursor: pointer;
    font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-reject { background: rgba(255, 71, 87, 0.1); color: #ff4757; border: 1px solid rgba(255, 71, 87, 0.4); }
.btn-reject:hover { background: #ff4757; color: #fff; box-shadow: 0 10px 25px rgba(255, 71, 87, 0.4); transform: translateY(-3px); }

.btn-accept { background: rgba(46, 204, 113, 0.1); color: #2ecc71; border: 1px solid rgba(46, 204, 113, 0.4); }
.btn-accept:hover { background: #2ecc71; color: #fff; box-shadow: 0 10px 25px rgba(46, 204, 113, 0.4); transform: translateY(-3px); }

/* Result Box */
.quiz-result-box {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 10, 30, 0.9); border-radius: 20px;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; padding: 30px; animation: fadeInZoom 0.5s ease;
}
.result-glow-icon {
    width: 80px; height: 80px; background: rgba(51, 213, 229, 0.1); border: 2px solid var(--accent-cyan);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; color: var(--accent-cyan); margin-bottom: 20px; box-shadow: 0 0 30px rgba(51, 213, 229, 0.4);
}
.quiz-result-box h3 { color: #fff; font-size: 2rem; margin-bottom: 10px; font-family: 'Playfair Display', serif; }
.quiz-result-box p { color: #aaa; font-size: 0.95rem; line-height: 1.6; }

/* Responsive */
@media (max-width: 991px) {
    .matchmaker-master-grid { grid-template-columns: 1fr; gap: 40px; }
    .app-glass-frame { max-width: 500px; margin: 0 auto; height: 550px; width: 100%; }
}

/* ==========================================
   SCROLLYTELLING (BED ANATOMY) CSS
   ========================================== */
.bed-anatomy-section {
    height: 400vh; /* Provides scrollable space */
    background: #0B0E14;
    position: relative;
}

.anatomy-sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.anatomy-text-content {
    position: absolute;
    top: 15%;
    text-align: center;
    z-index: 20;
    width: 100%;
    padding: 0 20px;
}

.anatomy-text-content h2 { font-size: 2.5rem; color: var(--accent-cyan); transition: 0.3s; }
.anatomy-text-content p { font-size: 1.1rem; color: #ccc; max-width: 600px; margin: 0 auto; transition: 0.3s; }

.anatomy-visual-container {
    position: relative;
    width: 80%;
    max-width: 800px;
    height: 50vh;
    margin-top: 10vh;
}

.bed-layer {
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%) translateY(50px);
    width: 100%;
    opacity: 0;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

/* Scroll Active Classes (Toggled by JS) */
.bed-layer.visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ==========================================
   🚀 WORLD-CLASS: PROCESS TIMELINE CSS
   ========================================== */
.premium-process-section {
    background-color: var(--charcoal, #050515);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(232, 73, 232, 0.1);
}

/* Subtle Background Glowing Orbs */
.process-bg-glow {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%; filter: blur(150px);
    opacity: 0.15; pointer-events: none;
}
.glow-top-left { background: var(--accent-cyan); top: -100px; left: -200px; }
.glow-bottom-right { background: var(--accent-pink); bottom: -100px; right: -200px; }

/* Timeline Container */
.process-zigzag-timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
}

/* The Glowing Center Line */
.timeline-center-line {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 2px; height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

/* (Optional) Glowing progress bar inside the line */
.timeline-progress-bar {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 50%; /* You can animate height with JS later */
    background: linear-gradient(to bottom, var(--accent-cyan), var(--accent-pink), transparent);
    box-shadow: 0 0 15px var(--accent-cyan);
    animation: flowDown 3s linear infinite;
}
@keyframes flowDown {
    0% { top: -50%; opacity: 0; }
    50% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Node Wrappers */
.process-node {
    position: relative;
    width: 50%;
    margin-bottom: 50px;
    z-index: 2;
}
.process-node:last-child { margin-bottom: 0; }

.node-left { left: 0; padding-right: 60px; }
.node-right { left: 50%; padding-left: 60px; }

/* The Floating Dots on the Line */
.node-dot {
    position: absolute;
    top: 30px;
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: #000;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    z-index: 5;
    transition: 0.4s;
}
.node-left .node-dot { right: -25px; } /* Center perfectly on the line */
.node-right .node-dot { left: -25px; }

.cyan-dot { background: var(--accent-cyan); box-shadow: 0 0 20px rgba(51, 213, 229, 0.5); }
.pink-dot { background: var(--accent-pink); box-shadow: 0 0 20px rgba(232, 73, 232, 0.5); color: #fff; }

.process-node:hover .node-dot { transform: scale(1.2); }

/* The Glass Card */
.process-card {
    background: rgba(10, 10, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 35px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.process-node:hover .process-card {
    transform: translateY(-10px);
    border-color: rgba(51, 213, 229, 0.3);
    box-shadow: 0 25px 50px rgba(51, 213, 229, 0.15);
}
.node-right:hover .process-card {
    border-color: rgba(232, 73, 232, 0.3);
    box-shadow: 0 25px 50px rgba(232, 73, 232, 0.15);
}

/* Huge Number Watermark in Background */
.bg-watermark {
    position: absolute;
    top: -20px; right: 10px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    z-index: 0;
    user-select: none;
}
.node-right .bg-watermark { left: 10px; right: auto; }

/* Card Content */
.card-header { margin-bottom: 15px; position: relative; z-index: 1; }
.phase-tag {
    display: inline-block; padding: 4px 12px; border-radius: 50px;
    background: rgba(51, 213, 229, 0.1); color: var(--accent-cyan);
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    border: 1px solid rgba(51, 213, 229, 0.2);
}
.pink-tag {
    background: rgba(232, 73, 232, 0.1); color: var(--accent-pink);
    border: 1px solid rgba(232, 73, 232, 0.2);
}

.process-card h3 { font-size: 1.5rem; color: #fff; margin-bottom: 12px; font-weight: 700; position: relative; z-index: 1; }
.process-card p { font-size: 0.95rem; color: #A0AABF; line-height: 1.6; margin-bottom: 20px; position: relative; z-index: 1; }

/* Checklist */
.process-checklist {
    list-style: none; padding: 0; margin: 0; position: relative; z-index: 1;
}
.process-checklist li {
    display: flex; align-items: center; gap: 10px;
    color: #ccc; font-size: 0.85rem; font-weight: 500; margin-bottom: 8px;
}
.node-left .process-checklist li i { color: var(--accent-cyan); }
.node-right .process-checklist li i { color: var(--accent-pink); }

/* --- MOBILE RESPONSIVE (Vertical Timeline) --- */
@media (max-width: 991px) {
    .process-zigzag-timeline { padding-left: 30px; }
    
    .timeline-center-line { left: 20px; transform: none; }
    
    .process-node { width: 100%; left: 0 !important; padding: 0 0 0 50px !important; }
    
    .node-dot { left: -5px !important; right: auto !important; width: 45px; height: 45px; font-size: 1rem; }
    
    .bg-watermark { right: 10px !important; left: auto !important; font-size: 6rem; }
    
    .process-card { padding: 30px 20px; }
}

/* ==========================================
   🚀 WORLD-CLASS: DIGITAL EXPERIENCE DASHBOARD CSS
   ========================================== */
.premium-exp-section {
    background-color: var(--dark-blue, #0A0A2A);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Background Glowing Orbs */
.exp-bg-orb {
    position: absolute; border-radius: 50%; filter: blur(150px); opacity: 0.2; pointer-events: none; z-index: 0;
}
.exp-orb-cyan { width: 500px; height: 500px; background: var(--accent-cyan); top: -100px; left: -200px; }
.exp-orb-pink { width: 400px; height: 400px; background: var(--accent-pink); bottom: -100px; right: -100px; }

/* Dashboard Layout */
.exp-dashboard-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
    background: rgba(10, 10, 30, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 20px;
    backdrop-filter: blur(25px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    position: relative;
    z-index: 2;
    min-height: 550px;
}

/* --- SIDEBAR TABS --- */
.exp-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.exp-tab-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.exp-tab-btn:hover { background: rgba(255, 255, 255, 0.05); }

.tab-icon {
    width: 50px; height: 50px; border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: #888; transition: 0.4s;
}

.tab-text h4 { color: #ccc; font-size: 1.1rem; margin-bottom: 5px; transition: 0.4s; }
.tab-text span { color: #666; font-size: 0.8rem; }

/* Active Tab State (Cyan/Pink Brand Colors) */
.exp-tab-btn.active {
    background: rgba(51, 213, 229, 0.05);
    border: 1px solid rgba(51, 213, 229, 0.3);
    box-shadow: 0 10px 30px rgba(51, 213, 229, 0.1);
    transform: translateX(10px);
}
.exp-tab-btn.active .tab-icon {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-pink));
    color: #fff; box-shadow: 0 0 15px rgba(51, 213, 229, 0.5);
}
.exp-tab-btn.active .tab-text h4 { color: #fff; font-weight: 700; }
.exp-tab-btn.active .tab-text span { color: var(--accent-cyan); }

/* --- RIGHT SCREEN --- */
.exp-screen {
    background: #000;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.exp-content-panel { display: none; width: 100%; height: 100%; animation: fadeInZoom 0.5s ease; }
.exp-content-panel.active { display: block; }

/* MOOD ENGINE (Pure CSS Magic) */
.mood-engine-container { position: relative; width: 100%; height: 100%; }
.mood-base-img { width: 100%; height: 100%; object-fit: cover; display: block; }

.mood-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; transition: opacity 0.1s linear; opacity: 0;
}
.evening-overlay { background: linear-gradient(to bottom, #ff9900, #ff5500); mix-blend-mode: multiply; }
.night-overlay { background: linear-gradient(to bottom, #000033, #000000); mix-blend-mode: multiply; }
.cove-glow-effect {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 50%;
    background: radial-gradient(ellipse at bottom, rgba(51, 213, 229, 0.8) 0%, transparent 70%);
    mix-blend-mode: screen; pointer-events: none; opacity: 0; transition: opacity 0.1s linear;
}

/* Smart Slider Control */
.smart-slider-panel {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    display: flex; align-items: center; gap: 20px;
    padding: 15px 25px; border-radius: 50px; width: 80%; max-width: 400px;
    background: rgba(10, 10, 30, 0.7); backdrop-filter: blur(15px); border: 1px solid rgba(51, 213, 229, 0.3);
}
.slider-track-wrapper { flex-grow: 1; display: flex; align-items: center; }

input[type=range]#smart-mood-slider {
    -webkit-appearance: none; width: 100%; height: 6px; background: rgba(255,255,255,0.2);
    border-radius: 5px; outline: none;
}
input[type=range]#smart-mood-slider::-webkit-slider-thumb {
    -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%;
    background: #fff; border: 3px solid var(--accent-cyan);
    box-shadow: 0 0 15px var(--accent-cyan); cursor: pointer; transition: 0.2s;
}
input[type=range]#smart-mood-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }

.floating-instruction {
    position: absolute; top: 20px; left: 20px;
    background: rgba(0,0,0,0.6); color: #fff; padding: 6px 15px;
    border-radius: 50px; font-size: 0.8rem; border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(5px);
}

/* ASMR Gallery */
.asmr-gallery {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
    width: 100%; height: calc(100% - 40px); background: #000;
}
.asmr-macro-card { position: relative; overflow: hidden; cursor: zoom-in; }
.asmr-img { width: 100%; height: 100%; object-fit: cover; transition: transform 2s cubic-bezier(0.25, 0.8, 0.25, 1); opacity: 0.8; }
.asmr-macro-card:hover .asmr-img { transform: scale(1.3); opacity: 1; }

.asmr-glass-tag {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    background: rgba(10,10,30,0.8); color: #fff; padding: 8px 15px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 600; white-space: nowrap; border: 1px solid var(--accent-cyan);
    pointer-events: none; backdrop-filter: blur(5px);
}

/* Responsive */
@media (max-width: 991px) {
    .exp-dashboard-wrapper { grid-template-columns: 1fr; }
    .exp-sidebar { flex-direction: row; overflow-x: auto; padding-bottom: 10px; }
    .exp-tab-btn { flex: 0 0 280px; transform: none !important; }
    .exp-tab-btn.active { transform: translateY(-5px) !important; }
    .exp-screen { min-height: 400px; }
    .asmr-gallery { grid-template-columns: 1fr; }
}

/* ==========================================
   🚀 WORLD-CLASS: BENTO CATEGORY GRID CSS
   ========================================== */
.premium-bento-section {
    background-color: var(--charcoal, #050515);
    padding: 100px 0;
    position: relative;
    border-top: 1px solid rgba(51, 213, 229, 0.1);
}

/* The Advanced CSS Grid Layout */
.bento-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px; /* Base height for calculation */
    gap: 20px;
    margin-top: 50px;
}

/* Grid Spanning Logic (The Bento Magic) */
.bento-master { grid-column: span 2; grid-row: span 2; } /* Large Square */
.bento-closet { grid-column: span 1; grid-row: span 2; } /* Tall Rectangle */
.bento-standard { grid-column: span 1; grid-row: span 1; } /* Small Square */
.bento-wide { grid-column: span 2; grid-row: span 1; } /* Wide Rectangle */

/* Base Card Styling */
.bento-cat-card {
    position: relative;
    display: block;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.bento-cat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(51, 213, 229, 0.4);
    box-shadow: 0 20px 50px rgba(51, 213, 229, 0.15);
}

/* The High-Quality Image with Zoom Effect */
.bento-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0.85;
}
.bento-cat-card:hover .bento-img {
    transform: scale(1.1);
    opacity: 0.5; /* Darkens image on hover so text pops out */
}

/* Glassmorphism Tags */
.bento-tag {
    position: absolute;
    top: 20px; left: 20px;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 10;
    backdrop-filter: blur(10px);
}
.cyan-tag { background: rgba(51, 213, 229, 0.15); color: var(--accent-cyan); border: 1px solid rgba(51, 213, 229, 0.4); }
.pink-tag { background: rgba(232, 73, 232, 0.15); color: var(--accent-pink); border: 1px solid rgba(232, 73, 232, 0.4); }

/* The Overlay & Content Animation Engine */
.bento-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(5, 5, 21, 0.95) 0%, rgba(5, 5, 21, 0.6) 40%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    z-index: 5;
    transition: all 0.5s ease;
}

.bento-content {
    transform: translateY(60px); /* Pushes the details list out of view initially */
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.bento-cat-card:hover .bento-content {
    transform: translateY(0); /* Brings everything up on hover */
}

/* Typography */
.bento-content h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 5px 15px rgba(0,0,0,0.8);
}
.bento-content .sub-title {
    color: var(--accent-cyan);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* The SEO-Rich Hidden Details */
.bento-details {
    list-style: none; padding: 0; margin: 0 0 20px 0;
    opacity: 0;
    transition: opacity 0.5s ease 0.1s; /* Fades in slightly after sliding up */
}
.bento-cat-card:hover .bento-details { opacity: 1; }

.bento-details li {
    color: #ccc;
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.bento-details li i { color: var(--accent-pink); font-size: 0.8rem; }

/* Explore Link */
.bento-explore {
    display: inline-flex; align-items: center; gap: 8px;
    color: #fff; font-size: 0.85rem; font-weight: 700;
    opacity: 0; transition: all 0.5s ease 0.2s;
}
.bento-explore i { transition: 0.3s; color: var(--accent-cyan); }
.bento-cat-card:hover .bento-explore { opacity: 1; }
.bento-cat-card:hover .bento-explore i { transform: translateX(5px); }

/* --- MOBILE RESPONSIVE FIXES --- */
@media (max-width: 1024px) {
    .bento-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: minmax(280px, auto); }
    .bento-master { grid-column: span 2; grid-row: span 1; }
    .bento-closet { grid-column: span 2; grid-row: span 1; }
    .bento-standard { grid-column: span 1; }
    .bento-wide { grid-column: span 2; }
}

@media (max-width: 768px) {
    .bento-gallery-grid { grid-template-columns: 1fr; }
    .bento-cat-card { grid-column: span 1 !important; grid-row: span 1 !important; min-height: 350px; }
    
    /* On mobile, show content without needing hover */
    .bento-content { transform: translateY(0); }
    .bento-details, .bento-explore { opacity: 1; }
    .bento-overlay { background: linear-gradient(to top, rgba(5, 5, 21, 0.95) 0%, rgba(5, 5, 21, 0.8) 60%, transparent 100%); }
}

/* ==========================================
   🚀 WORLD-CLASS: SEO ARCHITECTURAL INTRO CSS
   ========================================== */
.premium-intro-section {
    background-color: var(--charcoal, #050515);
    padding: 100px 0 120px 0;
    position: relative;
    overflow: hidden;
}

.intro-glow-orb {
    position: absolute;
    top: 50%; left: 0;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(51, 213, 229, 0.08) 0%, transparent 70%);
    transform: translateY(-50%);
    z-index: 0; pointer-events: none;
}

.intro-master-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr; /* Left image slightly smaller, right content gets more space */
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* --- LEFT: VISUAL COMPOSITION --- */
.image-layer-wrapper {
    position: relative;
    width: 100%;
    padding-right: 30px; /* Space for the accent frame */
    padding-bottom: 30px;
}

.intro-main-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    position: relative;
    z-index: 2;
    filter: brightness(0.9);
    transition: 0.5s ease;
}

.image-layer-wrapper:hover .intro-main-img {
    transform: scale(1.02);
    filter: brightness(1);
}

/* The Accent Frame Behind Image */
.accent-frame-line {
    position: absolute;
    top: 30px; right: 0; bottom: 0; left: 30px;
    border: 2px solid var(--accent-cyan);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.5;
    transition: 0.5s ease;
}
.image-layer-wrapper:hover .accent-frame-line {
    transform: translate(10px, 10px);
    opacity: 1;
}

/* Floating Trust Badge */
.floating-trust-badge {
    position: absolute;
    bottom: 50px; left: -30px;
    background: rgba(10, 10, 30, 0.7);
    padding: 20px 25px;
    border-radius: 16px;
    display: flex; align-items: center; gap: 15px;
    z-index: 5;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    animation: floatUpDown 4s ease-in-out infinite;
}

@keyframes floatUpDown {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

.badge-icon {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-pink));
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    color: #fff; font-size: 1.5rem;
    box-shadow: 0 0 15px rgba(51, 213, 229, 0.4);
}
.badge-text strong { display: block; color: #fff; font-size: 1.3rem; font-family: 'Playfair Display', serif; }
.badge-text span { color: var(--accent-cyan); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

/* --- RIGHT: SEO CONTENT PANEL --- */
.seo-rich-content { margin-bottom: 30px; }
.lead-para {
    font-size: 1.15rem; color: #D1D5DB; line-height: 1.7; margin-bottom: 15px;
}
.seo-rich-content p {
    font-size: 1rem; color: #A0AABF; line-height: 1.6; margin-bottom: 15px;
}
.seo-rich-content strong { color: #fff; font-weight: 600; }

/* Elegant Feature List */
.intro-feature-list {
    list-style: none; padding: 0; margin: 0 0 40px 0;
    display: flex; flex-direction: column; gap: 20px;
}
.intro-feature-list li {
    display: flex; align-items: flex-start; gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    padding: 15px 20px;
    border-radius: 12px;
    border-left: 3px solid var(--accent-cyan);
    transition: 0.3s;
}
.intro-feature-list li:hover { background: rgba(51, 213, 229, 0.05); transform: translateX(10px); }
.intro-feature-list li:nth-child(2) { border-left-color: var(--accent-pink); }
.intro-feature-list li:nth-child(2):hover { background: rgba(232, 73, 232, 0.05); }

.intro-feature-list i { color: var(--accent-cyan); font-size: 1.2rem; margin-top: 3px; }
.intro-feature-list li:nth-child(2) i { color: var(--accent-pink); }

.intro-feature-list strong { display: block; color: #fff; font-size: 1.05rem; margin-bottom: 4px; }
.intro-feature-list span { color: #888; font-size: 0.9rem; }

/* Premium Internal Links */
.intro-action-group { display: flex; gap: 20px; flex-wrap: wrap; }

.btn-ghost-cyan, .btn-ghost-pink {
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.95rem; font-weight: 600;
    text-decoration: none;
    display: flex; align-items: center; gap: 8px;
    transition: 0.4s;
    backdrop-filter: blur(5px);
}
.btn-ghost-cyan {
    color: var(--accent-cyan); border: 1px solid rgba(51, 213, 229, 0.3); background: rgba(51, 213, 229, 0.05);
}
.btn-ghost-cyan:hover { background: var(--accent-cyan); color: #000; box-shadow: 0 10px 25px rgba(51, 213, 229, 0.3); transform: translateY(-3px); }

.btn-ghost-pink {
    color: var(--accent-pink); border: 1px solid rgba(232, 73, 232, 0.3); background: rgba(232, 73, 232, 0.05);
}
.btn-ghost-pink:hover { background: var(--accent-pink); color: #fff; box-shadow: 0 10px 25px rgba(232, 73, 232, 0.3); transform: translateY(-3px); }

/* Responsive Adjustments */
@media (max-width: 991px) {
    .intro-master-grid { grid-template-columns: 1fr; gap: 50px; }
    .image-layer-wrapper { padding-right: 15px; padding-bottom: 15px; max-width: 500px; margin: 0 auto; }
    .accent-frame-line { top: 15px; left: 15px; }
    .floating-trust-badge { left: 10px; bottom: 20px; padding: 15px; }
}
@media (max-width: 576px) {
    .floating-trust-badge { display: none; /* Hide on very small screens to avoid clutter */ }
    .intro-action-group { flex-direction: column; width: 100%; }
    .btn-ghost-cyan, .btn-ghost-pink { justify-content: center; }
}

/* ==========================================
   🚀 WORLD-CLASS: TRANSFORMATION SLIDER CSS
   ========================================== */
.premium-transformation-section {
    background-color: var(--dark-blue, #0A0A2A);
    padding: 120px 0;
    position: relative;
    border-top: 1px solid rgba(51, 213, 229, 0.1);
}

.transformation-master-wrapper {
    max-width: 1000px;
    margin: 50px auto 0;
    position: relative;
}

/* The Container */
.custom-ba-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* Perfect cinematic ratio */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    border: 2px solid rgba(255,255,255,0.05);
    background: #000;
}

/* Base Image Styling */
.ba-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    pointer-events: none; /* Prevents dragging the image itself */
}

/* The Before Image is on top and clipped */
.ba-before {
    z-index: 2;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%); /* Adjusted dynamically by JS */
    filter: sepia(30%) contrast(0.9); /* Makes the 'before' look slightly raw/older */
}

/* The Slider Line */
.ba-slider-line {
    position: absolute;
    top: 0; left: 50%;
    width: 4px; height: 100%;
    background: #fff;
    z-index: 5;
    pointer-events: none;
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(0,0,0,0.8);
}

/* The Premium Handle */
.ba-slider-handle {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 50px; height: 50px;
    background: var(--accent-cyan);
    border: 4px solid #fff;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    color: #000; font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(51, 213, 229, 0.8);
    transition: background 0.3s;
}

.custom-ba-container:hover .ba-slider-handle {
    background: var(--accent-pink);
    box-shadow: 0 0 20px rgba(232, 73, 232, 0.8);
}

/* The Labels */
.ba-label {
    position: absolute;
    top: 20px;
    padding: 8px 20px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 4;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}
.label-before { left: 20px; }
.label-after { right: 20px; background: rgba(51, 213, 229, 0.2); border-color: var(--accent-cyan); color: var(--accent-cyan); }

/* THE MAGIC NATIVE INPUT (Ensures perfect touch scrolling) */
.ba-native-slider {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 10;
    opacity: 0; /* Invisible but functional */
    cursor: ew-resize;
    margin: 0;
}

/* --- Project Stats Bar (SEO & Info Boost) --- */
.project-stats-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 30, 0.7);
    padding: 25px 40px;
    border-radius: 20px;
    margin-top: 30px;
    border: 1px solid rgba(51, 213, 229, 0.2);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item i { font-size: 1.8rem; }
.text-cyan { color: var(--accent-cyan); }
.text-pink { color: var(--accent-pink); }

.stat-item span { display: block; color: #888; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 2px; }
.stat-item strong { display: block; color: #fff; font-size: 1.1rem; font-weight: 700; }

/* Responsive Adjustments */
@media (max-width: 991px) {
    .project-stats-bar { flex-wrap: wrap; gap: 20px; padding: 20px; }
    .stat-item { width: calc(50% - 10px); }
}
@media (max-width: 576px) {
    .custom-ba-container { aspect-ratio: 4 / 3; } /* Taller ratio for small screens */
    .stat-item { width: 100%; }
    .ba-slider-handle { width: 40px; height: 40px; font-size: 1rem; }
    .ba-label { padding: 5px 12px; font-size: 0.7rem; }
}

/* ==========================================
   🚀 WORLD-CLASS: BEDROOM PORTFOLIO CSS
   ========================================== */
.premium-portfolio-section {
    background-color: var(--charcoal, #050515);
    padding: 100px 0;
    position: relative;
    border-top: 1px solid rgba(51, 213, 229, 0.1);
}

/* Scrollable Filter Tabs (Apple UI) */
.port-filter-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 40px 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    /* Hide Scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.port-filter-container::-webkit-scrollbar { display: none; }

.p-filter-btn {
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex; align-items: center; gap: 8px;
    font-family: 'Poppins', sans-serif;
}
.p-filter-btn i { color: var(--accent-cyan); transition: 0.3s; }

.p-filter-btn:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.p-filter-btn.active {
    background: linear-gradient(135deg, rgba(51,213,229,0.1), rgba(232,73,232,0.1));
    border-color: var(--accent-cyan);
    color: #fff; font-weight: 700;
    box-shadow: 0 5px 20px rgba(51, 213, 229, 0.2);
    transform: translateY(-2px);
}
.p-filter-btn.active i { color: var(--accent-pink); }

/* The Editorial Masonry Grid */
.port-masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

/* Spanning Logic for Magazine Look */
.span-2-col { grid-column: span 2; }
.span-2-row { grid-row: span 2; }

/* Grid Item Base */
.port-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    opacity: 1; transform: scale(1);
}
.port-item.hide { display: none; opacity: 0; transform: scale(0.8); }
.port-item.show { animation: fadeInScale 0.5s ease forwards; }

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.port-item:hover {
    transform: translateY(-8px);
    border-color: rgba(51, 213, 229, 0.3);
    box-shadow: 0 20px 50px rgba(51, 213, 229, 0.2);
}

/* Images & Video */
.port-img, .port-video {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; transition: transform 0.8s ease; opacity: 0.85;
}
.port-item:not(.before-after):not(.video):hover .port-img {
    transform: scale(1.1); opacity: 0.5; /* Darkens for text readability */
}

/* Before & After Interactive Logic */
.img-before { opacity: 0; z-index: 2; transition: opacity 0.5s ease; filter: sepia(30%); }
.img-after { z-index: 1; }
.port-item.before-after:hover .img-before { opacity: 1; } /* Fades in the old image */

/* Video Interactive Logic */
.port-item.video:hover .port-video { transform: scale(1.05); }

/* The Glassmorphism Overlay */
.port-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(5,5,20,0.95) 0%, rgba(5,5,20,0.4) 50%, transparent 100%);
    display: flex; justify-content: space-between; align-items: flex-end;
    padding: 25px; z-index: 5; transition: 0.4s ease;
}

/* Content Typography */
.port-content {
    transform: translateY(20px); opacity: 0.8; transition: all 0.4s ease;
}
.port-item:hover .port-content { transform: translateY(0); opacity: 1; }

.port-content h4 { color: #fff; font-size: 1.3rem; margin-bottom: 5px; font-family: 'Playfair Display', serif; }
.port-meta { color: #ccc; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.5px; display: flex; align-items: center; gap: 8px; }
.text-cyan { color: var(--accent-cyan); }
.text-pink { color: var(--accent-pink); }

/* Premium Action Buttons */
.port-zoom-btn {
    width: 45px; height: 45px; border-radius: 50%; border: none;
    background: rgba(255,255,255,0.1); color: #fff; font-size: 1.2rem;
    display: flex; justify-content: center; align-items: center;
    backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer; opacity: 0; transform: translateX(-20px) rotate(-45deg);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.port-item:hover .port-zoom-btn { opacity: 1; transform: translateX(0) rotate(0deg); background: var(--accent-cyan); color: #000; border-color: var(--accent-cyan); box-shadow: 0 0 15px var(--accent-cyan); }

/* Play button specific */
.port-item.video .play-btn { transform: scale(0.5); opacity: 0; }
.port-item.video:hover .play-btn { transform: scale(1); opacity: 1; background: var(--accent-pink); color: #fff; border-color: var(--accent-pink); box-shadow: 0 0 15px var(--accent-pink); }

/* Interactive Badges (Top Left) */
.interactive-badge {
    position: absolute; top: 15px; left: 15px;
    background: rgba(0,0,0,0.6); color: #fff; padding: 5px 12px;
    border-radius: 50px; font-size: 0.75rem; z-index: 10;
    backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.2);
    pointer-events: none; transition: 0.3s;
}
.port-item:hover .interactive-badge { opacity: 0; }

/* --- RESPONSIVE LOGIC --- */
@media (max-width: 1024px) {
    .port-masonry-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 280px; }
    .span-2-col { grid-column: span 2; }
    .span-2-row { grid-row: span 1; } /* Reset tall cards on tablet */
    .port-filter-container { justify-content: flex-start; }
}

@media (max-width: 768px) {
    .port-masonry-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }
    .span-2-col { grid-column: span 1; }
    
    /* Auto-show content on mobile (No hover required) */
    .port-content { transform: translateY(0); opacity: 1; }
    .port-zoom-btn { opacity: 1; transform: translateX(0) rotate(0deg); background: rgba(51, 213, 229, 0.2); color: var(--accent-cyan); border-color: var(--accent-cyan); }
    .port-overlay { background: linear-gradient(to top, rgba(5,5,20,0.95) 0%, transparent 100%); }
}

/* ==========================================
   🚀 WORLD-CLASS: SLEEK MATERIAL CONSOLE CSS
   ========================================== */
.premium-material-section {
    background-color: var(--charcoal, #050515);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(51, 213, 229, 0.1);
}

.mat-bg-grid {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0; opacity: 0.8;
}

.material-console-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    position: relative;
    z-index: 2;
    margin-top: 50px;
    align-items: start; /* Keeps sidebar at the top */
}

/* --- LEFT SIDEBAR NAVIGATION --- */
.mat-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: sticky;
    top: 100px; /* Makes it sticky on scroll */
}

.mat-nav-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mat-nav-btn:hover { background: rgba(255,255,255,0.03); transform: translateX(5px); }

.nav-indicator {
    width: 4px; height: 0;
    background: transparent;
    border-radius: 10px;
    transition: 0.4s ease;
}

.nav-text strong { display: block; color: #fff; font-size: 1.15rem; font-family: 'Playfair Display', serif; margin-bottom: 4px; transition: 0.3s; }
.nav-text span { display: block; color: #666; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; transition: 0.3s; }

/* Active State */
.mat-nav-btn.active {
    background: rgba(10, 10, 30, 0.6);
    border-color: rgba(51, 213, 229, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transform: translateX(10px);
}
.mat-nav-btn.active .nav-indicator { height: 35px; background: linear-gradient(to bottom, var(--accent-cyan), var(--accent-pink)); box-shadow: 0 0 10px var(--accent-cyan); }
.mat-nav-btn.active .nav-text span { color: var(--accent-cyan); }

/* --- RIGHT DISPLAY AREA (Apple-Style Tech Specs) --- */
.mat-display-area {
    background: rgba(10, 10, 25, 0.7);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.mat-header-dynamic { margin-bottom: 30px; padding-bottom: 20px; transition: opacity 0.4s ease; }
.mat-header-dynamic h3 { color: var(--accent-cyan); font-size: 2.2rem; margin-bottom: 8px; font-family: 'Playfair Display', serif; }
.mat-header-dynamic p { color: #A0AABF; font-size: 1.05rem; margin: 0; max-width: 600px; }

/* The Sleek List Container */
.mat-spec-list {
    display: flex;
    flex-direction: column;
    transition: opacity 0.4s ease;
}

/* Individual Spec Row */
.spec-row {
    display: grid;
    grid-template-columns: 200px 1fr 200px; /* Component | Detail | Brands */
    gap: 30px;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.spec-row:hover {
    background: rgba(255,255,255,0.02);
    padding-left: 15px; /* Slight indent on hover */
    padding-right: 15px;
    border-radius: 12px;
    border-top-color: transparent;
}

/* Left Column: Component Icon & Title */
.sr-component { display: flex; align-items: center; gap: 15px; }
.sr-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(255,255,255,0.05); color: var(--accent-cyan);
    display: flex; justify-content: center; align-items: center; font-size: 1.1rem;
    transition: 0.3s;
}
.spec-row:hover .sr-icon { background: var(--accent-cyan); color: #000; box-shadow: 0 0 15px var(--accent-cyan); }
.sr-title { color: #fff; font-weight: 700; font-size: 1.05rem; letter-spacing: 0.5px; }

/* Middle Column: Material Spec */
.sr-detail { color: #ccc; font-size: 0.95rem; line-height: 1.6; }

/* Right Column: Brand Tags */
.sr-brands { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.brand-tag {
    background: rgba(0, 0, 0, 0.4); border: 1px solid rgba(255,255,255,0.1);
    color: #aaa; font-size: 0.75rem; padding: 5px 12px; border-radius: 50px; font-weight: 600;
    transition: 0.3s; white-space: nowrap;
}
.spec-row:hover .brand-tag { border-color: rgba(51, 213, 229, 0.3); color: #fff; background: rgba(51, 213, 229, 0.05); }

.mat-footer-note { margin-top: 40px; padding-top: 20px; border-top: 1px dashed rgba(255,255,255,0.1); font-size: 0.85rem; color: #666; font-style: italic; }

/* --- RESPONSIVE LOGIC --- */
@media (max-width: 1024px) {
    .material-console-wrapper { grid-template-columns: 1fr; gap: 30px; }
    .mat-sidebar { position: static; flex-direction: row; overflow-x: auto; padding-bottom: 10px; -ms-overflow-style: none; scrollbar-width: none; }
    .mat-sidebar::-webkit-scrollbar { display: none; }
    .mat-nav-btn { flex: 0 0 280px; padding: 15px; }
    .mat-nav-btn.active { transform: translateY(-5px); }
    .nav-indicator { height: 4px; width: 0; transition: width 0.4s; }
    .mat-nav-btn.active .nav-indicator { width: 40px; height: 4px; }
    
    .spec-row { grid-template-columns: 1fr; gap: 15px; padding: 20px 0; }
    .sr-brands { justify-content: flex-start; }
    .spec-row:hover { padding-left: 0; padding-right: 0; background: transparent; }
}
@media (max-width: 768px) {
    .mat-display-area { padding: 30px 20px; }
    .mat-header-dynamic h3 { font-size: 1.8rem; }
}

/* ==========================================
   🚀 WORLD-CLASS: PREMIUM PRICING UI CSS
   ========================================== */
.premium-pricing-section {
    background-color: var(--dark-blue, #0A0A2A);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(51, 213, 229, 0.1);
}

.premium-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    align-items: center; /* Vertically centers them, allowing the popular card to scale */
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

/* Premium Card Base */
.premium-pkg-card {
    background: rgba(10, 10, 30, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 650px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.premium-pkg-card:hover {
    transform: translateY(-10px);
    background: rgba(15, 15, 45, 0.8);
}

/* Theme Top Glow Effect */
.pkg-top-glow {
    position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: #555; transition: 0.4s; z-index: 5;
}

/* Header & Badges */
.pkg-tier-badge {
    display: inline-block; padding: 4px 12px; border-radius: 50px;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 1px;
    margin-bottom: 15px; border: 1px solid; text-transform: uppercase;
}

.premium-pkg-card h3 { color: #fff; font-size: 1.6rem; margin-bottom: 10px; font-weight: 700; font-family: 'Playfair Display', serif; }

.pkg-price-box { display: flex; align-items: baseline; margin-bottom: 15px; }
.pkg-price-box .currency { color: #888; font-size: 1.2rem; font-weight: 600; margin-right: 2px; }
.pkg-price-box .amount { color: #fff; font-size: 2.6rem; font-weight: 800; line-height: 1; font-family: 'Poppins', sans-serif;}
.pkg-price-box .unit { color: #888; font-size: 0.9rem; margin-left: 5px; }

.pkg-short-desc { color: #999; font-size: 0.9rem; line-height: 1.5; min-height: 60px; }

.pkg-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent); margin: 25px 0; }

/* Features List */
.pkg-features-list { flex-grow: 1; margin-bottom: 30px; display: flex; flex-direction: column; }
.modern-feature-ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 15px; }

.modern-feature-ul li { display: flex; align-items: flex-start; gap: 15px; }

.icon-box {
    width: 35px; height: 35px; border-radius: 10px; display: flex;
    align-items: center; justify-content: center; font-size: 1rem;
    flex-shrink: 0; transition: all 0.3s ease;
}

.text-box { display: flex; flex-direction: column; justify-content: center; }
.text-box .title { color: #888; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 4px; }
.text-box .desc { color: #fff; font-size: 0.95rem; font-weight: 500; line-height: 1.3; }

/* Footer Perks & Buttons */
.pkg-footer { margin-top: auto; display: flex; flex-direction: column; gap: 20px; }
.pkg-perks { display: flex; justify-content: space-between; font-size: 0.85rem; font-weight: 600; border-top: 1px dashed rgba(255,255,255,0.1); padding-top: 15px; }
.pkg-perks i { margin-right: 5px; }

.text-red { color: #ff4757; }
.text-cyan { color: var(--accent-cyan); }
.text-pink { color: var(--accent-pink); }
.text-gold { color: #FFD700; }

/* Ghost & Solid Buttons */
.btn-premium-outline, .btn-premium-solid {
    width: 100%; padding: 15px; border-radius: 12px; font-size: 0.95rem; font-weight: 700;
    cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 0.5px;
    display: flex; justify-content: center; align-items: center; gap: 8px; font-family: 'Poppins', sans-serif;
}

.btn-premium-outline { background: rgba(255,255,255,0.03); color: #fff; border: 1px solid rgba(255,255,255,0.1); }
.btn-premium-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-3px); }

.btn-premium-solid { background: linear-gradient(135deg, var(--accent-cyan), var(--accent-pink)); color: #fff; border: none; box-shadow: 0 10px 25px rgba(51, 213, 229, 0.4); }
.btn-premium-solid:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(232, 73, 232, 0.5); }

/* --- THEME SPECIFIC COLORS --- */

/* BASIC */
.theme-basic .pkg-top-glow { background: #95a5a6; }
.theme-basic .pkg-tier-badge { color: #95a5a6; border-color: rgba(149, 165, 166, 0.3); background: rgba(149, 165, 166, 0.1); }
.theme-basic .icon-box { background: rgba(149, 165, 166, 0.1); color: #95a5a6; border: 1px solid rgba(149, 165, 166, 0.2); }
.theme-basic:hover { border-color: rgba(149, 165, 166, 0.3); }

/* STANDARD (MOST POPULAR) */
.theme-standard {
    background: linear-gradient(145deg, rgba(15, 15, 40, 0.9), rgba(5, 5, 20, 0.95));
    border-color: var(--accent-cyan);
    transform: scale(1.05); /* Make it pop out */
    z-index: 10;
    box-shadow: 0 20px 50px rgba(51, 213, 229, 0.15);
}
.theme-standard:hover { transform: scale(1.08) translateY(-5px); border-color: var(--accent-pink); box-shadow: 0 30px 60px rgba(232, 73, 232, 0.25); }
.theme-standard .pkg-top-glow { background: linear-gradient(90deg, var(--accent-cyan), var(--accent-pink)); height: 6px; }
.theme-standard .pkg-tier-badge { color: var(--accent-cyan); border-color: rgba(51, 213, 229, 0.3); background: rgba(51, 213, 229, 0.1); }
.theme-standard .icon-box { background: rgba(51, 213, 229, 0.1); color: var(--accent-cyan); border: 1px solid rgba(51, 213, 229, 0.2); }

.popular-ribbon {
    position: absolute; top: 25px; right: -35px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-pink)); color: #fff;
    font-size: 0.7rem; font-weight: 800; padding: 6px 40px; transform: rotate(45deg);
    letter-spacing: 1px; box-shadow: 0 5px 15px rgba(0,0,0,0.3); z-index: 10;
}

/* LUXURY */
.theme-luxury .pkg-top-glow { background: var(--accent-pink); }
.theme-luxury .pkg-tier-badge { color: var(--accent-pink); border-color: rgba(232, 73, 232, 0.3); background: rgba(232, 73, 232, 0.1); }
.theme-luxury .icon-box { background: rgba(232, 73, 232, 0.1); color: var(--accent-pink); border: 1px solid rgba(232, 73, 232, 0.2); }
.theme-luxury:hover { border-color: rgba(232, 73, 232, 0.4); box-shadow: 0 20px 40px rgba(232, 73, 232, 0.15); }

/* ELITE */
.theme-elite .pkg-top-glow { background: #FFD700; }
.theme-elite .pkg-tier-badge { color: #FFD700; border-color: rgba(255, 215, 0, 0.3); background: rgba(255, 215, 0, 0.1); }
.theme-elite .icon-box { background: rgba(255, 215, 0, 0.1); color: #FFD700; border: 1px solid rgba(255, 215, 0, 0.2); }
.theme-elite:hover { border-color: rgba(255, 215, 0, 0.4); box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15); }

/* Responsive adjustments */
@media (max-width: 1200px) {
    .premium-pricing-grid { grid-template-columns: repeat(2, 1fr); align-items: start; gap: 30px; }
    .theme-standard { transform: scale(1); } 
    .theme-standard:hover { transform: translateY(-5px); }
}

@media (max-width: 768px) {
    .premium-pricing-grid { grid-template-columns: 1fr; max-width: 450px; margin: 40px auto 0; }
}



/* --- LEFT PANEL --- */
.calc-interactive-panel { display: flex; flex-direction: column; gap: 25px; min-width: 0; }
.calc-input-group label { display: block; color: #fff; font-size: 1.05rem; font-weight: 600; margin-bottom: 12px; }
.calc-input-group label i { color: var(--accent-cyan); margin-right: 8px; }

/* Dropdowns */
.premium-select {
    width: 100%; padding: 15px 20px; background: rgba(5, 5, 20, 0.8); color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; font-size: 1rem;
    font-family: 'Poppins', sans-serif; cursor: pointer; outline: none; appearance: none; transition: 0.3s;
}
.premium-select:focus { border-color: var(--accent-cyan); box-shadow: 0 0 15px rgba(51, 213, 229, 0.2); }
.custom-select-wrapper { position: relative; }
.custom-select-wrapper::after { content: '\f107'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: var(--accent-cyan); pointer-events: none; }

/* Size Pills */
.premium-size-selector { display: flex; gap: 10px; background: rgba(5, 5, 20, 0.8); padding: 8px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); }
.size-pill {
    flex: 1; padding: 10px 5px; background: transparent; border: none; border-radius: 8px;
    cursor: pointer; text-align: center; transition: 0.3s; display: flex; flex-direction: column;
}
.size-pill .s-label { font-weight: 600; font-size: 0.9rem; color: #ccc; transition: 0.3s; }
.size-pill .s-range { font-size: 0.75rem; color: #777; transition: 0.3s; }
.size-pill:hover { background: rgba(255,255,255,0.05); }
.size-pill.active { background: linear-gradient(135deg, var(--accent-cyan), var(--accent-pink)); box-shadow: 0 5px 15px rgba(51, 213, 229, 0.3); }
.size-pill.active .s-label, .size-pill.active .s-range { color: #fff; }

/* Sliders */
.area-calculation-wrapper { background: rgba(0,0,0,0.3); padding: 20px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.05); }
.slider-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 15px; }
.slider-header label { margin: 0; }
.area-display { background: rgba(51, 213, 229, 0.1); border: 1px solid var(--accent-cyan); padding: 5px 15px; border-radius: 8px; display: flex; align-items: center; gap: 5px; }
.area-display input { background: transparent; border: none; color: #fff; font-size: 1.2rem; font-weight: 700; width: 60px; text-align: right; outline: none; }
.area-display span { color: var(--accent-cyan); font-size: 0.9rem; font-weight: 600; }
.premium-range-slider { -webkit-appearance: none; width: 100%; height: 8px; background: rgba(255,255,255,0.1); border-radius: 5px; outline: none; margin-top: 10px; }
.premium-range-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 25px; height: 25px; border-radius: 50%; background: var(--accent-cyan); cursor: pointer; box-shadow: 0 0 15px rgba(51, 213, 229, 0.6); border: 3px solid #fff; transition: 0.2s; }
.premium-range-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }

/* Addons Carousel */
.addon-carousel-wrapper { position: relative; display: flex; align-items: center; width: 100%; min-width: 0; }
.premium-addon-grid { display: flex; gap: 15px; overflow-x: auto; scroll-behavior: smooth; padding: 10px 5px; width: 100%; cursor: grab; -ms-overflow-style: none; scrollbar-width: none; }
.premium-addon-grid::-webkit-scrollbar { display: none; }
.addon-toggle-card { flex: 0 0 135px; }
.addon-toggle-card input { display: none; }
.addon-card-inner { background: rgba(5, 5, 20, 0.8); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 20px 15px; text-align: center; cursor: pointer; transition: 0.3s; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.addon-card-inner i { font-size: 1.8rem; color: #666; transition: 0.3s; }
.addon-name { color: #ccc; font-size: 0.9rem; font-weight: 500; }
.addon-price { color: #888; font-size: 0.8rem; }
.addon-toggle-card input:checked + .addon-card-inner { background: rgba(51, 213, 229, 0.1); border-color: var(--accent-cyan); transform: translateY(-3px); }
.addon-toggle-card input:checked + .addon-card-inner i { color: var(--accent-cyan); }
.addon-toggle-card input:checked + .addon-card-inner .addon-name { color: #fff; font-weight: 600; }
.addon-toggle-card input:checked + .addon-card-inner .addon-price { color: var(--accent-cyan); }

.addon-nav-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 35px; height: 35px; border-radius: 50%; background: rgba(10, 10, 30, 0.95); border: 1px solid var(--accent-cyan); color: var(--accent-cyan); display: flex; align-items: center; justify-content: center; font-size: 1rem; cursor: pointer; z-index: 10; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6); transition: 0.3s; backdrop-filter: blur(5px); }
.addon-nav-btn:hover { background: var(--accent-cyan); color: #000; box-shadow: 0 0 20px rgba(51, 213, 229, 0.6); transform: translateY(-50%) scale(1.1); }
.left-nav { left: -15px; } .right-nav { right: -15px; }

.receipt-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; border-bottom: 1px dashed rgba(255,255,255,0.1); padding-bottom: 15px; }
.receipt-header h3 { color: #fff; font-size: 1.2rem; display: flex; align-items: center; gap: 10px; }
.receipt-header h3 i { color: var(--accent-cyan); }
.pulse-indicator { background: rgba(46, 204, 113, 0.2); color: #2ecc71; border: 1px solid #2ecc71; padding: 4px 10px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; animation: pulseGreen 2s infinite; }

.dynamic-info-bar { display: flex; justify-content: space-between; background: rgba(51, 213, 229, 0.05); border: 1px solid rgba(51, 213, 229, 0.2); border-radius: 10px; padding: 12px 15px; margin-bottom: 25px; }
.info-badge { font-size: 0.85rem; color: #ccc; display: flex; align-items: center; gap: 8px; }
.info-badge i { color: var(--accent-pink); font-size: 1rem; }
.info-badge strong { color: #fff; font-weight: 700; }

.dynamic-visualizer-box { position: relative; width: 100%; aspect-ratio: 16/10; border-radius: 12px; overflow: hidden; margin-bottom: 25px; background: #000; border: 1px solid rgba(255,255,255,0.1); }
.visualizer-img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.4s ease, transform 0.4s ease; filter: brightness(0.8); }
.visualizer-img.fading { opacity: 0.3; transform: scale(1.05); }

.material-specs-overlay { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(to top, rgba(5, 5, 15, 0.95), rgba(5, 5, 15, 0.7)); backdrop-filter: blur(5px); padding: 15px; transform: translateY(calc(100% - 40px)); transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); }
.dynamic-visualizer-box:hover .material-specs-overlay { transform: translateY(0); }
.material-specs-overlay h4 { color: var(--accent-cyan); font-size: 0.9rem; margin-bottom: 10px; display: flex; justify-content: space-between; }
.material-specs-overlay h4::after { content: 'Hover ⬆'; font-size: 0.65rem; color: #888; font-weight: 400; }
.dynamic-visualizer-box:hover .material-specs-overlay h4::after { display: none; }
#spec-details-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
#spec-details-list li { font-size: 0.75rem; color: #ddd; display: flex; align-items: flex-start; gap: 6px; }
#spec-details-list li i { color: var(--accent-pink); margin-top: 2px; }

.receipt-body { flex-grow: 1; display: flex; flex-direction: column; gap: 15px; }
.receipt-row { display: flex; justify-content: space-between; align-items: center; }
.r-label { color: #aaa; font-size: 0.95rem; }
.r-val { color: #fff; font-size: 1.1rem; font-weight: 600; font-family: 'Courier New', monospace; }
.addon-row .r-val { color: var(--accent-cyan); }
.discount-row .r-val { color: #ff4757; }
.discount-badge-percent { background: rgba(255, 71, 87, 0.15); color: #ff4757; border: 1px solid rgba(255, 71, 87, 0.4); font-size: 0.65rem; padding: 3px 8px; border-radius: 6px; font-weight: 800; margin-left: 10px; }

.receipt-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 10px 0; }
.receipt-total-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 10px; }
.receipt-total-row .r-label { color: #fff; font-size: 1.1rem; font-weight: 700; }
.receipt-total-row .grand-total { font-size: 2rem; font-weight: 800; color: #fff; text-shadow: 0 0 20px rgba(51, 213, 229, 0.5); font-family: 'Poppins', sans-serif; }
.receipt-note { color: #666; font-size: 0.75rem; text-align: center; font-style: italic; }

.btn-glow-full { width: 100%; background: linear-gradient(90deg, var(--accent-cyan), var(--accent-pink)); color: #fff; border: none; padding: 15px; border-radius: 12px; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: 0.3s; display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 20px; }
.btn-glow-full:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(232, 73, 232, 0.4); }


/* Quick vs Precise Tabs CSS */
.calc-mode-switcher {
    display: flex; gap: 10px; margin-bottom: 25px;
    background: rgba(10,10,42,0.8); padding: 5px; border-radius: 12px;
}
.mode-btn {
    flex: 1; padding: 12px 10px; background: transparent; border: none;
    color: #888; font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 600;
    border-radius: 8px; cursor: pointer; transition: 0.3s;
}
.mode-btn.active {
    background: rgba(51, 213, 229, 0.15); color: var(--accent-cyan);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.calc-mode-content { display: none; animation: fadeIn 0.4s ease; }
.calc-mode-content.active { display: block; }

.sub-label { display: block; color: #ccc; font-size: 0.9rem; margin-bottom: 10px; font-weight: 500; }
.sub-label i { color: var(--accent-pink); margin-right: 5px; }

/* Wall Inputs */
.wall-inputs-container { display: flex; flex-direction: column; gap: 12px; }
.wall-row {
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(10,10,42,0.6); padding: 10px 15px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.05);
}
.wall-label { color: #fff; font-weight: 600; font-size: 0.95rem; }
.ft-in-group { display: flex; align-items: center; gap: 10px; }
.ft-in-group input {
    width: 60px; background: transparent; border: none; border-bottom: 2px solid rgba(255,255,255,0.2);
    color: #fff; font-size: 1.1rem; font-weight: 700; text-align: center; outline: none; padding: 5px 0; transition: 0.3s;
}
.ft-in-group input:focus { border-bottom-color: var(--accent-cyan); }

.calculated-area-box {
    margin-top: 20px; background: rgba(51, 213, 229, 0.1); border-left: 4px solid var(--accent-cyan);
    padding: 15px; border-radius: 8px; display: flex; justify-content: space-between; align-items: center;
}
.calculated-area-box span { color: #ccc; font-size: 0.9rem; }
.calculated-area-box strong { color: #fff; font-size: 1.2rem; }

/* Blueprint CSS */
.blueprint-card { background: #030312; border: 1px solid rgba(51, 213, 229, 0.2); border-radius: 12px; overflow: hidden; margin-bottom: 20px;}
.bp-header { background: rgba(51, 213, 229, 0.1); color: var(--accent-cyan); font-size: 0.8rem; font-weight: 600; text-align: center; padding: 6px; letter-spacing: 1px; }
.bp-canvas { height: 140px; position: relative; display: flex; justify-content: center; align-items: center; background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 20px 20px; }
.cad-block { position: absolute; border: 2px solid #fff; background: rgba(255,255,255,0.1); display: flex; justify-content: center; align-items: center; font-size: 0.75rem; font-weight: 700; }
.cad-text-cyan { color: var(--accent-cyan); border-color: var(--accent-cyan); background: rgba(51, 213, 229, 0.15); }
.cad-text-pink { color: var(--accent-pink); border-color: var(--accent-pink); background: rgba(232, 73, 232, 0.15); }
.cad-text-yellow { color: #f1c40f; border-color: #f1c40f; background: rgba(241, 196, 15, 0.15); }

/* ==========================================================================
   🚀 WORLD-CLASS: LEAD CAPTURE & PDF QUOTE MODAL CSS
   ========================================================================== */

/* The Dark Transparent Overlay */
.media-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(5, 5, 15, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 100000; /* Ensures it stays on top of everything */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Class to activate the modal via JavaScript */
.media-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* The Close Button (Top Right) */
.media-modal-close {
    position: absolute;
    top: 25px; right: 30px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}
.media-modal-close:hover {
    color: var(--accent-pink);
    transform: rotate(90deg);
}

/* The Modal Content Box (Glassmorphism) */
.quote-modal-box {
    background: linear-gradient(145deg, #0A0A2A, #050515);
    width: 90%;
    max-width: 600px !important;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(51, 213, 229, 0.3);
    box-shadow: 0 20px 60px rgba(51, 213, 229, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInZoom 0.5s ease forwards; /* Smooth entry animation */
}

/* Inner Top Glow Line */
.quote-modal-box::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-pink));
}

/* Modal Header */
.quote-modal-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}
.quote-modal-header h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}
.quote-modal-header h3 i {
    color: var(--accent-pink);
    margin-right: 8px;
}
.quote-modal-header p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Form Layout Grid */
.form-row-custom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

/* Premium Floating Label Inputs */
.form-group-float {
    position: relative;
    width: 100%;
}

.form-group-float input {
    width: 100%;
    padding: 18px 15px;
    background: rgba(255, 255, 255, 0.05); /* Transparent Dark Box */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

/* Floating Label text */
.form-group-float label {
    position: absolute;
    top: 18px; left: 15px;
    color: #888;
    pointer-events: none;
    transition: 0.2s ease all;
    background: transparent;
    padding: 0 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}
.form-group-float label i { color: var(--accent-cyan); }

/* Input Focus & Value States (Moves the label up) */
.form-group-float input:focus,
.form-group-float input:not(:placeholder-shown) {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(51, 213, 229, 0.2);
    background: rgba(10, 10, 30, 0.8);
}
.form-group-float input:focus + label,
.form-group-float input:not(:placeholder-shown) + label {
    top: -10px; left: 10px;
    font-size: 0.8rem;
    color: var(--accent-cyan);
    background: #0A0A2A; /* Matches modal background to hide the line behind it */
    font-weight: 600;
}

/* The Download Button inside Modal */
#q-submit-btn {
    width: 100%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-pink));
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 10px 25px rgba(51, 213, 229, 0.3);
}
#q-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(232, 73, 232, 0.5);
}
#q-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Success Screen Pulse Animation */
.success-circle-pulse {
    width: 80px; height: 80px;
    background: rgba(46, 204, 113, 0.1);
    border: 2px solid #2ecc71;
    color: #2ecc71;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 2rem;
    margin: 0 auto;
    animation: pulseGreen 2s infinite;
}

/* Responsive Fixes for Modal */
@media (max-width: 600px) {
    .form-row-custom { grid-template-columns: 1fr; gap: 20px; margin-bottom: 20px; }
    .quote-modal-box { padding: 30px 20px; width: 95%; }
    .quote-modal-header h3 { font-size: 1.5rem; }
    .media-modal-close { top: 15px; right: 20px; font-size: 2rem; }
}

/* Fade in Animation */
@keyframes fadeInZoom {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

/* ==========================================
   🚀 CARPET VS BUILT-UP TOGGLE & INCLUDED BOX CSS
   ========================================== */

/* Area Toggle Buttons */
.area-toggle-group {
    display: flex;
    background: rgba(10, 10, 42, 0.8);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(51, 213, 229, 0.3);
    margin-top: 15px;
}
.area-type-btn {
    flex: 1;
    padding: 10px;
    border: none;
    background: transparent;
    color: #888;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
}
.area-type-btn:hover { color: #fff; }
.area-type-btn.active {
    background: rgba(51, 213, 229, 0.15);
    color: var(--accent-cyan);
    box-shadow: inset 0 -3px 0 var(--accent-cyan);
}

/* ==========================================
   🚀 WORLD-CLASS: INCLUDED SPECS GRID CSS
   ========================================== */
.premium-included-box {
    background: rgba(10, 10, 30, 0.4);
    border: 1px solid rgba(51, 213, 229, 0.3);
    border-radius: 16px;
    padding: 25px;
    margin-top: 20px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.premium-included-box::before {
    content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
    background: linear-gradient(to bottom, var(--accent-cyan), var(--accent-pink));
}

.inc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    padding-bottom: 15px;
}

.inc-header h4 {
    color: #fff; font-size: 1.1rem; margin: 0; font-family: 'Playfair Display', serif;
}

.inc-tier-badge {
    background: rgba(232, 73, 232, 0.15);
    color: var(--accent-pink);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(232, 73, 232, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.inc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columns Layout */
    gap: 20px;
}

.inc-category h5 {
    color: var(--accent-cyan);
    font-size: 0.85rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex; align-items: center; gap: 8px;
}

.inc-category ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 8px;
}

.inc-category ul li {
    font-size: 0.85rem;
    color: #ccc;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.inc-category ul li i {
    color: #2ecc71;
    font-size: 0.8rem;
    margin-top: 3px;
}

@media (max-width: 991px) {
    .inc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .inc-grid { grid-template-columns: 1fr; }
    .inc-header { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ==========================================
   🚀 FIXED: CALCULATOR GRID & RECEIPT CSS
   ========================================== */

/* 1. Ensuring the Grid Stays Locked */
.premium-calc-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Keeps Left slightly larger than Right */
    gap: 40px;
    background: rgba(10, 10, 30, 0.5);
    border-radius: 24px;
    border: 1px solid rgba(51, 213, 229, 0.15);
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    margin-top: 40px;
    align-items: start; /* CRITICAL FIX: Stops the right panel from stretching vertically and breaking */
}

/* 2. The Sticky Right Panel (The Receipt) */
.calc-receipt-panel { 
    background: linear-gradient(145deg, #050515, #0A0A2A); 
    border-radius: 20px; 
    padding: 30px; 
    border: 1px solid rgba(255,255,255,0.05); 
    display: flex; 
    flex-direction: column; 
    position: sticky; /* CRITICAL FIX: Makes it scroll with the user */
    top: 100px; /* Distance from top while scrolling */
    overflow: hidden; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.calc-receipt-panel::before { 
    content: ''; 
    position: absolute; top: 0; left: 0; width: 100%; height: 4px; 
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-pink)); 
}

/* 3. Fixing Mobile Breakpoints (Stack on smaller screens) */
@media (max-width: 991px) {
    .premium-calc-container { 
        grid-template-columns: 1fr; /* Stacks panels on tablets/mobile */
        padding: 25px; 
    }
    
    .calc-receipt-panel { 
        position: relative; /* Removes sticky on mobile for better UX */
        top: 0; 
        margin-top: 30px;
        box-shadow: 0 -10px 40px rgba(0,0,0,0.8); 
    }
}

/* ==========================================
   🚀 WORLD-CLASS: DYNAMIC INCLUDED GRID FIX
   ========================================== */
.inc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Creates a beautiful 2-column layout */
    gap: 20px;
    margin-top: 20px;
}

.inc-category {
    background: rgba(0, 0, 0, 0.25); /* Premium dark inset feel */
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 16px;
    transition: 0.3s;
}
.inc-category:hover {
    background: rgba(51, 213, 229, 0.05);
    border-color: rgba(51, 213, 229, 0.2);
}

.inc-category h5 {
    color: var(--accent-cyan);
    font-size: 0.95rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex; align-items: center; gap: 8px;
}

@media (max-width: 768px) {
    .inc-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   🚀 WORLD-CLASS: PERFORMANCE ANALYTICS CSS
   ========================================== */
.perf-metrics-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px; /* Spaces it from the receipt body below */
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.perf-header {
    margin-bottom: 15px;
    text-align: center;
}
.perf-header span {
    background: rgba(51, 213, 229, 0.1);
    color: var(--accent-cyan);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(51, 213, 229, 0.2);
}

.perf-metrics-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.perf-item { width: 100%; }

.perf-label-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 6px;
}
.perf-label-row span { color: #aaa; font-size: 0.8rem; font-weight: 500; text-transform: uppercase; }
.perf-label-row strong { color: #fff; font-size: 1rem; font-family: 'Poppins', sans-serif; font-weight: 800; }

.perf-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.perf-fill {
    height: 100%;
    width: 0%; /* Dynamic width controlled by JS */
    border-radius: 10px;
    background: #fff; /* Default, overridden by JS */
    transition: width 1.2s cubic-bezier(0.25, 0.8, 0.25, 1), background 1s ease;
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* ==========================================
   🚀 WORLD-CLASS: SPATIAL DESIGN (SIZE GUIDE) CSS
   ========================================== */
.premium-size-guide-section {
    background-color: var(--dark-blue, #0A0A2A);
    padding: 120px 0;
    position: relative;
    border-top: 1px solid rgba(51, 213, 229, 0.1);
}

.spatial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

/* Base Card Styling */
.spatial-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 3 / 4; /* Tall portrait ratio for premium look */
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    cursor: pointer;
}

/* High-Res Background Image */
.spatial-bg-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.spatial-card:hover .spatial-bg-img {
    transform: scale(1.15); /* Cinematic Zoom */
}

/* Gradient Overlay */
.spatial-gradient-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(5,5,20,0.95) 0%, rgba(5,5,20,0.6) 40%, rgba(5,5,20,0.2) 100%);
    transition: background 0.5s ease;
    z-index: 1;
}

.spatial-card:hover .spatial-gradient-overlay {
    background: linear-gradient(to top, rgba(5,5,20,0.98) 0%, rgba(5,5,20,0.85) 60%, rgba(5,5,20,0.4) 100%);
}

/* Content Container */
.spatial-content {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 30px;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

/* Header Area (Always Visible) */
.spatial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateY(180px); /* Pushes down initially to hide details */
}

.spatial-card:hover .spatial-header {
    transform: translateY(0); /* Pops up on hover */
}

.sp-title-group { display: flex; flex-direction: column; gap: 10px; }
.sp-icon {
    width: 45px; height: 45px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    display: flex; justify-content: center; align-items: center;
    font-size: 1.2rem; border: 1px solid rgba(255,255,255,0.2);
}
.spatial-header h3 { color: #fff; font-size: 1.6rem; font-family: 'Playfair Display', serif; margin: 0; text-shadow: 0 5px 15px rgba(0,0,0,0.5); }

.sp-sqft-badge {
    background: rgba(255,255,255,0.15);
    color: #fff;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    backdrop-filter: blur(5px);
    white-space: nowrap;
    margin-bottom: 5px;
}

/* Hidden Reveal Area */
.spatial-reveal-area {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    max-height: 0; /* Keeps it tight when hidden */
}

.spatial-card:hover .spatial-reveal-area {
    opacity: 1;
    transform: translateY(0);
    max-height: 500px; /* Expands to show content */
}

.sp-strategy { color: #ccc; font-size: 0.9rem; line-height: 1.6; margin-bottom: 15px; }
.sp-strategy strong { color: #fff; }

.sp-features { list-style: none; padding: 0; margin: 0 0 25px 0; display: flex; flex-direction: column; gap: 8px; }
.sp-features li { color: #A0AABF; font-size: 0.85rem; display: flex; align-items: center; gap: 10px; }
.sp-features li i { color: var(--accent-cyan); font-size: 0.8rem; }

/* The Buttons */
.sp-explore-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; padding: 12px;
    border-radius: 12px; font-size: 0.9rem; font-weight: 600; text-decoration: none;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
    backdrop-filter: blur(5px);
}
.btn-outline-cyan { color: var(--accent-cyan); border: 1px solid rgba(51, 213, 229, 0.4); background: rgba(51, 213, 229, 0.05); }
.btn-outline-cyan:hover { background: var(--accent-cyan); color: #000; box-shadow: 0 5px 15px rgba(51, 213, 229, 0.4); }

.btn-outline-pink { color: var(--accent-pink); border: 1px solid rgba(232, 73, 232, 0.4); background: rgba(232, 73, 232, 0.05); }
.btn-outline-pink:hover { background: var(--accent-pink); color: #fff; box-shadow: 0 5px 15px rgba(232, 73, 232, 0.4); }

.btn-outline-gold { color: #FFD700; border: 1px solid rgba(255, 215, 0, 0.4); background: rgba(255, 215, 0, 0.05); }
.btn-outline-gold:hover { background: #FFD700; color: #000; box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4); }

/* Custom feature icon colors per card */
.spatial-card:nth-child(2) .sp-features li i { color: var(--accent-pink); }
.spatial-card:nth-child(3) .sp-features li i { color: #FFD700; }

/* --- MOBILE RESPONSIVE FIXES --- */
@media (max-width: 1024px) {
    .spatial-grid { grid-template-columns: repeat(2, 1fr); }
    .spatial-card:nth-child(3) { grid-column: span 2; aspect-ratio: 16/9; } /* Make the last one wide on tablets */
}

@media (max-width: 768px) {
    .spatial-grid { grid-template-columns: 1fr; }
    .spatial-card { aspect-ratio: 4/5; }
    .spatial-card:nth-child(3) { grid-column: span 1; aspect-ratio: 4/5; }
    
    /* On Mobile, show content permanently since there is no hover */
    .spatial-header { transform: translateY(0); margin-bottom: 15px; }
    .spatial-reveal-area { opacity: 1; transform: translateY(0); max-height: 500px; }
    .spatial-gradient-overlay { background: linear-gradient(to top, rgba(5,5,20,0.98) 0%, rgba(5,5,20,0.8) 60%, rgba(5,5,20,0.3) 100%); }
}

/* ==========================================
   🚀 WORLD-CLASS: CINEMATIC HERO CSS
   ========================================== */
.premium-hero-section {
    position: relative;
    height: 100vh; /* Full screen height */
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000; /* Fallback */
}

/* The Background Video */
.hero-bg-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.85) contrast(1.1); /* Makes colors pop slightly */
}

/* Gradient Overlay (Crucial for text readability) */
.hero-gradient-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(
        to bottom, 
        rgba(5, 5, 20, 0.4) 0%, 
        rgba(5, 5, 20, 0.8) 60%, 
        var(--charcoal, #050515) 100%
    );
    z-index: 2;
}

/* The Main Content Wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 50px; /* Adjust based on your header height */
    width: 100%;
}

/* Premium Breadcrumbs */
.premium-breadcrumbs {
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}
.premium-breadcrumbs a { color: #aaa; text-decoration: none; font-size: 0.85rem; font-weight: 500; transition: 0.3s; }
.premium-breadcrumbs a:hover { color: #fff; }
.premium-breadcrumbs .divider { color: var(--accent-pink); margin: 0 10px; font-size: 0.8rem; }
.premium-breadcrumbs .active { color: var(--accent-cyan); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* The Master Typography */
.hero-typography { max-width: 800px; margin: 0 auto 40px; }

.hero-top-badge {
    display: inline-block;
    color: #FFD700;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.hero-top-badge i { margin-right: 8px; }

.hero-main-title {
    font-size: 4.5rem;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}
.text-gradient-brand {
    background: linear-gradient(to right, var(--accent-cyan), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.hero-sub-text {
    font-size: 1.15rem;
    color: #ccc;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

/* Action Buttons */
.hero-action-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-hero-solid, .btn-hero-outline {
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: flex; align-items: center; gap: 10px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-family: 'Poppins', sans-serif;
}

.btn-hero-solid {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-pink));
    color: #fff;
    border: none;
    box-shadow: 0 10px 30px rgba(51, 213, 229, 0.4);
}
.btn-hero-solid:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(232, 73, 232, 0.5); }

/* The Breathing Glow Animation for the primary button */
.breathing-glow { animation: heroBreathe 3s infinite alternate; }
@keyframes heroBreathe { 
    0% { box-shadow: 0 0 10px rgba(51, 213, 229, 0.4); } 
    100% { box-shadow: 0 0 30px rgba(232, 73, 232, 0.8); } 
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}
.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-5px);
}

/* Scroll Down Mouse Indicator */
.scroll-down-indicator {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #888;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
    opacity: 0.7;
}
.scroll-down-indicator:hover { opacity: 1; color: var(--accent-cyan); transform: translateY(5px); }

.mouse-icon {
    width: 26px; height: 40px;
    border: 2px solid #888;
    border-radius: 20px;
    position: relative;
}
.scroll-down-indicator:hover .mouse-icon { border-color: var(--accent-cyan); }

.wheel {
    position: absolute;
    top: 6px; left: 50%;
    transform: translateX(-50%);
    width: 4px; height: 8px;
    background: #888;
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}
.scroll-down-indicator:hover .wheel { background: var(--accent-cyan); }

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* --- MOBILE RESPONSIVE FIXES --- */
@media (max-width: 991px) {
    .hero-main-title { font-size: 3.5rem; }
    .hero-sub-text { font-size: 1rem; padding: 0 20px; }
}

@media (max-width: 576px) {
    .premium-hero-section { height: auto; padding: 150px 0 100px; }
    .hero-main-title { font-size: 2.8rem; }
    .hero-action-group { flex-direction: column; width: 100%; padding: 0 20px; }
    .btn-hero-solid, .btn-hero-outline { justify-content: center; width: 100%; }
    .scroll-down-indicator { position: relative; bottom: 0; margin-top: 50px; }
}

/* ==========================================
   🚀 WORLD-CLASS: SOCIAL PROOF & REVIEWS CSS
   ========================================== */
.premium-trust-section {
    background-color: var(--dark-blue, #0A0A2A);
    padding: 100px 0;
    position: relative;
    border-top: 1px solid rgba(51, 213, 229, 0.1);
}

/* Google Trust Badge */
.google-rating-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.google-rating-badge i { color: #ea4335; margin-right: 8px; font-size: 1.1rem; }
.google-rating-badge strong { color: #fff; }

/* The Bento Grid */
.trust-bento-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr; /* Video card gets more space */
    gap: 30px;
    margin-top: 50px;
}

/* Base Card Style */
.review-card {
    background: rgba(10, 10, 30, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}
.review-card:hover { 
    transform: translateY(-8px); 
    border-color: rgba(51, 213, 229, 0.3); 
    box-shadow: 0 25px 50px rgba(51, 213, 229, 0.15); 
}

/* --- Cinematic Video Card --- */
.video-review-card { 
    display: flex; align-items: center; justify-content: center; min-height: 320px; 
}
.video-thumbnail { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    object-fit: cover; opacity: 0.6; transition: 0.8s ease; 
}
.video-review-card:hover .video-thumbnail { opacity: 0.4; transform: scale(1.05); }

.video-overlay { 
    position: absolute; z-index: 2; width: 100%; height: 100%; 
    display: flex; flex-direction: column; justify-content: center; align-items: center; 
    background: linear-gradient(to top, rgba(5,5,20,0.95), transparent); 
}

.play-btn-ripple {
    width: 70px; height: 70px; 
    background: var(--accent-cyan); border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    color: #000; font-size: 1.8rem; margin-bottom: 20px;
    box-shadow: 0 0 0 0 rgba(51, 213, 229, 0.7); 
    animation: rippleEffect 2s infinite; 
    transition: 0.3s;
    text-decoration: none;
}
.video-review-card:hover .play-btn-ripple { 
    transform: scale(1.1); background: var(--accent-pink); 
    box-shadow: 0 0 0 0 rgba(232, 73, 232, 0.7); 
    color: #fff;
}
@keyframes rippleEffect { 
    70% { box-shadow: 0 0 0 25px rgba(51, 213, 229, 0); } 
    100% { box-shadow: 0 0 0 0 rgba(51, 213, 229, 0); } 
}

.video-info { text-align: center; transform: translateY(20px); transition: 0.4s; opacity: 0.9; }
.video-review-card:hover .video-info { transform: translateY(0); opacity: 1; }
.video-info h4 { color: #fff; font-size: 1.4rem; font-weight: 700; margin-bottom: 5px; font-family: 'Playfair Display', serif; }
.video-info p { color: var(--accent-cyan); font-size: 0.9rem; font-weight: 600; margin: 0; }

/* --- Text Review Card --- */
.text-review-card { padding: 35px 30px; display: flex; flex-direction: column; justify-content: space-between; }
.review-stars { color: #FFD700; font-size: 1rem; margin-bottom: 20px; letter-spacing: 2px; }
.review-text { 
    color: #ccc; font-size: 1rem; line-height: 1.6; font-style: italic; 
    margin-bottom: 30px; position: relative; z-index: 2; 
}
/* Huge Watermark Quote Icon */
.review-text::before { 
    content: '\f10d'; font-family: 'Font Awesome 6 Free'; font-weight: 900; 
    position: absolute; top: -20px; left: -15px; font-size: 4rem; 
    color: rgba(255,255,255,0.03); z-index: -1; 
}

.reviewer-profile { display: flex; align-items: center; gap: 15px; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; }
.reviewer-avatar { 
    width: 45px; height: 45px; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    font-size: 1.2rem; font-weight: 800; color: #000; 
}
.cyan-avatar { background: var(--accent-cyan); }
.pink-avatar { background: var(--accent-pink); color: #fff; }

.reviewer-details h4 { color: #fff; font-size: 1.05rem; font-weight: 700; margin-bottom: 2px; display: flex; align-items: center; gap: 6px; }
.verified-badge { color: #2ecc71; font-size: 0.9rem; }
.reviewer-details span { color: #888; font-size: 0.8rem; }

/* --- High-Impact Metrics Bar --- */
.impact-metrics-bar {
    display: flex; justify-content: space-around; align-items: center;
    background: rgba(10, 10, 30, 0.6);
    border: 1px solid rgba(51, 213, 229, 0.2);
    border-radius: 20px;
    padding: 35px 20px;
    margin-top: 60px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    backdrop-filter: blur(15px);
}
.metric-item { text-align: center; flex: 1; }
.metric-number { font-size: 3.5rem; font-weight: 800; color: #fff; font-family: 'Poppins', sans-serif; line-height: 1; }
.metric-plus { font-size: 2rem; font-weight: 800; color: var(--accent-cyan); }
.metric-item p { color: #aaa; font-size: 0.85rem; margin-top: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.metric-divider { width: 1px; height: 70px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent); }

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .trust-bento-grid { grid-template-columns: 1fr 1fr; }
    .video-review-card { grid-column: span 2; }
}
@media (max-width: 768px) {
    .trust-bento-grid { grid-template-columns: 1fr; }
    .video-review-card { grid-column: span 1; }
    .impact-metrics-bar { flex-direction: column; gap: 30px; }
    .metric-divider { width: 100%; height: 1px; background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent); }
}

/* ==========================================
   🚀 WORLD-CLASS: LIVE SYSTEM STATUS MONITOR CSS
   ========================================== */
.exp-system-status {
    margin-top: auto; /* Pushes the box to the absolute bottom of the sidebar */
    background: rgba(5, 5, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    padding-bottom: 15px;
}

.status-header h5 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.status-header h5 i { color: var(--accent-cyan); }

/* The Blinking "LIVE" Indicator */
.pulse-live {
    color: #2ecc71;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    animation: blinkLive 1.5s infinite ease-in-out;
}
@keyframes blinkLive {
    0% { opacity: 0.3; text-shadow: none; }
    50% { opacity: 1; text-shadow: 0 0 10px #2ecc71; }
    100% { opacity: 0.3; text-shadow: none; }
}

.status-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.status-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.s-label { color: #888; font-weight: 500; letter-spacing: 0.5px; }
.s-value { font-weight: 700; font-family: 'Courier New', monospace; letter-spacing: 1px; }
.text-cyan { color: var(--accent-cyan); text-shadow: 0 0 5px rgba(51, 213, 229, 0.3); }
.text-pink { color: var(--accent-pink); text-shadow: 0 0 5px rgba(232, 73, 232, 0.3); }

/* The Trust Assurance Badge at the bottom */
.trust-assurance {
    background: rgba(51, 213, 229, 0.1);
    color: var(--accent-cyan);
    padding: 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(51, 213, 229, 0.2);
    margin-top: 10px;
}
.trust-assurance i { margin-right: 5px; }

/* Responsive Hide for Mobile (To save space) */
@media (max-width: 991px) {
    .exp-system-status { display: none; }
}