/* About Page - Modern Design */

/* Hero Section */
.about-hero-modern {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
    margin: 1.5rem auto;
    max-width: calc(100% - 3rem);
    border-radius: 24px;
}

.about-hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.about-hero-modern h1 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-hero-modern .lead {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    font-weight: 400;
}

.about-hero-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.about-hero-icon i {
    font-size: 2.5rem;
    color: #FFD700;
}

/* Mission & Vision Cards */
.mission-vision-section {
    padding: 4rem 0;
}

.mission-card,
.vision-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.mission-card .card-icon,
.vision-card .card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.08));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mission-card .card-icon i,
.vision-card .card-icon i {
    font-size: 1.5rem;
    color: #D4AF37;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Values Section */
.values-section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #D4AF37);
    border-radius: 2px;
}

.section-title p {
    color: #666;
    font-size: 1rem;
    margin-top: 1.5rem;
}

.value-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.value-card .value-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-card .value-icon i {
    font-size: 2rem;
    color: #D4AF37;
}

.value-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: #666;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    margin: 3rem 1.5rem;
    border-radius: 24px;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 215, 0, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.stat-box {
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #FFF4CC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9375rem;
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
}

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(8px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.08));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 1.25rem;
    color: #D4AF37;
}

.feature-content h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.feature-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
}

.cta-box {
    background: linear-gradient(135deg, #FFD700 0%, #FDB931 100%);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.25);
}

.cta-box h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 2rem;
}

.cta-box .btn {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cta-box .btn:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero-modern {
        padding: 3rem 0 2rem;
        margin: 1rem auto;
        max-width: calc(100% - 2rem);
        border-radius: 20px;
    }

    .about-hero-modern h1 {
        font-size: 1.875rem;
    }

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

    .section-title h2 {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stats-section {
        margin: 2rem 1rem;
        border-radius: 20px;
    }

    .cta-box {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .cta-box h2 {
        font-size: 1.5rem;
    }

    .feature-item {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .about-hero-modern {
        margin: 0.75rem auto;
        max-width: calc(100% - 1.5rem);
        border-radius: 16px;
    }

    .mission-vision-section,
    .values-section,
    .features-section {
        padding: 2rem 0;
    }

    .value-card {
        padding: 1.5rem 1rem;
    }

    .stats-section {
        margin: 1.5rem 0.75rem;
        border-radius: 16px;
    }

    .stat-box {
        padding: 1rem 0.5rem;
    }

    .cta-box {
        border-radius: 16px;
    }
}
