/**
 * Heart Page Styles (About Us & Support)
 */

/* Page Header */
#heartPage .page-header {
    text-align: center;
    margin-bottom: 48px;
}

#heartPage .page-header h1 {
    font-size: 36px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#heartPage .page-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Heart Section */
.heart-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.heart-section h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.heart-section h2 i {
    color: var(--primary-color);
}

/* About Section */
.mission-text {
    margin-bottom: 40px;
}

.mission-text .lead {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.mission-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.value-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
}

.value-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.value-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.contact-card {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 32px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.4);
}

.contact-card i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-card p {
    font-size: 16px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.contact-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

/* Partners Section */
.partners-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin: 32px 0 40px;
}

.partner-category {
    padding: 24px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.partner-category:hover {
    border-color: var(--primary-color);
    background: #f8fafc;
}

.partner-category i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.partner-category h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.partner-category p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.partners-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 16px;
    margin-top: 40px;
}

.partners-cta h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.partners-cta p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.partners-cta .btn {
    padding: 14px 32px;
    font-size: 16px;
}

/* Quote Section */
.quote-section {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: none;
}

.motivational-quote {
    text-align: center;
    position: relative;
    padding: 24px;
}

.motivational-quote .fa-quote-left {
    font-size: 48px;
    color: #fbbf24;
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.quote-text {
    font-size: 24px;
    font-weight: 500;
    color: #92400e;
    line-height: 1.6;
    margin: 48px 0 16px;
    font-style: italic;
}

.quote-author {
    font-size: 16px;
    color: #b45309;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .heart-section {
        padding: 24px;
    }

    #heartPage .page-header h1 {
        font-size: 28px;
    }

    #heartPage .page-subtitle {
        font-size: 16px;
    }

    .heart-section h2 {
        font-size: 22px;
    }

    .mission-text .lead {
        font-size: 18px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .partners-categories {
        grid-template-columns: 1fr;
    }

    .quote-text {
        font-size: 20px;
    }

    .partners-cta {
        padding: 24px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.heart-section {
    animation: fadeInUp 0.6s ease forwards;
}

.heart-section:nth-child(1) { animation-delay: 0s; }
.heart-section:nth-child(2) { animation-delay: 0.1s; }
.heart-section:nth-child(3) { animation-delay: 0.2s; }
.heart-section:nth-child(4) { animation-delay: 0.3s; }

/* ===== DARK THEME SUPPORT ===== */
[data-theme="dark"] .heart-section {
    background: var(--bg-primary);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] #heartPage .page-subtitle {
    color: var(--text-secondary);
}

[data-theme="dark"] .heart-section h2 {
    color: var(--text-primary);
}

[data-theme="dark"] .mission-text .lead {
    color: var(--text-primary);
}

[data-theme="dark"] .mission-text p {
    color: var(--text-secondary);
}

[data-theme="dark"] .value-card {
    background: var(--bg-secondary);
}

[data-theme="dark"] .value-card h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .value-card p {
    color: var(--text-secondary);
}

[data-theme="dark"] .partner-category {
    border-color: var(--border-color);
    background: transparent;
}

[data-theme="dark"] .partner-category:hover {
    background: var(--bg-secondary);
    border-color: var(--accent-primary);
}

[data-theme="dark"] .partner-category h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .partner-category p {
    color: var(--text-secondary);
}

[data-theme="dark"] .partners-cta {
    background: var(--bg-secondary);
}

[data-theme="dark"] .partners-cta h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .partners-cta p {
    color: var(--text-secondary);
}

[data-theme="dark"] .quote-section {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
}

[data-theme="dark"] .quote-text {
    color: var(--text-primary);
}

[data-theme="dark"] .quote-author {
    color: var(--text-secondary);
}
