/* Features Showcase Section - Modern Card Design */
.features-showcase-section {
    padding: var(--space-16) 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.features-showcase-section .container {
    position: relative;
}

.features-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(240, 147, 251, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.features-showcase-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.2), transparent);
    pointer-events: none;
}


.features-showcase-header {
    text-align: center;
    margin-bottom: var(--space-16);
    position: relative;
    z-index: 1;
}

.features-showcase-title {
    font-size: var(--h2-size);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-snug);
    margin-bottom: var(--space-4);
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.features-showcase-subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: var(--line-height-relaxed);
    font-weight: var(--font-weight-normal);
}

.features-showcase-grid {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--bg-color);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

/* Feature Card */
.feature-showcase-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-20);
    align-items: center;
    background: var(--bg-color);
    padding: 0px var(--space-20);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    
}

.feature-showcase-card:first-child {
    border-top-left-radius: var(--radius-xl);
    border-top-right-radius: var(--radius-xl);
    padding-top: var(--space-20);
}

.feature-showcase-card:last-child {
    border-bottom-left-radius: var(--radius-xl);
    border-bottom-right-radius: var(--radius-xl);
    padding-bottom: var(--space-20);
}

.feature-showcase-card:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}


.feature-showcase-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.04) 0%, rgba(102, 126, 234, 0.04) 50%, rgba(240, 147, 251, 0.04) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.feature-showcase-card:hover::after {
    opacity: 1;
}

.feature-showcase-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.95) 100%);
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.12);
    transform: translateX(8px);
    z-index: 2;
}

.feature-showcase-card:hover:not(:last-child) {
    border-bottom-color: rgba(168, 85, 247, 0.2);
}

.feature-showcase-card-reverse {
    direction: rtl;
}

.feature-showcase-card-reverse > * {
    direction: ltr;
}

/* Content Side */
.feature-showcase-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    position: relative;
    z-index: 1;
}

.feature-showcase-card-title {
    font-size: var(--h3-size);
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
    margin-bottom: var(--space-2);
    letter-spacing: -0.02em;
    line-height: var(--line-height-snug);
    position: relative;
    padding-bottom: var(--space-4);
}

.feature-showcase-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #a855f7, #667eea);
    border-radius: 2px;
    transition: width 0.5s ease;
}

.feature-showcase-card:hover .feature-showcase-card-title::after {
    width: 100px;
}

.feature-showcase-card-description {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
    color: var(--text-light);
    margin-bottom: var(--space-6);
    font-weight: var(--font-weight-normal);
}

.feature-showcase-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin: 0;
    padding: 0;
}

.feature-showcase-list li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--font-size-base);
    color: var(--text-color);
    padding: var(--space-4) var(--space-5);
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-showcase-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #a855f7, #667eea);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.feature-showcase-list li:hover {
    transform: translateX(10px);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.15),
                0 2px 8px rgba(168, 85, 247, 0.1);
    background: var(--bg-color);
}

.feature-showcase-list li:hover::before {
    transform: scaleY(1);
}

.feature-showcase-list li i {
    color: #10b981;
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.feature-showcase-list li:hover i {
    transform: scale(1.2);
    color: #a855f7;
}

/* Visual Side */
.feature-showcase-visual {
    position: relative;
    overflow: visible;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.feature-showcase-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 700px;
    object-fit: contain;
    object-position: center center;
    display: block;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
    position: relative;
}

.feature-showcase-card:hover .feature-showcase-image {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 24px rgba(168, 85, 247, 0.2));
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-showcase-section {
        padding: var(--space-16) 0;
    }
    
    .features-showcase-header {
        margin-bottom: var(--space-12);
    }
    
    .features-showcase-title {
        font-size: var(--h2-size-mobile);
    }
    
    .features-showcase-subtitle {
        font-size: var(--font-size-lg);
    }
    
    .features-showcase-grid {
        gap: 0;
    }
    
    .feature-showcase-card {
        grid-template-columns: 1fr;
        gap: var(--space-10);
        padding: var(--space-12) var(--space-10);
    }
    
    .feature-showcase-card:first-child {
        padding-top: var(--space-12);
    }
    
    .feature-showcase-card:last-child {
        padding-bottom: var(--space-12);
    }
    
    .feature-showcase-card-reverse {
        direction: ltr;
    }
    
    .feature-image-wrapper {
        min-height: 500px;
        order: -1;
    }
    
    .feature-showcase-image {
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    .features-showcase-section {
        padding: var(--space-12) 0;
    }
    
    .features-showcase-header {
        margin-bottom: var(--space-10);
    }
    
    .features-showcase-title {
        font-size: var(--h3-size-mobile);
    }
    
    .features-showcase-subtitle {
        font-size: var(--font-size-base);
    }
    
    .features-showcase-grid {
        gap: 0;
    }
    
    .feature-showcase-card {
        padding: var(--space-10) var(--space-8);
        gap: var(--space-8);
    }
    
    .feature-showcase-card:first-child {
        padding-top: var(--space-10);
    }
    
    .feature-showcase-card:last-child {
        padding-bottom: var(--space-10);
    }
    
    .feature-showcase-card-title {
        font-size: var(--h4-size-mobile);
    }
    
    .feature-showcase-card-description {
        font-size: var(--font-size-base);
    }
    
    .feature-image-wrapper {
        min-height: 450px;
    }
    
    .feature-showcase-image {
        max-height: 450px;
    }
    
    .feature-showcase-list li {
        font-size: var(--font-size-sm);
        padding: var(--space-2) var(--space-3);
    }
}

@media (max-width: 480px) {
    .features-showcase-section {
        padding: var(--space-10) 0;
    }
    
    .features-showcase-header {
        margin-bottom: var(--space-8);
    }
    
    .features-showcase-title {
        font-size: var(--h3-size-mobile);
    }
    
    .features-showcase-subtitle {
        font-size: var(--font-size-sm);
    }
    
    .features-showcase-grid {
        gap: 0;
    }
    
    .feature-showcase-card {
        padding: var(--space-8) var(--space-6);
        gap: var(--space-6);
    }
    
    .feature-showcase-card:first-child {
        padding-top: var(--space-8);
    }
    
    .feature-showcase-card:last-child {
        padding-bottom: var(--space-8);
    }
    
    .feature-showcase-card-title {
        font-size: var(--h4-size-mobile);
        margin-bottom: var(--space-3);
    }
    
    .feature-showcase-card-description {
        font-size: var(--font-size-sm);
        margin-bottom: var(--space-4);
    }
    
    .feature-image-wrapper {
        min-height: 400px;
    }
    
    .feature-showcase-image {
        max-height: 400px;
    }
    
    .feature-showcase-list {
        gap: var(--space-3);
    }
    
    .feature-showcase-list li {
        font-size: var(--font-size-sm);
        padding: var(--space-2) var(--space-3);
    }
    
    .feature-showcase-list li i {
        font-size: 16px;
    }
}

