/* Vizyonumuz Sayfası Özel Stilleri */

/* Active Navigation Link */
.nav-menu li a.active {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #000 0%, #000 100%);
    color: white;
    text-align: center;
    padding: 18rem 2rem 6rem;
    margin-top: 0px;
    position: relative;
    overflow: hidden;
}

.page-header::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 100 100"><defs><radialGradient id="g" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0);stop-opacity:0" /></radialGradient></defs><circle cx="50" cy="50" r="50" fill="url(%23g)" /></svg>') center/300px;
    opacity: 0.1;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

/* Mission Section */
.mission-section {
    padding: 8rem 0;
    background: white;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.8rem;
    color: #000;
    margin-bottom: 2rem;
    font-weight: 700;
}

.mission-text p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.visual-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    border: 3px dashed #94a3b8;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #64748b;
    font-weight: 600;
}

/* Vision Section */
.vision-section {
    padding: 8rem 0;
    background: #f8fafc;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vision-text h2 {
    font-size: 2.8rem;
    color: #000;
    margin-bottom: 2rem;
    font-weight: 700;
}

.vision-text p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Values Section */
.values-section {
    padding: 8rem 0;
    background: white;
}

.values-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #000;
    margin-bottom: 4rem;
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 58, 138, 0.05);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.15);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
}

/* Goals Section */
.goals-section {
    padding: 8rem 0;
    background: #f8fafc;
}

.goals-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #000;
    margin-bottom: 4rem;
    font-weight: 700;
}

.goals-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.goal-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    align-items: center;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
}

.goal-item:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.15);
}

.goal-number {
    background: linear-gradient(135deg, #000, #000);
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.goal-content h3 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.goal-content p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #000, #000);
    color: white;
    text-align: center;
    padding: 6rem 2rem;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-button-outline {
    background: transparent;
    color: white;
    padding: 1.2rem 3rem;
    border: 2px solid white;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button-outline:hover {
    background: white;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        padding: 12rem 2rem 4rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .mission-content,
    .vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-text h2,
    .vision-text h2,
    .values-section h2,
    .goals-section h2 {
        font-size: 2.2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .goal-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .goal-number {
        margin: 0 auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .mission-section,
    .vision-section,
    .values-section,
    .goals-section {
        padding: 4rem 0;
    }
    
    .value-card,
    .goal-item {
        padding: 2rem 1.5rem;
    }
    
    .visual-placeholder {
        height: 200px;
        font-size: 14px;
    }
    
    .goal-number {
        width: 80px;
        height: 80px;
        font-size: 1rem;
    }
}