/* ========================================
   MODERN VISION PAGE 2025
   SEO & Mobile Optimized
   ======================================== */

/* Hero Section */
.modern-vision-hero {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
    overflow: hidden;
}

.vision-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Modern Breadcrumb */
.modern-breadcrumb {
    margin-bottom: 32px;
}

.modern-breadcrumb .breadcrumb {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 100px;
    border: 1px solid rgba(0, 32, 82, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    margin: 0;
}

.modern-breadcrumb .breadcrumb-item {
    font-size: 14px;
    font-weight: 500;
}

.modern-breadcrumb .breadcrumb-item a {
    color: #64748b;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.modern-breadcrumb .breadcrumb-item a:hover {
    color: #ff5e15;
}

.modern-breadcrumb .breadcrumb-item.active {
    color: #002052;
    font-weight: 600;
}

.modern-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #cbd5e1;
    padding: 0 12px;
}

/* Hero Title - H1 (SADECE 1 TANE) */
.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.title-gradient {
    background: linear-gradient(135deg, #ff5e15 0%, #ff8a4d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.title-navy {
    color: #002052;
    display: inline-block;
}

.hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

/* Hero Background Decoration */
.hero-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
}

.circle-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 94, 21, 0.08) 0%, transparent 70%);
    top: -150px;
    right: -150px;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 32, 82, 0.06) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-30px, 30px) scale(0.9); }
    75% { transform: translate(30px, 30px) scale(1.05); }
}

/* Vision Content Section */
.modern-vision-content {
    padding: 100px 0;
    background: #ffffff;
}

.vision-content-box {
    padding-right: 40px;
}

.content-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(255, 94, 21, 0.08) 0%, rgba(255, 94, 21, 0.03) 100%);
    border-radius: 100px;
    margin-bottom: 24px;
    border: 1.5px solid rgba(255, 94, 21, 0.15);
}

.content-badge i {
    color: #ff5e15;
    font-size: 18px;
}

.content-badge span {
    font-size: 13px;
    font-weight: 700;
    color: #ff5e15;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.content-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    color: #002052;
    margin-bottom: 28px;
}

.content-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 20px;
}

/* Vision Features */
.vision-features {
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 94, 21, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 94, 21, 0.05);
    border-color: rgba(255, 94, 21, 0.2);
    transform: translateX(8px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(255, 94, 21, 0.1) 0%, rgba(255, 94, 21, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ff5e15;
    font-size: 20px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, #ff5e15 0%, #ff8a4d 100%);
    color: white;
    transform: scale(1.1);
}

.feature-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #002052;
    margin: 0 0 6px 0;
}

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

/* CTA Buttons */
.vision-cta {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ff5e15 0%, #ff8a4d 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(255, 94, 21, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 94, 21, 0.4);
    gap: 14px;
}

.cta-button.secondary {
    background: rgba(255, 94, 21, 0.08);
    color: #ff5e15;
    border: 2px solid rgba(255, 94, 21, 0.2);
}

.cta-button.secondary:hover {
    background: rgba(255, 94, 21, 0.15);
    border-color: rgba(255, 94, 21, 0.3);
    gap: 14px;
}

/* Vision Image Box */
.vision-image-box {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 32, 82, 0.15);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Stats Badge */
.stats-badge {
    position: absolute;
    bottom: 32px;
    left: 32px;
    background: linear-gradient(135deg, #002052 0%, #003875 100%);
    padding: 24px 32px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 32, 82, 0.3);
    backdrop-filter: blur(10px);
}

.stats-number {
    font-size: 48px;
    font-weight: 900;
    color: #ff5e15;
    line-height: 1;
    margin-bottom: 8px;
}

.stats-text span {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.stats-text strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: white;
}

/* Image Decorations */
.image-decoration {
    position: absolute;
    border-radius: 24px;
    z-index: -1;
}

.decoration-1 {
    width: 100%;
    height: 100%;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, rgba(255, 94, 21, 0.1) 0%, rgba(255, 94, 21, 0.05) 100%);
}

.decoration-2 {
    width: 100%;
    height: 100%;
    top: -20px;
    left: -20px;
    background: linear-gradient(135deg, rgba(0, 32, 82, 0.05) 0%, rgba(0, 32, 82, 0.02) 100%);
}

/* Vision Goals Section */
.vision-goals-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(0, 32, 82, 0.08) 0%, rgba(0, 32, 82, 0.03) 100%);
    border-radius: 100px;
    margin-bottom: 24px;
    border: 1.5px solid rgba(0, 32, 82, 0.15);
}

.section-badge i {
    color: #002052;
    font-size: 18px;
}

.section-badge span {
    font-size: 13px;
    font-weight: 700;
    color: #002052;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.section-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.3;
    color: #002052;
    text-align: center;
}

/* Goals Grid */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.goal-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 40px 32px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    text-align: center;
}

.goal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(255, 94, 21, 0.12);
    border-color: rgba(255, 94, 21, 0.2);
}

.goal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 94, 21, 0.1) 0%, rgba(255, 94, 21, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #ff5e15;
    font-size: 32px;
    transition: all 0.3s ease;
}

.goal-card:hover .goal-icon {
    background: linear-gradient(135deg, #ff5e15 0%, #ff8a4d 100%);
    color: white;
    transform: scale(1.1) rotate(-5deg);
}

.goal-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #002052;
    margin: 0 0 12px 0;
}

.goal-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vision-content-box {
        padding-right: 0;
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .modern-vision-hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .modern-vision-content {
        padding: 60px 0;
    }
    
    .content-title {
        font-size: 32px;
    }
    
    .vision-cta {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .stats-badge {
        left: 16px;
        bottom: 16px;
        padding: 20px 24px;
    }
    
    .stats-number {
        font-size: 36px;
    }
    
    .vision-goals-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .goals-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .modern-vision-hero {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .modern-breadcrumb .breadcrumb {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .content-title {
        font-size: 26px;
    }
    
    .content-text p {
        font-size: 15px;
    }
    
    .feature-item {
        padding: 16px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .feature-text h3 {
        font-size: 16px;
    }
    
    .stats-badge {
        padding: 16px 20px;
    }
    
    .stats-number {
        font-size: 32px;
    }
    
    .stats-text strong {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .goal-card {
        padding: 32px 24px;
    }
    
    .goal-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }
    
    .goal-card h3 {
        font-size: 20px;
    }
}
