/* Professional Features Section Styling */

.wpo-features-section-professional {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.wpo-features-section-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e9ecef" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23e9ecef" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.wpo-features-section-professional .container {
    position: relative;
    z-index: 2;
}

/* Section Header */
.professional-section-header {
    margin-bottom: 70px;
}

.section-badge {
    display: inline-block;
    margin-bottom: 20px;
}

.section-badge span {
    background: linear-gradient(135deg, #1c7991 0%, #ff7236 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(28, 121, 145, 0.3);
}

.professional-section-header h2 {
    color: #1c7991;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* Professional Features Grid */
.professional-features-grid {
    margin-top: 50px;
}

.professional-feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(28, 121, 145, 0.1);
}

.professional-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1c7991 0%, #ff7236 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.professional-feature-card:hover::before {
    transform: scaleX(1);
}

.professional-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(28, 121, 145, 0.2);
}

/* Feature Icon */
.feature-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28, 121, 145, 0.1) 0%, rgba(255, 114, 54, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.professional-feature-card:hover .feature-icon-bg {
    background: linear-gradient(135deg, #1c7991 0%, #ff7236 100%);
    transform: scale(1.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #1c7991;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.professional-feature-card:hover .feature-icon {
    color: white;
    transform: scale(1.1);
}

/* Feature Content */
.feature-content {
    text-align: center;
}

.feature-content h4 {
    color: #1c7991;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.professional-feature-card:hover .feature-content h4 {
    color: #124855;
}

.feature-content p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.professional-feature-card:hover .feature-content p {
    color: #495057;
}

/* Responsive Design */
@media (max-width: 992px) {
    .professional-section-header h2 {
        font-size: 2.4rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .professional-feature-card {
        padding: 35px 25px;
    }
    
    .feature-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }
    
    .feature-icon {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .professional-section-header {
        margin-bottom: 50px;
    }
    
    .professional-section-header h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .professional-feature-card {
        padding: 30px 20px;
        margin-bottom: 25px;
    }
    
    .feature-content h4 {
        font-size: 1.3rem;
    }
    
    .professional-features-grid {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .section-badge span {
        padding: 6px 18px;
        font-size: 0.8rem;
    }
    
    .professional-section-header h2 {
        font-size: 1.8rem;
    }
    
    .professional-feature-card {
        border-radius: 15px;
        padding: 25px 15px;
    }
    
    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-content h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
}
