.phs-90-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 80px 40px;
    box-sizing: border-box;
}

.phs-90-bg {
    position: absolute;
    inset: -30% 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: 0;
}

.phs-90-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: rgba(10,30,30,0.65);
}

.phs-90-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.phs-90-heading {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
    line-height: 1.3;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.phs-90-subtitle {
    font-size: clamp(14px, 1.5vw, 17px);
    color: rgba(255,255,255,0.75);
    margin: 0 auto 36px;
    max-width: 760px;
    line-height: 1.6;
}

.phs-90-bullets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 24px;
    max-width: 820px;
    margin: 0 auto 48px;
    text-align: left;
}

@media (max-width: 768px) {
    .phs-90-bullets {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .phs-90-bullets {
        grid-template-columns: 1fr;
    }
}

.phs-90-bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phs-90-bullet-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #4fc3f7;
    flex-shrink: 0;
}

.phs-90-bullet-text {
    color: #ffffff;
    font-size: 15px;
}

.phs-90-carousel-label {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 24px;
    letter-spacing: 0.02em;
}

/* Carousel breaks out to 1600px */
.phs-90-carousel-outer {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.phs-90-carousel-wrap {
    width: 100%;
    overflow: hidden;
    padding-bottom: 10px;
}

.phs-90-swiper {
    width: 100%;
    padding: 10px 0 40px;
}

/* Each slide takes exactly 1/4 of the swiper width */
.phs-90-slide {
    position: relative;
}

.phs-90-slide img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    cursor: crosshair;
}

/* Magic Zoom Lens */
.phs-90-zoom-lens {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    pointer-events: none;
    background-repeat: no-repeat;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.5), 0 8px 40px rgba(0,0,0,0.6);
    overflow: hidden;
    transition: opacity 0.1s ease;
}

.phs-90-placeholder-inner {
    height: 320px;
    width: 100%;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.phs-90-prev,
.phs-90-next {
    color: #ffffff;
}

.phs-90-prev::after,
.phs-90-next::after {
    font-size: 20px;
}

@media (max-width: 1024px) {
    .phs-90-carousel-outer {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .phs-90-slide img {
        height: 220px;
    }
}
