.slideshow-wrapper {
    position: relative;
    width: 100%;
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    height: 85vh;
    display: flex;
    flex-direction: column;
}

.slides-track {
    position: relative;
    width: 100%;
    flex: 1;
    min-height: 0;
    background: #ffffff;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
    z-index: 1;
    background: #ffffff;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-inner {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    width: 100%;
}

.slide-left {
    flex: 0 0 50%;
    max-width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    padding: 30px;
    overflow: hidden;
}

.slide-left img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

.slide-left:hover img {
    transform: scale(1.04);
}

.slide-right {
    flex: 0 0 50%;
    max-width: 50%;
    height: 100%;
    background: linear-gradient(to right, #f8fafd, #eef2f6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 60px;
    overflow-y: auto;
}

.slide-content {
    max-width: 450px;
    width: 100%;
}

.eyebrow {
    font-size: 26px;
    font-weight: 300;
    color: #1c2430;
    margin-bottom: 2px;
}

.slide-content h1 {
    font-family: "Poppins", sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #1c2430;
    margin: 2px 0 14px;
    letter-spacing: -0.5px;
}

.slide-content p {
    font-size: 14px;
    font-weight: 300;
    color: #5b6472;
    margin-bottom: 10px;
}

.countdown-wrap {
    display: flex;
    width: 100%;
    gap: 12px;
    margin: 30px 0 20px 0;
}

.countdown-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(2px);
    border-radius: 0;
    padding: 10px 0;
    border: none;
}

.countdown-item .num {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1c2430;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.countdown-item .label {
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
    color: #5b6472;
    letter-spacing: 0.5px;
    margin-top: 0px;
}

.countdown-sep {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #b0b8c5;
    align-self: center;
    padding-bottom: 2px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border: 1.5px solid #2f6fed;
    color: #2f6fed;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    border-radius: 2px;
    background: transparent;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
}

.btn:hover {
    background: #2f6fed;
    color: #ffffff;
}

.slideshow-controls {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 15px 0 25px 0;
    background: #ffffff;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ececec;
    background: #ffffff;
    color: #7a8291;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    border-radius: 50%;
    font-size: 14px;
}

.nav-btn:hover {
    background: #2f6fed;
    border-color: #2f6fed;
    color: #ffffff;
}

.dots-container {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.dot.active {
    background: #2f6fed;
    transform: scale(1.2);
}

@media (max-width: 800px) {
    .slideshow-wrapper {
        height: 80vh;
    }

    .slide-inner {
        flex-direction: column;
        height: 100%;
    }

    .slide-left {
        flex: 0 0 40%;
        max-width: 100%;
        height: 40%;
        padding: 16px;
    }

    .slide-right {
        flex: 0 0 60%;
        max-width: 100%;
        height: 60%;
        align-items: center;
        padding: 24px 20px;
        text-align: center;
        background: #f2f5f9;
        overflow-y: auto;
    }

    .slide-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }

    .slide-content h1 {
        font-size: 28px;
    }

    .countdown-wrap {
        justify-content: center;
    }

    .slideshow-controls {
        padding: 12px 0 18px 0;
        gap: 14px;
    }

    .nav-btn {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .dot {
        width: 9px;
        height: 9px;
    }
}

@media (max-width: 480px) {
    .slideshow-wrapper {
        height: 80vh;
    }

    .slide-left {
        flex: 0 0 35%;
        height: 35%;
        padding: 12px;
    }

    .slide-right {
        flex: 0 0 65%;
        height: 65%;
        padding: 18px 14px;
    }

    .eyebrow {
        font-size: 20px;
    }

    .slide-content h1 {
        font-size: 22px;
        margin: 2px 0 10px;
    }

    .slide-content p {
        font-size: 13px;
    }

    .countdown-wrap {
        gap: 6px;
        margin: 18px 0 14px 0;
    }

    .countdown-item {
        padding: 6px 0;
    }

    .countdown-item .num {
        font-size: 18px;
    }

    .countdown-item .label {
        font-size: 7px;
    }

    .countdown-sep {
        font-size: 16px;
    }

    .btn {
        padding: 10px 22px;
        font-size: 12px;
    }

    .slideshow-controls {
        padding: 10px 0 14px 0;
        gap: 10px;
    }

    .nav-btn {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 360px) {
    .slide-right {
        padding: 12px 10px;
    }

    .slide-content h1 {
        font-size: 18px;
    }

    .countdown-item .num {
        font-size: 15px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 11px;
    }
}