.elementor-widget-container .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-container .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-20484 .elementor-element.elementor-element-6f724d8{--display:flex;--padding-top:1px;--padding-bottom:1px;--padding-left:1px;--padding-right:1px;}.elementor-widget-html .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-html .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-91cd039 */:root {
    --gold-primary: #8A7538;
    --gold-light: #D8B25A;
    --gold-dark: #9F6E22;
    --dark-text: #1a1a1a;
    --light-text: #5a5a5a;
    --bg-light: #fafafa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== SECTION HERO SLIDER ===== */
.centres-hero-section {
    background: var(--bg-light);
    padding: 3rem 2rem 4rem;
    position: relative;
    font-family: 'DM Sans', sans-serif;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--gold-primary);
    text-align: left;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.slider-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    padding: 14px 24px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: var(--gold-light);
    border-color: var(--gold-light);
    width: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(216, 178, 90, 0.6);
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icons a {
    color: var(--light-text);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--gold-primary);
    transform: translateY(-3px);
}

/* ===== SECTION PRÉSENTATION ===== */
.presentation-section {
    background: white;
    padding: 5rem 2rem;
    font-family: 'DM Sans', sans-serif;
}

.presentation-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.section-title {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.text-content p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.text-content strong {
    color: var(--dark-text);
    font-weight: 600;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 30px rgba(138, 117, 56, 0.3);
}

.cta-button:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(4px);
}

.presentation-map {
    position: relative;
}

.map-wrapper {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.brussels-map-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ===== SECTION LISTE DES CENTRES ===== */
.centres-list-section {
    background: var(--bg-light);
    padding: 5rem 2rem;
    font-family: 'DM Sans', sans-serif;
}

.centres-list-container {
    max-width: 1000px;
    margin: 0 auto;
}

.list-title {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--dark-text);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.centres-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.centre-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.centre-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(138, 117, 56, 0.15);
}

.centre-info {
    flex: 1;
}

.centre-name {
    font-family: 'Kanit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.centre-address {
    font-size: 1.05rem;
    color: var(--dark-text);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.centre-city {
    font-size: 0.95rem;
    color: var(--light-text);
}

.centre-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(138, 117, 56, 0.3);
}

.phone-link:hover {
    background: #000000;
    color: #ffffff;        /* ← Ajouté */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.expand-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #000000;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.expand-btn:hover {
    background: #333333;
    transform: scale(1.1);
    color: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .centres-hero-section {
        padding: 0;
    }
    
    .hero-container {
        max-width: 100%;
        padding: 2rem 2rem 3rem;
    }
    
    .slider-wrapper {
        margin-left: -2rem;
        margin-right: -2rem;
        border-radius: 0;
    }
    
    .social-icons {
        padding: 0 2rem;
    }
    
    .presentation-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .presentation-map {
        order: -1;
    }
}

@media (max-width: 768px) {
    .centres-hero-section {
        padding: 0;
    }
    
    .hero-container {
        max-width: 100%;
        padding: 1.5rem 1.5rem 2.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding: 0 1.5rem;
    }
    
    .slider-wrapper {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        border-radius: 0;
    }
    
    .slider-container {
        height: 350px;
    }
    
    .slider-dots {
        bottom: 1.5rem;
        padding: 12px 20px;
        gap: 12px;
    }
    
    .dot {
        width: 14px;
        height: 14px;
    }
    
    .dot.active {
        width: 36px;
    }
    
    .social-icons {
        justify-content: center;
        gap: 1rem;
        padding: 0 1.5rem;
    }
    
    .presentation-section,
    .centres-list-section {
        padding: 3rem 1rem;
    }
    
    .map-wrapper {
        padding: 1rem;
    }
    
    .brussels-map-image {
        max-height: 500px;
        object-fit: contain;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .centre-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .centre-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .phone-link {
        flex: 1;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .centres-hero-section {
        padding: 0;
    }
    
    .hero-container {
        max-width: 100%;
        padding: 1rem 1rem 2rem;
    }
    
    .hero-title {
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }
    
    .slider-wrapper {
        margin-left: -1rem;
        margin-right: -1rem;
        border-radius: 0;
    }
    
    .slider-container {
        height: 250px;
    }
    
    .slider-dots {
        bottom: 1rem;
        padding: 10px 16px;
        gap: 10px;
    }
    
    .dot {
        width: 12px;
        height: 12px;
        border-width: 2px;
    }
    
    .dot.active {
        width: 32px;
    }
    
    .social-icons {
        padding: 0 1rem;
    }
    
    .brussels-map-image {
        max-height: 400px;
        object-fit: contain;
    }
    
    .centre-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .phone-link,
    .expand-btn {
        width: 100%;
    }
    
    .expand-btn {
        height: 48px;
        border-radius: 24px;
    }
}/* End custom CSS */