/* ========================================
   MISSION PAGE STYLES
   ======================================== */

/* Mission Hero Section */
.mission-hero {
    position: relative;
    min-height: 60vh;
    background: linear-gradient(135deg, #0C359E 0%, #1a4bb8 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/missions.jpg') center/cover no-repeat;
    opacity: 0.15;
}

.mission-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.mission-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.mission-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Mission Statement Section */
.mission-statement-section {
    padding: 80px 0;
    background: white;
}

.mission-intro {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.lead-text {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Mission Cards */
.mission-card {
    background: white;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid #f0f0f0;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-blue);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.mission-card:hover::before {
    transform: scaleY(1);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(12, 53, 158, 0.15);
    border-color: var(--primary-color);
}

.mission-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
    background: var(--gradient-blue);
    transform: scale(1.1);
}

.mission-icon svg {
    width: 35px;
    height: 35px;
    fill: var(--primary-color);
    transition: fill 0.3s ease;
}

.mission-card:hover .mission-icon svg {
    fill: white;
}

.mission-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.mission-card-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* Core Values Section */
.core-values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(12, 53, 158, 0.1);
}

.value-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.value-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .mission-hero-title {
        font-size: 2.5rem;
    }
    
    .mission-hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mission-statement-section,
    .core-values-section {
        padding: 50px 0;
    }
    
    .mission-card {
        padding: 25px 20px;
    }
    
    .value-number {
        font-size: 2.5rem;
    }
}
