/* 
 * Hizmetler Bölümü Stilleri
 */

.services-section {
    padding: 80px 0;
    transition: all 0.3s ease;
}

.services-section.bg-light {
    background-color: #f8f9fa;
}

.services-section.bg-dark {
    background-color: #343a40;
}

.services-section .section-title {
    font-weight: 700;
    margin-bottom: 15px;
}

.bg-light .section-title {
    color: #333;
}

.bg-dark .section-title {
    color: #fff;
}

.services-section .section-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.bg-light .section-description {
    color: #6c757d;
}

.bg-dark .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.service-item {
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.bg-light .service-item {
    background-color: #fff;
    border: 1px solid #eee;
}

.bg-dark .service-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-item:hover {
    transform: translateY(-5px);
}

.bg-light .service-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.bg-dark .service-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-icon {
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    color: var(--iamhere-primary-color, #0d6efd);
}

.service-image {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-image img {
    max-height: 100%;
}

.service-title {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.bg-light .service-title {
    color: #333;
}

.bg-dark .service-title {
    color: #fff;
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.6;
}

.bg-light .service-description {
    color: #6c757d;
}

.bg-dark .service-description {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Ayarlamalar */
@media (max-width: 991.98px) {
    .services-section {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .services-section .col-sm-6 {
        margin-bottom: 30px;
    }
    
    .service-item {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .services-section {
        padding: 40px 0;
    }
    
    .services-section .section-title {
        font-size: 1.8rem;
    }
    
    .services-section .section-description {
        font-size: 1rem;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
}