/* 'MISYON & VIZYON' PAGE - PREMIUM DESIGN */
/* Consistent with manevi.css, kulup.css */
/* Core Theme: Professional, Aspiring, Grounded (Colors: Blue/Gray/Gold) */

/* 1. HERO SECTION */
.hero-section {
    position: relative;
    /* Clean, professional gradient + background image */
    background: linear-gradient(135deg, rgba(26, 86, 167, 0.75), rgba(44, 62, 80, 0.7)),
        url('../image/misyon_bg.png') center/cover no-repeat fixed;
    color: #fff;
    padding: 180px 0 140px;
    text-align: center;
    /* Modern clipped bottom edge */
    clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
    margin-bottom: -60px;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease-out;
}

.hero-section p {
    font-size: 1.35rem;
    max-width: 800px;
    margin: 0 auto 30px;
    font-weight: 300;
    opacity: 0.95;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

/* 2. MAIN CONTENT SECTION */
.mission-vision {
    background-color: #fff;
    padding: 100px 0 80px;
    position: relative;
    z-index: 2;
}

.section-header {
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-header .lead {
    font-size: 1.2rem;
    color: #6c757d;
}

.divider {
    height: 4px;
    width: 80px;
    margin: 20px auto 30px;
    border-radius: 2px;
    background: linear-gradient(90deg, #1a56a7, #f9a826);
}

/* 3. CARDS */
.mission-card,
.vision-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-top: 5px solid transparent;
    height: 100%;
}

.mission-card {
    border-top-color: #1a56a7;
    /* Blue for Mission */
}

.vision-card {
    border-top-color: #f9a826;
    /* Gold for Vision */
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.icon-box {
    margin-bottom: 30px;
    display: inline-block;
}

.icon-box i {
    font-size: 3rem;
    background: -webkit-linear-gradient(45deg, #1a56a7, #4fb6c2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    display: block;
}

.vision-card .icon-box i {
    background: -webkit-linear-gradient(45deg, #f9a826, #e67e22);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.mission-card h3::after,
.vision-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #1a56a7;
    border-radius: 2px;
}

.vision-card h3::after {
    background: #f9a826;
}

.mission-card p,
.vision-card p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.signature {
    margin-top: 30px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.mission-card:hover .signature,
.vision-card:hover .signature {
    opacity: 1;
}

.signature img {
    max-height: 60px;
    width: auto;
}

/* ANIMATIONS */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* BACK TO TOP BUTTON STYLE (Since it's shared) */
.back-to-top-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #1a56a7;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: none;
    /* JS toggles this */
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
}

.back-to-top-button:hover {
    background-color: #f9a826;
    transform: translateY(-5px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-section {
        padding: 150px 0 100px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .mission-card,
    .vision-card {
        padding: 30px;
    }
}