/* Başvuru Seçim Bölümü */
.application-selection {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.container-application{
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 20px;
}

/* Bölüm Başlığı */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Kartlar Container */
.application-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Başvuru Kartları */
.application-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.application-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.application-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.application-card:hover::before {
    transform: scaleX(1);
}

/* Kart İkonu */
.card-icon {
    text-align: center;
    margin-bottom: 25px;
}

.card-icon i {
    font-size: 3.5rem;
    color: #007bff;
    background: linear-gradient(135deg, #007bff, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Kart İçeriği */
.card-content {
    margin-bottom: 30px;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.card-description {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}

/* Özellik Listesi */
.card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #495057;
}

.card-features li i {
    color: #28a745;
    margin-right: 12px;
    font-size: 0.9rem;
    width: 16px;
}

/* Kart Footer */
.card-footer {
    text-align: center;
    margin-top: 30px;
}

/* Başvuru Butonu */
.btn-application {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-application::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-application:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    color: white;
    text-decoration: none;
}

.btn-application:hover::before {
    left: 100%;
}

.btn-application i {
    transition: transform 0.3s ease;
}

.btn-application:hover i {
    transform: translateX(5px);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .application-selection {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .application-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .application-card {
        padding: 30px 25px;
    }
    
    .card-icon i {
        font-size: 3rem;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .btn-application {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container-application {
        padding: 0 15px;
        margin-top: 7rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .application-card {
        padding: 25px 20px;
    }
    
    .card-features li {
        font-size: 0.9rem;
    }
    
    .btn-application {
        width: 100%;
        padding: 15px 20px;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.application-card {
    animation: fadeInUp 0.6s ease-out;
}

.application-card:nth-child(2) {
    animation-delay: 0.2s;
}