/* ===== FONT ===== */
body {
    font-family: 'Be Vietnam Pro', Arial, sans-serif;
}

/* ===== HERO ===== */
.about-hero {
    position: relative;
    background: linear-gradient(135deg, #8e0000 0%, #c62828 50%, #e53935 100%);
    padding: 90px 40px;
    text-align: center;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../img/bn3.jpg') center/cover no-repeat;
    opacity: 0.12;
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

.about-hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
    letter-spacing: -0.5px;
}

.about-hero-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

/* ===== CONTAINER ===== */
.about-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ===== SECTION BASE ===== */
.about-section {
    padding: 80px 40px;
    background: #fff;
}

.about-section:nth-child(even) {
    background: #f4f6f9;
}

.about-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #c62828;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: #fff0f0;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
}

/* ===== INTRO ===== */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-text span.about-label {
    margin-bottom: 16px;
}

.about-intro-text h2 {
    font-size: 30px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 20px;
    line-height: 1.35;
}

.about-intro-text p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin: 0 0 14px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 13px 30px;
    background: linear-gradient(135deg, #c62828, #e53935);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 6px 18px rgba(198,40,40,0.3);
    transition: all 0.3s;
    font-family: inherit;
}

.about-btn:hover {
    background: linear-gradient(135deg, #8e0000, #c62828);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(198,40,40,0.4);
}

.about-intro-img {
    position: relative;
}

.about-intro-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    display: block;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, #c62828, #e53935);
    color: #fff;
    border-radius: 14px;
    padding: 18px 24px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(198,40,40,0.35);
    min-width: 110px;
}

.badge-num {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-top: 4px;
    opacity: 0.9;
}

/* ===== STATS ===== */
.about-stats {
    background: linear-gradient(135deg, #8e0000, #c62828);
    padding: 60px 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item i {
    font-size: 32px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
    display: block;
}

.stat-item h3 {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
}

.stat-item p {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    margin: 0;
    font-weight: 500;
}

/* ===== MISSION ===== */
.about-mission {
    background: #f4f6f9;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(198,40,40,0.12);
}

.mission-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #c62828, #e53935);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 6px 18px rgba(198,40,40,0.3);
}

.mission-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px;
}

.mission-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ===== TEAM ===== */
.about-team-section {
    background: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.team-card {
    text-align: center;
    background: #f4f6f9;
    border-radius: 16px;
    padding: 36px 20px 28px;
    transition: all 0.3s ease;
    border: 1.5px solid transparent;
}

.team-card:hover {
    background: #fff;
    border-color: rgba(198,40,40,0.2);
    box-shadow: 0 10px 30px rgba(198,40,40,0.1);
    transform: translateY(-6px);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c62828, #e53935);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 6px 18px rgba(198,40,40,0.3);
}

.team-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 6px;
}

.team-card p {
    font-size: 13px;
    color: #c62828;
    font-weight: 600;
    margin: 0;
}

/* ===== CTA ===== */
.about-cta {
    background: linear-gradient(135deg, #1a1a2e, #2d2d4e);
    padding: 80px 40px;
    text-align: center;
}

.about-cta h2 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
}

.about-cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin: 0 0 36px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 34px;
    background: linear-gradient(135deg, #c62828, #e53935);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(198,40,40,0.4);
    transition: all 0.3s;
}

.btn-cta-primary:hover {
    background: linear-gradient(135deg, #8e0000, #c62828);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(198,40,40,0.5);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 34px;
    background: transparent;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    border: 2px solid rgba(255,255,255,0.4);
    transition: all 0.3s;
}

.btn-cta-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-badge {
        bottom: 16px;
        left: 16px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mission-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .about-hero-content h1 { font-size: 28px; }
    .about-section { padding: 60px 18px; }
    .about-stats { padding: 50px 18px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .about-cta { padding: 60px 18px; }
    .about-cta h2 { font-size: 24px; }
}
