/* Service Details - Full Width Image Layout with View More Button */

.service-details {
    margin-top: 0;
    background-color: #fff;
}

.service-details__item {
    margin-bottom: 60px;
    position: relative;
}

.service-details__item:last-child {
    margin-bottom: 0;
}

/* Full Width Image - No Container */
.service-details__image-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.service-details__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-details__image-wrapper:hover .service-details__image {
    transform: scale(1.05);
}

/* Content with Container */
.service-details__content-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
}

.service-details__text {
    max-width: 800px;
    margin: 0 auto;
}

.service-details__title {
    font-family: 'Petrona', serif;
    font-size: 3.4rem;
    font-weight: 600;
    line-height: 1.23;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}

.service-details__description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    color: #4f4f4f;
    margin-bottom: 30px;
    text-align: center;
}

/* View More Button */
.service-details__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(180deg, #AA8F60 0%, #D4B484 100%);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #AA8F60;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: flex;
    width: fit-content;
}

.service-details__btn svg {
    transition: transform 0.3s ease;
}

.service-details__btn:hover {
    background: #fff;
    color: #AA8F60;
    border-color: #AA8F60;
}

.service-details__btn:hover svg {
    transform: translateX(5px);
}

/* Empty State */
.service-details__empty {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 1.6rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .service-details__title {
        font-size: 2.4rem;
        line-height: 1.33;
    }
    
    .service-details__content-wrapper {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    
    .service-details__item {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .service-details__title {
        font-size: 2rem;
        line-height: 1.4;
    }
    
    .service-details__description {
        font-size: 1.4rem;
        text-align: left;
    }
    
    .service-details__btn {
        padding: 12px 24px;
        font-size: 1.3rem;
    }
    
    .service-details__content-wrapper {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
    .service-details__item {
        margin-bottom: 30px;
    }
}
