/* ==========================================
   ABOUT US PAGE SPECIFIC STYLES
   ========================================== */

/* Container & Base Scope */
.mku-about-page {
    color: #1d2d44;
    line-height: 1.6;
    background-color: #ffffff;
}

.mku-about-page .mku-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Header */
.mku-about-page .mku-hero-header {
    background: linear-gradient(rgba(11, 37, 69, 0.85), rgba(19, 64, 116, 0.85)), 
                url('https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
    color: #ffffff;
    padding: 90px 0 70px;
    text-align: center;
}

.mku-about-page .mku-hero-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #f4a261;
}

.mku-about-page .mku-hero-header p {
    font-size: 1.05rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

/* Sections */
.mku-about-page section {
    padding: 60px 0;
}

.mku-about-page .mku-section-title {
    text-align: center;
    margin-bottom: 40px;
}

.mku-about-page .mku-section-title h2 {
    font-size: 1.8rem;
    color: #0b2545;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.mku-about-page .mku-section-title h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #f4a261;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Overview Section */
.mku-about-page .mku-overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.mku-about-page .mku-overview-text p {
    margin-bottom: 15px;
    color: #1d2d44;
    text-align: justify;
}

.mku-about-page .mku-overview-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* Visi & Misi */
.mku-about-page .mku-vm-section {
    background-color: #f8f9fa;
}

.mku-about-page .mku-vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mku-about-page .mku-vm-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-top: 5px solid #0b2545;
}

.mku-about-page .mku-vm-card.misi {
    border-top-color: #f4a261;
}

.mku-about-page .mku-vm-card h3 {
    font-size: 1.4rem;
    color: #0b2545;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mku-about-page .mku-vm-card h3 i {
    color: #f4a261;
}

.mku-about-page .mku-vm-card ul {
    list-style: none;
    padding-left: 0;
}

.mku-about-page .mku-vm-card ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.mku-about-page .mku-vm-card ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #f4a261;
}

/* Core Values */
.mku-about-page .mku-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.mku-about-page .mku-value-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    padding: 25px 15px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mku-about-page .mku-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.mku-about-page .mku-value-icon {
    font-size: 2.2rem;
    color: #0b2545;
    margin-bottom: 12px;
}

.mku-about-page .mku-value-card h4 {
    font-size: 1.1rem;
    color: #0b2545;
    margin-bottom: 8px;
}

.mku-about-page .mku-value-card p {
    font-size: 0.88rem;
    color: #6c757d;
}

/* Timeline */
.mku-about-page .mku-timeline-section {
    background-color: #f8f9fa;
}

.mku-about-page .mku-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.mku-about-page .mku-timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: #0b2545;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
}

.mku-about-page .mku-timeline-item {
    padding: 10px 35px;
    position: relative;
    width: 50%;
}

.mku-about-page .mku-timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: #ffffff;
    border: 3px solid #f4a261;
    top: 18px;
    border-radius: 50%;
    z-index: 1;
}

.mku-about-page .mku-timeline-item.left {
    left: 0;
}

.mku-about-page .mku-timeline-item.right {
    left: 50%;
}

.mku-about-page .mku-timeline-item.right::after {
    left: -8px;
}

.mku-about-page .mku-timeline-content {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mku-about-page .mku-timeline-content h3 {
    color: #0b2545;
    font-size: 1.2rem;
}

.mku-about-page .mku-timeline-content h4 {
    color: #f4a261;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.mku-about-page .mku-timeline-content p {
    font-size: 0.88rem;
    color: #1d2d44;
}

/* Responsive */
@media (max-width: 768px) {
    .mku-about-page .mku-overview-content, 
    .mku-about-page .mku-vm-grid {
        grid-template-columns: 1fr;
    }

    .mku-about-page .mku-timeline::after {
        left: 20px;
    }

    .mku-about-page .mku-timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 15px;
    }

    .mku-about-page .mku-timeline-item::after {
        left: 12px;
    }

    .mku-about-page .mku-timeline-item.right {
        left: 0%;
    }
}