/* Modern Solutions Professional Section */
.modern-solutions-professional {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f3f4ff 100%);
    overflow: hidden;
}

.solutions-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solutions-content {
    position: relative;
    z-index: 2;
}

.solutions-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 50px;
    color: #667eea;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.solutions-badge i {
    font-size: 16px;
}

.solutions-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.solutions-title .gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solutions-description {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.solutions-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.solution-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.08);
    transition: all 0.3s ease;
}

.solution-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
}

.feature-icon-solution {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 14px;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    position: relative;
}

.feature-icon-solution::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 14px;
    opacity: 0.3;
    filter: blur(10px);
    z-index: -1;
}

.feature-text-solution h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.feature-text-solution p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.solutions-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.solutions-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.solutions-cta-btn i {
    font-size: 20px;
}

/* Visual Side */
.solutions-visual {
    position: relative;
}

.solutions-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.solutions-image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.solutions-stats-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    gap: 20px;
}

.stat-item-solution {
    flex: 1;
    padding: 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

/* Background Decoration */
.solutions-bg-decoration {
    position: absolute;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    z-index: 0;
    filter: blur(80px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .modern-solutions-professional {
        padding: 80px 0;
    }

    .solutions-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .solutions-title {
        font-size: 36px;
    }

    .solutions-image-wrapper img {
        height: 450px;
    }

    .solutions-stats-overlay {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .stat-item-solution {
        padding: 20px;
    }

    .stat-number {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .modern-solutions-professional {
        padding: 60px 0;
    }

    .solutions-title {
        font-size: 32px;
    }

    .solutions-description {
        font-size: 16px;
    }

    .solution-feature {
        padding: 15px;
        gap: 15px;
    }

    .feature-icon-solution {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .feature-text-solution h4 {
        font-size: 16px;
    }

    .feature-text-solution p {
        font-size: 14px;
    }

    .solutions-image-wrapper img {
        height: 300px;
    }

    .solutions-stats-overlay {
        flex-direction: column;
        gap: 10px;
        bottom: 15px;
        left: 15px;
        right: 15px;
    }

    .stat-item-solution {
        padding: 15px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

    .solutions-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .solutions-title {
        font-size: 28px;
    }

    .solutions-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .solutions-image-wrapper img {
        height: 280px;
    }
}
