/*
Theme Name: WP Business Theme Pro
Theme URI:  https://example.com
Author: Hamza
Author URI: https://example.com
Description: Pro custom theme for web development and IT services with SEO, schema, block patterns and customizer support.
Version: 2.0
Text Domain: wp-business-theme-pro
*/
@import url('assets/css/main.css');

/* Business Services Pricing Styles */
.business-services-pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.business-service-item {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.service-header {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.service-image {
    flex: 0 0 300px;
}

.service-main-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-basic-info {
    flex: 1;
}

.service-title {
    font-size: 2.5em;
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-weight: 700;
}

.service-type-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-type-badge.local {
    background: #e8f5e8;
    color: #2e7d32;
    border: 1px solid #4caf50;
}

.service-type-badge.global {
    background: #e3f2fd;
    color: #1565c0;
    border: 1px solid #2196f3;
}

.service-type-badge.both {
    background: #fff3e0;
    color: #ef6c00;
    border: 1px solid #ff9800;
}

.service-description {
    font-size: 1.1em;
    line-height: 1.7;
    color: #555;
}

.pricing-section-title {
    text-align: center;
    font-size: 1.8em;
    margin: 40px 0 30px 0;
    color: #2c3e50;
    font-weight: 600;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.pricing-card {
    border-radius: 15px;
    padding: 30px;
    color: white;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.basic-plan {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.premium-plan {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    transform: scale(1.05);
}

.elite-plan {
    background: linear-gradient(135deg, #FF9800, #F57C00);
}

.plan-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    position: relative;
}

.plan-icon {
    font-size: 2em;
}

.plan-name {
    font-size: 1.5em;
    font-weight: 700;
    margin: 0;
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ffeb3b;
    color: #333;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.plan-price {
    font-size: 2.2em;
    font-weight: 800;
    margin: 20px 0;
    text-align: center;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    font-size: 1em;
    line-height: 1.4;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li:before {
    content: "✓ ";
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.1em;
}

.plan-action {
    text-align: center;
    margin-top: 25px;
}

.plan-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
}

.basic-btn {
    background: white;
    color: #4CAF50;
}

.premium-btn {
    background: white;
    color: #2196F3;
}

.elite-btn {
    background: white;
    color: #FF9800;
}

.plan-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-header {
        flex-direction: column;
        text-align: center;
    }
    
    .service-image {
        flex: none;
        max-width: 100%;
    }
    
    .service-title {
        font-size: 2em;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .premium-plan {
        transform: none;
    }
    
    .business-service-item {
        padding: 20px;
        margin: 20px 0;
    }
}



