/* Feature Showcase Block */
.feature-showcase {
    position: relative;
    overflow: hidden;
}

.feature-showcase-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(55, 85, 107, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(234, 100, 99, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.feature-showcase-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.feature-showcase-title {
    font-size: 36px;
    font-weight: 700;
    color: #37556b;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.feature-showcase-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #ea6463 0%, #f47776 100%);
    border-radius: 2px;
}

.feature-showcase-description {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.6;
    margin-top: 24px;
    margin-bottom: 0!important;
}

/* Tabs */
.feature-showcase-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 50px;
}

.feature-showcase-tab {
    background: transparent;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-showcase-tab:hover {
    color: #37556b;
    background: rgba(55, 85, 107, 0.1);
}

.feature-showcase-tab.active {
    background: linear-gradient(135deg, #37556b 0%, #4a6b7c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(55, 85, 107, 0.3);
}

/* Content */
.feature-showcase-content-wrapper {
    position: relative;
    min-height: 500px;
}

.feature-showcase-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.feature-showcase-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.feature-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-showcase-text {
    padding: 20px 0;
}

.feature-showcase-content-title {
    font-size: 28px;
    font-weight: 600;
    color: #37556b;
    margin-bottom: 20px;
    line-height: 1.3;
}

.feature-showcase-content-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature-showcase-content-desc p {
    margin-bottom: 12px;
}

.feature-showcase-content-desc p:last-child {
    margin-bottom: 0;
}

.feature-showcase-video-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ea6463 0%, #f47776 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 100, 99, 0.3);
}

.feature-showcase-video-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 100, 99, 0.4);
    color: white;
    text-decoration: none;
}

.feature-showcase-video-btn i {
    font-size: 14px;
}

.feature-showcase-media {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Phone Mockup */
.feature-showcase-phone {
    width: 280px;
    height: 580px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    position: relative;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        inset 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.feature-showcase-phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.feature-showcase-phone-screen {
    width: 100%;
    height: 100%;
    background-color: #fff;
    background-size: cover;
    background-position: center top;
    border-radius: 32px;
    overflow: hidden;
}

/* Laptop Mockup */
.feature-showcase-laptop {
    width: 100%;
    max-width: 550px;
    position: relative;
}

.feature-showcase-laptop-screen {
    width: 100%;
    padding-bottom: 62.5%;
    background-color: #f5f7f9;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 12px 12px 0 0;
    border: 12px solid #1a1a1a;
    border-bottom: none;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
}

.feature-showcase-laptop-base {
    width: 110%;
    height: 18px;
    background: linear-gradient(to bottom, #d4d4d4 0%, #a8a8a8 100%);
    border-radius: 0 0 12px 12px;
    margin-left: -5%;
    position: relative;
}

.feature-showcase-laptop-base::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: #888;
    border-radius: 3px;
}

.feature-showcase-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Placeholder Styling */
.feature-showcase-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f4f7 0%, #e8eef2 100%) !important;
}

.feature-showcase-placeholder-icon {
    color: #a0b0c0;
    font-size: 56px;
}

.feature-showcase-laptop-screen.feature-showcase-placeholder {
    position: relative;
}

.feature-showcase-laptop-screen.feature-showcase-placeholder .feature-showcase-placeholder-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.feature-showcase-image-placeholder {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, #f0f4f7 0%, #e8eef2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #c0d0e0;
}

.feature-showcase-image-placeholder i {
    font-size: 64px;
    color: #a0b0c0;
}

/* Responsive */
@media (max-width: 991px) {
    .feature-showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-showcase-title {
        font-size: 30px;
    }

    .feature-showcase-content-title {
        font-size: 24px;
    }

    .feature-showcase-phone {
        width: 240px;
        height: 500px;
    }
}

@media (max-width: 576px) {
    .feature-showcase-title {
        font-size: 26px;
    }

    .feature-showcase-tabs {
        gap: 6px;
    }

    .feature-showcase-tab {
        padding: 10px 16px;
        font-size: 13px;
    }

    .feature-showcase-content-title {
        font-size: 22px;
    }

    .feature-showcase-phone {
        width: 200px;
        height: 420px;
        border-radius: 32px;
        padding: 10px;
    }

    .feature-showcase-phone-notch {
        width: 100px;
        height: 24px;
    }

    .feature-showcase-phone-screen {
        border-radius: 24px;
    }
}
