/* Services Archive Styles - 1001 */
.services-archive-1001 {
    padding: 60px 0 80px;
    background: #fff;
}

.archive-header-1001 {
    text-align: left;
    margin-bottom: 60px;
    max-width: 100%;
}

.archive-title-1001 {
    font-size: 42px;
    color: #222;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.archive-description-1001 {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
}

.archive-description-1001 p {
    margin-bottom: 15px;
}

/* Секции услуг */
.services-section-1001 {
    margin-bottom: 80px;
}

.services-section-1001:last-child {
    margin-bottom: 0;
}

.section-title-1001 {
    line-height: 1.2;
    font-size: 32px;
    color: #222;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: left;
    border-bottom: 3px solid #0000cd;
    padding-bottom: 10px;
    display: inline-block;
}

.section-description-1001 {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    text-align: left;
    max-width: 800px;
    margin: 0 0 40px 0;
}

/* Сетка услуг - 4 в ряд на ПК */
.services-grid-1001 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 0;
}

/* Карточка услуги - ОБНОВЛЕННАЯ */
.service-card-1001 {
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid #f5f5f5;
    display: flex;
    flex-direction: column;
    height: auto;
    position: relative;
    overflow: hidden;
}

.service-card-1001:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: #0000cd;
}

.service-card-1001::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0000cd, #4d4dff);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card-1001:hover::before {
    transform: scaleX(1);
}

/* Заголовок услуги - СНАЧАЛА */
.service-title-wrapper-1001 {
    margin-bottom: 20px;
    text-align: center;
}

.service-title-1001 {
    font-size: 22px;
    margin: 0 0 15px 0;
    font-weight: 700;
    line-height: 1.3;
    color: #222;
}

.service-title-1001 a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.service-title-1001 a:hover {
    color: #0000cd;
}

/* Изображение в кружке - ПОСЛЕ ЗАГОЛОВКА */
.service-image-wrapper-1001 {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.service-thumbnail-container-1001 {
    display: flex;
    justify-content: center;
}

.service-thumbnail-1001 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f0f0f0;
    transition: all 0.4s ease;
    background: #fff;
}

.service-card-1001:hover .service-thumbnail-1001 {
    border-color: rgba(0, 0, 205, 0.25);
    transform: scale(1.05);
}

/* Краткое описание */
.service-excerpt-1001 {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;
    flex: 1;
    text-align: center;
}

.service-excerpt-1001 p {
    margin: 0;
}

/* Кнопка подробнее - ОБНОВЛЕННАЯ */
.service-read-more-wrapper-1001 {
    margin-top: auto;
    text-align: center;
}

.service-read-more-1001 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #0000cd 0%, #4d4dff 100%);
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.4s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 205, 0.3);
    position: relative;
    overflow: hidden;
}

.service-read-more-1001::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.service-read-more-1001:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 205, 0.4);
    gap: 12px;
}

.service-read-more-1001:hover::before {
    left: 100%;
}

.service-read-more-1001 svg {
    transition: transform 0.3s ease;
}

.service-read-more-1001:hover svg {
    transform: translateX(4px);
}

/* Адаптивность */
@media (max-width: 1200px) {
    .services-grid-1001 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .services-grid-1001 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .archive-title-1001 {
        font-size: 36px;
    }
    
    .section-title-1001 {
        font-size: 28px;
    }
    
    .service-card-1001 {
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .services-archive-1001 {
        padding: 40px 0 60px;
    }
    
    .services-grid-1001 {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .archive-title-1001 {
        font-size: 32px;
    }
    
    .archive-description-1001 {
        font-size: 16px;
    }
    
    .section-title-1001 {
        font-size: 24px;
    }
    
    .service-card-1001 {
        padding: 25px 20px;
    }
    
    .service-thumbnail-1001 {
        width: 90px;
        height: 90px;
    }
    
    .service-title-1001 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .archive-title-1001 {
        font-size: 28px;
    }
    
    .service-card-1001 {
        padding: 20px 15px;
    }
    
    .service-thumbnail-1001 {
        width: 80px;
        height: 80px;
    }
    
    .service-read-more-1001 {
        padding: 12px 24px;
        font-size: 13px;
    }
}