/* ============================================================
   Services Showcase Slider — style.css v1.0.10
   ============================================================ */

.elementor-widget-services_showcase_slider_65d5c688 {
    --sss-cta-start:        #FFEFB8;
    --sss-cta-end:          #DDB44E;
    --sss-tab-active-start: #FFEFB8;
    --sss-tab-active-end:   #DDB44E;
}

.sss-section-65d5c688 {
    background-color: #F5F8FA;
    padding: 2px 0;
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
}

.sss-container-65d5c688 {
    max-width: 1080px;
    margin: 0 auto 16px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Card: min-height so it never clips content, never needs scrollbar ── */
.sss-card-65d5c688 {
    display: flex;
    flex-direction: row;
    width: 100%;
    min-height: 400px;
    height: auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(77,73,73,0.10);
    overflow: hidden;
    align-items: stretch;
}

/* ── Left: text panel ── */
.sss-left-panel-65d5c688 {
    width: 45%;
    padding: 5px 20px 0 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 14px;
    box-sizing: border-box;
    overflow: visible;
}

.sss-eyebrow-65d5c688 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #EFB215;
}

.sss-heading-65d5c688 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    color: #4D4949;
    margin: 0;
    padding: 0;
}

.sss-tagline-65d5c688 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #EFB215;
    margin: 0;
    padding: 0;
}

.sss-desc-65d5c688 {
    font-size: 15px;
    line-height: 1.8;
    color: #7a7575;
    margin: 0;
    padding: 0;
}

.sss-divider-65d5c688 {
    width: 40px;
    height: 2px;
    background-color: #EFB215;
    border-radius: 2px;
    flex-shrink: 0;
}

.sss-cta-65d5c688 {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    background: linear-gradient(180deg,
        var(--sss-cta-start, #FFEFB8) 0%,
        var(--sss-cta-end,   #DDB44E) 100%) !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 10px 24px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    color: #000 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    box-shadow: 0 2px 6px rgba(180,130,15,0.20) !important;
    transition: box-shadow 0.3s ease, color 0.3s ease !important;
    flex-shrink: 0;
    /* block global WPCode lift */
    transform: translateY(0) !important;
}
.sss-cta-65d5c688:hover {
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(180,130,15,0.35) !important;
    text-decoration: none !important;
    transform: translateY(0) !important;
}

/*
 * FIX: JS cannot override display: inline-flex !important with a plain
 * style.display = 'none' because !important author rules outrank normal
 * inline styles in the CSS cascade. This class uses its own !important
 * so the hide wins. JS toggles this class instead of touching style.display.
 */
.sss-cta-hidden-65d5c688 {
    display: none !important;
}

/* ── Right: image panel ── */
.sss-right-panel-65d5c688 {
    width: 55%;
    position: relative;
    overflow: hidden;
    background: #e8e8e8;
    flex-shrink: 0;
    min-height: 260px;
}

.sss-image-65d5c688 {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 0.25s ease-in-out;
    opacity: 1;
}

/* ── Arrow buttons ── */
.sss-arrow-65d5c688 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50% !important;
    background: linear-gradient(180deg,
        var(--sss-cta-start, #FFEFB8) 0%,
        var(--sss-cta-end,   #DDB44E) 100%) !important;
    border: none !important;
    color: #000 !important;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(180,130,15,0.20) !important;
    transition: box-shadow 0.3s ease, color 0.3s ease, transform 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    margin: 0;
    line-height: 1;
}
.sss-prev-65d5c688 { left: -26px; }
.sss-next-65d5c688 { right: -26px; }

/* Combines centering + lift — beats global WPCode transform */
.sss-arrow-65d5c688:hover {
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(180,130,15,0.28) !important;
    transform: translateY(calc(-50% - 3px)) !important;
}

/* ── Visibility toggle classes (added via PHP based on switcher) ── */
.sss-hide-arrows-desktop .sss-arrow-65d5c688 { display: none !important; }
.sss-hide-dots-mobile .sss-dots-65d5c688     { display: none !important; }

/* ── Dot indicators: SPAN elements — immune to WPCode button rules ── */
.sss-dots-65d5c688 {
    display: none; /* hidden by default, shown on mobile via media query */
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 14px 0 8px;
    max-width: 1080px;
    margin: 0 auto;
}

.sss-dot-65d5c688 {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e8d080 !important; /* !important beats any inherited rule */
    cursor: pointer;
    flex-shrink: 0;
    /* No transform on inactive, no global rule applies since it's a span */
    transition: background 0.3s ease, transform 0.3s ease;
    transform: scale(1);
}
.sss-dot-65d5c688.active {
    background: linear-gradient(180deg,
        var(--sss-tab-active-start, #FFEFB8) 0%,
        var(--sss-tab-active-end,   #DDB44E) 100%) !important;
    transform: scale(1.4);
}

/* ── Tabs row ── */
.sss-tabs-row-65d5c688 {
    display: flex;
    max-width: 1080px;
    margin: 12px auto 0;
    gap: 10px; /* default — overridden by Elementor tab_gap control */
    overflow-x: auto;
    padding: 4px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.sss-tabs-row-65d5c688::-webkit-scrollbar { display: none; }

.sss-tab-btn-65d5c688 {
    flex: 0 0 auto;
    background: linear-gradient(180deg, #fff8e6 0%, #f5e9b8 30%, #e8d080 100%);
    border: none !important;
    border-radius: 10px !important;
    padding: 10px 18px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    color: #8a7030 !important;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05) !important;
    /* block global WPCode lift */
    transform: translateY(0) !important;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.sss-tab-btn-65d5c688:hover {
    background: linear-gradient(180deg,
        var(--sss-tab-active-start, #FFEFB8) 0%,
        var(--sss-tab-active-end,   #DDB44E) 100%) !important;
    color: #000 !important;
    box-shadow: 0 4px 12px rgba(180,130,15,0.28) !important;
    transform: translateY(0) !important;
}
.sss-tab-btn-65d5c688.active {
    background: linear-gradient(180deg,
        var(--sss-tab-active-start, #FFEFB8) 0%,
        var(--sss-tab-active-end,   #DDB44E) 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(180,130,15,0.40) !important;
    transform: translateY(-2px) !important;
}

/* ================================================================
   TABLET: 681px – 1024px
================================================================ */
@media (min-width: 681px) and (max-width: 1024px) {
    .sss-card-65d5c688 {
        height: auto !important;
        min-height: 360px;
    }
    .sss-left-panel-65d5c688 {
        padding: 24px 20px;
        justify-content: flex-start;
        overflow: visible;
    }
    .sss-prev-65d5c688 { left: -14px; }
    .sss-next-65d5c688 { right: -14px; }

    /* Tablet arrow hide toggle */
    .sss-hide-arrows-tablet .sss-arrow-65d5c688 { display: none !important; }
}

/* ================================================================
   MOBILE: ≤680px
   Image on top, text below, dots visible, arrows always hidden
================================================================ */
@media (max-width: 680px) {
    /* Always hide arrows on mobile regardless of toggle */
    .sss-arrow-65d5c688 { display: none !important; }

    .sss-card-65d5c688 {
        flex-direction: column;
        height: auto !important;
        min-height: 0 !important;
    }

    /* Image panel: full width, fixed height so it always shows */
    .sss-right-panel-65d5c688 {
        width: 100% !important;
        height: 200px;
        min-height: 200px;
        flex-shrink: 0;
        order: -1; /* image on top */
    }

    /* Text panel: full width, no overflow */
    .sss-left-panel-65d5c688 {
        width: 100% !important;
        padding: 20px 16px !important;
        justify-content: flex-start;
        overflow: visible;
    }

    /* Show dots */
    .sss-dots-65d5c688 { display: flex; }

    /* Tabs scroll horizontally */
    .sss-tabs-row-65d5c688 { flex-wrap: nowrap; padding-bottom: 8px; }
}