/* Yeni Hizmetler Bölümü Stili */
.services-modern-section {
    padding: 80px 0;
    background-color: #fff;
}

.services-heading {
    text-align: center;
    margin-bottom: 60px;
}

.services-heading h5 {
    color: #e61f1f;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
}

.services-heading h2 {
    font-size: 38px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.service-card {
    margin-bottom: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: transparent;
}

.service-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-icon {
    position: absolute;
    left: 20px;
    bottom: 10px;
    width: 60px;
    height: 60px;
    background-color: #e61f1f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 31, 31, 0.3);
    border: 3px solid #fff;
}

.service-card:hover .service-icon {
    background-color: #c41818;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(230, 31, 31, 0.5);
}

.service-content {
    padding: 40px 25px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.service-text {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-link {
    color: #e61f1f;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #c41818;
}

.service-link:hover i {
    transform: translateX(5px);
}

.all-services-btn {
    display: inline-block;
    background-color: #e61f1f;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 30px;
    border: none;
    cursor: pointer;
}

.all-services-btn:hover {
    background-color: #c41818;
    transform: translateY(-3px);
    color: #fff;
}

.text-center {
    text-align: center;
}

/* Responsive styles */
@media (max-width: 992px) {
    .services-modern-section {
        padding: 60px 0;
    }
    
    .services-heading h2 {
        font-size: 32px;
    }
    
    .service-card {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .services-modern-section {
        padding: 50px 0;
    }
    
    .services-heading {
        margin-bottom: 40px;
    }
    
    .services-heading h2 {
        font-size: 28px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .all-services-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .services-modern-section {
        padding: 40px 0;
    }
    
    .services-heading h5 {
        font-size: 14px;
    }
    
    .services-heading h2 {
        font-size: 24px;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 10px;
    }
    
    .service-content {
        padding: 35px 20px 20px;
    }
}
