/* About Us Section with Enhanced Gradients */
.about-us {
    padding: 100px 0;
    background: var(--gradient-light);
    background-size: 400% 400%;
    animation: gradientShift 25s ease infinite;
    position: relative;
    overflow: hidden;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    opacity: 0.2;
    z-index: 0;
    animation: pulse 12s ease-in-out infinite;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.about-text {
    padding-right: 40px;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 30px;
    background: var(--gradient-primary);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 6s ease infinite;
}

.about-intro {
    margin-bottom: 40px;
}

.lead-text {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--dark-purple);
    font-weight: 500;
    background: rgba(255, 255, 255, 0.8);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-purple);
    box-shadow: 0 10px 30px rgba(142, 78, 198, 0.1);
    position: relative;
    overflow: hidden;
}

.lead-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.about-story {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.story-item {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.story-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    background-size: 300% 300%;
    animation: gradientBorder 8s ease infinite;
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.story-item:hover::before {
    opacity: 1;
}

.story-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(142, 78, 198, 0.2);
}

.story-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    background-size: 200% 200%;
    animation: gradientPulse 5s ease infinite;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(142, 78, 198, 0.3);
    transition: all 0.4s ease;
}

.story-item:hover .story-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 35px rgba(142, 78, 198, 0.5);
}

.story-content h3 {
    color: var(--dark-purple);
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.story-content p {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* Enhanced About Stats */
.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(142, 78, 198, 0.15);
    position: relative;
    overflow: hidden;
}

.about-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-vibrant);
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
    opacity: 0.05;
    z-index: 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    background: var(--gradient-primary);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 4s ease infinite, countUp 2s ease-out;
    margin-bottom: 8px;
}

@keyframes countUp {
    from { 
        transform: scale(0);
        opacity: 0;
    }
    to { 
        transform: scale(1);
        opacity: 1;
    }
}

.stat-label {
    color: var(--dark-purple);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* About Us Responsive */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .about-text .section-title {
        text-align: center;
    }
    
    .story-item {
        flex-direction: column;
        text-align: center;
    }
    
    .story-icon {
        align-self: center;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}