/* Style général pour les pages Pro */
.pro-page {
    font-family: 'Open Sans', sans-serif;
    color: #333;
}

.section-pro-header {
    padding: 80px 0;
    color: white;
    background-size: cover;
    background-position: center;
    position: relative;
}

.section-pro-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.section-pro-header .container {
    position: relative;
    z-index: 2;
}

.section-pro-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-pro-header .lead {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Backgrounds spécifiques */
.bg-realestate {
    background-image: url('../images/bg-realestate.jpg');
}

.bg-recruitment {
    background-image: url('../images/bg-recruitment.jpg');
}

.bg-automobile {
    background-image: url('../images/bg-automobile.jpg');
}

.bg-tourism {
    background-image: url('../images/bg-tourism.jpg');
}

.bg-solutions {
    background-image: url('../images/bg-solutions.jpg');
}

.bg-employment {
    background-image: url('../images/bg-employment.jpg');
}

/* Feature boxes */
.feature-box {
    background: white;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid #FF6600;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-box h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Pricing boxes */
.pricing-box {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.price-option {
    border: 1px solid #eee;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.price-option:hover {
    border-color: #FF6600;
}

.price-option.featured {
    border: 2px solid #FF6600;
    position: relative;
}

.price-option.featured:before {
    content: 'Populaire';
    position: absolute;
    top: -12px;
    right: 20px;
    background: #FF6600;
    color: white;
    padding: 3px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-option h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #FF6600;
    margin-bottom: 15px;
}

.price-option ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.price-option ul li {
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
}

.price-option ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #FF6600;
    position: absolute;
    left: 0;
}

/* Stats section */
.section-stats {
    padding: 60px 0;
    background: #f9f9f9;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF6600;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

/* Testimonials */
.testimonial-box {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 3px solid #FF6600;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
}

/* CTA section */
.section-cta {
    padding: 60px 0;
    text-align: center;
}

.section-cta.bg-primary {
    background: #FF6600;
    color: white;
}

.section-cta h3 {
    margin-bottom: 20px;
    font-weight: 600;
}

/* How it works */
.step-box {
    text-align: center;
    padding: 30px 20px;
    height: 100%;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #FF6600;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-box h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .section-pro-header {
        padding: 60px 0;
    }
    
    .section-pro-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .section-pro-header {
        padding: 50px 0;
    }
    
    .section-pro-header h1 {
        font-size: 1.8rem;
    }
    
    .section-pro-header .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .section-pro-header {
        padding: 40px 0;
    }
    
    .price-option {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}