/* Vision Page Specific Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a5490 0%, #2980b9 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Submenu */
.submenu {
    background-color: white;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 70px;
    z-index: 999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.submenu-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    padding: 1rem 0;
}

.submenu-list a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.submenu-list a:hover {
    color: var(--primary-color);
    background-color: var(--bg-light);
}

/* Management Policy Section */
.management-policy-section {
    background-color: white;
    padding: 80px 0;
}

.policy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.policy-card {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    position: relative;
    border-left: 6px solid var(--primary-color);
    transition: all 0.3s ease;
}

.policy-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.policy-number {
    position: absolute;
    top: -20px;
    left: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.policy-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 1rem 0 1.5rem 0;
}

.policy-card h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.policy-card p {
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.policy-quote {
    font-style: italic;
    color: var(--primary-color);
    font-weight: 600;
    padding: 1.2rem;
    background-color: white;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    font-size: 1.05rem;
}

/* Vision 2031 Section */
.vision-2031-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.vision-statement {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
    box-shadow: var(--shadow-lg);
}

.vision-statement h3 {
    font-size: 2.2rem;
    line-height: 1.5;
    margin: 0;
}

.vision-content {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 3rem;
}

.vision-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.vision-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.vision-highlight {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    font-size: 1.15rem !important;
    text-align: center;
    margin-top: 2rem !important;
}

.subsection-title {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin: 3rem 0 2rem 0;
}

.vision-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.goal-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.goal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.goal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.goal-card h4 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.goal-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Philosophy Section */
.philosophy-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.philosophy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><circle cx="200" cy="200" r="120" fill="rgba(255,255,255,0.03)"/><circle cx="1000" cy="100" r="150" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.5;
}

.philosophy-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.philosophy-subtitle {
    text-align: center;
    font-size: 2.2rem;
    font-style: italic;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.philosophy-text {
    font-size: 1.15rem;
    line-height: 2;
}

.philosophy-block {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid white;
}

.philosophy-block p {
    margin: 0;
}

.philosophy-block strong {
    color: #3498db;
    font-weight: 600;
}

.philosophy-conclusion {
    margin-top: 3rem;
    padding: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.philosophy-conclusion p {
    font-size: 1.3rem;
    margin: 0;
}

/* Strengths Section */
.strengths-section {
    background-color: white;
    padding: 80px 0;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.strength-card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.strength-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.strength-number {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: 700;
    opacity: 0.2;
}

.strength-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.strength-card h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.strength-card p {
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}

.strength-card strong {
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .strengths-grid {
        grid-template-columns: 1fr;
    }

    .vision-goals {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .submenu-list {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .submenu-list a {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .policy-card {
        padding: 2rem;
    }

    .policy-card h3 {
        font-size: 1.5rem;
    }

    .vision-statement h3 {
        font-size: 1.6rem;
    }

    .vision-content {
        padding: 2rem;
    }

    .philosophy-title {
        font-size: 2rem;
    }

    .philosophy-subtitle {
        font-size: 1.6rem;
    }

    .philosophy-block {
        padding: 1.5rem;
    }

    .vision-goals {
        grid-template-columns: 1fr;
    }

    .strength-number {
        font-size: 2rem;
        top: 15px;
        right: 15px;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .vision-statement {
        padding: 2rem;
    }

    .vision-statement h3 {
        font-size: 1.4rem;
    }

    .philosophy-text {
        font-size: 1rem;
    }

    .strength-card {
        padding: 2rem;
    }
}
