/* de-locations-0.css — вынесено из inline <style> компонента view/de/locations.php */
.service-locations {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
}

.service-locations:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.locations-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
}

.locations-text {
    flex: 1;
    min-width: 300px;
    padding-right: 20px;
}

.locations-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #0F1114;
    position: relative;
    padding-bottom: 15px;
}

.locations-text h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #9A8A78;
}

.locations-text p {
    color: #333;
    margin-bottom: 20px;
}


.locations-benefits {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.locations-benefits:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background-color: #9A8A78;
}

.locations-benefits h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #0F1114;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(154, 138, 120, 0.1);
}

.benefits-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(154, 138, 120, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 20px;
    height: 20px;
    stroke: #9A8A78;
}

.benefits-list li span:last-child {
    font-size: 1.05rem;
    color: #333;
}

.quote-button {
    display: inline-block;
    background-color: #0F1114;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 1px;
}

.quote-button:hover {
    background-color: #9A8A78;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .service-locations {
        padding: 60px 0;
    }
    
    .locations-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .locations-text {
        padding-right: 0;
    }
    
    .locations-text h2 {
        font-size: 2.2rem;
    }
    
    .locations-benefits h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 767px) {
    .service-locations {
        padding: 50px 0;
    }
    
    .locations-text h2 {
        font-size: 1.8rem;
    }
    
    .locations-text p {
        font-size: 1rem;
    }
    
    .locations-benefits {
        padding: 30px 20px;
    }
    
    .benefits-list li {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    
    .benefit-icon {
        width: 35px;
        height: 35px;
    }
    
    .benefit-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .benefits-list li span:last-child {
        font-size: 0.95rem;
    }
    
    .quote-button {
        width: 100%;
        padding: 12px 20px;
    }
}
