/* ========================================
   INTERACTIVE QUALITATIVE INSIGHTS SECTION
   ======================================== */

#qualitativeContainer {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

/* Interactive Theme Cards */
.theme-card-interactive {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.theme-card-interactive:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Card Header with Gradient */
.theme-card-header {
    padding: 2rem;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.theme-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.theme-card-header:hover::before {
    opacity: 1;
}

.theme-header-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.theme-icon-large {
    font-size: 4rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.theme-header-text {
    flex: 1;
}

.theme-title-interactive {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.theme-stats {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 1rem;
    opacity: 0.95;
}

.theme-stat {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.stat-number-small {
    font-weight: 700;
    font-size: 1.1rem;
}

.theme-stat-separator {
    opacity: 0.6;
}

/* Toggle Button */
.theme-toggle-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.toggle-icon {
    width: 24px;
    height: 24px;
    color: white;
    transition: transform 0.3s ease;
}

.theme-card-interactive.expanded .toggle-icon {
    transform: rotate(180deg);
}

/* Card Body */
.theme-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.theme-card-interactive.expanded .theme-card-body {
    padding-bottom: 2rem;
}

/* Section Styles */
.theme-section-interactive {
    padding: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.theme-section-interactive:last-child {
    border-bottom: none;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 4px solid;
}

.section-icon {
    font-size: 1.75rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--seidor-dark);
    margin: 0;
    flex: 1;
}

.section-badge {
    background: var(--seidor-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 32px;
    text-align: center;
}

/* Interactive Lists */
.theme-list-interactive {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.theme-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(0, 163, 224, 0.03), rgba(0, 200, 150, 0.03));
    border-radius: 12px;
    transition: all 0.3s ease;
    animation: slideInLeft 0.4s ease-out forwards;
    opacity: 0;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.theme-list-item:hover {
    background: linear-gradient(135deg, rgba(0, 163, 224, 0.08), rgba(0, 200, 150, 0.08));
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.list-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.4rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.list-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--neutral-800);
}

/* Interactive Quotes */
.quotes-container {
    display: grid;
    gap: 1.5rem;
}

.quote-box-interactive {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.05), rgba(157, 78, 221, 0.02));
    border-left: 5px solid;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    animation: fadeInScale 0.5s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.quote-box-interactive:hover {
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 8px 24px rgba(157, 78, 221, 0.15);
}

.quote-icon {
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(157, 78, 221, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
    font-weight: bold;
}

.quote-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--neutral-800);
    font-style: italic;
    margin: 0 0 1rem 0;
    position: relative;
    z-index: 1;
}

.quote-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

.quote-author {
    font-size: 1rem;
    color: var(--neutral-600);
    font-weight: 600;
    font-style: normal;
}

/* Color Variations for Different Sections */
.strengths-section {
    background: linear-gradient(135deg, rgba(0, 200, 150, 0.02), transparent);
}

.opportunities-section {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.02), transparent);
}

.quotes-section {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.02), transparent);
}

/* Responsive Design */
@media (max-width: 768px) {
    .theme-card-header {
        padding: 1.5rem;
    }

    .theme-header-content {
        gap: 1rem;
    }

    .theme-icon-large {
        font-size: 3rem;
    }

    .theme-title-interactive {
        font-size: 1.5rem;
    }

    .theme-stats {
        font-size: 0.9rem;
    }

    .theme-section-interactive {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .theme-list-item {
        padding: 0.75rem;
    }

    .list-text {
        font-size: 0.95rem;
    }

    .quote-box-interactive {
        padding: 1.5rem;
    }

    .quote-text {
        font-size: 1rem;
    }

    .theme-toggle-btn {
        width: 40px;
        height: 40px;
    }

    .toggle-icon {
        width: 20px;
        height: 20px;
    }
}

/* Print Styles */
@media print {
    .theme-card-interactive {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .theme-card-body {
        max-height: none !important;
    }

    .theme-toggle-btn {
        display: none;
    }

    .theme-icon-large {
        animation: none;
    }
}