/* de-locations-1.css — вынесено из inline <style> компонента view/de/locations.php */
.service-conclusion {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
}
/* 
.service-conclusion:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(154, 138, 120, 0.2), transparent);
} */

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

.conclusion-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    /* height: 400px; */
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.conclusion-content:hover .conclusion-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

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

.conclusion-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #0F1114;
    position: relative;
    padding-bottom: 15px;
}

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

.conclusion-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.conclusion-highlight {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 30px 0;
    padding: 25px;
    background-color: rgba(154, 138, 120, 0.05);
    border-radius: 10px;
    border-left: 4px solid #9A8A78;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background-color: #9A8A78;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
}

.highlight-text p {
    margin-bottom: 0;
    font-style: italic;
    color: #333;
}

.conclusion-cta {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(154, 138, 120, 0.2);
}

.contact-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
}

.phone-link,
.email-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #0F1114;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.phone-link svg,
.email-link svg {
    stroke: #9A8A78;
}

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

.phone-link:hover svg,
.email-link:hover svg {
    stroke: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .service-conclusion {
        padding: 60px 0;
    }
    
    .conclusion-content {
        flex-direction: column;
    }
    
    .conclusion-image {
        width: 100%;
        max-width: 100%;
        height: 350px;
        order: -1;
    }
    
    .conclusion-text h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .service-conclusion {
        padding: 50px 0;
    }
    
    .conclusion-image {
        height: 250px;
    }
    
    .conclusion-text {
        padding: 0;
    }
    
    .conclusion-text h3 {
        font-size: 1.6rem;
    }
    
    .conclusion-text p {
        font-size: 1rem;
    }
    
    .conclusion-highlight {
        padding: 20px;
        margin: 25px 0;
    }
    
    .highlight-icon {
        width: 35px;
        height: 35px;
    }
    
    .highlight-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .contact-options {
        flex-direction: column;
        gap: 15px;
    }
    
    .phone-link,
    .email-link {
        width: 100%;
        justify-content: center;
    }
}
