/* ===============================
   Tab Themes (Scoped Overrides)
   =============================== */

/* Default fallback */
.report-section{
    --tab-gradient: var(--primary-gradient);
    --tab-accent: var(--burnt-orange);
}

/* 1. Housekeeping */
.report-section.theme-locations {
    --tab-gradient: linear-gradient(135deg, #FFE4C7, #FFC58A);
    --tab-accent: #E27A28;
}

/* 2. Facility Management */
.report-section.theme-space {
    --tab-gradient: linear-gradient(135deg, #E6F4EA, #BFE3C7);
    --tab-accent: #2E7D32;
}

/* 3. Front Desk */
.report-section.theme-seating_furniture {
    --tab-gradient: linear-gradient(135deg, #E8F0FE, #C6DAFC);
    --tab-accent: #1A73E8;
}

/* 4. IT Support */
.report-section.theme-electrical {
    --tab-gradient: linear-gradient(135deg, #F3E8FF, #E1CCFF);
    --tab-accent: #7B3FE4;
}

/* 5. Security */
.report-section.theme-budget {
    --tab-gradient: linear-gradient(135deg, #FFE8E8, #FFCACA);
    --tab-accent: #C62828;
}

/* 6. Parking & Mobility */
.report-section.theme-lease {
    --tab-gradient: linear-gradient(135deg, #FFF7E6, #FFE1A8);
    --tab-accent: #F59E0B;
}

/* 7. Pantry & Food */
.report-section.theme-building {
    --tab-gradient: linear-gradient(135deg, #FFF1F2, #FFD6DA);
    --tab-accent: #E11D48;
}

/* 8. Wellness */
.report-section.theme-amenities {
    --tab-gradient: linear-gradient(135deg, #ECFEFF, #CFFAFE);
    --tab-accent: #0891B2;
}

/* 9. Sustainability */
.report-section.theme-parking {
    --tab-gradient: linear-gradient(135deg, #F0FDF4, #BBF7D0);
    --tab-accent: #15803D;
}

/* 10. Compliance */
.report-section.theme-security {
    --tab-gradient: linear-gradient(135deg, #F8FAFC, #E2E8F0);
    --tab-accent: #475569;
}

/* 11. Customisation */
.report-section.theme-legal {
    --tab-gradient: linear-gradient(135deg, #FAF5FF, #E9D5FF);
    --tab-accent: #9333EA;
}

/* 12. Branding */
.report-section.theme-timeline {
    --tab-gradient: linear-gradient(135deg, #FFF7ED, #FED7AA);
    --tab-accent: #EA580C;
}

/* 13. Expansion & Growth */
.report-section.theme-preferences {
    --tab-gradient: linear-gradient(135deg, #F0F9FF, #BAE6FD);
    --tab-accent: #0284C7;
}

/* 14. Miscellaneous */
.report-section.theme-miscellaneous {
    --tab-gradient: linear-gradient(135deg, #F5F5F4, #E7E5E4);
    --tab-accent: #57534E;
}



/* Header */
.report-header {
    text-align: center;
    margin-bottom: 48px;
    animation: fadeInDown 0.6s ease;
}

.report-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.report-header .subtitle {
    color: #9b9a9a;
    font-size: 16px;
    font-weight: 300;
}

/* Container */
.content-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: fadeInUp 0.8s ease;
}

/* Section */
.report-section {
    padding: 40px;
    border-bottom: 1px solid #f1f5f9;
}

.report-section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 28px;
    background: var(--tab-gradient);
    border-radius: 2px;
}

/* Grid Layout */
.section-body {
    display: grid;
    gap: 20px;
}

.report-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    padding: 24px;
    border-left: 4px solid var(--tab-accent);
    transition: all 0.3s ease;
}

.report-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.report-label {
    font-weight: 600;
    color: #475569;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.report-label::before {
    content: '▸';
    color: var(--tab-accent);
    font-size: 16px;
}

/* Values */
.report-value {
    color: #1e293b;
    font-size: 16px;
    line-height: 1.6;
}

.value-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.value-list li {
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.value-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.2);
    background: var(--tab-gradient);
    color: #000000;
}

.value-muted {
    color: #94a3b8;
    font-style: italic;
    font-size: 14px;
}

/* Action Buttons */
.action-buttons {
    padding: 32px 40px;
    background: #f8fafc;
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn {
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.btn-secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 20px 16px;
    }

    .report-header h1 {
        font-size: 32px;
    }

    .report-section {
        padding: 24px 20px;
    }

    .section-title {
        font-size: 20px;
    }

    .action-buttons {
        flex-direction: column;
        padding: 24px 20px;
    }

    .btn {
        width: 100%;
    }
}