.phs-88188ddd-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #0c0c0e;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
}

.phs-88188ddd-track-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.phs-88188ddd-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

.phs-88188ddd-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.phs-88188ddd-slide.is-active {
    opacity: 1;
}

.phs-88188ddd-content-col {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
    z-index: 3;
}

.phs-88188ddd-content-inner {
    max-width: 600px;
    width: 100%;
}

.phs-88188ddd-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.1s;
}

.phs-88188ddd-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s;
}

.phs-88188ddd-desc {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s;
}

.phs-88188ddd-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s;
    background: #fff;
    color: #0c0c0e;
}

.phs-88188ddd-slide.is-active .phs-88188ddd-subtitle,
.phs-88188ddd-slide.is-active .phs-88188ddd-heading,
.phs-88188ddd-slide.is-active .phs-88188ddd-desc,
.phs-88188ddd-slide.is-active .phs-88188ddd-btn {
    opacity: 1;
    transform: translateY(0);
}

.phs-88188ddd-image-col {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.phs-88188ddd-image-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: scale(0.95);
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.phs-88188ddd-slide.is-active .phs-88188ddd-image-wrap {
    opacity: 1;
    transform: scale(1);
}

.phs-88188ddd-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phs-88188ddd-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.phs-88188ddd-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.phs-88188ddd-prev { left: 2rem; }
.phs-88188ddd-next { right: 2rem; }

.phs-88188ddd-nav i { font-size: 1.5rem; }
.phs-88188ddd-nav svg { width: 1.5rem; height: 1.5rem; fill: currentColor; }

.phs-88188ddd-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.phs-88188ddd-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.phs-88188ddd-dot.is-active {
    background: #fff;
    transform: scale(1.3);
}

/* Tablet Layout */
@media (max-width: 1024px) {
    .phs-88188ddd-slide {
        flex-direction: column-reverse;
    }
    .phs-88188ddd-image-col {
        flex: 0 0 50vh;
        height: 50vh;
    }
    .phs-88188ddd-content-col {
        flex: 1;
        padding: 3rem 2rem;
        text-align: center;
        align-items: flex-start; /* so content can flow naturally below image */
    }
    .phs-88188ddd-container {
        min-height: auto; /* let content dictate height on tablet/mobile */
        display: block;
    }
    .phs-88188ddd-track-wrapper {
        position: relative;
    }
}

/* Mobile Layout */
@media (max-width: 767px) {
    .phs-88188ddd-image-col {
        flex: 0 0 40vh;
        height: 40vh;
    }
    .phs-88188ddd-content-col {
        padding: 2rem 1rem 3rem 1rem;
    }
    .phs-88188ddd-heading { 
        font-size: 2.25rem; 
        margin-top: 0;
    }
    .phs-88188ddd-nav {
        display: none;
    }
}