/* ============================================================
   about.css — Modern About Us Page (Clean Light Theme)
   ============================================================ */

.about-page {
    width: 100%;
    font-family: 'Exo 2', 'Rajdhani', system-ui, sans-serif;
    background-color: #f9f9f9;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 24px;
    letter-spacing: -0.02em;
}

.section-title.center {
    text-align: center;
    margin-bottom: 48px;
}

/* ── Hero ── */
.about-hero {
    padding: 120px 48px 80px;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, #f9f9f9 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(228, 14, 24, 0.03) 0%, rgba(249, 249, 249, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-kicker {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(228, 14, 24, 0.08);
    color: #E40E18;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111;
    line-height: 1.15;
    margin: 0 0 20px;
    letter-spacing: -0.03em;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ── Stats Section ── */
.about-stats-section {
    padding: 0 48px 80px;
    background: #f9f9f9;
}

.about-stats-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    border: 1px solid #ebebeb;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #E40E18;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── History Section ── */
.about-history-section {
    padding: 80px 0;
    background: #fff;
}

.history-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.history-text {
    flex: 1;
}

.history-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.history-image {
    flex: 1;
}

.image-placeholder {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.image-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── Mission & Vision ── */
.about-mission-vision-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: #fff;
    padding: 48px;
    border-radius: 24px;
    border: 1px solid #ebebeb;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: rgba(228, 14, 24, 0.08);
    color: #E40E18;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 24px;
}

.mv-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 16px;
}

.mv-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* ── Values Section ── */
.about-values-section {
    padding: 80px 0 120px;
    background: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-card {
    background: #f9f9f9;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid #eee;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: #fff;
    border-color: rgba(228, 14, 24, 0.2);
    box-shadow: 0 8px 24px rgba(228, 14, 24, 0.06);
    transform: translateY(-2px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.value-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 12px;
}

.value-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .about-hero-title {
        font-size: 3rem;
    }
    
    .history-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-container,
    .about-hero,
    .about-stats-section {
        padding-left: 24px;
        padding-right: 24px;
    }

    .about-hero-title {
        font-size: 2.4rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-card {
        padding: 32px;
    }
}

@media (max-width: 480px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .about-hero {
        padding-top: 80px;
    }
}
