/* About Hero - Animated Gradient */
.about-hero-spark {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #fef2f2 0%, #fef3c7 25%, #fee2e2 50%, #fef9e3 75%, #fff 100%);
    background-size: 400% 400%;
    animation: gradientShift 12s ease infinite;
    position: relative;
    overflow: hidden;
}

.about-hero-spark::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.08) 0%, transparent 50%),
                radial-gradient(circle, rgba(245, 158, 11, 0.06) 50%, transparent 50%);
    animation: rotate 25s linear infinite;
}

.about-hero-content-spark {
    position: relative;
    z-index: 1;
}

.about-hero-content-spark h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
}

/* Mission Section */
.mission-spark {
    padding: 80px 0;
    background: white;
}

.mission-content-spark {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.mission-content-spark h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-content-spark > p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.stats-spark {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-spark {
    text-align: center;
}

.stat-spark h3 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ef4444 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-spark p {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Team Section */
.team-spark {
    padding: 80px 0;
    background: linear-gradient(180deg, #fef3c7 0%, #fef2f2 100%);
}

.team-spark h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-grid-spark {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.team-card-spark {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-card-spark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ef4444 0%, #f59e0b 100%);
}

.team-card-spark:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.2);
}

.team-avatar-spark {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, #ef4444 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar-spark img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.team-card-spark h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #1f2937;
}

.team-role-spark {
    color: #ef4444;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.team-card-spark > p {
    color: #6b7280;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Values Section */
.values-spark {
    padding: 80px 0;
    background: white;
}

.values-spark h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.values-grid-spark {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.value-card-spark {
    background: linear-gradient(145deg, #fef2f2 0%, #fef3c7 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card-spark:hover {
    border-color: #ef4444;
    transform: scale(1.03);
}

.value-icon-spark {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #ef4444 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.value-icon-spark img {
    width: 30px;
}

.value-card-spark h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.value-card-spark p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-spark {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef2f2 0%, #fef3c7 100%);
}

.contact-content-spark {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.contact-content-spark h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-content-spark > p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.contact-bubble-spark {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem 2rem;
    border-radius: 100px;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-bubble-spark:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(239, 68, 68, 0.25);
}

.contact-icon-spark {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ef4444 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon-spark img {
    width: 22px;
}

.contact-bubble-spark h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.1rem;
}

.contact-bubble-spark p {
    color: #ef4444;
    font-weight: 700;
    font-size: 0.95rem;
}

/* Toast Notification */
.toast-spark {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, #ef4444 0%, #f59e0b 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2000;
}

.toast-spark.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Animations */
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero-content-spark h1 {
        font-size: 2.2rem;
    }

    .about-hero-subtitle {
        font-size: 1rem;
    }

    .stats-spark {
        flex-direction: column;
        gap: 2rem;
    }

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

    .stat-spark h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero-content-spark h1 {
        font-size: 1.8rem;
    }

    .contact-bubble-spark {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1.5rem;
    }
}
