/* =============================================== */
/*  ЗОНА ОБСЛУЖИВАНИЯ - ГЛАВНАЯ СТРАНИЦА  */
/* =============================================== */

.service-areas-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-areas-content {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

/* Информационная часть */
.service-areas-info {
    padding-right: 0;
}

.service-areas-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.2;
}

.service-areas-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Сетка районов */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.area-category {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.area-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.area-category-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2c3e50;
    text-align: center;
}

.area-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.area-list li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: #495057;
    border-bottom: 1px solid #f1f3f4;
    transition: color 0.2s ease;
}

.area-list li:last-child {
    border-bottom: none;
}

.area-list li:hover {
    color: #007bff;
}

/* Особенности сервиса */
.service-areas-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #2c3e50;
}

.feature-content p {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
}

/* CTA секция */
.service-areas-cta {
    margin-top: 40px;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
    margin-bottom: 16px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.cta-button i {
    font-size: 1.2rem;
}

.cta-link {
    display: inline-block;
    color: #667eea;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.cta-link:hover {
    color: #764ba2;
    text-decoration: none;
    transform: translateX(4px);
}



/* Адаптивность */
@media (max-width: 1024px) {
    .service-areas-content {
        gap: 40px;
    }
    
    .service-areas-info {
        padding-right: 20px;
    }
    
    .areas-grid {
        gap: 16px;
    }
    
    .service-areas-features {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .service-areas-section {
        padding: 40px 0;
    }
    
    .service-areas-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .service-areas-info {
        padding-right: 0;
    }
    
    .service-areas-title {
        font-size: 1.8rem;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-areas-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .service-areas-cta {
        margin-top: 30px;
        padding-top: 20px;
    }
    
    .cta-button {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .service-areas-title {
        font-size: 1.5rem;
    }
    
    .service-areas-description {
        font-size: 1rem;
    }
    
    .area-category {
        padding: 16px;
    }
    
    .feature-item {
        padding: 12px;
    }
    
    .feature-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .service-areas-cta {
        margin-top: 24px;
        padding-top: 16px;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    
    .cta-link {
        font-size: 0.9rem;
    }
    

}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-areas-section {
    animation: fadeInUp 0.8s ease forwards;
}

.area-category {
    animation: fadeInUp 0.6s ease forwards;
}

.area-category:nth-child(1) { animation-delay: 0.1s; }
.area-category:nth-child(2) { animation-delay: 0.2s; }
.area-category:nth-child(3) { animation-delay: 0.3s; }

.feature-item {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-item:nth-child(1) { animation-delay: 0.4s; }
.feature-item:nth-child(2) { animation-delay: 0.5s; }
.feature-item:nth-child(3) { animation-delay: 0.6s; }

.service-areas-cta {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.7s;
}





.area-list li {
    position: relative;
    padding-left: 16px;
}

.area-list li::before {
    content: '📍';
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 12px;
}

/* Дополнительные эффекты */
.service-areas-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
}

.service-areas-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
} 

/* ================= Collapsible list ================ */
.areas-collapsible {
    position: relative;
    max-width: 980px;
    margin: 0 auto 24px auto;
}

.areas-collapsible.collapsed .areas-bullets {
    max-height: 140px;
    overflow: hidden;
}

.areas-collapsible.collapsed .areas-fade {
    opacity: 1;
}

.areas-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 32px;
}

.areas-bullets li {
    position: relative;
    margin: 6px 0;
    padding-left: 18px;
    break-inside: avoid;
    color: #495057;
}

.areas-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #667eea;
}

.areas-fade {
    pointer-events: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 48px;
    background: linear-gradient(180deg, rgba(248,249,250,0) 0%, #f8f9fa 70%);
    transition: opacity .2s ease;
    opacity: 0;
}

.areas-toggle {
    display: inline-block;
    background: transparent;
    border: 1px solid #d0d7de;
    color: #495057;
    font-weight: 600;
    border-radius: 999px;
    padding: 8px 14px;
    cursor: pointer;
    transition: all .2s ease;
}

.areas-toggle:hover {
    border-color: #667eea;
    color: #667eea;
}

@media (max-width: 768px) {
    .areas-bullets { columns: 1; }
}