/* Hizmet Kategorileri için stil */
.service-categories {
    margin-bottom: 50px;
}

.service-category {
    background: var(--white-color);
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(228, 30, 38, 0.1);
    margin-bottom: 20px;
    cursor: pointer;
}

.service-category:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 5px;
    width: 100%;
    background: var(--primary-gradient);
    transition: all 0.4s ease;
}

.service-category i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: all 0.4s ease;
    display: block;
}

.service-category h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0;
    transition: all 0.4s ease;
}

.service-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(228, 30, 38, 0.2);
}

.service-category:hover i {
    transform: scale(1.2);
}

.service-category:hover h4 {
    color: var(--primary-color);
}

.service-category.active {
    background: var(--primary-gradient);
}

.service-category.active i,
.service-category.active h4 {
    color: var(--white-color);
}

/* Hizmet içerik alanı stilleri */
.service-content {
    position: relative;
}

.service-content .tab-pane {
    display: block !important;
    opacity: 1 !important;
    margin-bottom: 60px;
}

.service-content .tab-pane:not(:last-child):after {
    content: '';
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(228, 30, 38, 0.3), transparent);
    width: 80%;
    margin: 40px auto;
    display: block;
}

/* Kategori başlıkları */
.service-content h2.category-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    color: var(--secondary-color);
}

.service-content h2.category-title:before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: var(--primary-gradient);
}

/* Responsive düzenlemeler */
@media (max-width: 767px) {
    .service-category {
        margin-bottom: 20px;
    }
    
    .service-content .tab-pane {
        margin-bottom: 40px;
    }
    
    .service-content .tab-pane:after {
        margin: 20px auto;
    }
}
