/* ========================================
   FABSOFT AI FILE PRO - SHOWCASE STYLES
   FabSoftAIFilePro-Showcase.css
   
   Load order: 5 of 5 (after FabSoftAIFilePro-Components.css)
   
   Contains:
   - Video showcase tabs (.aifp-showcase-*)
   - Responsive breakpoints for showcase + role cards
   ======================================== */

/* ============================================
   VIDEO SHOWCASE TABS (from FabSoft-VideoShowcaseTabs)
   Previously inline in the partial - extracted here.
   ============================================ */
.fabsoft-video-carousel-section {
    padding: 80px 24px;
    background: #F6F6F8;
}

.fabsoft-video-carousel-container {
    max-width: 1200px;
    margin: 0 auto;
}

.fabsoft-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.fabsoft-section-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--fabsoft-text);
    margin: 0 0 16px;
}

.fabsoft-section-subtitle {
    font-size: 19px;
    color: var(--fabsoft-text-secondary-accessible);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.aifp-showcase {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.aifp-showcase-tabs {
    display: flex;
    border-bottom: 1px solid #E5E5E7;
    background: #FAFBFD;
}

.aifp-showcase-tab {
    flex: 1;
    padding: 18px 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--fabsoft-text-secondary-accessible);
    cursor: pointer;
    border: none;
    border-bottom: 2px solid transparent;
    background: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

.aifp-showcase-tab:hover {
    color: #0071E3;
    background: rgba(0, 113, 227, 0.03);
}

.aifp-showcase-tab.active {
    color: #0071E3;
    border-bottom-color: #0071E3;
    background: #fff;
}

.aifp-showcase-tab svg {
    display: block;
    margin: 0 auto 8px;
    width: 24px;
    height: 24px;
}

.aifp-showcase-panel {
    display: none;
}

.aifp-showcase-panel.active {
    display: block;
}

.aifp-showcase-preview {
    position: relative;
    cursor: pointer;
    aspect-ratio: 16/9;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #F0F4FF 0%, #E8F0FE 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.aifp-showcase-preview:hover .aifp-play-overlay {
    opacity: 1;
}

.aifp-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.aifp-play-btn {
    width: 72px;
    height: 72px;
    background: #0071E3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 113, 227, 0.4);
    transition: transform 0.2s ease;
}

.aifp-play-btn:hover {
    transform: scale(1.08);
}

.aifp-play-btn svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    margin-left: 3px;
}

.aifp-showcase-info {
    padding: 28px 36px;
    border-top: 1px solid #E5E5E7;
}

.aifp-showcase-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--fabsoft-text);
    margin: 0 0 8px;
}

.aifp-showcase-info p {
    font-size: 15px;
    color: var(--fabsoft-text-secondary-accessible);
    line-height: 1.6;
    margin: 0;
}

.aifp-showcase-svg {
    width: 100%;
    max-width: none;
    height: auto;
}

/* Showcase responsive */
@media (max-width: 768px) {
    .fabsoft-video-carousel-section {
        padding: 48px 16px;
    }
    
    .fabsoft-section-title {
        margin-bottom: 12px;
    }
    
    .fabsoft-section-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .aifp-showcase-tab {
        font-size: 11px;
        padding: 12px 4px;
    }
    
    .aifp-showcase-tab svg {
        width: 16px;
        height: 16px;
    }
    
    .aifp-showcase-info {
        padding: 16px 20px;
    }
    
    .aifp-showcase-info h3 {
        font-size: 16px;
    }
    
    .aifp-showcase-info p {
        font-size: 14px;
    }
}
