/* Çözümler Section - Index Sayfası */
.cozumler-section {
    padding: 50px 0 30px;
    background: #f8f9fa;
}

.cozumler-section .section-title {
    margin-bottom: 20px;
}

.cozumler-section .section-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    max-width: 900px;
    margin: 0 auto 50px;
}

.cozum-carousel-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.cozum-image-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 400px;
    position: relative;
}

.cozum-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.cozum-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cozum-image-item:hover img {
    transform: scale(1.05);
}

.cozum-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    padding: 30px 20px;
    color: white;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cozum-image-item:hover .cozum-overlay {
    opacity: 1;
}

.cozum-overlay h4 {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
}

.cozum-content {
    text-align: center;
}

.cozum-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.cozum-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.cozum-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.cozum-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.cozum-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.cozum-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff 0%, #00c6ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

/* Responsive */
@media (max-width: 991px) {
    .cozumler-section {
        padding: 40px 0 20px;
    }
    
    .cozum-image-item {
        height: 350px;
    }
    
    .cozum-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .cozumler-section {
        padding: 30px 0 15px;
    }
    
    .cozum-image-item {
        height: 300px;
    }
    
    .cozumler-section .section-subtitle {
        font-size: 16px;
    }
    
    .cozum-card {
        padding: 20px;
    }
}
