/* Styles Page Professionnels */

.pro-hero {
    min-height: 70vh;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--taupe) 50%, var(--charcoal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
    position: relative;
    overflow: hidden;
}

.pro-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.03"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.5;
}

.pro-hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.pro-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--neon-yellow);
    color: var(--charcoal);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.pro-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
}

.pro-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 50px;
    line-height: 1.6;
}

.pro-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--neon-yellow);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
}

.pro-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 50px;
    background: var(--neon-yellow);
    color: var(--charcoal);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(246, 255, 32, 0.4);
}

.pro-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(246, 255, 32, 0.6);
}

/* Why Section */
.why-section {
    padding: 100px 20px;
    background: white;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.why-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.why-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.why-icon i {
    font-size: 2.5rem;
    color: var(--taupe);
}

.why-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--charcoal);
}

.why-card > p {
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

.why-list {
    list-style: none;
    padding: 0;
}

.why-list li {
    padding: 8px 0;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Pro Catalog */
.pro-catalog-section {
    padding: 100px 20px;
    background: var(--light-bg);
}

.pro-category-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 60px;
}

.pro-category-btn {
    padding: 12px 25px;
    background: white;
    border: 2px solid transparent;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.pro-category-btn:hover {
    border-color: var(--taupe);
}

.pro-category-btn.active {
    background: var(--taupe);
    color: white;
    border-color: var(--taupe);
}

.pro-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.pro-product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.pro-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.pro-product-image {
    width: 100%;
    height: 280px;
    object-fit: contain;
    background: var(--cream);
    padding: 20px;
}

.pro-product-info {
    padding: 25px;
}

.pro-product-brand {
    font-size: 0.8rem;
    color: var(--taupe);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.pro-product-name {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--charcoal);
    min-height: 48px;
}

.pro-product-volume {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.pro-product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--taupe);
    margin-bottom: 20px;
}

.btn-pro-contact {
    width: 100%;
    padding: 12px;
    background: var(--taupe);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-pro-contact:hover {
    background: var(--neon-yellow);
    color: var(--charcoal);
    transform: scale(1.03);
}

/* CTA Section */
.pro-cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--taupe) 0%, #8B8578 100%);
    text-align: center;
}

.pro-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.pro-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.pro-cta-section p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

.pro-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-pro-primary,
.btn-pro-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-pro-primary {
    background: var(--neon-yellow);
    color: var(--charcoal);
    box-shadow: 0 10px 30px rgba(246, 255, 32, 0.4);
}

.btn-pro-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(246, 255, 32, 0.6);
}

.btn-pro-secondary {
    background: white;
    color: var(--taupe);
    border: 2px solid white;
}

.btn-pro-secondary:hover {
    background: transparent;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .pro-hero h1 {
        font-size: 2rem;
    }
    
    .pro-subtitle {
        font-size: 1.05rem;
    }
    
    .pro-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .pro-products-grid {
        grid-template-columns: 1fr;
    }
    
    .pro-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
