/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* === Variables : Violet, Rouge, Blanc === */
:root {
    --primary-color: #17183B;
    --secondary-color: #6C63FF;
    --accent-color: #E60045;
    --accent-hover: #C5003A;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --text-color: #4A4A68;
    --heading-color: #17183B;
    --border-color: #E2E8F0;
    --font-family: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-family); color: var(--text-color); background-color: var(--bg-white); line-height: 1.6; font-size: 16px; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, h5, h6 { color: var(--heading-color); font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
a { text-decoration: none; color: var(--primary-color); transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.col { flex: 1; padding: 0 15px; }

/* Buttons */
.btn { display: inline-block; padding: 12px 24px; font-weight: 700; border-radius: 4px; text-align: center; cursor: pointer; transition: var(--transition); border: none; white-space: nowrap; font-size: 13px; letter-spacing: 0.5px; }
.btn-primary { background-color: var(--accent-color); color: white; }
.btn-primary:hover { background-color: var(--accent-hover); color: white; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(230,0,69,0.35); }
.btn-outline { background-color: transparent; border: 2px solid var(--accent-color); color: var(--accent-color); }
.btn-outline:hover { background-color: var(--accent-color); color: white; }

/* Topbar */
.topbar { background-color: var(--primary-color); padding: 7px 0; font-size: 13px; color: rgba(255,255,255,0.75); border-bottom: 1px solid rgba(255,255,255,0.05); }
.topbar .container { display: flex; justify-content: space-between; align-items: center; }
.topbar-left { display: flex; gap: 25px; }
.topbar-info { display: flex; align-items: center; gap: 8px; }
.topbar-info i { color: var(--accent-color); font-size: 12px; }
.topbar-info span { color: rgba(255,255,255,0.85); font-weight: 500; }

.topbar-actions { display: flex; align-items: center; }
.topbar-btn { 
    color: white; 
    font-weight: 700; 
    text-transform: uppercase; 
    font-size: 11px; 
    letter-spacing: 0.8px; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    padding: 5px 15px; 
    border-radius: 4px; 
    background: rgba(255,255,255,0.08);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.15);
}
.topbar-btn:hover { 
    background: var(--accent-color); 
    border-color: var(--accent-color);
    color: white;
}
.topbar-btn i { font-size: 13px; }

/* Navbar */
.navbar { background-color: var(--bg-white); padding: 14px 0; box-shadow: 0 2px 15px rgba(23,24,59,0.08); position: sticky; top: 0; z-index: 1000; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }

/* Logo avec sceau */
.brand-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-seal { width: 52px; height: 52px; object-fit: contain; flex-shrink: 0; }
.brand-name { font-size: 15px; font-weight: 800; color: var(--primary-color); line-height: 1.2; letter-spacing: 0.3px; }
.brand-name small { display: block; font-size: 10px; font-weight: 500; color: var(--text-color); letter-spacing: 1px; text-transform: uppercase; }

.nav-menu { display: flex; gap: 10px; align-items: center; list-style: none; padding: 0; margin: 0; }
.nav-link { font-weight: 600; font-size: 13px; color: var(--primary-color); white-space: nowrap; padding: 6px 4px; position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--accent-color); transition: width 0.3s ease; }
.nav-link:hover { color: var(--accent-color); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--accent-color); }

/* Dropdown Menu */
.nav-dropdown { position: relative; }
.dropdown-menu { 
    display: none; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    background-color: var(--bg-white); 
    min-width: 200px; 
    box-shadow: 0 10px 30px rgba(23,24,59,0.12); 
    border-radius: 8px; 
    padding: 15px 0; 
    z-index: 1001; 
    border: 1px solid var(--border-color);
    list-style: none;
    margin: 0;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-item { 
    display: block; 
    padding: 10px 25px; 
    font-size: 13px; 
    font-weight: 600; 
    color: var(--primary-color); 
    transition: var(--transition); 
}
.dropdown-item:hover { 
    background-color: var(--bg-light); 
    color: var(--accent-color); 
    padding-left: 30px; 
}
.dropdown-item.active { color: var(--accent-color); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; width: 38px; height: 38px; }
.hamburger span { display: block; height: 2px; width: 24px; background: var(--primary-color); border-radius: 2px; transition: all 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Sections */
.section { padding: 100px 0; }
.section-light { background-color: var(--bg-light); }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 38px; margin-bottom: 15px; }
.section-title p { color: var(--text-color); max-width: 620px; margin: 0 auto; font-size: 16px; line-height: 1.7; }
.category-badge { text-transform: uppercase; font-size: 12px; font-weight: 800; color: var(--accent-color); letter-spacing: 2px; margin-bottom: 12px; display: block; }

/* Page Header (inner pages) */
.page-header { background-color: var(--primary-color); color: white; padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { color: white; font-size: 46px; margin-bottom: 15px; }
.page-header p { font-size: 18px; color: rgba(255,255,255,0.85); }

/* Hero Carousel */
.hero-slider { position: relative; height: 90vh; min-height: 700px; display: flex; align-items: center; justify-content: center; overflow: hidden; background-color: var(--primary-color); }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1.2s ease-in-out; background-size: cover; background-position: center; z-index: 1; }
.slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(23,24,59,0.75) 0%, rgba(108,99,255,0.35) 100%); z-index: 2; }
.slide.active { opacity: 1; }
.hero-content { position: relative; z-index: 3; text-align: center; width: 100%; }
.slider-controls { position: absolute; bottom: 50px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 10px; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.6); cursor: pointer; transition: 0.3s; }
.slider-dot.active { background: white; border-color: white; transform: scale(1.2); }

/* Hero Overlap Cards */
.hero-overlap { margin-top: -80px; position: relative; z-index: 10; }
.hero-card { display: flex; flex-direction: column; align-items: center; background: white; padding: 45px 35px; text-align: center; box-shadow: 0 15px 40px rgba(23,24,59,0.1); height: 100%; border-radius: 8px; transition: transform 0.3s ease; }
.hero-card:hover { transform: translateY(-5px); }
.hero-card.dark { background: var(--primary-color); color: white; transform: scale(1.05); }
.hero-card.dark:hover { transform: scale(1.05) translateY(-5px); }
.hero-card .icon-circle { width: 70px; height: 70px; border-radius: 50%; display: inline-flex; justify-content: center; align-items: center; font-size: 28px; margin-bottom: 20px; }
.hero-card .icon-circle.red { background: var(--accent-color); color: white; }
.hero-card .icon-circle.blue { background: var(--secondary-color); color: white; }
.hero-card h3 { font-size: 20px; margin-bottom: 12px; }

/* Ambassador Section */
#ambassadeur { background-color: var(--primary-color) !important; color: white !important; }
.ambassador-container { display: flex; flex-direction: row; align-items: center; gap: 70px; }
.ambassador-img-col { flex: 0 0 30%; }
.ambassador-text-col { flex: 1; }
.ambassador-frame { background: rgba(255,255,255,0.12); padding: 10px; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.ambassador-frame img { border-radius: 6px; width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.ambassador-label { display: block; font-size: 11px; font-weight: 800; color: rgba(255,255,255,0.6); letter-spacing: 3px; margin-bottom: 20px; text-transform: uppercase; border-left: 3px solid var(--accent-color); padding-left: 12px; }
.ambassador-quote { font-size: 24px; font-weight: 300; font-style: italic; color: white; line-height: 1.6; margin-bottom: 25px; }
.ambassador-desc { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.9; margin-bottom: 30px; }
.ambassador-name { font-size: 17px; font-weight: 800; color: white; margin-bottom: 4px; }
.ambassador-role { font-size: 13px; color: rgba(255,255,255,0.6); font-style: italic; }
.ambassador-divider { width: 50px; height: 3px; background: var(--accent-color); margin-bottom: 25px; border-radius: 2px; }

/* Blog Cards */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 35px; }
.blog-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 8px 25px rgba(23,24,59,0.07); transition: var(--transition); border: 1px solid var(--border-color); }
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 20px 45px rgba(23,24,59,0.13); }
.blog-card-img { position: relative; height: 240px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-badge { position: absolute; top: 20px; left: 0; background-color: var(--accent-color); color: white; padding: 6px 16px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; border-radius: 0 4px 4px 0; }
.blog-card-content { padding: 28px; }
.blog-card-title { font-size: 18px; margin-bottom: 12px; line-height: 1.4; }
.blog-card-title a { color: var(--primary-color); }
.blog-card-title a:hover { color: var(--accent-color); }
.blog-card-excerpt { font-size: 14.5px; color: var(--text-color); margin-bottom: 20px; line-height: 1.7; }
.blog-card-meta { font-size: 12px; color: #999; border-top: 1px solid var(--border-color); padding-top: 15px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: start; }
.contact-form { background: white; padding: 45px; border-radius: 10px; box-shadow: 0 10px 40px rgba(23,24,59,0.06); border: 1px solid var(--border-color); }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 13px; color: var(--heading-color); text-transform: uppercase; letter-spacing: 0.5px; }
.form-control { width: 100%; padding: 13px 18px; border: 1.5px solid var(--border-color); border-radius: 6px; font-family: inherit; font-size: 14.5px; background: var(--bg-light); transition: 0.3s; color: var(--text-color); }
.form-control:focus { outline: none; border-color: var(--secondary-color); background: white; box-shadow: 0 0 0 3px rgba(108,99,255,0.08); }
textarea.form-control { height: 130px; resize: vertical; }
.info-item { display: flex; gap: 18px; margin-bottom: 28px; align-items: flex-start; }
.info-icon { width: 50px; height: 50px; background: rgba(230,0,69,0.07); color: var(--accent-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.info-content h4 { margin-bottom: 5px; font-size: 16px; color: var(--heading-color); }
.info-content p { font-size: 14px; color: var(--text-color); margin: 0; }

/* CTA Section */
.cta-section { background: var(--primary-color); padding: 60px 0; border-top: 4px solid var(--accent-color); }
.cta-content { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.cta-text h2 { color: white; font-size: 28px; margin-bottom: 8px; line-height: 1.3; }
.cta-text p { color: rgba(255,255,255,0.65); margin: 0; font-size: 15px; max-width: 600px; }
.cta-action { flex-shrink: 0; }

/* Footer */
.footer-dark { background-color: var(--primary-color); color: rgba(255,255,255,0.7); padding: 80px 0 0; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-brand-header { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.footer-logo-circle { width: 44px; height: 44px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; color: white; border: 1.5px solid rgba(255,255,255,0.25); flex-shrink: 0; }
.footer-brand-text { color: white; font-weight: 800; font-size: 13px; line-height: 1.4; letter-spacing: 0.5px; text-transform: uppercase; }
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; color: rgba(255,255,255,0.6); font-size: 13px; }
.footer-contact-list li i { color: var(--accent-color); font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.footer-heading { color: white; font-size: 14px; font-weight: 700; margin-bottom: 22px; position: relative; padding-bottom: 10px; letter-spacing: 0.5px; }
.footer-heading::after { content: ''; position: absolute; left: 0; bottom: 0; width: 35px; height: 2px; background: var(--accent-color); border-radius: 2px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: rgba(255,255,255,0.55); transition: color 0.3s; font-size: 13px; }
.footer-links a:hover { color: white; padding-left: 4px; }
.footer-socials { display: flex; gap: 10px; margin-bottom: 22px; }
.footer-socials a { width: 36px; height: 36px; background: rgba(255,255,255,0.07); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: all 0.3s; font-size: 14px; }
.footer-socials a:hover { background: var(--accent-color); color: white; transform: translateY(-2px); }
.footer-newsletter-text { color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.6; }
.footer-bottom-bar { border-top: 1px solid rgba(255,255,255,0.07); padding: 22px 0; text-align: center; color: rgba(255,255,255,0.35); font-size: 12px; margin-top: 0; }
.footer-bottom-links { display: flex; justify-content: center; gap: 20px; margin-top: 8px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); font-size: 12px; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* Chatbot */
.chatbot-btn { position: fixed; bottom: 30px; right: 30px; width: 58px; height: 58px; background-color: var(--accent-color); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; box-shadow: 0 8px 25px rgba(230,0,69,0.4); cursor: pointer; z-index: 9999; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.chatbot-btn:hover { transform: scale(1.1); box-shadow: 0 12px 35px rgba(230,0,69,0.5); }
.chatbot-window { position: fixed; bottom: 100px; right: 30px; width: 340px; height: 450px; background: white; border-radius: 14px; box-shadow: 0 20px 60px rgba(23,24,59,0.18); z-index: 9998; display: none; flex-direction: column; overflow: hidden; border: 1px solid var(--border-color); }
.chatbot-header { background: var(--primary-color); color: white; padding: 18px 20px; font-weight: 600; font-size: 14px; display: flex; align-items: center; justify-content: space-between; }
.chatbot-body { flex: 1; padding: 20px; background: var(--bg-light); display: flex; flex-direction: column; gap: 12px; overflow-y: auto; }
.chatbot-footer { padding: 12px 15px; border-top: 1px solid var(--border-color); display: flex; background: white; align-items: center; }
.chatbot-footer input { flex: 1; border: none; outline: none; padding: 8px; font-family: inherit; font-size: 14px; }
.chatbot-msg { background: white; padding: 12px 16px; border-radius: 10px; font-size: 14px; width: fit-content; max-width: 85%; box-shadow: 0 2px 8px rgba(0,0,0,0.04); line-height: 1.5; color: var(--text-color); }

/* =====================
   LEADERS SECTION (homepage)
   ===================== */
.leaders-section { background: #FAF9FC; }
.leaders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.leader-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px 35px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 6px 22px rgba(23,24,59,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}
.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(23,24,59,0.12);
}
.leader-card--featured {
    box-shadow: 0 12px 40px rgba(23,24,59,0.13);
    border-color: rgba(108,99,255,0.2);
    transform: translateY(-4px);
    position: relative;
}
.leader-card--featured::before {
    content: '★ À LA UNE';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}
.leader-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    margin-bottom: 24px;
    flex-shrink: 0;
}
.leader-avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-size: cover;
    background-position: center top;
    border: 3px solid white;
}
.leader-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1.3;
}
.leader-role {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 16px;
}
.leader-desc {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}

/* =====================
   LEADERS FULL PAGE
   ===================== */
.leaders-full-grid {
    display: flex;
    flex-direction: column;
    gap: 70px;
}
.leader-full-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: start;
    background: white;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 8px 30px rgba(23,24,59,0.07);
    border: 1px solid var(--border-color);
}
.leader-full-card--alt {
    grid-template-columns: 1fr 320px;
}
.leader-full-card--alt .leader-full-portrait { order: 2; }
.leader-full-card--alt .leader-full-body { order: 1; }
.leader-full-portrait {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.leader-full-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background-size: cover;
    background-position: center top;
    border: 5px solid var(--border-color);
    outline: 3px solid var(--accent-color);
    outline-offset: 4px;
    flex-shrink: 0;
}
.leader-full-badge {
    background: var(--accent-color);
    color: white;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 20px;
    text-transform: uppercase;
    text-align: center;
}
.leader-full-name {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 6px;
}
.leader-full-dates {
    font-size: 13px;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 600;
}
.leader-full-text {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.85;
    margin-bottom: 16px;
}
.leader-quote {
    background: #FAF9FC;
    border-left: 4px solid var(--accent-color);
    padding: 20px 24px;
    border-radius: 0 8px 8px 0;
    margin: 24px 0;
    position: relative;
}
.leader-quote .fa-quote-left {
    color: var(--accent-color);
    font-size: 18px;
    margin-bottom: 10px;
    display: block;
}
.leader-quote blockquote {
    font-size: 15px;
    font-style: italic;
    color: var(--primary-color);
    line-height: 1.7;
    margin: 0;
    border: none;
    padding: 0;
}
.leader-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}
.leader-tags span {
    display: inline-block;
    background: rgba(23,24,59,0.06);
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}


.chatbot-msg.user { background: var(--primary-color); color: white; align-self: flex-end; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 30px; left: 30px; width: 330px; background: white; color: var(--text-color); padding: 25px; border-radius: 12px; z-index: 10000; box-shadow: 0 20px 50px rgba(23,24,59,0.15); border: 1px solid var(--border-color); transform: translateY(200%); transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.cookie-banner.show { transform: translateY(0); }
.cookie-content { display: flex; flex-direction: column; gap: 15px; }
.cookie-header { font-weight: 700; color: var(--primary-color); font-size: 15px; display: flex; align-items: center; gap: 8px; }
.cookie-content p { font-size: 13px; margin: 0; line-height: 1.6; color: var(--text-color); }
.cookie-content .btn { width: 100%; padding: 12px; font-size: 13px; border-radius: 6px; }

/* =====================
   NEWS CAROUSEL (3 visible cards)
   ===================== */
.news-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.news-track-container {
    overflow: hidden;
    flex: 1;
}
.news-track {
    display: flex;
    gap: 24px;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Each card = (container - 2 gaps) / 3 */
.news-card {
    flex: 0 0 calc((100% - 48px) / 3);
    background: white;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 24px rgba(23,24,59,0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(23,24,59,0.12);
}
.news-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}
.news-card-body {
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.news-card-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent-color);
    color: white;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    border-radius: 3px;
    margin-bottom: 14px;
    align-self: flex-start;
    text-transform: uppercase;
}
.news-card-title {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.45;
    font-weight: 700;
}
.news-card-excerpt {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}
.news-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    margin-top: auto;
}
.news-date {
    font-size: 12px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 6px;
}
.news-read-more {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}
.news-read-more:hover { gap: 9px; }

/* Arrows */
.news-arrow {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: background 0.3s, transform 0.2s;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(23,24,59,0.18);
}
.news-arrow:hover { background: var(--accent-color); transform: scale(1.08); }
.news-arrow-prev { margin-right: 18px; }
.news-arrow-next { margin-left: 18px; }

/* Dots */
.news-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}
.news-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
.news-dot.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.3);
}

}

/* =====================
   RESPONSIVE DESIGN
   Breakpoints: 1200 | 992 | 768 | 480 | 360
   ===================== */

/* --- Tablette large (≤1200px) --- */
@media (max-width: 1200px) {
    .container { max-width: 960px; }
    .pricing-grid { grid-template-columns: 1fr 1fr; }
    .news-card { flex: 0 0 calc((100% - 24px) / 2); }
}

/* --- Tablette (≤992px) --- */
@media (max-width: 992px) {
    .container { max-width: 100%; padding: 0 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .contact-grid { grid-template-columns: 1fr; }
    .ambassador-container { gap: 30px; }
    .hero-slider { height: 75vh; min-height: 580px; }
    .cta-content { gap: 25px; }
    .premium-service-card { flex-direction: column !important; }
    .premium-service-img { border-radius: 16px 16px 0 0 !important; min-height: 240px !important; flex: auto !important; }
    .service-icon-floating { top: auto !important; bottom: -25px !important; transform: none !important; right: 30px !important; left: auto !important; }
    .news-card { flex: 0 0 calc((100% - 24px) / 2); }
    /* Leaders */
    .leaders-grid { grid-template-columns: 1fr 1fr; }
    .leader-full-card { grid-template-columns: 240px 1fr; gap: 40px; padding: 35px; }
    .leader-full-card--alt { grid-template-columns: 1fr 240px; }
    .leader-full-img { width: 180px; height: 180px; }
}


/* --- Mobile (≤768px) --- */
@media (max-width: 768px) {
    /* NAV HAMBURGER */
    .hamburger { display: flex; }
    .nav-menu {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 999;
        padding: 80px 30px 30px;
    }
    .nav-menu.open { display: flex; }
    .nav-menu .nav-link { font-size: 20px; color: white; }
    .nav-menu .nav-link::after { background: var(--accent-color); }
    .nav-menu .nav-link:hover { color: var(--accent-color); }
    .nav-menu .btn-primary { font-size: 14px; padding: 14px 28px; width: 100%; text-align: center; }
    
    /* Mobile Dropdown */
    .nav-dropdown:hover .dropdown-menu { display: none; }
    .nav-menu .dropdown-menu { 
        display: block; 
        position: static; 
        background: transparent; 
        box-shadow: none; 
        border: none; 
        padding: 10px 0 0;
        text-align: center;
        width: 100%;
    }
    .nav-menu .dropdown-item { 
        color: rgba(255,255,255,0.8); 
        font-size: 16px; 
        padding: 8px 0;
    }
    .nav-menu .dropdown-item:hover, .nav-menu .dropdown-item.active { 
        color: var(--accent-color); 
    }
    .nav-menu .dropdown-item:hover { padding-left: 0; }

    .hamburger span { background: var(--primary-color); }
    .hamburger.open span { background: white; }
    .hamburger.open { z-index: 1001; position: relative; }

    /* TOPBAR */
    .topbar .container { flex-direction: row; justify-content: space-between; padding: 10px 20px; }
    .topbar-left { flex: 1; }
    .hide-mobile { display: none !important; }
    .topbar-btn span { display: none; }
    .topbar-btn { padding: 5px 10px; }

    /* HERO */
    .hero-slider { height: 70vh; min-height: 480px; }
    .hero-content h1 { font-size: 28px !important; }
    .hero-content p { font-size: 15px !important; }
    .hero-overlap { margin-top: 0; padding: 20px 0; }
    .row { flex-direction: column; gap: 20px; }

    /* SECTIONS */
    .section { padding: 60px 0; }
    .section-title h2 { font-size: 26px; }
    .section-title p { font-size: 14.5px; }

    /* AMBASSADOR */
    .ambassador-container { flex-direction: column; gap: 30px; text-align: left; }
    .ambassador-img-col { max-width: 220px; margin: 0 auto; flex: none; }
    .ambassador-quote { font-size: 20px; }

    /* PAGE HEADER */
    .page-header { padding: 70px 0; }
    .page-header h1 { font-size: 30px !important; }
    .page-header p { font-size: 15px !important; }

    /* BLOG GRID */
    .blog-grid { grid-template-columns: 1fr; }

    /* PRICING */
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.premium { transform: none; }

    /* LEADERS homepage */
    .leaders-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .leader-card--featured { transform: none; }

    /* LEADERS full page */
    .leader-full-card,
    .leader-full-card--alt { grid-template-columns: 1fr; gap: 30px; padding: 28px 20px; }
    .leader-full-card--alt .leader-full-portrait,
    .leader-full-card--alt .leader-full-body { order: unset; }
    .leader-full-portrait { align-items: center; }
    .leader-full-img { width: 150px; height: 150px; }
    .leader-full-name { font-size: 24px; }

    /* NEWS CAROUSEL */
    .news-card { flex: 0 0 100%; }
    .news-arrow { width: 34px; height: 34px; font-size: 13px; }
    .news-arrow-prev { margin-right: 8px; }
    .news-arrow-next { margin-left: 8px; }

    /* CONTACT */
    .contact-form { padding: 30px 20px; }
    .info-item { gap: 14px; }

    /* CTA */
    .cta-content { flex-direction: column; text-align: center; gap: 20px; }
    .cta-action { width: 100%; }
    .cta-action .btn { width: 100%; padding: 15px; }
    .cta-text h2 { font-size: 22px; }

    /* FOOTER */
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-dark { padding-top: 50px; }

    /* FIXED ELEMENTS */
    .cookie-banner { bottom: 15px; left: 10px; right: 10px; width: auto; }
    .chatbot-btn { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 20px; }
    .chatbot-window { width: calc(100vw - 20px); right: 10px; bottom: 85px; }

    /* QUICK ACCESS CARDS (index) */
    .row > .col { width: 100%; flex: none; }
}

/* --- Petits mobiles (≤480px) --- */
@media (max-width: 480px) {
    .brand-seal { width: 42px; height: 42px; }
    .brand-name { font-size: 12px; }
    .brand-name small { display: none; }
    .hero-slider { height: 60vh; min-height: 400px; }
    .section { padding: 50px 0; }
    .section-title h2 { font-size: 22px; }
    .btn { padding: 10px 18px; font-size: 12px; }
    .footer-bottom-links { gap: 12px; flex-direction: column; align-items: center; }
    .news-card-img { height: 160px; }
    .news-card-body { padding: 20px 16px; }
    .ambassador-img-col { max-width: 180px; }
}

/* --- Ultra-petits mobiles (≤360px) --- */
@media (max-width: 360px) {
    .container { padding: 0 15px; }
    .navbar { padding: 10px 0; }
    .brand-name { font-size: 11px; }
    .hero-content h1 { font-size: 22px !important; }
    .section-title h2 { font-size: 20px; }
}
