/* ═══════════════════════════════════════════
   SC Reference Slider – Main Styles
   ═══════════════════════════════════════════ */

.sc-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 680px;
}

/* ─── Track & Slides ─── */
.sc-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.sc-slider-slide {
    display: none;
    flex-direction: row;
    width: 100%;
    min-height: inherit;
}

.sc-slider-slide--active {
    display: flex;
}

/* ─── Left Column ─── */
.sc-slider-left {
    width: 33.3333%;
    background-color: #F0ECE9;
    border-right: 2px solid #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 56px;
    box-sizing: border-box;
    position: relative;
}

.sc-slider-left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 340px;
}

/* ─── Heading ─── */
.sc-slider-heading {
    margin-bottom: 24px;
}

.sc-slider-heading-line1 {
    font-size: 30px;
    font-weight: 300;
    line-height: 1.3;
    color: #221F20;
    margin: 0;
}

.sc-slider-heading-line2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    color: #0077C0;
    margin: 0;
}

/* ─── Description ─── */
.sc-slider-description {
    color: #221F20;
    font-size: 16px;
    line-height: 1.6;
}

.sc-slider-description p {
    margin: 0 0 16px 0;
}

.sc-slider-description ul {
    list-style: disc;
    padding-left: 20px;
    margin: 16px 0 0 0;
}

.sc-slider-description ul li {
    margin-bottom: 4px;
    font-size: 16px;
    line-height: 1.5;
}

/* ─── Navigation ─── */
.sc-slider-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    padding-top: 0;
}

.sc-slider-nav-arrow,
.sc-slider-nav-arrow.elementor-button,
button.sc-slider-nav-arrow {
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    border-style: none !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    padding: 8px 0 !important;
    display: flex !important;
    align-items: center !important;
    color: #0077C0 !important;
    transition: opacity 0.2s ease !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    font-family: inherit !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: normal !important;
    min-height: auto !important;
    box-shadow: none !important;
}

.sc-slider-nav-arrow:hover,
button.sc-slider-nav-arrow:hover {
    opacity: 0.7 !important;
    background: none !important;
    background-color: transparent !important;
}

.sc-slider-nav-arrow svg {
    width: 40px !important;
    height: auto !important;
}

.sc-slider-nav-counter {
    display: flex;
    align-items: baseline;
    gap: 6px;
    user-select: none;
}

.sc-slider-nav-current {
    font-size: 36px;
    font-weight: 700;
    color: #0077C0;
    line-height: 1;
}

.sc-slider-nav-separator {
    font-size: 16px;
    font-weight: 400;
    color: #221F20;
    line-height: 1;
}

.sc-slider-nav-total {
    font-size: 42px;
    font-weight: 800;
    color: #0077C0;
    line-height: 1;
}

/* ─── Right Column ─── */
.sc-slider-right {
    width: 66.6666%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 680px;
}

/* ─── Reference Badge ─── */
.sc-slider-ref-badge {
    position: absolute !important;
    top: 30px !important;
    right: 40px !important;
    color: #FFFFFF !important;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4) !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: baseline !important;
    gap: 6px !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.sc-slider-ref-label {
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    display: inline !important;
}

.sc-slider-ref-number {
    font-size: 42px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    display: inline !important;
}

/* ─── Animations ─── */
.sc-slider-slide--active .sc-slider-left-content {
    animation: scFadeInUp 0.5s ease forwards;
}

.sc-slider-slide--active .sc-slider-right {
    animation: scFadeIn 0.5s ease 0.1s forwards;
}

@keyframes scFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .sc-slider-left {
        width: 40%;
        padding: 40px 32px;
    }

    .sc-slider-right {
        width: 60%;
        min-height: 500px;
    }

    .sc-slider-wrapper {
        min-height: 500px;
    }
}

@media (max-width: 767px) {
    .sc-slider-slide {
        flex-direction: column;
    }

    .sc-slider-left {
        width: 100%;
        padding: 32px 24px;
        border-right: none;
        border-bottom: 2px solid #FFFFFF;
    }

    .sc-slider-left-content {
        max-width: 100%;
    }

    .sc-slider-right {
        width: 100%;
        min-height: 300px;
    }

    .sc-slider-wrapper {
        min-height: auto;
    }

    .sc-slider-ref-badge {
        top: 16px;
        right: 20px;
    }

    .sc-slider-heading-line1,
    .sc-slider-heading-line2 {
        font-size: 24px;
    }

    .sc-slider-nav {
        margin-top: 24px;
    }
}
