.service-layout {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 4rem 3rem 2rem;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.4s ease;
    overflow-y: auto;
}

/* Header */
.service-layout-header {
    margin-bottom: 2.5rem;
    max-width: 50%;
}

.service-layout-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 200;
    margin: 0 0 1.25rem 0;
    line-height: 1;
    color: inherit;
}

.service-layout-description {
    font-size: 1rem;
    font-weight: 300;
    margin: 0;
    opacity: 0.9;
    line-height: 1.7;
}

/* Content Grid */
.service-layout-content {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
}

.service-layout-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 1;
    max-width: 50%;
}

.service-layout-right {
    flex: 1;
    max-width: 100%;
    overflow: visible;
}

/* Section Titles */
.service-layout-section-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0 0 1rem 0;
    opacity: 0.5;
    color: inherit;
}

/* Services */
.service-layout-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.service-layout-service-item {
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0.85;
}

/* Portfolio Swiper */
.service-layout-portfolio {
    display: flex;
    flex-direction: column;
}

.service-layout-swiper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.service-layout-swiper .swiper-slide {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: auto;
}

.service-layout-portfolio-image {
    width: 100%;
    aspect-ratio: 13/9;
    object-fit: cover;
}

.service-layout-portfolio-info {
    padding: 0.25rem 0;
}

.service-layout-portfolio-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: inherit;
}

.service-layout-portfolio-description {
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.7;
}

/* Swiper Navigation */
.service-layout-swiper .swiper-button-prev,
.service-layout-swiper .swiper-button-next {
    color: inherit;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    transition: background-color 0.2s;
}

.service-layout-swiper .swiper-button-prev:hover,
.service-layout-swiper .swiper-button-next:hover {
    background: rgba(0, 0, 0, 0.5);
}

.service-layout-swiper .swiper-button-prev::after,
.service-layout-swiper .swiper-button-next::after {
    font-size: 1rem;
}

/* Swiper Pagination */
.service-layout-swiper .swiper-pagination {
    position: relative;
    margin-top: 1rem;
}

.service-layout-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.service-layout-swiper .swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 768px) {
    .service-layout {
        padding: 3.5rem 1.5rem 1.5rem;
    }

    .service-layout-header {
        max-width: 100%;
    }

    .service-layout-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-layout-services-list {
        grid-template-columns: 1fr;
    }

    .service-layout-left {
        max-width: 100%;
    }

    .service-layout-right {
        min-height: 300px;
    }
}