/* Kart seçim sistemi stilleri */

/* Kart seçim başlığı */
.selection-title {
    font-size: 24px;
    color: #0080bc;
    font-weight: 600;
    text-align: center;
    margin: 40px 0 30px 0;
    font-family: 'Segoe UI', 'Arial', sans-serif;
}

/* Kart grid sistemi */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* Kart stilleri */
.card-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0080bc, #0099d9);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 128, 188, 0.15);
    border-color: #0080bc;
}

.card-item:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    font-weight: bold;
    background: #ffffff;
    border: 3px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.card-item:hover .card-icon {
    border-color: #0080bc;
    box-shadow: 0 4px 15px rgba(0, 128, 188, 0.2);
}

.card-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.card-item:hover .card-image {
    transform: scale(1.1);
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: #0080bc;
    margin: 0;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.card-item:hover .card-title {
    color: #006ba6;
    transform: translateY(-2px);
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .selection-title {
        font-size: 18px;
        margin: 20px 0 15px 0;
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 20px;
    }
    
    .card-item {
        padding: 15px 10px;
    }
    
    .card-title {
        font-size: 12px;
        line-height: 1.2;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }
    
    .card-image {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .selection-title {
        font-size: 16px;
        margin: 15px 0 10px 0;
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-top: 15px;
    }
    
    .card-item {
        padding: 12px 8px;
    }
    
    .card-title {
        font-size: 11px;
        line-height: 1.1;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 8px;
    }
    
    .card-image {
        width: 35px;
        height: 35px;
    }
}
