/* ===============================
   HERO CORPORATE
================================= */

.about-hero-corp {
    position: relative;
    height: 420px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-corp-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 16px;
    opacity: 0.9;
}

/* ===============================
   OVERVIEW SECTION
================================= */

.corp-overview {
    padding: 100px 0;
    background: #f9fafb;
}

.corp-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

/* TEXT */
.corp-text h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1f2937;
}

.corp-text p {
    color: #4b5563;
    line-height: 1.8;
}

/* VISION & MISSION */
.corp-vision h3,
.corp-mission h3 {
    margin-bottom: 8px;
    font-size: 18px;
    color: #111827;
}

.corp-mission ul {
    padding-left: 18px;
}

.corp-mission li {
    margin-bottom: 10px;
    color: #4b5563;
}

/* ===============================
   STATS BOX
================================= */

.corp-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-item {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-item h3 {
    font-size: 28px;
    color: #2563eb;
    margin-bottom: 6px;
}

.stat-item span {
    font-size: 14px;
    color: #6b7280;
}

/* ===============================
   CTA SECTION
================================= */

.corp-cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #fff;
}

.corp-cta h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.corp-cta p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.btn-corp {
    display: inline-block;
    background: #fff;
    color: #2563eb;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-corp:hover {
    background: #e5e7eb;
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 992px) {

    .corp-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-corp {
        height: 320px;
    }

    .hero-title {
        font-size: 28px;
    }
}

@media (max-width: 600px) {

    .corp-overview {
        padding: 60px 0;
    }

    .corp-cta {
        padding: 60px 0;
    }
}