/* Page Specific Styles for About Page */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #064E3B 0%, #065F46 50%, #10B981 100%);
    color: white;
    padding: 140px 0 60px;
    text-align: left;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.page-header h1,
.page-header h2,
.page-header p {
    color: white;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23ffffff10" width="50" height="50"/><rect fill="%23ffffff10" x="50" y="50" width="50" height="50"/></svg>');
    background-size: 100px 100px;
    opacity: 0.1;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Heritage Section */
.heritage {
    padding: 100px 0;
    background: var(--card-bg);
}

.heritage-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    justify-items: end;
}

.heritage-text h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.heritage-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.heritage-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.heritage-stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 12px;
    flex: 1;
}

.heritage-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
}

.heritage-stat .stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.heritage-image {
    height: auto;
    min-height: 400px;
    background: var(--bg-tertiary);
    border-radius: 16px;
    overflow: hidden;
}

.timeline-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.heritage-image {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    font-weight: 600;
}

.image-placeholder {
    text-align: left;
    padding: 2rem;
}

/* Mission Vision Values */
.mission-vision {
    padding: 100px 0;
    background: var(--bg-tertiary);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mvv-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.mvv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.mvv-card ul {
    text-align: left;
    list-style: none;
    padding: 0;
}

.mvv-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.mvv-card strong {
    color: var(--text-primary);
}

/* Leadership Section */
.leadership {
    padding: 100px 0;
    background: var(--card-bg);
}

.leadership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.leader-card {
    display: flex;
    gap: 2rem;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
}

.leader-image {
    width: 150px;
    height: 150px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    font-weight: 600;
    flex-shrink: 0;
    overflow: hidden;
}

.leader-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.leader-placeholder {
    text-align: left;
    padding: 1rem;
    font-size: 0.875rem;
}

.leader-info h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.leader-title {
    color: var(--accent-red);
    font-weight: 600;
    margin-bottom: 1rem;
}

.leader-bio {
    color: var(--text-secondary);
    line-height: 1.6;
}

.leadership-description h3 {
    font-size: 1.875rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.leadership-description p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Organizational Structure */
.org-structure {
    padding: 100px 0;
    background: var(--bg-tertiary);
}

.org-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
    justify-items: end;
}

.org-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.org-departments h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.org-departments ul {
    list-style: none;
    padding: 0;
}

.org-departments li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    line-height: 1.6;
    border-bottom: 1px solid var(--border-color);
}

.org-departments li:last-child {
    border-bottom: none;
}

.org-departments strong {
    color: var(--text-primary);
}

.org-chart {
    height: auto;
    min-height: 400px;
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
}

.org-chart-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.chart-placeholder {
    text-align: left;
    padding: 2rem;
}

/* Professional Manpower */
.manpower {
    padding: 100px 0;
    background: var(--card-bg);
}

.manpower-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.manpower-stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.manpower-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.manpower-stat .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
}

.manpower-stat .stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.manpower-description {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.manpower-description p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .heritage-content,
    .leadership-grid,
    .org-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .heritage-stats {
        flex-direction: column;
        gap: 1rem;
    }

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

    .leader-card {
        flex-direction: column;
        text-align: center;
    }

    .leader-image {
        margin: 0 auto;
    }

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

@media (max-width: 480px) {
    .page-header {
        padding: 120px 0 60px;
    }

    .heritage,
    .mission-vision,
    .leadership,
    .org-structure,
    .manpower {
        padding: 60px 0;
    }

    .manpower-stats {
        grid-template-columns: 1fr;
    }

    .mvv-card,
    .leader-card {
        padding: 1.5rem;
    }
}
