/* ============================================
   VISION & MISSION PAGE SPECIFIC STYLES
   WiFiHapa - Vision & Mission Page Styles
   ============================================ */

/* Main Content */
.main-content {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}


/* ----- HERO SECTION ----- */
.vision-hero {
    background: linear-gradient(145deg, #edf4ff 0%, #ffffff 100%);
    padding: 3.2rem 2rem;
    border-radius: 48px;
    margin: 1.5rem 0 2.5rem;
    border: 1px solid rgba(13, 110, 253, 0.05);
    transition: var(--transition, all 0.3s ease);
}

body.dark .vision-hero {
    background: var(--hero-bg, linear-gradient(145deg, #111827 0%, #1e2538 100%));
}

.vision-badge {
    background: #0b2b40;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 60px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.95rem;
}

.vision-icon-large {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #0d6efd20, #d4a11e20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 5rem;
    color: #0d6efd;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

/* ----- VISION & MISSION CARDS ----- */
.vision-section {
    margin-bottom: 3rem;
}

.vision-card {
    background: var(--card-bg, white);
    border-radius: 40px;
    padding: 2.5rem;
    height: 100%;
    transition: var(--transition, all 0.3s ease);
    position: relative;
    overflow: hidden;
}

body.dark .vision-card {
    background: var(--card-bg, #1e2538);
}

.vision-card-primary {
    border: 1px solid rgba(13, 110, 253, 0.2);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.08);
}

.vision-card-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #d4a11e);
}

.vision-card-secondary {
    border: 1px solid rgba(212, 161, 30, 0.2);
    box-shadow: 0 20px 40px rgba(212, 161, 30, 0.08);
}

.vision-card-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4a11e, #0d6efd);
}

.vision-icon {
    width: 70px;
    height: 70px;
    background: #e4edff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 1.5rem;
    transition: var(--transition, all 0.3s ease);
}

body.dark .vision-icon {
    background: #2a3448;
}

.vision-card-secondary .vision-icon {
    background: #fff3d6;
    color: #d4a11e;
}

body.dark .vision-card-secondary .vision-icon {
    background: #3a3520;
}

.vision-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary, #0a2c3d);
}

.vision-card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary, #5e6f7d);
    margin-bottom: 1.5rem;
}

.vision-quote {
    background: rgba(13, 110, 253, 0.05);
    padding: 1.2rem;
    border-radius: 20px;
    font-style: italic;
    color: var(--text-primary, #0a2c3d);
    border-left: 3px solid #0d6efd;
}

.vision-quote i {
    color: #0d6efd;
    margin-right: 0.5rem;
    opacity: 0.7;
}

/* ----- CORE VALUES CARDS ----- */
.core-value-card {
    background: var(--card-bg, white);
    border-radius: 28px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition, all 0.3s ease);
    border: 1px solid var(--border-light, rgba(0, 0, 0, 0.05));
    height: 100%;
}

body.dark .core-value-card {
    background: var(--card-bg, #1e2538);
}

.core-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.1);
    border-color: rgba(13, 110, 253, 0.3);
}

.core-value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    color: white;
}

.core-value-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-primary, #0a2c3d);
}

.core-value-card p {
    font-size: 0.9rem;
    color: var(--text-secondary, #5e6f7d);
    line-height: 1.5;
}

/* ----- STRATEGIC GOALS ----- */
.goals-section {
    background: var(--card-bg, white);
    border-radius: 40px;
    padding: 2rem;
    margin-bottom: 2rem;
}

body.dark .goals-section {
    background: var(--card-bg, #1e2538);
}

.goal-card {
    background: var(--bg-body, #f8fafd);
    border-radius: 24px;
    padding: 1.8rem;
    height: 100%;
    transition: var(--transition, all 0.3s ease);
}

body.dark .goal-card {
    background: var(--bg-secondary, #1a1f2e);
}

.goal-card:hover {
    transform: translateY(-3px);
}

.goal-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0d6efd;
    opacity: 0.3;
    margin-bottom: 0.5rem;
}

.goal-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-primary, #0a2c3d);
}

.goal-card p {
    font-size: 0.9rem;
    color: var(--text-secondary, #5e6f7d);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.goal-progress {
    background: #e9ecef;
    border-radius: 30px;
    height: 8px;
    overflow: hidden;
    margin: 0.5rem 0;
}

body.dark .goal-progress {
    background: #2a3448;
}

.progress-bar {
    background: linear-gradient(90deg, #0d6efd, #d4a11e);
    height: 100%;
    border-radius: 30px;
    transition: width 0.5s ease;
}

.goal-progress-text {
    font-size: 0.75rem;
    color: var(--text-secondary, #5e6f7d);
}

/* ----- IMPACT STATISTICS ----- */
.impact-section {
    background: linear-gradient(135deg, #0d6efd10, #d4a11e10);
    border-radius: 40px;
    padding: 2.5rem;
}

.impact-stat {
    text-align: center;
    padding: 1rem;
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0d6efd;
    margin-bottom: 0.3rem;
}

.impact-label {
    font-size: 0.9rem;
    color: var(--text-secondary, #5e6f7d);
    font-weight: 500;
}

/* ----- SECTION TITLES ----- */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary, #0a2c3d);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary, #5e6f7d);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ----- RESPONSIVE STYLES ----- */
@media (max-width: 768px) {
    .vision-hero {
        padding: 2rem 1.2rem;
    }

    .vision-card {
        padding: 1.5rem;
    }

    .vision-card-title {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .goal-card {
        padding: 1.2rem;
    }

    .impact-number {
        font-size: 1.8rem;
    }

    .core-value-card {
        padding: 1.2rem;
    }

    .core-value-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .vision-hero h1 {
        font-size: 1.8rem;
    }

    .vision-icon-large {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }

    .vision-card-title {
        font-size: 1.2rem;
    }

    .goal-number {
        font-size: 2rem;
    }

    .impact-number {
        font-size: 1.5rem;
    }
}