/* ===== About Page Styles ===== */

/* Page Header */
.page-header {
    position: relative;
    padding: 10rem 0 6rem;
    background: linear-gradient(135deg, #047857 0%, #0d9488 100%);
    text-align: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* CMD Profile */
.cmd-profile {
    background: var(--white);
}

.cmd-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.cmd-image {
    position: relative;
}

.cmd-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.cmd-content .section-tag {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(4, 120, 87, 0.1);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.cmd-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.cmd-intro {
    font-size: 1.125rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.cmd-content p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.cmd-signature {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light);
}

.cmd-signature img {
    width: 60px;
    height: 60px;
    opacity: 0.8;
}

/* MVV Section */
.mvv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mvv-card {
    padding: 3rem 2.5rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--light);
    transition: var(--transition);
}

.mvv-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.mvv-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: var(--radius-lg);
    color: var(--white);
    margin-bottom: 1.5rem;
}

.mvv-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mvv-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 1024px) {
    .cmd-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cmd-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .cmd-content {
        text-align: center;
    }

    .cmd-signature {
        display: flex;
        justify-content: center;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 8rem 0 4rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}
