/* Vision Mission Page - Professional Government Design */
.vision-mission-page {
    background-color: #ffffff;
    min-height: 100vh;
    font-family: 'Merriweather', serif;
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #015296, #0a6bc5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #015296, #D0AD37);
}

/* Official Banner */
.official-banner {
    background: linear-gradient(135deg, #015296, #0a6bc5);
    padding: 40px 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(1, 82, 150, 0.15);
    margin: 1%;
    border-radius: 10px;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    color: white;
    justify-content: center;
}

.banner-icon {
    font-size: 3.5rem;
    opacity: 0.9;
}

.banner-text h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.banner-text p {
    font-size: 1.4rem;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* Vision & Mission Row */
.vision-mission-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.column {
    display: flex;
    flex-direction: column;
}

/* Section Cards */
.section-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.section-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.section-card:hover {
    transform: translateY(-5px);
}

.vision-card {
    border-top: 4px solid #015296;
    box-shadow: 0 8px 30px rgba(1, 82, 150, 0.12);
}

.mission-card {
    border-top: 4px solid #D0AD37;
    box-shadow: 0 8px 30px rgba(208, 173, 55, 0.12);
}

.vision-card:hover {
    box-shadow: 0 15px 40px rgba(1, 82, 150, 0.18);
}

.mission-card:hover {
    box-shadow: 0 15px 40px rgba(208, 173, 55, 0.18);
}

/* Card Header */
.card-header {
    padding: 15px 35px 0px;
    background: linear-gradient(to right, #f8fafc, #ffffff);
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.vision-card .header-icon {
    background: linear-gradient(135deg, rgba(1, 82, 150, 0.1), rgba(1, 82, 150, 0.2));
    color: #015296;
}

.mission-card .header-icon {
    background: linear-gradient(135deg, rgba(208, 173, 55, 0.1), rgba(208, 173, 55, 0.2));
    color: #D0AD37;
}

.header-title h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.header-title .subtitle {
    font-size: 1rem;
    color: #64748b;
    font-style: italic;
    letter-spacing: 0.3px;
}

/* Card Body */
.card-body {
    padding: 15px 35px;
}

.content-text p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #334155;
    text-align: justify;
    margin: 0;
    letter-spacing: 0.3px;
}

/* Card Features */
.card-features {
    padding: 0 35px 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    margin-bottom: 15px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 3px solid;
    transition: all 0.3s ease;
}

.vision-card .feature {
    border-left-color: #015296;
}

.mission-card .feature {
    border-left-color: #D0AD37;
}

.feature:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.vision-card .feature-icon {
    background: rgba(1, 82, 150, 0.1);
    color: #015296;
}

.mission-card .feature-icon {
    background: rgba(208, 173, 55, 0.1);
    color: #D0AD37;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 3px;
    letter-spacing: 0.3px;
}

.feature-text p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* Objectives Section */
.objectives-section {
    margin-bottom: 80px;
}

.objectives-section .section-header {
    text-align: center;
    /* margin-bottom: 50px; */
    padding: 0 20px;
}

.objectives-section .header-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(42, 67, 101, 0.1), rgba(42, 67, 101, 0.2));
    color: #2c3e50;
    border-radius: 12px;
    font-size: 2rem;
}

.objectives-section .header-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    letter-spacing: 0.8px;
}

.objectives-section .header-title .subtitle {
    font-size: 1.2rem;
    color: #64748b;
    letter-spacing: 0.3px;
}

/* Objectives Grid */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 15px;
}

.objective-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    display: flex;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.objective-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.objective-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: #015296;
}

.objective-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #015296;
    min-width: 40px;
    line-height: 1;
    padding-top: 5px;
}

.objective-content {
    flex: 1;
}

.objective-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.objective-text p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #334155;
    margin: 0;
}

/* CTA Section */
.cta-section {
    margin-top: 60px;
}

.cta-card {
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border-radius: 12px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.cta-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.cta-card:hover {
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-icon {
    font-size: 3rem;
    color: #015296;
    margin-bottom: 25px;
}

.cta-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.cta-text p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 30px;
    letter-spacing: 0.3px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #015296, #0a6bc5);
    color: white;
    box-shadow: 0 5px 15px rgba(1, 82, 150, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #015296, #015296);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(1, 82, 150, 0.25);
}

.btn-secondary {
    background: white;
    color: #015296;
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #015296;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .vision-mission-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .objectives-grid {
        grid-template-columns: 1fr;
    }
    
    .banner-text h1 {
        font-size: 1.8rem;
    }
    
    .banner-text p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .official-banner {
        padding: 30px 15px;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .banner-icon {
        font-size: 2.5rem;
    }
    
    .banner-text h1 {
        font-size: 1.6rem;
    }
    
    .card-header {
        padding: 25px 25px 15px;
    }
    
    .card-body {
        padding: 20px 25px;
    }
    
    .card-features {
        padding: 0 25px 25px;
    }
    
    .content-text p {
        font-size: 1.1rem;
    }
    
    .cta-card {
        padding: 35px 25px;
    }
    
    .cta-text h3 {
        font-size: 1.6rem;
    }
    
    .cta-text p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .objectives-grid {
        grid-template-columns: 1fr;
    }
    
    .objective-card {
        padding: 20px;
    }
    
    .objective-text h4 {
        font-size: 1.1rem;
    }
    
    .objective-text p {
        font-size: 1rem;
    }
    
    .header-title h3 {
        font-size: 1.5rem;
    }
    
    .content-text p {
        font-size: 1rem;
    }
}