/* Custom Tabs Grid Widget Styles */

.lt-custom-tabs-widget-container {
    width: 100%;
    margin: 0 auto;
    font-family: inherit;
}

/* ==========================================
   NAVIGATION PILLS
   ========================================== */
.lt-tabs-nav-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
    width: 100%;
}

.lt-tab-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0 !important;
    outline: none !important;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.lt-tab-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    opacity: 0.95;
}

.lt-tab-pill.lt-active {
    box-shadow: 0 4px 12px rgba(0, 108, 180, 0.25);
}

/* ==========================================
   TABS CONTENTS CONTAINER
   ========================================== */
.lt-tabs-contents-container {
    position: relative;
    width: 100%;
}

.lt-tab-content-block {
    display: none;
    grid-template-columns: 48% 48%;
    gap: 4%;
    align-items: start;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.lt-tab-content-block.lt-active {
    display: grid;
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 1025px) {
    .lt-tab-content-block.lt-active {
        align-items: stretch;
    }
    .lt-tab-column-left {
        height: 100%;
    }
    .lt-tabs-slider-wrapper,
    .lt-tabs-video-wrapper {
        height: 100% !important;
    }
}

/* ==========================================
   LEFT COLUMN: SLIDER
   ========================================== */
.lt-tab-column-left {
    position: relative;
    width: 100%;
}

.lt-tabs-slider-wrapper,
.lt-tabs-video-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f7f9fb;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.lt-tabs-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lt-custom-tabs-widget-container .lt-tabs-video-wrapper iframe {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 135% !important;
    height: 135% !important;
    transform: translate(-50%, -50%) !important;
    border: none !important;
    pointer-events: none !important;
    max-width: none !important;
    max-height: none !important;
}

.lt-tabs-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.lt-tabs-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s;
    z-index: 1;
}

.lt-tabs-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    position: relative; /* Allows the active slide to define the height of container if no fixed height is set */
}

.lt-tabs-slider-wrapper[style*="height"] .lt-tabs-slide {
    height: 100%;
}

.lt-tabs-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Symmetrical Sleek Circular Arrows */
.lt-custom-tabs-widget-container button.lt-tabs-slider-arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    max-width: 56px !important;
    min-height: 56px !important;
    max-height: 56px !important;
    border-radius: 50% !important;
    border: none !important;
    outline: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 10 !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    background-color: rgba(255, 255, 255, 0.75) !important;
    color: #222222 !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
}

.lt-custom-tabs-widget-container button.lt-tabs-slider-arrow:hover {
    transform: translateY(-50%) scale(1.08) !important;
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
}

.lt-custom-tabs-widget-container button.lt-tabs-slider-arrow.lt-prev {
    left: 20px !important;
}

.lt-custom-tabs-widget-container button.lt-tabs-slider-arrow.lt-next {
    right: 20px !important;
}

.lt-custom-tabs-widget-container button.lt-tabs-slider-arrow i {
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Dots Page Indicator (Hidden per design request) */
.lt-tabs-slider-dots {
    display: none !important;
}

/* ==========================================
   RIGHT COLUMN: CONTENT & FEATURES
   ========================================== */
.lt-tab-column-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.lt-tabs-content-heading {
    margin-top: 0;
    font-weight: 700;
    line-height: 1.2;
}

.lt-tabs-content-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Features Grid */
.lt-tabs-features-grid {
    display: grid;
    width: 100%;
    margin-top: 10px;
}

/* Feature Card */
.lt-tabs-feature-card {
    display: flex;
    align-items: center;
    gap: 15px;
    box-sizing: border-box;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.lt-tabs-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.lt-tabs-feature-card .lt-card-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.lt-tabs-feature-card:hover .lt-card-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.lt-tabs-feature-card .lt-card-text {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.3;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .lt-tab-content-block.lt-active {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .lt-tab-column-right {
        order: 2;
    }
    
    .lt-tab-column-left {
        order: 1;
    }
}

@media (max-width: 767px) {
    /* Main Widget Container Padding */
    .lt-custom-tabs-widget-container {
        padding-left: 20px;
        padding-right: 20px;
        box-sizing: border-box;
    }

    /* Horizontally Scrollable Modern Navigation Pills */
    .lt-tabs-nav-container {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        gap: 10px !important;
        margin-bottom: 25px !important;
        padding: 5px 2px 12px 2px !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important; /* Firefox */
    }
    
    .lt-tabs-nav-container::-webkit-scrollbar {
        display: none !important; /* Chrome, Safari, Opera */
    }
    
    .lt-tab-pill {
        flex: 0 0 auto !important; /* Keeps pills at their natural size without wrapping or stretching */
        text-align: center;
        padding: 10px 20px !important;
        font-size: 14px !important;
        white-space: nowrap !important;
    }
    
    /* Elegant Slider Height & Rounded Corners on Mobile */
    .lt-tabs-slider-wrapper,
    .lt-tabs-video-wrapper {
        height: 250px !important; /* Elegant aspect ratio for mobile screens */
        border-radius: 16px !important;
    }

    /* Compact Symmetrical Arrows (Hidden Dots) */
    .lt-custom-tabs-widget-container button.lt-tabs-slider-arrow {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        max-width: 40px !important;
        min-height: 40px !important;
        max-height: 40px !important;
        border-radius: 50% !important;
        border: none !important;
        outline: none !important;
        background-color: rgba(255, 255, 255, 0.8) !important;
        padding: 0 !important;
        margin: 0 !important;
        line-height: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-shrink: 0 !important;
        box-sizing: border-box !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08) !important;
    }
    
    .lt-custom-tabs-widget-container button.lt-tabs-slider-arrow i {
        font-size: 14px !important;
        line-height: 1 !important;
        display: inline-block !important;
        margin: 0 !important;
        padding: 0 !important;
        width: auto !important;
        height: auto !important;
    }
    
    .lt-custom-tabs-widget-container button.lt-tabs-slider-arrow.lt-prev {
        left: 10px !important;
    }
    
    .lt-custom-tabs-widget-container button.lt-tabs-slider-arrow.lt-next {
        right: 10px !important;
    }
    
    .lt-tabs-slider-dots {
        display: none !important;
    }

    /* Column Spacing */
    .lt-tab-content-block.lt-active {
        gap: 20px !important;
    }

    .lt-tab-column-right {
        padding: 0 2px !important;
    }

    /* Balanced Headings & Descriptions */
    .lt-tabs-content-heading {
        font-size: 26px !important;
        margin-top: 15px !important;
        margin-bottom: 12px !important;
        line-height: 1.25 !important;
        text-align: left !important;
    }
    
    .lt-tabs-content-desc {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 24px !important;
        text-align: left !important;
    }

    /* Gorgeous & Compact 2-Column Grid for Feature Cards */
    .lt-tabs-features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        margin-top: 5px !important;
    }
    
    .lt-tabs-feature-card {
        padding: 10px 12px !important;
        gap: 10px !important;
        border-radius: 8px !important;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.02) !important;
        border: 1px solid rgba(0, 0, 0, 0.04) !important;
    }
    
    .lt-tabs-feature-card .lt-card-icon-wrapper {
        width: 20px !important;
        height: 20px !important;
        font-size: 8px !important;
    }
    
    .lt-tabs-feature-card .lt-card-text {
        font-size: 13px !important;
        font-weight: 600 !important;
        line-height: 1.25 !important;
    }
}