/* Services Custom Styles */

/* Imagini decorative stânga/dreapta */
.service-decoration-left {
    position: absolute;
    left: -150px;
    top: 50%;
    transform: translateY(-50%);
    width: 220px;
    opacity: 0.8;
}

.service-decoration-right {
    position: absolute;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    width: 220px;
    opacity: 0.8;
}

.service-decoration-left img,
.service-decoration-right img {
    width: 100%;
    height: auto;
}

/* Pe ecrane mici, ascunde decorațiile */
@media (max-width: 1400px) {
    .service-decoration-left,
    .service-decoration-right {
        display: none;
    }
}

/* Equal height pentru toate service cards */
.service-section .single-service-item-three {
    height: 550px !important;
    display: flex !important;
}

.service-section .single-service-item-three .content {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    padding: 30px;
}

/* Title area cu înălțime fixă */
.service-section .single-service-item-three .content h3.title {
    height: 60px;
    min-height: 60px;
    max-height: 60px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    overflow: hidden;
}

/* Description area cu înălțime fixă */
.service-section .single-service-item-three .content > p {
    height: 80px !important;
    min-height: 80px !important;
    max-height: 80px !important;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 20px;
}

/* Image area cu înălțime fixă */
.service-section .single-service-item-three .content img {
    height: 220px !important;
    min-height: 220px !important;
    max-height: 220px !important;
    width: 100%;
    object-fit: cover;
    margin-bottom: 20px;
}

/* Read more button */
.service-section .single-service-item-three .content .btn-link {
    margin-bottom: 20px;
    display: block;
}

/* Meta section la final - înălțime fixă */
.service-section .single-service-item-three .content .meta {
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-section .single-service-item-three {
        height: 500px !important;
    }
    
    .service-section .single-service-item-three .content > p {
        height: 70px !important;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
    
    .service-section .single-service-item-three .content img {
        height: 180px !important;
    }
}
