/* BP Ajans - Hizmet Görselleri CSS */

/* Hizmet Alt Kategorileri Bölümü */
.service-subcategories {
    padding: 40px 0;
    margin-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.subcategory-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 30px;
    text-align: center;
}

.subcategory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.subcategory-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
}

.subcategory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.subcategory-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.subcategory-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.subcategory-card:hover .subcategory-image img {
    transform: scale(1.05);
}

.subcategory-content {
    padding: 20px;
}

.subcategory-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.subcategory-description {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 15px;
}

.process-steps {
    display: flex;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.process-step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 12px;
    right: 0;
    width: 50%;
    height: 1px;
    background: rgba(0,0,0,0.1);
}

.process-step:not(:first-child):before {
    content: '';
    position: absolute;
    top: 12px;
    left: 0;
    width: 50%;
    height: 1px;
    background: rgba(0,0,0,0.1);
}

.step-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px;
    color: white;
    font-size: 12px;
}

.step-name {
    font-size: 10px;
    color: var(--text-light);
    font-weight: 500;
}

.subcategory-result {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
}

.result-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    flex-shrink: 0;
}

.result-text {
    font-size: 13px;
    color: var(--text-color);
    line-height: 1.4;
}

/* Responsive Ayarlar */
@media (max-width: 992px) {
    .subcategory-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .subcategory-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 576px) {
    .subcategory-grid {
        grid-template-columns: 1fr;
    }
}
