/* ============================================================ */
/* RESET & BASE - DESIGN ÉPURÉ ET ACCESSIBLE                    */
/* ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Couleurs basées sur le logo #155AB6 - contrastes renforcés */
    --primary: #155AB6;
    --primary-dark: #0D3D7A;
    --primary-light: #1A6FD4;
    --secondary: #2A7DE0;
    --accent: #4A8FE8;
    --gold: #E8A838;
    --gold-light: #F5C84A;
    --white: #ffffff;
    --light-bg: #F0F5FA;
    --text: #1A2A3A;
    --text-light: #5A7A9E;
    --text-dark: #0D1A2A;
    --shadow: 0 20px 60px rgba(21, 90, 182, 0.12);
    --shadow-sm: 0 4px 20px rgba(21, 90, 182, 0.06);
    --shadow-hover: 0 8px 40px rgba(21, 90, 182, 0.18);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --header-height: 50px;
    --navbar-height: 80px;
    --topbar-height: 44px;
    --focus-ring: 3px solid #E8A838;
    --focus-ring-offset: 2px;
}

/* ===== ACCESSIBILITÉ : FOCUS VISIBLE ===== */
*:focus-visible {
    outline: var(--focus-ring);
    outline-offset: var(--focus-ring-offset);
}

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--primary-dark);
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    font-weight: 700;
    z-index: 10000;
    transition: top 0.3s;
}
.skip-link:focus {
    top: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.8;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    padding-top: calc(var(--topbar-height) + var(--navbar-height));
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ============================================================ */
/* TOP BAR - FIXE                                                */
/* ============================================================ */
/* ============================================================ */
/* TOP BAR - Contacts et réseaux sociaux                         */
/* ============================================================ */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);
    padding: 6px 0;
    font-size: 0.75rem;
    border-bottom: 2px solid var(--gold);
    height: var(--topbar-height);
    display: flex;
    align-items: center;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.85);
    font-size: 0.72rem;
    transition: var(--transition);
    white-space: nowrap;
    padding: 2px 6px;
    border-radius: 4px;
}

.top-bar-contact:hover,
.top-bar-contact:focus {
    color: var(--gold);
    background: rgba(232, 168, 56, 0.1);
}

.top-bar-contact i {
    color: var(--gold);
    font-size: 0.7rem;
    width: 16px;
    text-align: center;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
    transition: var(--transition);
}

.social-icon:hover,
.social-icon:focus {
    background: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.lang-switch-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: rgba(255,255,255,0.85);
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.12);
    transition: var(--transition);
    white-space: nowrap;
}

.lang-switch-btn:hover,
.lang-switch-btn:focus {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary-dark);
}

.lang-switch-btn i {
    font-size: 0.65rem;
}

/* ============================================================ */
/* NAVIGATION - FIXE AVEC TOP BAR                               */
/* ============================================================ */
.main-header {
    position: fixed;
    top: var(--topbar-height);
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(21, 90, 182, 0.06);
    height: var(--navbar-height);
    display: flex;
    align-items: center;
}
.navbar {
    width: 100%;
    padding: 0;
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.logo-icon {
    width: 180px;
    height: 62px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    flex-shrink: 0;
    transition: var(--transition);
}
.logo:hover .logo-icon {
    transform: scale(1.03);
    box-shadow: 0 4px 20px rgba(21, 90, 182, 0.15);
}
.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

/* ===== MENU TOGGLE ===== */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10001;
    flex-shrink: 0;
}
.menu-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}
.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== NAV LINKS ===== */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2px;
    align-items: center;
    margin: 0;
    padding: 0;
}
.nav-links a {
    padding: 8px 11px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}
.nav-links a:hover,
.nav-links a:focus {
    color: var(--primary);
    background: rgba(21, 90, 182, 0.05);
}
.nav-links a.active {
    color: var(--primary);
    background: rgba(21, 90, 182, 0.06);
    font-weight: 600;
}
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}
.btn-contact {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 8px 22px !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
}
.btn-contact:hover,
.btn-contact:focus {
    background: var(--gold) !important;
    color: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(232, 168, 56, 0.3);
}
.btn-contact.active {
    background: var(--gold) !important;
    color: var(--primary-dark) !important;
}
.btn-contact.active::after {
    display: none !important;
}

/* ============================================================ */
/* BOUTON WHATSAPP FLOTTANT                                      */
/* ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
    background: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}
.whatsapp-float:hover,
.whatsapp-float:focus {
    transform: scale(1.08);
    box-shadow: 0 6px 35px rgba(37, 211, 102, 0.5);
    background: #20b85a;
}
@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.6); }
}
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--text);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip,
.whatsapp-float:focus .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid var(--text);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}
.whatsapp-footer {
    background: #25D366 !important;
    color: var(--white) !important;
}
.whatsapp-footer:hover {
    background: #20b85a !important;
    color: var(--white) !important;
}

/* ============================================================ */
/* HERO SECTION - ACCESSIBLE                                     */
/* ============================================================ */
.hero {
    position: relative;
    padding: 30px 0 50px;
    background: var(--white);
    overflow: hidden;
    min-height: 65vh;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--secondary) 100%);
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(26, 111, 212, 0.12) 0%, transparent 70%);
    z-index: 1;
}
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
    z-index: 1;
}
.hero .container {
    position: relative;
    z-index: 2;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero-content {
    color: var(--white);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 168, 56, 0.15);
    border: 1px solid rgba(232, 168, 56, 0.2);
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}
.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 6px;
}
.hero-title span {
    color: var(--gold);
}
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    font-weight: 400;
    margin-bottom: 12px;
}
.hero-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    border-left: 4px solid var(--gold);
    padding-left: 16px;
    margin-bottom: 14px;
    font-weight: 300;
}
.hero-description {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 22px;
    max-width: 540px;
}
.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ===== BOUTONS AMÉLIORÉS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    min-height: 52px;
}
.btn-primary {
    background: var(--gold);
    color: var(--primary-dark);
}
.btn-primary:hover,
.btn-primary:focus {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(232, 168, 56, 0.35);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.25);
}
.btn-outline:hover,
.btn-outline:focus {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
}
.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(21, 90, 182, 0.2);
}
.btn-white {
    background: var(--white);
    color: var(--primary);
}
.btn-white:hover,
.btn-white:focus {
    background: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(232, 168, 56, 0.3);
}

/* ===== HERO IMAGE ===== */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image-wrapper {
    position: relative;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}
.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-image-ring {
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border-radius: 50%;
    border: 2px solid rgba(232, 168, 56, 0.2);
    animation: spin-ring 20s linear infinite;
}
@keyframes spin-ring {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.hero-image-ring::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(232, 168, 56, 0.5);
}

/* ===== FLOATING CARDS ===== */
.hero-floating-card {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 10px 14px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
}
.hero-floating-card i {
    font-size: 1.1rem;
    color: var(--gold);
}
.hero-floating-card span {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
}
.hero-floating-card.card-1 {
    top: 10px;
    right: -15px;
    animation-delay: 0s;
}
.hero-floating-card.card-2 {
    bottom: 40px;
    left: -20px;
    animation-delay: 0.7s;
}
.hero-floating-card.card-3 {
    bottom: -5px;
    right: 10px;
    animation-delay: 1.4s;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* ============================================================ */
/* STATS SECTION                                                 */
/* ============================================================ */
.stats {
    padding: 50px 0;
    background: var(--light-bg);
    border-top: 1px solid rgba(21, 90, 182, 0.05);
    border-bottom: 1px solid rgba(21, 90, 182, 0.05);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
}
.stat-item {
    padding: 10px;
}
.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ============================================================ */
/* SECTIONS GÉNÉRIQUES - DESIGN ÉPURÉ                           */
/* ============================================================ */
.about-home,
.services-home,
.international-home,
.publications-home,
.testimonials-home {
    padding: 70px 0;
}
.about-home { background: var(--white); }
.services-home { background: var(--light-bg); }
.international-home { background: var(--white); }
.publications-home { background: var(--light-bg); }
.testimonials-home { background: var(--white); }

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(232, 168, 56, 0.1);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}
.section-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.2;
}
.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-image {
    position: relative;
}
.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 90%;
}
.about-experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}
.about-experience .exp-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
}
.about-experience .exp-label {
    font-size: 0.8rem;
    opacity: 0.8;
}
.about-content h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.2;
}
.about-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 30px;
}
.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
}
.feature i {
    color: var(--gold);
    font-size: 1rem;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.service-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(21, 90, 182, 0.04);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}
.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--primary-dark);
    transform: rotate(8deg) scale(1.05);
}
.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}
.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== INTERNATIONAL ===== */
.international-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 30px 0 40px;
}
.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    padding: 20px 30px;
    background: var(--light-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    min-width: 120px;
    border: 1px solid transparent;
}
.logo-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}
.logo-item i {
    font-size: 2rem;
    color: var(--primary);
}
.logo-item span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text);
}

/* ===== PUBLICATIONS ===== */
.preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0 40px;
}
.preview-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid transparent;
    box-shadow: var(--shadow-sm);
}
.preview-item:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: var(--shadow-hover);
}
.preview-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 1.3rem;
}
.preview-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}
.preview-year {
    font-size: 0.8rem;
    color: var(--text-light);
}
.preview-type {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--gold);
    background: rgba(232, 168, 56, 0.1);
    padding: 2px 12px;
    border-radius: 12px;
    margin-top: 6px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0 40px;
}
.testimonial-card {
    background: var(--light-bg);
    padding: 30px 25px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}
.testimonial-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 1.3rem;
}
.testimonial-card blockquote {
    font-size: 0.95rem;
    color: var(--text);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 12px;
}
.testimonial-card blockquote::before {
    content: '"';
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
}
.testimonial-card blockquote::after {
    content: '"';
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
}
.testimonial-source {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
}

/* ============================================================ */
/* CTA FINAL                                                     */
/* ============================================================ */
.cta-final {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    text-align: center;
    color: var(--white);
}
.cta-content h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.cta-content p {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================ */
/* FOOTER                                                        */
/* ============================================================ */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 30px;
    margin-bottom: 40px;
}
.footer-logo .logo-icon {
    width: 170px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    flex-shrink: 0;
}
.footer-logo .logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}
.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 12px 0 18px;
}
.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    font-size: 0.9rem;
}
.footer-social a:hover,
.footer-social a:focus {
    background: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}
.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 8px;
}
.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-col ul li a:hover,
.footer-col ul li a:focus {
    color: var(--gold);
    padding-left: 4px;
}
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}
.footer-contact li i {
    color: var(--gold);
    width: 16px;
}
.footer-newsletter {
    display: flex;
    gap: 8px;
}
.footer-newsletter input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-size: 0.85rem;
    min-height: 44px;
}
.footer-newsletter input::placeholder {
    color: rgba(255,255,255,0.4);
}
.footer-newsletter button {
    padding: 10px 16px;
    background: var(--gold);
    color: var(--primary-dark);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    min-height: 44px;
    min-width: 44px;
}
.footer-newsletter button:hover,
.footer-newsletter button:focus {
    background: var(--gold-light);
}
.footer-newsletter-text {
    font-size: 0.75rem;
    opacity: 0.5;
    margin-top: 8px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.8rem;
}
.footer-credit {
    display: flex;
    align-items: center;
    gap: 4px;
}
.footer-credit i {
    color: #e74c3c;
    font-size: 0.7rem;
}

/* ============================================================ */
/* SERVICES & CTA BUTTONS - CENTRÉS                             */
/* ============================================================ */
.services-cta,
.international-cta,
.publications-cta,
.testimonials-cta {
    text-align: center;
    margin-top: 30px;
}

/* ============================================================ */
/* RESPONSIVE - TABLETTE (max-width: 992px)                     */
/* ============================================================ */
@media (max-width: 992px) {
    :root {
        --topbar-height: 32px;
        --navbar-height: 62px;
    }
    
    body {
        padding-top: calc(var(--topbar-height) + var(--navbar-height));
    }
    .top-bar-left .top-bar-contact:nth-child(3) {
        display: none;
    }
    .nav-links a {
        padding: 6px 10px;
        font-size: 0.78rem;
    }
    .btn-contact {
        padding: 6px 14px !important;
        font-size: 0.78rem !important;
    }
    .hero {
        padding: 25px 0 40px;
        min-height: 55vh;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .hero-description {
        max-width: 100%;
        margin: 0 auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-image-wrapper {
        width: 280px;
        height: 280px;
    }
    .hero-floating-card {
        display: none;
    }
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .about-features {
        justify-items: center;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
	
}

/* ============================================================ */
/* RESPONSIVE - MOBILE (max-width: 768px)                       */
/* ============================================================ */
@media (max-width: 768px) {
    :root {
        --topbar-height: 32px;
        --navbar-height: 62px;
    }
    
    body {
        padding-top: calc(var(--topbar-height) + var(--navbar-height));
    }
    .top-bar-left .top-bar-contact:nth-child(2),
    .top-bar-left .top-bar-contact:nth-child(3) {
        display: none;
    }
    .top-bar-left .top-bar-contact:first-child span {
        font-size: 0.6rem;
    }
    .top-bar-right .social-icon:nth-child(3),
    .top-bar-right .social-icon:nth-child(4),
    .top-bar-right .social-icon:nth-child(5) {
        display: none;
    }
    .lang-switch-btn {
		font-size: 0.7rem;
		padding: 4px 10px;
		background: rgba(255,255,255,0.08);
		border: 1px solid rgba(255,255,255,0.15);
		border-radius: 20px;
	}
	.lang-switch-btn span {
		display: inline; /* Affiche le texte */
		margin-left: 4px;
	}
	.lang-switch-btn i {
		font-size: 0.8rem;
	}
    .logo-icon {
        width: 48px;
        height: 48px;
    }
    .logo-image {
        padding: 3px;
    }
    .menu-toggle {
        display: flex;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: calc(var(--topbar-height) + var(--navbar-height));
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        padding: 30px 20px 20px;
        gap: 4px;
        z-index: 999;
        overflow-y: auto;
        box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        animation: slideDown 0.3s ease;
    }
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links li {
        width: 100%;
    }
    .nav-links a {
        padding: 14px 20px;
        width: 100%;
        text-align: center;
        font-size: 1rem;
        border-radius: 10px;
        white-space: normal;
    }
    .nav-links a.active::after {
        display: none;
    }
    .nav-links a.active {
        background: rgba(21, 90, 182, 0.08);
    }
    .btn-contact {
        padding: 14px 20px !important;
        text-align: center !important;
        margin-top: 8px;
        font-size: 1rem !important;
    }
    .btn-contact:hover {
        transform: none !important;
    }
    .hero {
        padding: 20px 0 30px;
        min-height: 45vh;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }
    .hero-quote {
        font-size: 0.9rem;
        padding-left: 12px;
    }
    .hero-description {
        font-size: 0.85rem;
        line-height: 1.7;
    }
    .hero-image-wrapper {
        width: 200px;
        height: 200px;
    }
    .hero-badge {
        font-size: 0.6rem;
        padding: 3px 12px;
    }
    .hero-buttons {
        gap: 10px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .stat-number {
        font-size: 2rem;
    }
    .stat-label {
        font-size: 0.75rem;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .section-header p {
        font-size: 0.9rem;
    }
    .about-content h2 {
        font-size: 1.8rem;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
    .about-experience {
        bottom: -10px;
        right: -10px;
        padding: 12px 20px;
    }
    .about-experience .exp-number {
        font-size: 1.5rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .service-card {
        padding: 25px 20px;
    }
    .international-logos {
        gap: 15px;
    }
    .logo-item {
        min-width: 80px;
        padding: 12px 16px;
        flex: 1 1 calc(50% - 15px);
    }
    .logo-item i {
        font-size: 1.5rem;
    }
    .preview-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .preview-item {
        padding: 20px 15px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .cta-content h2 {
        font-size: 1.8rem;
    }
    .cta-content p {
        font-size: 0.95rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-newsletter {
        flex-direction: column;
        max-width: 280px;
        margin: 0 auto;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        min-height: 44px;
    }
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-tooltip {
        display: none;
    }
	.top-bar-right .social-icon:nth-child(4),
    .top-bar-right .social-icon:nth-child(5) {
        display: none;
    }
    
    .lang-switch-btn span {
        display: none;
    }
    
    .lang-switch-btn i {
        font-size: 0.8rem;
    }
}



/* ============================================================ */
/* RESPONSIVE - PETIT MOBILE (max-width: 480px)                 */
/* ============================================================ */
@media (max-width: 480px) {
    :root {
        --topbar-height: 28px;
        --navbar-height: 56px;
    }
    
    body {
        padding-top: calc(var(--topbar-height) + var(--navbar-height));
    }
    .top-bar {
        padding: 3px 0;
    }
    .top-bar-left .top-bar-contact:first-child {
        font-size: 0.55rem;
    }
    .top-bar-left .top-bar-contact:first-child span {
        display: none;
    }
    .top-bar-left .top-bar-contact:first-child i {
        font-size: 0.75rem;
    }
    .top-bar-right {
        gap: 3px;
    }
    .social-icon {
        width: 22px;
        height: 22px;
        font-size: 0.55rem;
    }
    .logo-icon {
        width: 40px;
        height: 40px;
        border-radius: 8px;
    }
    .logo-image {
        padding: 2px;
    }
    .menu-toggle span {
        width: 20px;
        height: 2px;
    }
    .nav-links {
        padding: 20px 16px 20px;
        top: calc(var(--topbar-height) + var(--navbar-height));
    }
    .nav-links a {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
    .hero-title {
        font-size: 1.6rem;
    }
    .hero-subtitle {
        font-size: 0.8rem;
    }
    .hero-quote {
        font-size: 0.8rem;
        padding-left: 10px;
    }
    .hero-description {
        font-size: 0.75rem;
        line-height: 1.6;
    }
    .hero-image-wrapper {
        width: 150px;
        height: 150px;
    }
    .stats-grid {
        gap: 10px;
    }
    .stat-number {
        font-size: 1.4rem;
    }
    .stat-label {
        font-size: 0.6rem;
    }
    .section-header h2 {
        font-size: 1.4rem;
    }
    .about-content h2 {
        font-size: 1.4rem;
    }
    .cta-content h2 {
        font-size: 1.4rem;
    }
    .btn {
        padding: 8px 16px;
        font-size: 0.75rem;
        min-height: 38px;
    }
    .preview-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .preview-item h4 {
        font-size: 0.75rem;
    }
    .preview-item {
        padding: 15px 10px;
    }
    .whatsapp-float {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
        bottom: 16px;
        right: 16px;
    }
	.top-bar-left .top-bar-contact:first-child span {
        display: none;
    }
    
    .top-bar-left .top-bar-contact:first-child i {
        font-size: 0.8rem;
    }
}

/* ============================================================ */
/* PAGE BIOGRAPHIE - STYLES SPÉCIFIQUES                         */
/* ============================================================ */
.bio-hero {
    position: relative;
    padding: 60px 0 50px;
    background: var(--white);
    overflow: hidden;
    min-height: 50vh;
}
.bio-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--secondary) 100%);
    z-index: 0;
}
.bio-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(26, 111, 212, 0.12) 0%, transparent 70%);
    z-index: 1;
}
.bio-hero .container {
    position: relative;
    z-index: 2;
}
.bio-hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}
.bio-hero-content .section-tag {
    background: rgba(232, 168, 56, 0.15);
    color: var(--gold);
}
.bio-hero-content h1 {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 10px;
}
.bio-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
}
.bio-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}
.bio-stat {
    text-align: center;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    padding: 15px 10px;
    border: 1px solid rgba(255,255,255,0.06);
}
.bio-stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
}
.bio-stat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.bio-main {
    padding: 70px 0;
    background: var(--white);
}
.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}
.bio-image-wrapper {
    position: sticky;
    top: calc(var(--topbar-height) + var(--navbar-height) + 30px);
}
.bio-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.bio-image img {
    width: 100%;
    height: auto;
    display: block;
}
.bio-image-quote {
    background: var(--primary);
    color: var(--white);
    padding: 20px 25px;
    border-radius: var(--radius-sm);
    margin-top: 20px;
    position: relative;
    border-left: 4px solid var(--gold);
}
.bio-image-quote i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-right: 8px;
}
.bio-image-quote p {
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}
.bio-content {
    padding-top: 0;
}
.bio-section {
    margin-bottom: 30px;
}
.bio-section:last-child {
    margin-bottom: 0;
}
.bio-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}
.bio-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}
.bio-section p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 12px;
}
.bio-section p:last-child {
    margin-bottom: 0;
}
.bio-academic {
    margin: 16px 0 12px;
    padding-left: 20px;
    border-left: 3px solid var(--gold);
}
.academic-item {
    display: flex;
    gap: 16px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(21, 90, 182, 0.05);
}
.academic-item:last-child {
    border-bottom: none;
}
.academic-year {
    font-weight: 700;
    color: var(--gold);
    min-width: 60px;
    font-size: 0.9rem;
}
.academic-desc {
    color: var(--text);
    font-size: 0.9rem;
}
.bio-current {
    margin-top: 12px !important;
    font-weight: 500;
    color: var(--text) !important;
    padding: 12px 16px;
    background: rgba(232, 168, 56, 0.06);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--gold);
}
.bio-current i {
    color: var(--gold);
    margin-right: 8px;
}
.bio-current strong {
    color: var(--primary);
}
.bio-engagement {
    padding: 70px 0;
    background: var(--light-bg);
}
.bio-engagement-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}
.bio-engagement-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}
.bio-engagement-header p {
    color: var(--text-light);
    font-size: 1rem;
}
.bio-engagement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.engagement-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(21, 90, 182, 0.04);
}
.engagement-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}
.engagement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--white);
    font-size: 1.3rem;
}
.engagement-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}
.engagement-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 6px;
}
.engagement-year {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(232, 168, 56, 0.1);
    padding: 2px 14px;
    border-radius: 12px;
}
.bio-passions {
    padding: 70px 0;
    background: var(--white);
}
.bio-passions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.passion-card {
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(21, 90, 182, 0.04);
}
.passion-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.passion-music {
    background: linear-gradient(135deg, rgba(21, 90, 182, 0.04), rgba(232, 168, 56, 0.04));
    border-color: rgba(21, 90, 182, 0.08);
}
.passion-writing {
    background: linear-gradient(135deg, rgba(232, 168, 56, 0.04), rgba(21, 90, 182, 0.04));
    border-color: rgba(232, 168, 56, 0.08);
}
.passion-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
}
.passion-music .passion-icon {
    color: var(--gold);
}
.passion-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}
.passion-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}
.passion-albums,
.passion-books {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
}
.album-tag,
.book-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    background: var(--white);
    color: var(--text);
    box-shadow: var(--shadow-sm);
}
.album-tag small,
.book-tag small {
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.65rem;
}
.album-tag {
    border: 1px solid rgba(232, 168, 56, 0.2);
}
.book-tag {
    border: 1px solid rgba(21, 90, 182, 0.15);
}
.btn-sm {
    padding: 8px 20px !important;
    font-size: 0.8rem !important;
    min-height: 38px !important;
}
.bio-today {
    padding: 70px 0;
    background: var(--light-bg);
}
.bio-today-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.bio-today-text .section-tag {
    margin-bottom: 12px;
}
.bio-today-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}
.bio-today-text p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}
.bio-today-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}
.today-stat {
    text-align: center;
    background: var(--white);
    padding: 16px 10px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}
.today-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
}
.today-label {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 500;
}
.bio-today-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.bio-today-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.bio-today-image img {
    width: 100%;
    height: auto;
    display: block;
}
.bio-today-ring {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid rgba(232, 168, 56, 0.2);
    animation: spin-ring 20s linear infinite;
}

/* ===== RESPONSIVE - BIOGRAPHIE ===== */
@media (max-width: 992px) {
    .bio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .bio-image-wrapper {
        position: relative;
        top: 0;
    }
    .bio-hero-content h1 {
        font-size: 2.6rem;
    }
    .bio-engagement-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bio-today-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .bio-today-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .bio-today-buttons {
        justify-content: center;
    }
    .bio-passions-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
    .bio-hero {
        padding: 40px 0 30px;
        min-height: 40vh;
    }
    .bio-hero-content h1 {
        font-size: 2rem;
    }
    .bio-hero-subtitle {
        font-size: 1rem;
    }
    .bio-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .bio-stat-number {
        font-size: 1.4rem;
    }
    .bio-section h2 {
        font-size: 1.6rem;
    }
    .bio-section h3 {
        font-size: 1.1rem;
    }
    .bio-engagement-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .engagement-card {
        padding: 20px 16px;
    }
    .bio-today-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .today-number {
        font-size: 1.4rem;
    }
    .bio-today-buttons {
        flex-direction: column;
        align-items: center;
    }
    .bio-today-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    .bio-engagement-header h2 {
        font-size: 1.6rem;
    }
}
@media (max-width: 480px) {
    .bio-hero-content h1 {
        font-size: 1.6rem;
    }
    .bio-hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .bio-stat {
        padding: 10px 8px;
    }
    .bio-stat-number {
        font-size: 1.2rem;
    }
    .bio-stat-label {
        font-size: 0.6rem;
    }
    .bio-engagement-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
    .bio-image-quote p {
        font-size: 0.8rem;
    }
    .passion-card {
        padding: 30px 20px;
    }
}

/* ============================================================ */
/* PAGE EXPERTISE - STYLES SPÉCIFIQUES                          */
/* ============================================================ */
.expertise-hero {
    position: relative;
    padding: 50px 0 40px;
    background: var(--white);
    overflow: hidden;
    min-height: 45vh;
}
.expertise-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--secondary) 100%);
    z-index: 0;
}
.expertise-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(26, 111, 212, 0.12) 0%, transparent 70%);
    z-index: 1;
}
.expertise-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
    z-index: 1;
}
.expertise-hero .container {
    position: relative;
    z-index: 2;
}
.expertise-hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}
.expertise-hero-content .section-tag {
    background: rgba(232, 168, 56, 0.15);
    color: var(--gold);
}
.expertise-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 8px;
}
.expertise-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
}
.expertise-hero-description {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 1.7;
}
.expertise-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}
.expertise-stat {
    text-align: center;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    padding: 14px 10px;
    border: 1px solid rgba(255,255,255,0.06);
}
.expertise-stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
}
.expertise-stat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.expertise-domains {
    padding: 70px 0;
    background: var(--white);
}
.domains-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 10px;
}
.domain-card {
    background: var(--light-bg);
    padding: 30px 25px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}
.domain-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: var(--shadow-hover);
}
.domain-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--white);
    font-size: 1.3rem;
    transition: var(--transition);
}
.domain-card:hover .domain-icon {
    background: var(--gold);
    color: var(--primary-dark);
    transform: rotate(8deg) scale(1.05);
}
.domain-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}
.domain-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}
.expertise-working {
    padding: 70px 0;
    background: var(--light-bg);
}
.working-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}
.working-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}
.working-header p {
    color: var(--text-light);
    font-size: 1rem;
}
.working-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.working-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(21, 90, 182, 0.04);
}
.working-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}
.working-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 14px;
}
.working-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}
.working-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}
.expertise-cta {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid rgba(21, 90, 182, 0.05);
    border-bottom: 1px solid rgba(21, 90, 182, 0.05);
}
.expertise-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.expertise-cta-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}
.expertise-cta-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}
.expertise-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE - EXPERTISE ===== */
@media (max-width: 992px) {
    .domains-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .working-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .expertise-hero-content h1 {
        font-size: 2.2rem;
    }
    .expertise-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}
@media (max-width: 768px) {
    .expertise-hero {
        padding: 35px 0 25px;
        min-height: 35vh;
    }
    .expertise-hero-content h1 {
        font-size: 1.8rem;
    }
    .expertise-hero-subtitle {
        font-size: 1rem;
    }
    .expertise-hero-description {
        font-size: 0.9rem;
    }
    .expertise-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .expertise-stat-number {
        font-size: 1.4rem;
    }
    .expertise-stat-label {
        font-size: 0.6rem;
    }
    .domains-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .domain-card {
        padding: 20px 16px;
    }
    .domain-card h3 {
        font-size: 0.95rem;
    }
    .domain-card p {
        font-size: 0.8rem;
    }
    .working-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .working-card {
        padding: 20px 16px;
    }
    .expertise-cta-content h2 {
        font-size: 1.8rem;
    }
    .expertise-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .expertise-cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    .working-header h2 {
        font-size: 1.6rem;
    }
}
@media (max-width: 480px) {
    .expertise-hero-content h1 {
        font-size: 1.4rem;
    }
    .expertise-hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .expertise-stat {
        padding: 10px 8px;
    }
    .expertise-stat-number {
        font-size: 1.2rem;
    }
    .domains-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .domain-card {
        padding: 16px 12px;
    }
    .domain-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    .domain-card h3 {
        font-size: 0.8rem;
    }
    .domain-card p {
        font-size: 0.7rem;
    }
    .working-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* ============================================================ */
/* PAGE PRESTATIONS - STYLES SPÉCIFIQUES                        */
/* ============================================================ */
.prestations-hero {
    position: relative;
    padding: 50px 0 40px;
    background: var(--white);
    overflow: hidden;
    min-height: 45vh;
}
.prestations-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--secondary) 100%);
    z-index: 0;
}
.prestations-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(26, 111, 212, 0.12) 0%, transparent 70%);
    z-index: 1;
}
.prestations-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
    z-index: 1;
}
.prestations-hero .container {
    position: relative;
    z-index: 2;
}
.prestations-hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}
.prestations-hero-content .section-tag {
    background: rgba(232, 168, 56, 0.15);
    color: var(--gold);
}
.prestations-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 8px;
}
.prestations-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
}
.prestations-hero-description {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 1.7;
}
.prestations-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}
.prestations-stat {
    text-align: center;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    padding: 14px 10px;
    border: 1px solid rgba(255,255,255,0.06);
}
.prestations-stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
}
.prestations-stat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.prestations-intro {
    padding: 30px 0 10px;
    background: var(--white);
}
.prestations-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.prestations-intro-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}
.prestations-services {
    padding: 40px 0 70px;
    background: var(--white);
}
.services-grid-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
.service-card-full {
    background: var(--light-bg);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(21, 90, 182, 0.04);
}
.service-card-full:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}
.service-card-full-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(21, 90, 182, 0.04), rgba(21, 90, 182, 0.01));
    border-bottom: 1px solid rgba(21, 90, 182, 0.04);
}
.service-card-full-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}
.service-card-full-title h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}
.service-tag {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--gold);
    background: rgba(232, 168, 56, 0.1);
    padding: 2px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.service-card-full-body {
    padding: 20px 24px 24px;
}
.service-desc {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 12px;
}
.service-details {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}
.service-details li {
    padding: 4px 0;
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.service-details li::before {
    content: '›';
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
}
.service-cta {
    margin-top: 4px;
}
.prestations-why {
    padding: 70px 0;
    background: var(--light-bg);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 10px;
}
.why-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(21, 90, 182, 0.04);
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}
.why-icon {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 12px;
}
.why-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}
.why-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}
.prestations-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    text-align: center;
    color: var(--white);
}
.prestations-cta-content {
    max-width: 700px;
    margin: 0 auto;
}
.prestations-cta-content h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.prestations-cta-content p {
    font-size: 1.05rem;
    opacity: 0.85;
    margin-bottom: 30px;
}
.prestations-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.prestations-cta-buttons .btn-outline {
    border-color: rgba(255,255,255,0.3);
}
.prestations-cta-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* ===== RESPONSIVE - PRESTATIONS ===== */
@media (max-width: 992px) {
    .services-grid-full {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .prestations-hero-content h1 {
        font-size: 2.2rem;
    }
    .prestations-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}
@media (max-width: 768px) {
    .prestations-hero {
        padding: 35px 0 25px;
        min-height: 35vh;
    }
    .prestations-hero-content h1 {
        font-size: 1.8rem;
    }
    .prestations-hero-subtitle {
        font-size: 1rem;
    }
    .prestations-hero-description {
        font-size: 0.9rem;
    }
    .prestations-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .prestations-stat-number {
        font-size: 1.4rem;
    }
    .prestations-stat-label {
        font-size: 0.6rem;
    }
    .services-grid-full {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    .service-card-full-header {
        padding: 16px 18px;
    }
    .service-card-full-body {
        padding: 16px 18px 20px;
    }
    .service-card-full-title h2 {
        font-size: 1.05rem;
    }
    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .why-card {
        padding: 20px 16px;
    }
    .prestations-cta-content h2 {
        font-size: 1.8rem;
    }
    .prestations-intro-content p {
        font-size: 1rem;
    }
}
@media (max-width: 480px) {
    .prestations-hero-content h1 {
        font-size: 1.4rem;
    }
    .prestations-hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .prestations-stat {
        padding: 10px 8px;
    }
    .prestations-stat-number {
        font-size: 1.2rem;
    }
    .why-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    .prestations-cta-content h2 {
        font-size: 1.4rem;
    }
    .prestations-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .prestations-cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    .service-card-full-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

/* ============================================================ */
/* PAGE PARCOURS - STYLES SPÉCIFIQUES                           */
/* ============================================================ */
.parcours-hero {
    position: relative;
    padding: 50px 0 40px;
    background: var(--white);
    overflow: hidden;
    min-height: 45vh;
}
.parcours-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--secondary) 100%);
    z-index: 0;
}
.parcours-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(26, 111, 212, 0.12) 0%, transparent 70%);
    z-index: 1;
}
.parcours-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
    z-index: 1;
}
.parcours-hero .container {
    position: relative;
    z-index: 2;
}
.parcours-hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}
.parcours-hero-content .section-tag {
    background: rgba(232, 168, 56, 0.15);
    color: var(--gold);
}
.parcours-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 8px;
}
.parcours-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
}
.parcours-hero-description {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 1.7;
}
.parcours-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}
.parcours-stat {
    text-align: center;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    padding: 14px 10px;
    border: 1px solid rgba(255,255,255,0.06);
}
.parcours-stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
}
.parcours-stat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.parcours-timeline {
    padding: 70px 0;
    background: var(--white);
}
.timeline {
    position: relative;
    padding: 20px 0;
    margin: 30px 0 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    transform: translateX(-50%);
    width: 3px;
    background: linear-gradient(to bottom, rgba(21,90,182,0.1) 0%, var(--primary) 20%, var(--primary) 80%, rgba(21,90,182,0.1) 100%);
    border-radius: 4px;
}
.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50px;
    position: relative;
    width: 50%;
    margin-bottom: 40px;
}
.timeline-item:nth-child(odd) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50px;
    margin-left: 50%;
}
.timeline-dot {
    position: absolute;
    width: 18px;
    height: 18px;
    background: var(--primary);
    border: 4px solid var(--white);
    border-radius: 50%;
    top: 8px;
    z-index: 2;
    box-shadow: 0 0 0 3px var(--primary);
    transition: var(--transition);
}
.timeline-item:hover .timeline-dot {
    background: var(--gold);
    box-shadow: 0 0 0 3px var(--gold);
    transform: scale(1.15);
}
.timeline-item:nth-child(even) .timeline-dot {
    right: -9px;
}
.timeline-item:nth-child(odd) .timeline-dot {
    left: -9px;
}
.timeline-item.current .timeline-dot {
    background: var(--gold);
    box-shadow: 0 0 0 3px var(--gold), 0 0 20px rgba(232,168,56,0.3);
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 3px var(--gold), 0 0 20px rgba(232,168,56,0.3); }
    50% { transform: scale(1.2); box-shadow: 0 0 0 3px var(--gold), 0 0 40px rgba(232,168,56,0.5); }
}
.timeline-content {
    background: var(--light-bg);
    padding: 20px 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    max-width: 380px;
    transition: var(--transition);
    border-left: 3px solid var(--primary);
}
.timeline-item:nth-child(odd) .timeline-content {
    border-left: none;
    border-right: 3px solid var(--primary);
}
.timeline-item:hover .timeline-content {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}
.timeline-item:nth-child(odd):hover .timeline-content {
    border-color: var(--gold);
}
.timeline-date {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.timeline-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
    line-height: 1.3;
}
.timeline-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}
.timeline-item.current .timeline-content {
    border-color: var(--gold);
    background: rgba(232,168,56,0.05);
}
.timeline-item.current .timeline-content h3 {
    color: var(--primary);
}
.parcours-download {
    padding: 50px 0;
    background: var(--light-bg);
}
.parcours-download-content {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 40px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(21,90,182,0.05);
}
.parcours-download-icon {
    font-size: 3rem;
    color: var(--primary);
    flex-shrink: 0;
}
.parcours-download-text {
    flex: 1;
}
.parcours-download-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2px;
}
.parcours-download-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}
.parcours-download-content .btn {
    flex-shrink: 0;
}
.parcours-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    text-align: center;
    color: var(--white);
}
.parcours-cta-content {
    max-width: 700px;
    margin: 0 auto;
}
.parcours-cta-content h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.parcours-cta-content p {
    font-size: 1.05rem;
    opacity: 0.85;
    margin-bottom: 30px;
}
.parcours-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.parcours-cta-buttons .btn-outline {
    border-color: rgba(255,255,255,0.3);
}
.parcours-cta-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}
.parcours-institutions {
    padding: 70px 0;
    background: var(--light-bg);
}
.institutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 10px;
}
.institution-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(21,90,182,0.04);
}
.institution-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}
.institution-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
}
.institution-card:hover .institution-icon {
    background: var(--gold);
    color: var(--primary-dark);
    transform: rotate(5deg) scale(1.05);
}
.institution-info {
    flex: 1;
}
.institution-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 2px 0;
}
.institution-info p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0 0 4px 0;
}
.institution-year {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(232,168,56,0.1);
    padding: 2px 12px;
    border-radius: 12px;
}

/* ===== RESPONSIVE - PARCOURS & INSTITUTIONS ===== */
@media (max-width: 992px) {
    .parcours-hero-content h1 { font-size: 2.2rem; }
    .parcours-hero-stats { grid-template-columns: repeat(2,1fr); gap: 12px; }
    .timeline::before { left: 24px; }
    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
        margin-left: 0 !important;
        margin-bottom: 30px;
    }
    .timeline-item:nth-child(odd) { padding-left: 60px; padding-right: 0; }
    .timeline-item:nth-child(even) .timeline-dot,
    .timeline-item:nth-child(odd) .timeline-dot { left: 15px; right: auto; }
    .timeline-content { max-width: 100%; border-left: 3px solid var(--primary) !important; border-right: none !important; }
    .timeline-item:nth-child(odd) .timeline-content { border-right: none !important; }
    .institutions-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }
}
@media (max-width: 768px) {
    .parcours-hero { padding: 35px 0 25px; min-height: 35vh; }
    .parcours-hero-content h1 { font-size: 1.8rem; }
    .parcours-hero-subtitle { font-size: 1rem; }
    .parcours-hero-description { font-size: 0.9rem; }
    .parcours-hero-stats { grid-template-columns: repeat(2,1fr); gap: 10px; }
    .parcours-stat-number { font-size: 1.4rem; }
    .parcours-stat-label { font-size: 0.6rem; }
    .parcours-download-content { flex-direction: column; text-align: center; padding: 24px 20px; gap: 16px; }
    .parcours-download-content .btn { width: 100%; justify-content: center; }
    .parcours-cta-content h2 { font-size: 1.8rem; }
    .parcours-cta-buttons { flex-direction: column; align-items: center; }
    .parcours-cta-buttons .btn { width: 100%; justify-content: center; }
    .timeline-content { padding: 16px 18px; }
    .timeline-content h3 { font-size: 0.9rem; }
    .timeline-content p { font-size: 0.8rem; }
    .timeline-item { padding-left: 50px; margin-bottom: 24px; }
    .timeline-item:nth-child(odd) { padding-left: 50px; }
    .timeline-item:nth-child(even) .timeline-dot,
    .timeline-item:nth-child(odd) .timeline-dot { left: 10px; }
    .timeline::before { left: 18px; }
    .institutions-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .institution-card { padding: 16px 18px; gap: 14px; }
    .institution-icon { width: 44px; height: 44px; font-size: 1rem; }
    .institution-info h3 { font-size: 0.9rem; }
    .institution-info p { font-size: 0.7rem; }
}
@media (max-width: 480px) {
    .parcours-hero-content h1 { font-size: 1.4rem; }
    .parcours-hero-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
    .parcours-stat { padding: 10px 8px; }
    .parcours-stat-number { font-size: 1.2rem; }
    .parcours-cta-content h2 { font-size: 1.4rem; }
    .timeline-item { padding-left: 40px; margin-bottom: 18px; }
    .timeline-item:nth-child(odd) { padding-left: 40px; }
    .timeline-item:nth-child(even) .timeline-dot,
    .timeline-item:nth-child(odd) .timeline-dot { left: 6px; width: 14px; height: 14px; }
    .timeline::before { left: 12px; }
    .timeline-content { padding: 14px 16px; }
    .timeline-content h3 { font-size: 0.85rem; }
    .institutions-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
    .institution-card { padding: 14px 16px; }
}

/* ============================================================ */
/* PAGE INTERNATIONAL - STYLES SPÉCIFIQUES                      */
/* ============================================================ */
.international-hero {
    position: relative;
    padding: 50px 0 40px;
    background: var(--white);
    overflow: hidden;
    min-height: 45vh;
}
.international-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--secondary) 100%);
    z-index: 0;
}
.international-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(26, 111, 212, 0.12) 0%, transparent 70%);
    z-index: 1;
}
.international-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
    z-index: 1;
}
.international-hero .container {
    position: relative;
    z-index: 2;
}
.international-hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}
.international-hero-content .section-tag {
    background: rgba(232, 168, 56, 0.15);
    color: var(--gold);
}
.international-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 8px;
}
.international-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
}
.international-hero-description {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 1.7;
}
.international-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}
.international-stat {
    text-align: center;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    padding: 14px 10px;
    border: 1px solid rgba(255,255,255,0.06);
}
.international-stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
}
.international-stat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.international-map-section {
    padding: 70px 0;
    background: var(--white);
}
.world-map {
    height: 500px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(21,90,182,0.05);
}
.custom-marker {
    background: transparent;
    border: none;
}
.marker-pin {
    width: 30px;
    height: 30px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 0.9rem;
    box-shadow: 0 2px 12px rgba(232,168,56,0.4);
    transition: var(--transition);
    cursor: pointer;
}
.marker-pin:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 20px rgba(232,168,56,0.6);
}
.map-popup-wrapper .leaflet-popup-content-wrapper {
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    padding: 0;
    overflow: hidden;
}
.map-popup-wrapper .leaflet-popup-content {
    margin: 0;
    padding: 0;
}
.map-popup {
    padding: 16px 20px;
    min-width: 200px;
}
.map-popup h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 4px 0;
}
.map-popup .popup-year {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(232,168,56,0.1);
    padding: 2px 12px;
    border-radius: 12px;
    margin-bottom: 8px;
}
.map-popup p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}
.international-list {
    padding: 70px 0;
    background: var(--light-bg);
}
.continent-section {
    margin-bottom: 50px;
}
.continent-section:last-child {
    margin-bottom: 0;
}
.continent-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(21,90,182,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}
.continent-title i {
    color: var(--gold);
    font-size: 1.2rem;
}
.continent-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.mission-card {
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border: 1px solid rgba(21,90,182,0.04);
    box-shadow: var(--shadow-sm);
}
.mission-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}
.mission-year {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(232,168,56,0.1);
    padding: 2px 14px;
    border-radius: 12px;
    margin-bottom: 6px;
}
.mission-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 6px 0;
}
.mission-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}
.international-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    text-align: center;
    color: var(--white);
}
.international-cta-content {
    max-width: 700px;
    margin: 0 auto;
}
.international-cta-content h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.international-cta-content p {
    font-size: 1.05rem;
    opacity: 0.85;
    margin-bottom: 30px;
}
.international-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.international-cta-buttons .btn-outline {
    border-color: rgba(255,255,255,0.3);
}
.international-cta-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* ===== RESPONSIVE - INTERNATIONAL ===== */
@media (max-width: 992px) {
    .international-hero-content h1 { font-size: 2.2rem; }
    .international-hero-stats { grid-template-columns: repeat(2,1fr); gap: 12px; }
    .continent-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .world-map { height: 400px; }
}
@media (max-width: 768px) {
    .international-hero { padding: 35px 0 25px; min-height: 35vh; }
    .international-hero-content h1 { font-size: 1.8rem; }
    .international-hero-subtitle { font-size: 1rem; }
    .international-hero-description { font-size: 0.9rem; }
    .international-hero-stats { grid-template-columns: repeat(2,1fr); gap: 10px; }
    .international-stat-number { font-size: 1.4rem; }
    .international-stat-label { font-size: 0.6rem; }
    .continent-grid { grid-template-columns: 1fr; }
    .continent-title { font-size: 1.2rem; }
    .world-map { height: 320px; }
    .international-cta-content h2 { font-size: 1.8rem; }
    .international-cta-buttons { flex-direction: column; align-items: center; }
    .international-cta-buttons .btn { width: 100%; justify-content: center; }
    .mission-card { padding: 16px 18px; }
}
@media (max-width: 480px) {
    .international-hero-content h1 { font-size: 1.4rem; }
    .international-hero-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
    .international-stat { padding: 10px 8px; }
    .international-stat-number { font-size: 1.2rem; }
    .international-cta-content h2 { font-size: 1.4rem; }
    .world-map { height: 250px; }
    .map-popup { min-width: 150px; padding: 12px 16px; }
}

/* ============================================================ */
/* PAGE PUBLICATIONS - STYLES SPÉCIFIQUES                       */
/* ============================================================ */
.publications-hero {
    position: relative;
    padding: 50px 0 40px;
    background: var(--white);
    overflow: hidden;
    min-height: 45vh;
}
.publications-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--secondary) 100%);
    z-index: 0;
}
.publications-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(26, 111, 212, 0.12) 0%, transparent 70%);
    z-index: 1;
}
.publications-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
    z-index: 1;
}
.publications-hero .container {
    position: relative;
    z-index: 2;
}
.publications-hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}
.publications-hero-content .section-tag {
    background: rgba(232, 168, 56, 0.15);
    color: var(--gold);
}
.publications-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 8px;
}
.publications-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
}
.publications-hero-description {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 1.7;
}
.publications-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}
.publications-stat {
    text-align: center;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    padding: 14px 10px;
    border: 1px solid rgba(255,255,255,0.06);
}
.publications-stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
}
.publications-stat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.publications-section {
    padding: 70px 0;
}
.publications-section.alt-bg {
    background: var(--light-bg);
}
.publications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 10px;
}
.publications-grid.music-grid {
    grid-template-columns: repeat(3, 1fr);
}
.publications-grid.studies-grid {
    grid-template-columns: repeat(2, 1fr);
}
.publications-grid.journals-grid {
    grid-template-columns: repeat(2, 1fr);
}
.publication-card {
    display: flex;
    gap: 24px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(21,90,182,0.04);
}
.publication-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}
.publication-cover {
    flex-shrink: 0;
    width: 160px;
    min-height: 200px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
}
.cover-placeholder {
    color: var(--white);
    text-align: center;
    padding: 20px;
}
.cover-placeholder i {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
}
.cover-placeholder .music-note {
    font-size: 1.5rem;
    display: block;
    animation: pulse-note 2s infinite;
}
@keyframes pulse-note {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}
.music-cover {
    background: linear-gradient(135deg, #2a7de0, #1a6fd4);
}
.study-cover {
    background: linear-gradient(135deg, #0d3d7a, #155ab6);
}
.journal-cover {
    background: linear-gradient(135deg, #e8a838, #f5c84a);
}
.publication-info {
    flex: 1;
    padding: 20px 24px 20px 0;
    display: flex;
    flex-direction: column;
}
.publication-year {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(232,168,56,0.1);
    padding: 2px 14px;
    border-radius: 12px;
    align-self: flex-start;
    margin-bottom: 6px;
}
.publication-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 6px 0;
    line-height: 1.3;
}
.publication-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 0 12px 0;
    flex: 1;
}
.publication-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.publication-meta span {
    font-size: 0.75rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 4px;
}
.publication-meta i {
    color: var(--gold);
    font-size: 0.7rem;
}
.publication-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
}
.publication-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}
.btn-sm {
    padding: 6px 16px !important;
    font-size: 0.75rem !important;
    min-height: 34px !important;
}
.btn-acheter {
    background: var(--gold) !important;
    color: var(--primary-dark) !important;
}
.btn-acheter:hover {
    background: var(--gold-light) !important;
}
.publications-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    text-align: center;
    color: var(--white);
}
.publications-cta-content {
    max-width: 700px;
    margin: 0 auto;
}
.publications-cta-content h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.publications-cta-content p {
    font-size: 1.05rem;
    opacity: 0.85;
    margin-bottom: 30px;
}
.publications-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.publications-cta-buttons .btn-outline {
    border-color: rgba(255,255,255,0.3);
}
.publications-cta-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* ===== RESPONSIVE - PUBLICATIONS ===== */
@media (max-width: 992px) {
    .publications-hero-content h1 { font-size: 2.2rem; }
    .publications-hero-stats { grid-template-columns: repeat(2,1fr); gap: 12px; }
    .publications-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .publications-grid.music-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .publications-hero { padding: 35px 0 25px; min-height: 35vh; }
    .publications-hero-content h1 { font-size: 1.8rem; }
    .publications-hero-subtitle { font-size: 1rem; }
    .publications-hero-description { font-size: 0.9rem; }
    .publications-hero-stats { grid-template-columns: repeat(2,1fr); gap: 10px; }
    .publications-stat-number { font-size: 1.4rem; }
    .publications-stat-label { font-size: 0.6rem; }
    .publication-card { flex-direction: column; gap: 0; }
    .publication-cover { width: 100%; min-height: 120px; padding: 20px; }
    .publication-info { padding: 16px 18px 18px; }
    .publications-grid,
    .publications-grid.music-grid,
    .publications-grid.studies-grid,
    .publications-grid.journals-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .publications-cta-content h2 { font-size: 1.8rem; }
    .publications-cta-buttons { flex-direction: column; align-items: center; }
    .publications-cta-buttons .btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
    .publications-hero-content h1 { font-size: 1.4rem; }
    .publications-hero-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
    .publications-stat { padding: 10px 8px; }
    .publications-stat-number { font-size: 1.2rem; }
    .publications-cta-content h2 { font-size: 1.4rem; }
}

/* ============================================================ */
/* PAGE DISTINCTIONS - STYLES SPÉCIFIQUES                       */
/* ============================================================ */
.distinctions-hero {
    position: relative;
    padding: 50px 0 40px;
    background: var(--white);
    overflow: hidden;
    min-height: 45vh;
}
.distinctions-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--secondary) 100%);
    z-index: 0;
}
.distinctions-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(26, 111, 212, 0.12) 0%, transparent 70%);
    z-index: 1;
}
.distinctions-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
    z-index: 1;
}
.distinctions-hero .container {
    position: relative;
    z-index: 2;
}
.distinctions-hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}
.distinctions-hero-content .section-tag {
    background: rgba(232, 168, 56, 0.15);
    color: var(--gold);
}
.distinctions-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 8px;
}
.distinctions-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
}
.distinctions-hero-description {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 1.7;
}
.distinctions-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}
.distinctions-stat {
    text-align: center;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    padding: 14px 10px;
    border: 1px solid rgba(255,255,255,0.06);
}
.distinctions-stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
}
.distinctions-stat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.distinctions-filters {
    padding: 20px 0 10px;
    background: var(--white);
    border-bottom: 1px solid rgba(21,90,182,0.06);
}
.filters-wrapper {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 8px 20px;
    border: 2px solid rgba(21,90,182,0.1);
    border-radius: 30px;
    background: transparent;
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.distinctions-list {
    padding: 40px 0 70px;
    background: var(--light-bg);
}
.distinctions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.distinction-card {
    display: flex;
    gap: 20px;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--gold);
    align-items: flex-start;
}
.distinction-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-hover);
}
.distinction-year {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold);
    min-width: 60px;
    flex-shrink: 0;
    padding-top: 2px;
}
.distinction-content {
    flex: 1;
}
.distinction-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 6px 0;
}
.distinction-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 0 8px 0;
}
.distinction-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.tag {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 12px;
    border-radius: 12px;
}
.tag.international {
    background: rgba(21,90,182,0.1);
    color: var(--primary);
}
.tag.national {
    background: rgba(232,168,56,0.1);
    color: var(--gold);
}
.tag.academic {
    background: rgba(42,125,224,0.1);
    color: var(--secondary);
}
.tag.social {
    background: rgba(26,42,58,0.08);
    color: var(--text-light);
}
.distinctions-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    text-align: center;
    color: var(--white);
}
.distinctions-cta-content {
    max-width: 700px;
    margin: 0 auto;
}
.distinctions-cta-content h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.distinctions-cta-content p {
    font-size: 1.05rem;
    opacity: 0.85;
    margin-bottom: 30px;
}
.distinctions-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.distinctions-cta-buttons .btn-outline {
    border-color: rgba(255,255,255,0.3);
}
.distinctions-cta-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* ===== RESPONSIVE - DISTINCTIONS ===== */
@media (max-width: 992px) {
    .distinctions-hero-content h1 { font-size: 2.2rem; }
    .distinctions-hero-stats { grid-template-columns: repeat(2,1fr); gap: 12px; }
    .distinctions-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 768px) {
    .distinctions-hero { padding: 35px 0 25px; min-height: 35vh; }
    .distinctions-hero-content h1 { font-size: 1.8rem; }
    .distinctions-hero-subtitle { font-size: 1rem; }
    .distinctions-hero-description { font-size: 0.9rem; }
    .distinctions-hero-stats { grid-template-columns: repeat(2,1fr); gap: 10px; }
    .distinctions-stat-number { font-size: 1.4rem; }
    .distinctions-stat-label { font-size: 0.6rem; }
    .distinctions-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .distinction-card { padding: 16px 18px; gap: 14px; }
    .distinction-year { font-size: 1.2rem; min-width: 50px; }
    .filters-wrapper { gap: 6px; }
    .filter-btn { padding: 6px 14px; font-size: 0.7rem; }
    .distinctions-cta-content h2 { font-size: 1.8rem; }
    .distinctions-cta-buttons { flex-direction: column; align-items: center; }
    .distinctions-cta-buttons .btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
    .distinctions-hero-content h1 { font-size: 1.4rem; }
    .distinctions-hero-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
    .distinctions-stat { padding: 10px 8px; }
    .distinctions-stat-number { font-size: 1.2rem; }
    .distinctions-cta-content h2 { font-size: 1.4rem; }
    .distinction-card { flex-direction: column; gap: 6px; padding: 14px 16px; }
    .distinction-year { font-size: 1rem; min-width: auto; }
}

/* ============================================================ */
/* PAGE BOUTIQUE - STYLES SPÉCIFIQUES                           */
/* ============================================================ */
.boutique-hero {
    position: relative;
    padding: 50px 0 40px;
    background: var(--white);
    overflow: hidden;
    min-height: 45vh;
}
.boutique-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--secondary) 100%);
    z-index: 0;
}
.boutique-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(26, 111, 212, 0.12) 0%, transparent 70%);
    z-index: 1;
}
.boutique-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
    z-index: 1;
}
.boutique-hero .container {
    position: relative;
    z-index: 2;
}
.boutique-hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}
.boutique-hero-content .section-tag {
    background: rgba(232, 168, 56, 0.15);
    color: var(--gold);
}
.boutique-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 8px;
}
.boutique-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
}
.boutique-hero-description {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 1.7;
}
.boutique-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}
.boutique-stat {
    text-align: center;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    padding: 14px 10px;
    border: 1px solid rgba(255,255,255,0.06);
}
.boutique-stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
}
.boutique-stat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.boutique-filters {
    padding: 20px 0 10px;
    background: var(--white);
    border-bottom: 1px solid rgba(21,90,182,0.06);
}
.boutique-filters .filters-wrapper {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.boutique-filters .filter-btn {
    padding: 8px 20px;
    border: 2px solid rgba(21,90,182,0.1);
    border-radius: 30px;
    background: transparent;
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}
.boutique-filters .filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.boutique-filters .filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.boutique-products {
    padding: 40px 0 70px;
    background: var(--light-bg);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(21,90,182,0.04);
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}
.product-cover {
    position: relative;
    height: 200px;
    background: var(--light-bg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}
.product-placeholder.book {
    background: linear-gradient(135deg, #1a3a5c, #2a6b9e);
}
.product-placeholder.music {
    background: linear-gradient(135deg, #2a7de0, #1a6fd4);
}
.product-placeholder.study {
    background: linear-gradient(135deg, #0d3d7a, #155ab6);
}
.product-placeholder i {
    font-size: 3rem;
    margin-bottom: 8px;
}
.product-type-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}
.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 1.2rem;
    background: rgba(255,255,255,0.9);
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.product-badge.music-badge {
    background: rgba(42,125,224,0.15);
}
.product-badge.book-badge {
    background: rgba(26,58,92,0.15);
}
.product-badge.study-badge {
    background: rgba(232,168,56,0.15);
}
.product-info {
    padding: 18px 20px 20px;
}
.product-year {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(232,168,56,0.1);
    padding: 2px 14px;
    border-radius: 12px;
    margin-bottom: 6px;
}
.product-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 4px 0;
    line-height: 1.3;
}
.product-subtitle {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0 0 6px 0;
}
.product-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0 0 14px 0;
}
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}
.btn-acheter {
    background: var(--gold) !important;
    color: var(--primary-dark) !important;
}
.btn-acheter:hover {
    background: var(--gold-light) !important;
    transform: translateY(-2px);
}
.btn-acheter.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.btn-acheter.disabled:hover {
    transform: none !important;
}
.boutique-empty {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.boutique-empty i {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 16px;
}
.boutique-empty p {
    font-size: 1.1rem;
    color: var(--text-light);
}
.boutique-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    text-align: center;
    color: var(--white);
}
.boutique-cta-content {
    max-width: 700px;
    margin: 0 auto;
}
.boutique-cta-content h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.boutique-cta-content p {
    font-size: 1.05rem;
    opacity: 0.85;
    margin-bottom: 30px;
}
.boutique-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.boutique-cta-buttons .btn-outline {
    border-color: rgba(255,255,255,0.3);
}
.boutique-cta-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* ===== RESPONSIVE - BOUTIQUE ===== */
@media (max-width: 992px) {
    .boutique-hero-content h1 { font-size: 2.2rem; }
    .boutique-hero-stats { grid-template-columns: repeat(2,1fr); gap: 12px; }
    .products-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }
}
@media (max-width: 768px) {
    .boutique-hero { padding: 35px 0 25px; min-height: 35vh; }
    .boutique-hero-content h1 { font-size: 1.8rem; }
    .boutique-hero-subtitle { font-size: 1rem; }
    .boutique-hero-description { font-size: 0.9rem; }
    .boutique-hero-stats { grid-template-columns: repeat(2,1fr); gap: 10px; }
    .boutique-stat-number { font-size: 1.4rem; }
    .boutique-stat-label { font-size: 0.6rem; }
    .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .product-cover { height: 150px; }
    .product-info { padding: 14px 16px 16px; }
    .product-info h3 { font-size: 0.9rem; }
    .product-footer { flex-direction: column; align-items: stretch; gap: 8px; }
    .btn-acheter { text-align: center; justify-content: center; }
    .filters-wrapper { gap: 6px; }
    .filter-btn { padding: 6px 14px; font-size: 0.7rem; }
    .boutique-cta-content h2 { font-size: 1.8rem; }
    .boutique-cta-buttons { flex-direction: column; align-items: center; }
    .boutique-cta-buttons .btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
    .boutique-hero-content h1 { font-size: 1.4rem; }
    .boutique-hero-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
    .boutique-stat { padding: 10px 8px; }
    .boutique-stat-number { font-size: 1.2rem; }
    .boutique-cta-content h2 { font-size: 1.4rem; }
    .products-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
    .product-cover { height: 180px; }
}

/* ============================================================ */
/* PAGE CONTACT - STYLES SPÉCIFIQUES                            */
/* ============================================================ */
.contact-hero {
    position: relative;
    padding: 50px 0 40px;
    background: var(--white);
    overflow: hidden;
    min-height: 45vh;
}
.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--secondary) 100%);
    z-index: 0;
}
.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(26, 111, 212, 0.12) 0%, transparent 70%);
    z-index: 1;
}
.contact-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
    z-index: 1;
}
.contact-hero .container {
    position: relative;
    z-index: 2;
}
.contact-hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}
.contact-hero-content .section-tag {
    background: rgba(232, 168, 56, 0.15);
    color: var(--gold);
}
.contact-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 8px;
}
.contact-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
}
.contact-hero-description {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 650px;
    margin: 0 auto 0;
    line-height: 1.7;
}
.contact-main {
    padding: 60px 0 70px;
    background: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}
.contact-form-wrapper h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}
.form-group label .required {
    color: #e74c3c;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e8ecf0;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
    color: var(--text);
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(21,90,182,0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
}
.form-error {
    font-size: 0.75rem;
    color: #e74c3c;
    display: none;
}
.form-error.visible {
    display: block;
}
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-size: 0.95rem;
}
.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.contact-info-wrapper h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}
.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}
.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 12px 16px;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.contact-info-item:hover {
    background: rgba(21,90,182,0.04);
    transform: translateX(4px);
}
.contact-info-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-info-text h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 2px 0;
}
.contact-info-text a,
.contact-info-text p {
    font-size: 0.95rem;
    color: var(--text);
    margin: 0;
}
.contact-info-text a:hover {
    color: var(--primary);
}
.contact-social {
    padding-top: 16px;
    border-top: 1px solid rgba(21,90,182,0.06);
}
.contact-social h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px 0;
}
.contact-social-links {
    display: flex;
    gap: 10px;
}
.contact-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--light-bg);
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
}
.contact-social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}
.contact-newsletter {
    padding: 50px 0;
    background: var(--light-bg);
}
.newsletter-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.newsletter-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}
.newsletter-content p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 20px;
}
.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.newsletter-input-group {
    display: flex;
    width: 100%;
    max-width: 500px;
    gap: 8px;
}
.newsletter-input-group input {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid #e8ecf0;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: var(--transition);
}
.newsletter-input-group input:focus {
    border-color: var(--primary);
    outline: none;
}
.newsletter-input-group button {
    padding: 12px 24px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.newsletter-input-group button:hover {
    background: var(--primary-dark);
}
.newsletter-success {
    color: #155724;
    font-size: 0.9rem;
}
.newsletter-error {
    color: #721c24;
    font-size: 0.9rem;
}
.contact-map {
    padding: 60px 0;
    background: var(--white);
}
.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.map-wrapper iframe {
    display: block;
}
.contact-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    text-align: center;
    color: var(--white);
}
.contact-cta-content {
    max-width: 700px;
    margin: 0 auto;
}
.contact-cta-content h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.contact-cta-content p {
    font-size: 1.05rem;
    opacity: 0.85;
    margin-bottom: 30px;
}

/* ===== RESPONSIVE - CONTACT ===== */
@media (max-width: 992px) {
    .contact-hero-content h1 { font-size: 2.2rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .contact-hero { padding: 35px 0 25px; min-height: 35vh; }
    .contact-hero-content h1 { font-size: 1.8rem; }
    .contact-hero-subtitle { font-size: 1rem; }
    .contact-hero-description { font-size: 0.9rem; }
    .contact-form-wrapper h2,
    .contact-info-wrapper h2 { font-size: 1.4rem; }
    .newsletter-input-group { flex-direction: column; }
    .newsletter-input-group button { width: 100%; justify-content: center; }
    .contact-cta-content h2 { font-size: 1.8rem; }
    .contact-info-item { padding: 10px 14px; }
    .contact-social-links a { width: 40px; height: 40px; font-size: 0.9rem; }
    .map-wrapper iframe { height: 300px; }
}
@media (max-width: 480px) {
    .contact-hero-content h1 { font-size: 1.4rem; }
    .contact-cta-content h2 { font-size: 1.4rem; }
    .contact-info-icon { width: 38px; height: 38px; font-size: 0.9rem; }
    .contact-info-text a,
    .contact-info-text p { font-size: 0.85rem; }
    .map-wrapper iframe { height: 200px; }
}

/* ============================================================ */
/* PAGE GALERIE - STYLES SPÉCIFIQUES                            */
/* ============================================================ */
.galerie-hero {
    position: relative;
    padding: 50px 0 40px;
    background: var(--white);
    overflow: hidden;
    min-height: 45vh;
}
.galerie-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--secondary) 100%);
    z-index: 0;
}
.galerie-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(26, 111, 212, 0.12) 0%, transparent 70%);
    z-index: 1;
}
.galerie-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
    z-index: 1;
}
.galerie-hero .container {
    position: relative;
    z-index: 2;
}
.galerie-hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}
.galerie-hero-content .section-tag {
    background: rgba(232, 168, 56, 0.15);
    color: var(--gold);
}
.galerie-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 8px;
}
.galerie-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
}
.galerie-hero-description {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 1.7;
}
.galerie-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
}
.galerie-stat {
    text-align: center;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    padding: 14px 10px;
    border: 1px solid rgba(255,255,255,0.06);
}
.galerie-stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
}
.galerie-stat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.galerie-filters {
    padding: 20px 0 10px;
    background: var(--white);
    border-bottom: 1px solid rgba(21,90,182,0.06);
}
.galerie-filters .filters-wrapper {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.galerie-filters .filter-btn {
    padding: 8px 20px;
    border: 2px solid rgba(21,90,182,0.1);
    border-radius: 30px;
    background: transparent;
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}
.galerie-filters .filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.galerie-filters .filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.galerie-grid-section {
    padding: 40px 0 70px;
    background: var(--light-bg);
}
.galerie-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.galerie-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 4/3;
    cursor: pointer;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.galerie-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.galerie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.galerie-item:hover img {
    transform: scale(1.05);
}
.galerie-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(10,37,64,0.8) 0%, rgba(10,37,64,0.2) 60%, rgba(10,37,64,0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.galerie-item:hover .galerie-overlay {
    opacity: 1;
}
.galerie-overlay-content {
    color: var(--white);
    width: 100%;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}
.galerie-item:hover .galerie-overlay-content {
    transform: translateY(0);
}
.galerie-overlay-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    line-height: 1.3;
}
.galerie-overlay-content p {
    font-size: 0.8rem;
    opacity: 0.8;
    margin: 0 0 8px 0;
    line-height: 1.4;
}
.galerie-zoom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--gold);
    color: var(--primary-dark);
    border-radius: 50%;
    font-size: 0.9rem;
    transition: var(--transition);
}
.galerie-zoom:hover {
    transform: scale(1.1);
    background: var(--gold-light);
}
.galerie-empty {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.galerie-empty i {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 16px;
    display: block;
}
.galerie-empty p {
    font-size: 1.1rem;
    color: var(--text-light);
}
.galerie-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    text-align: center;
    color: var(--white);
}
.galerie-cta-content {
    max-width: 700px;
    margin: 0 auto;
}
.galerie-cta-content h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.galerie-cta-content p {
    font-size: 1.05rem;
    opacity: 0.85;
    margin-bottom: 30px;
}

/* ===== RESPONSIVE - GALERIE ===== */
@media (max-width: 992px) {
    .galerie-hero-content h1 { font-size: 2.2rem; }
    .galerie-grid { grid-template-columns: repeat(3,1fr); gap: 16px; }
}
@media (max-width: 768px) {
    .galerie-hero { padding: 35px 0 25px; min-height: 35vh; }
    .galerie-hero-content h1 { font-size: 1.8rem; }
    .galerie-hero-subtitle { font-size: 1rem; }
    .galerie-hero-description { font-size: 0.9rem; }
    .galerie-hero-stats { grid-template-columns: repeat(2,1fr); gap: 10px; }
    .galerie-stat-number { font-size: 1.4rem; }
    .galerie-stat-label { font-size: 0.6rem; }
    .galerie-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
    .galerie-overlay-content h3 { font-size: 0.85rem; }
    .galerie-overlay-content p { font-size: 0.7rem; }
    .galerie-filters .filters-wrapper { gap: 6px; }
    .galerie-filters .filter-btn { padding: 6px 14px; font-size: 0.7rem; }
    .galerie-cta-content h2 { font-size: 1.8rem; }
}
@media (max-width: 480px) {
    .galerie-hero-content h1 { font-size: 1.4rem; }
    .galerie-hero-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
    .galerie-stat { padding: 10px 8px; }
    .galerie-stat-number { font-size: 1.2rem; }
    .galerie-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .galerie-item { aspect-ratio: 4/3; }
    .galerie-overlay { padding: 12px; }
    .galerie-overlay-content h3 { font-size: 0.75rem; }
    .galerie-overlay-content p { display: none; }
    .galerie-zoom { width: 28px; height: 28px; font-size: 0.7rem; }
    .galerie-cta-content h2 { font-size: 1.4rem; }
}

/* ============================================================ */
/* EXTRAS - PISTE BUY                                           */
/* ============================================================ */
.piste-buy {
    display: none;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.piste-buy .piste-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}
.piste-buy .btn-sm {
    padding: 4px 12px;
    font-size: 0.75rem;
}

/* ============================================================ */
/* EXTRAS - PUBLICATIONS EXTRAIT                                */
/* ============================================================ */
.publication-extrait {
    margin: 12px 0;
    padding: 12px 16px;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--gold);
}
.publication-extrait h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.publication-extrait blockquote {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text);
    margin: 0;
    line-height: 1.6;
}
.publication-extrait blockquote::before {
    content: '"';
    color: var(--gold);
    font-weight: 700;
}
.publication-extrait blockquote::after {
    content: '"';
    color: var(--gold);
    font-weight: 700;
}
.publication-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.publication-cover {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    overflow: hidden;
}
.cover-placeholder {
    font-size: 3rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.cover-placeholder.music-cover {
    background: linear-gradient(135deg, #2a7de0, #1a6fd4);
}
.cover-placeholder.study-cover {
    background: linear-gradient(135deg, #0d3d7a, #155ab6);
}
/* ============================================================ */
/* À LA UNE - 3ᵉ IMAGE                                           */
/* ============================================================ */
.featured-section {
    padding: 70px 0;
    background: var(--white);
}

.featured-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--light-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.featured-image {
    height: 400px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.featured-image:hover img {
    transform: scale(1.03);
}

.featured-content {
    padding: 40px 50px 40px 30px;
}

.featured-content .section-tag {
    margin-bottom: 8px;
}

.featured-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.featured-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.featured-features {
    display: grid;
    gap: 10px;
    margin-bottom: 24px;
}

.featured-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
}

.featured-item i {
    color: var(--gold);
    width: 20px;
}

/* ============================================================ */
/* ENGAGEMENT / VALEURS - 4ᵉ IMAGE                              */
/* ============================================================ */
.values-section {
    padding: 70px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.values-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.values-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s;
}

.values-image:hover img {
    transform: scale(1.03);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    background: var(--light-bg);
    transition: var(--transition);
    border: 1px solid transparent;
}

.value-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.value-text h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2px;
}

.value-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================ */
/* RESPONSIVE - VALUES & FEATURED                                */
/* ============================================================ */
@media (max-width: 992px) {
    .featured-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .featured-image {
        height: 300px;
    }
    
    .featured-content {
        padding: 30px;
        text-align: center;
    }
    
    .featured-features {
        justify-items: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .values-list {
        text-align: center;
    }
    
    .value-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .featured-image {
        height: 220px;
    }
    
    .featured-content h2 {
        font-size: 1.6rem;
    }
    
    .featured-content {
        padding: 24px 20px;
    }
    
    .value-item {
        padding: 14px 16px;
    }
}
/* ============================================================ */
/* BIOGRAPHIE - NOUVEAUX STYLES POUR LES IMAGES                 */
/* ============================================================ */

/* Engagement avec image */
.bio-engagement-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.bio-engagement-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.bio-engagement-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s;
}

.bio-engagement-image:hover img {
    transform: scale(1.03);
}

/* Passions avec image */
.bio-passions-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.bio-passions-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.bio-passions-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s;
}

.bio-passions-image:hover img {
    transform: scale(1.03);
}

/* ============================================================ */
/* RESPONSIVE - BIOGRAPHIE IMAGES                                */
/* ============================================================ */
@media (max-width: 992px) {
    .bio-engagement-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bio-passions-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bio-passions-wrapper .bio-passions-grid {
        order: 2;
    }
    
    .bio-passions-wrapper .bio-passions-image {
        order: 1;
    }
}

@media (max-width: 768px) {
    .bio-engagement-wrapper {
        grid-template-columns: 1fr;
    }
    
    .bio-passions-wrapper {
        grid-template-columns: 1fr;
    }
    
    .bio-passions-wrapper .bio-passions-grid {
        order: 2;
    }
    
    .bio-passions-wrapper .bio-passions-image {
        order: 1;
    }
    
    .bio-engagement-image {
        max-height: 250px;
    }
    
    .bio-passions-image {
        max-height: 250px;
    }
}
/* ============================================================ */
/* PAGE EXPERTISE - HERO AVEC IMAGE                              */
/* ============================================================ */

/* Hero grid avec image */
.expertise-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.expertise-hero-content {
    color: var(--white);
}

.expertise-hero-content .section-tag {
    background: rgba(232, 168, 56, 0.15);
    color: var(--gold);
}

.expertise-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.expertise-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
}

.expertise-hero-description {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 650px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.expertise-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 100%;
}

/* Image hero */
.expertise-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.expertise-image-wrapper {
    position: relative;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.expertise-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expertise-image-ring {
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border-radius: 50%;
    border: 2px solid rgba(232, 168, 56, 0.2);
    animation: spin-ring 20s linear infinite;
}

@keyframes spin-ring {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.expertise-image-ring::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(232, 168, 56, 0.5);
}

/* ============================================================ */
/* PAGE EXPERTISE - HERO AVEC IMAGE                              */
/* ============================================================ */

/* --- TAILLE DE BASE (DESKTOP) --- */
.expertise-image-wrapper {
    position: relative;
    width: 420px;          /* Augmenté : avant 340px */
    height: 420px;         /* Augmenté : avant 340px */
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.expertise-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expertise-image-ring {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    border: 2px solid rgba(232, 168, 56, 0.2);
    animation: spin-ring 20s linear infinite;
}

@keyframes spin-ring {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.expertise-image-ring::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(232, 168, 56, 0.5);
}

/* ============================================================ */
/* RESPONSIVE - EXPERTISE HERO                                   */
/* ============================================================ */

/* --- TABLETTE (max-width: 992px) --- */
@media (max-width: 992px) {
    .expertise-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .expertise-hero-description {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .expertise-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
        margin: 0 auto;
    }
    
    .expertise-image-wrapper {
        width: 340px;          /* Augmenté : avant 260px */
        height: 340px;         /* Augmenté : avant 260px */
    }
}

/* --- MOBILE (max-width: 768px) --- */
@media (max-width: 768px) {
    .expertise-hero-content h1 {
        font-size: 2rem;
    }
    
    .expertise-hero-subtitle {
        font-size: 1rem;
    }
    
    .expertise-hero-description {
        font-size: 0.9rem;
    }
    
    .expertise-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .expertise-stat-number {
        font-size: 1.4rem;
    }
    
    .expertise-stat-label {
        font-size: 0.6rem;
    }
    
    .expertise-image-wrapper {
        width: 280px;          /* Augmenté : avant 200px */
        height: 280px;         /* Augmenté : avant 200px */
    }
}

/* --- PETIT MOBILE (max-width: 480px) --- */
@media (max-width: 480px) {
    .expertise-hero-content h1 {
        font-size: 1.6rem;
    }
    
    .expertise-image-wrapper {
        width: 220px;          /* Augmenté : avant 160px */
        height: 220px;         /* Augmenté : avant 160px */
    }
}

/* ============================================================ */
/* PAGE PRESTATIONS - HERO AVEC IMAGE                            */
/* ============================================================ */

/* Hero grid avec image */
.prestations-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.prestations-hero-content {
    color: var(--white);
}

.prestations-hero-content .section-tag {
    background: rgba(232, 168, 56, 0.15);
    color: var(--gold);
}

.prestations-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.prestations-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
}

.prestations-hero-description {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 650px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.prestations-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 100%;
}

/* Image hero */
.prestations-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.prestations-image-wrapper {
    position: relative;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.prestations-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prestations-image-ring {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    border: 2px solid rgba(232, 168, 56, 0.2);
    animation: spin-ring 20s linear infinite;
}

@keyframes spin-ring {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.prestations-image-ring::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(232, 168, 56, 0.5);
}

/* ============================================================ */
/* RESPONSIVE - PRESTATIONS HERO                                 */
/* ============================================================ */

@media (max-width: 992px) {
    .prestations-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .prestations-hero-description {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .prestations-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
        margin: 0 auto;
    }
    
    .prestations-image-wrapper {
        width: 340px;
        height: 340px;
    }
}

@media (max-width: 768px) {
    .prestations-hero-content h1 {
        font-size: 2rem;
    }
    
    .prestations-hero-subtitle {
        font-size: 1rem;
    }
    
    .prestations-hero-description {
        font-size: 0.9rem;
    }
    
    .prestations-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .prestations-stat-number {
        font-size: 1.4rem;
    }
    
    .prestations-stat-label {
        font-size: 0.6rem;
    }
    
    .prestations-image-wrapper {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 480px) {
    .prestations-hero-content h1 {
        font-size: 1.6rem;
    }
    
    .prestations-image-wrapper {
        width: 220px;
        height: 220px;
    }
}
/* ============================================================ */
/* PAGE PARCOURS - HERO AVEC IMAGE                               */
/* ============================================================ */

/* Hero grid avec image */
.parcours-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.parcours-hero-content {
    color: var(--white);
}

.parcours-hero-content .section-tag {
    background: rgba(232, 168, 56, 0.15);
    color: var(--gold);
}

.parcours-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.parcours-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
}

.parcours-hero-description {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 650px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.parcours-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 100%;
}

/* Image hero */
.parcours-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.parcours-image-wrapper {
    position: relative;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.parcours-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.parcours-image-ring {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    border: 2px solid rgba(232, 168, 56, 0.2);
    animation: spin-ring 20s linear infinite;
}

@keyframes spin-ring {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.parcours-image-ring::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(232, 168, 56, 0.5);
}

/* ============================================================ */
/* RESPONSIVE - PARCOURS HERO                                    */
/* ============================================================ */

@media (max-width: 992px) {
    .parcours-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .parcours-hero-description {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .parcours-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
        margin: 0 auto;
    }
    
    .parcours-image-wrapper {
        width: 340px;
        height: 340px;
    }
}

@media (max-width: 768px) {
    .parcours-hero-content h1 {
        font-size: 2rem;
    }
    
    .parcours-hero-subtitle {
        font-size: 1rem;
    }
    
    .parcours-hero-description {
        font-size: 0.9rem;
    }
    
    .parcours-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .parcours-stat-number {
        font-size: 1.4rem;
    }
    
    .parcours-stat-label {
        font-size: 0.6rem;
    }
    
    .parcours-image-wrapper {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 480px) {
    .parcours-hero-content h1 {
        font-size: 1.6rem;
    }
    
    .parcours-image-wrapper {
        width: 220px;
        height: 220px;
    }
}

/* ============================================================ */
/* PAGE INTERNATIONAL - HERO AVEC IMAGE                          */
/* ============================================================ */

/* Hero grid avec image */
.international-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.international-hero-content {
    color: var(--white);
}

.international-hero-content .section-tag {
    background: rgba(232, 168, 56, 0.15);
    color: var(--gold);
}

.international-hero-content h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.international-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
}

.international-hero-description {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 650px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.international-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 100%;
}

/* Image hero */
.international-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.international-image-wrapper {
    position: relative;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.international-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.international-image-ring {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    border: 2px solid rgba(232, 168, 56, 0.2);
    animation: spin-ring 20s linear infinite;
}

@keyframes spin-ring {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.international-image-ring::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(232, 168, 56, 0.5);
}

/* ============================================================ */
/* RESPONSIVE - INTERNATIONAL HERO                               */
/* ============================================================ */

@media (max-width: 992px) {
    .international-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .international-hero-description {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .international-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
        margin: 0 auto;
    }
    
    .international-image-wrapper {
        width: 340px;
        height: 340px;
    }
}

@media (max-width: 768px) {
    .international-hero-content h1 {
        font-size: 2rem;
    }
    
    .international-hero-subtitle {
        font-size: 1rem;
    }
    
    .international-hero-description {
        font-size: 0.9rem;
    }
    
    .international-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .international-stat-number {
        font-size: 1.4rem;
    }
    
    .international-stat-label {
        font-size: 0.6rem;
    }
    
    .international-image-wrapper {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 480px) {
    .international-hero-content h1 {
        font-size: 1.6rem;
    }
    
    .international-image-wrapper {
        width: 220px;
        height: 220px;
    }
}
/* ============================================================ */
/* EXTRATS DES PUBLICATIONS - TRONCATURE                        */
/* ============================================================ */

.publication-extrait {
    margin: 12px 0;
    padding: 12px 16px;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--gold);
    max-width: 100%;
    overflow: hidden;
}

.publication-extrait h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.publication-extrait blockquote {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text);
    margin: 0;
    line-height: 1.6;
    /* ===== TRONCATURE À 5 LIGNES ===== */
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(1.6em * 5); /* fallback */
}

.publication-extrait blockquote::before {
    content: '"';
    color: var(--gold);
    font-weight: 700;
}

.publication-extrait blockquote::after {
    content: '"';
    color: var(--gold);
    font-weight: 700;
}

/* ===== SI VOUS VOULEZ UN LIEN "Lire la suite" ===== */
.publication-extrait .read-more {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.publication-extrait .read-more:hover {
    color: var(--gold);
}
/* ============================================================ */
/* FOOTER NEWSLETTER - NARROW                                   */
/* ============================================================ */

.footer-newsletter-wrapper {
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius);
    padding: 30px 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(255,255,255,0.06);
}

.footer-newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-newsletter-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.footer-newsletter-text p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.footer-newsletter-form {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    min-width: 320px;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    color: var(--white);
    font-size: 0.85rem;
    min-height: 44px;
    transition: border-color 0.3s;
}

.footer-newsletter-form input::placeholder {
    color: rgba(255,255,255,0.4);
}

.footer-newsletter-form input:focus {
    border-color: var(--gold);
    outline: none;
}

.footer-newsletter-form button {
    padding: 10px 24px;
    background: var(--gold);
    color: var(--primary-dark);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 44px;
}

.footer-newsletter-form button:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* ============================================================ */
/* RESPONSIVE - FOOTER NEWSLETTER                               */
/* ============================================================ */

@media (max-width: 768px) {
    .footer-newsletter-wrapper {
        padding: 24px 20px;
    }
    
    .footer-newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .footer-newsletter-form {
        min-width: 100%;
        flex-direction: column;
    }
    
    .footer-newsletter-form button {
        justify-content: center;
    }
}
/* ============================================================ */
/* FOOTER - MENTION DONSYL                                      */
/* ============================================================ */

.footer-credit .footer-donsyl {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.footer-credit .footer-donsyl:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.footer-credit .footer-donsyl i {
    font-size: 0.8rem;
}
/* ============================================================ */
/* BOUTON RETOUR EN HAUT                                        */
/* ============================================================ */

.footer-back-to-top {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 20px;
}

.back-to-top-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--gold);
    color: var(--primary-dark);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(232, 168, 56, 0.2);
}

.back-to-top-btn:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(232, 168, 56, 0.35);
}

.back-to-top-btn i {
    font-size: 1rem;
}

/* ===== VARIANTE FIXE EN BAS À DROITE ===== */
.back-to-top-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.back-to-top-float.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top-float .back-to-top-btn {
    width: 50px;
    height: 50px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(232, 168, 56, 0.3);
}

.back-to-top-float .back-to-top-btn span {
    display: none;
}

.back-to-top-float .back-to-top-btn i {
    font-size: 1.2rem;
}
/* ============================================================ */
/* BOUTON RETOUR EN HAUT                                        */
/* ============================================================ */

.footer-back-to-top {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 0 8px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.back-to-top-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--gold);
    color: var(--primary-dark);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(232, 168, 56, 0.2);
}

.back-to-top-btn:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(232, 168, 56, 0.35);
}

.back-to-top-btn i {
    font-size: 1rem;
}

/* ============================================================ */
/* BOUTON RETOUR EN HAUT - FLOTTANT BAS DROITE                 */
/* ============================================================ */

.back-to-top-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.back-to-top-float.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top-inner {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 20px rgba(232, 168, 56, 0.35);
    transition: all 0.3s;
}

.back-to-top-inner:hover {
    background: var(--gold-light);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 35px rgba(232, 168, 56, 0.5);
}

.back-to-top-inner:active {
    transform: scale(0.95);
}

/* ============================================================ */
/* RESPONSIVE                                                    */
/* ============================================================ */
@media (max-width: 768px) {
    .back-to-top-float {
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top-inner {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .back-to-top-float {
        bottom: 16px;
        right: 16px;
    }
    
    .back-to-top-inner {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ============================================================ */
/* TOP BAR - Contacts et réseaux sociaux                         */
/* ============================================================ */

/* ===== VARIABLES ===== */
:root {
    --topbar-height: 40px;
    --navbar-height: 80px;
}

/* ===== TOP BAR ===== */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);
    padding: 6px 0;
    font-size: 0.75rem;
    border-bottom: 2px solid var(--gold);
    height: var(--topbar-height);
    display: flex;
    align-items: center;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}

/* ===== GAUCHE ===== */
.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    transition: var(--transition);
    white-space: nowrap;
    padding: 2px 6px;
    border-radius: 4px;
}

.top-bar-contact:hover,
.top-bar-contact:focus {
    color: var(--gold);
    background: rgba(232, 168, 56, 0.1);
}

.top-bar-contact i {
    color: var(--gold);
    font-size: 0.7rem;
    width: 16px;
    text-align: center;
}

/* ===== DROITE ===== */
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
    transition: var(--transition);
}

.social-icon:hover,
.social-icon:focus {
    background: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.lang-switch-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.12);
    transition: var(--transition);
    white-space: nowrap;
}

.lang-switch-btn:hover,
.lang-switch-btn:focus {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary-dark);
}

.lang-switch-btn i {
    font-size: 0.65rem;
}

/* ===== BODY PADDING ===== */
body {
    padding-top: calc(var(--topbar-height) + var(--navbar-height));
}

/* ============================================================ */
/* RESPONSIVE - TABLETTE (max-width: 992px)                     */
/* ============================================================ */
@media (max-width: 992px) {
    :root {
        --topbar-height: 36px;
        --navbar-height: 70px;
    }
    
    .top-bar {
        padding: 4px 0;
    }
    
    .top-bar-contact {
        font-size: 0.65rem;
    }
    
    .top-bar-contact span {
        font-size: 0.65rem;
    }
}

/* ============================================================ */
/* RESPONSIVE - MOBILE (max-width: 768px)                       */
/* ============================================================ */
@media (max-width: 768px) {
    :root {
        --topbar-height: 32px;
        --navbar-height: 62px;
    }
    
    .top-bar {
        padding: 3px 0;
    }
    
    /* Masquer le texte du téléphone et de l'email, garder les icônes */
    .top-bar-left .top-bar-contact span {
        display: none;
    }
    
    .top-bar-left .top-bar-contact i {
        font-size: 0.85rem;
        width: auto;
    }
    
    .top-bar-left {
        gap: 10px;
    }
    
    /* Masquer les réseaux sociaux moins importants */
    .top-bar-right .social-icon:nth-child(4),
    .top-bar-right .social-icon:nth-child(5) {
        display: none;
    }
    
    .social-icon {
        width: 24px;
        height: 24px;
        font-size: 0.6rem;
    }
    
    .lang-switch-btn span {
        display: none;
    }
    
    .lang-switch-btn {
        padding: 2px 8px;
        font-size: 0.65rem;
    }
    
    .lang-switch-btn i {
        font-size: 0.8rem;
    }
}

/* ============================================================ */
/* RESPONSIVE - PETIT MOBILE (max-width: 480px)                 */
/* ============================================================ */
@media (max-width: 480px) {
    :root {
        --topbar-height: 28px;
        --navbar-height: 56px;
    }
    
    .top-bar {
        padding: 2px 0;
    }
    
    .top-bar-left .top-bar-contact i {
        font-size: 0.7rem;
    }
    
    .top-bar-right .social-icon:nth-child(3) {
        display: none;
    }
    
    .social-icon {
        width: 20px;
        height: 20px;
        font-size: 0.5rem;
    }
    
    .lang-switch-btn {
        padding: 1px 6px;
        font-size: 0.6rem;
    }
    
    .lang-switch-btn i {
        font-size: 0.7rem;
    }
}

/* ============================================================ */
/* TÉLÉCHARGEMENT CV SUR LA PAGE CONTACT                        */
/* ============================================================ */

.contact-cv {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(21, 90, 182, 0.08);
    margin-top: 20px;
    transition: var(--transition);
}

.contact-cv:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.contact-cv-icon {
    width: 44px;
    height: 44px;
    background: #e74c3c;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-cv-text {
    flex: 1;
}

.contact-cv-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.contact-cv-text p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

.contact-cv .btn-sm {
    flex-shrink: 0;
}

/* ============================================================ */
/* RESPONSIVE                                                     */
/* ============================================================ */
@media (max-width: 768px) {
    .contact-cv {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .contact-cv .btn-sm {
        width: 100%;
        justify-content: center;
    }
}