/* ==========================================
   FOBE Asbl - Enhancements v4
   New features: preloader, carousel, likes,
   multi-lang, footer, contact, responsive
   ========================================== */

/* ==========================================
   PRELOADER — Circular Social Logos
   ========================================== */
.preloader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    transition: opacity 0.7s ease, visibility 0.7s ease;
    flex-direction: column;
    gap: 0;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-circle-wrap {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.preloader-logo-center {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
    background: white;
    padding: 8px;
    box-shadow: 0 0 40px rgba(26,86,219,0.6);
    animation: preloaderPulse 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes preloaderPulse {
    0%,100% { transform: scale(1); box-shadow: 0 0 30px rgba(26,86,219,0.5); }
    50% { transform: scale(1.06); box-shadow: 0 0 55px rgba(26,86,219,0.8); }
}

/* Orbiting ring */
.preloader-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #1a56db;
    border-right-color: rgba(26,86,219,0.3);
    animation: spinRing 2.4s linear infinite;
}
.preloader-ring-2 {
    inset: 8px;
    border-top-color: rgba(5,150,105,0.8);
    border-right-color: transparent;
    border-bottom-color: rgba(5,150,105,0.3);
    animation: spinRing 3s linear infinite reverse;
}
@keyframes spinRing {
    to { transform: rotate(360deg); }
}

/* Social icons orbiting */
.preloader-socials {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    animation: spinSocials 6s linear infinite;
}
.preloader-social-icon {
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    animation: counterSpin 6s linear infinite;
}
@keyframes spinSocials { to { transform: rotate(360deg); } }
@keyframes counterSpin { to { transform: rotate(-360deg); } }

.preloader-social-icon.fb { background: #1877f2; top: 0; left: 50%; transform: translateX(-50%); }
.preloader-social-icon.tw { background: #1da1f2; top: 50%; right: 0; transform: translateY(-50%); }
.preloader-social-icon.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); bottom: 0; left: 50%; transform: translateX(-50%); }
.preloader-social-icon.li { background: #0077b5; top: 50%; left: 0; transform: translateY(-50%); }

.preloader-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 500;
    animation: preloaderFade 1.5s ease-in-out infinite alternate;
}
.preloader-progress-wrap {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1.25rem;
}
.preloader-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #1a56db, #f59e0b, #059669);
    border-radius: 10px;
    animation: preloaderLoad 1.2s ease forwards;
}
@keyframes preloaderLoad { from { width: 0; } to { width: 100%; } }
@keyframes preloaderFade { from { opacity: 0.5; } to { opacity: 1; } }

/* ==========================================
   IMAGE SCROLLING TICKER — All pages blue sections
   ========================================== */
.img-ticker-section {
    width: 100%;
    overflow: hidden;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 1rem 0;
    position: relative;
    z-index: 2;
}
.img-ticker-section::before,
.img-ticker-section::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 3;
    pointer-events: none;
}
.img-ticker-section::before {
    left: 0;
    background: linear-gradient(to right, rgba(15,23,42,0.9) 0%, transparent 100%);
}
.img-ticker-section::after {
    right: 0;
    background: linear-gradient(to left, rgba(15,23,42,0.9) 0%, transparent 100%);
}

.img-ticker-track {
    display: flex;
    gap: 1rem;
    animation: ticker-scroll 35s linear infinite;
    will-change: transform;
    align-items: center;
}
.img-ticker-track:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-img-item {
    flex-shrink: 0;
    width: 200px;
    height: 130px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
    border: 2px solid rgba(255,255,255,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.ticker-img-item:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.35);
    z-index: 5;
}
.ticker-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.ticker-img-item:hover img { transform: scale(1.1); }

.ticker-img-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(10,15,40,0.85) 0%, transparent 100%);
    color: white;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.6rem 0.6rem 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.ticker-img-item:hover .ticker-img-label { opacity: 1; }

/* White section ticker variant */
.img-ticker-section.light {
    background: rgba(26,86,219,0.04);
    border-color: rgba(26,86,219,0.12);
}
.img-ticker-section.light::before {
    background: linear-gradient(to right, rgba(249,250,251,0.95) 0%, transparent 100%);
}
.img-ticker-section.light::after {
    background: linear-gradient(to left, rgba(249,250,251,0.95) 0%, transparent 100%);
}

/* ==========================================
   LIKE BUTTON SYSTEM
   ========================================== */
.like-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: 2px solid var(--gray-200);
    color: var(--gray-500);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1);
    font-family: var(--font-primary);
    user-select: none;
    position: relative;
    overflow: visible;
}
.like-btn i {
    font-size: 1rem;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), color 0.25s;
}
.like-btn:hover {
    border-color: #ef4444;
    color: #ef4444;
    background: #fef2f2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239,68,68,0.2);
}
.like-btn.liked {
    border-color: #ef4444;
    color: #ef4444;
    background: #fef2f2;
}
.like-btn.liked i {
    color: #ef4444;
    transform: scale(1.3);
    animation: heartBeat 0.4s ease;
}
@keyframes heartBeat {
    0% { transform: scale(1); }
    30% { transform: scale(1.5); }
    60% { transform: scale(1.2); }
    100% { transform: scale(1.3); }
}
.like-btn.just-liked {
    animation: likeBounce 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes likeBounce {
    0% { transform: translateY(-2px) scale(1); }
    50% { transform: translateY(-6px) scale(1.1); }
    100% { transform: translateY(-2px) scale(1); }
}

/* Floating heart particle */
.like-particle {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: #ef4444;
    font-size: 1.2rem;
    pointer-events: none;
    animation: floatUp 0.8s ease forwards;
    z-index: 100;
}
@keyframes floatUp {
    0% { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
    100% { opacity: 0; transform: translateX(-50%) translateY(-40px) scale(0.5); }
}

/* Share button */
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: 2px solid var(--gray-200);
    color: var(--gray-500);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: var(--font-primary);
}
.share-btn:hover {
    border-color: #1a56db;
    color: #1a56db;
    background: #eff6ff;
    transform: translateY(-2px);
}

/* ==========================================
   LANGUAGE SWITCHER
   ========================================== */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    padding: 0.25rem;
    margin-left: 0.5rem;
    flex-shrink: 0;
}
.navbar.scrolled .lang-switcher {
    background: var(--gray-100);
    border-color: var(--gray-200);
}
.lang-btn {
    padding: 0.2rem 0.65rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    background: none;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: var(--font-primary);
    border: none;
    line-height: 1.8;
}
.navbar.scrolled .lang-btn { color: var(--gray-500); }
.lang-btn.active {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.navbar.scrolled .lang-btn.active {
    background: var(--primary-color);
    color: white;
}
.lang-btn:hover:not(.active) {
    color: white;
    background: rgba(255,255,255,0.15);
}
.navbar.scrolled .lang-btn:hover:not(.active) {
    color: var(--primary-color);
    background: var(--primary-light);
}

/* Hide/show language content */
[data-lang-en] { display: none; }
body.lang-en [data-lang-fr] { display: none; }
body.lang-en [data-lang-en] { display: revert; }

/* ==========================================
   FOOTER — Redesigned
   ========================================== */
.footer {
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 60%, #0f172a 100%);
    color: rgba(255,255,255,0.8);
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1a56db, #f59e0b, #059669, #7c3aed, #1a56db);
    background-size: 200% 100%;
    animation: footerBorderAnim 4s linear infinite;
}
@keyframes footerBorderAnim {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 1024px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}

.footer-brand {}
.footer-logo-img {
    height: 60px;
    width: auto;
    border-radius: 10px;
    padding: 5px 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    margin-bottom: 1.25rem;
    object-fit: contain;
}
.footer-tagline {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}
.footer-description {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    margin-bottom: 1.75rem;
}

.footer-social-grid {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.footer-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.footer-social-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    opacity: 0;
    transition: opacity 0.2s;
}
.footer-social-btn:hover::before { opacity: 1; }
.footer-social-btn:hover { transform: translateY(-5px) scale(1.1); box-shadow: 0 8px 20px rgba(0,0,0,0.3); }
.footer-social-btn.fb { background: #1877f2; }
.footer-social-btn.tw { background: #1da1f2; }
.footer-social-btn.ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.footer-social-btn.yt { background: #ff0000; }
.footer-social-btn.li { background: #0077b5; }
.footer-social-btn.wa { background: #25d366; }

.footer-col-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    position: relative;
}
.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0;
    width: 30px; height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
}
.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.footer-nav-list a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.2rem 0;
}
.footer-nav-list a i {
    font-size: 0.7rem;
    color: var(--accent-color);
    transition: transform 0.2s;
}
.footer-nav-list a:hover {
    color: white;
    padding-left: 0.35rem;
}
.footer-nav-list a:hover i { transform: translateX(3px); }

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}
.footer-contact-list .icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(26,86,219,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.footer-contact-list .icon-wrap i { color: #60a5fa; font-size: 0.8rem; }
.footer-contact-list a {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
    word-break: break-all;
}
.footer-contact-list a:hover { color: white; }
.footer-contact-list .contact-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.2rem;
    display: block;
}

.footer-bottom-bar {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom-bar p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}
.footer-bottom-bar a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom-bar a:hover { color: white; }
.footer-credit {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}
.footer-credit strong { color: rgba(255,255,255,0.6); }

/* ==========================================
   CONTACT PAGE — Pro Redesign
   ========================================== */
.contact-hero-banner {
    background: linear-gradient(160deg, #0f172a 0%, #1a56db 60%, #059669 100%);
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
}
.contact-hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 3rem;
    align-items: start;
}
@media (max-width: 968px) {
    .contact-layout { grid-template-columns: 1fr; }
}

.contact-info-panel {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    position: sticky;
    top: 100px;
}
.contact-info-panel-header {
    background: linear-gradient(135deg, #1a56db 0%, #1e3a8a 100%);
    padding: 2.5rem;
    color: white;
}
.contact-info-panel-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.contact-info-panel-header p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.7;
}
.contact-info-items {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-100);
}
.contact-info-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
}
.contact-info-icon.blue { background: linear-gradient(135deg, #1a56db, #1e3a8a); }
.contact-info-icon.green { background: linear-gradient(135deg, #059669, #047857); }
.contact-info-icon.orange { background: linear-gradient(135deg, #f59e0b, #d97706); }
.contact-info-icon.purple { background: linear-gradient(135deg, #7c3aed, #5b21b6); }
.contact-info-text h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
}
.contact-info-text p, .contact-info-text a {
    font-size: 0.9rem;
    color: var(--gray-800);
    line-height: 1.6;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
    word-break: break-word;
}
.contact-info-text a:hover { color: var(--primary-color); }

.contact-form-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.contact-form-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}
.contact-form-card .form-subtitle {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.form-field {
    margin-bottom: 1.5rem;
}
.form-field label {
    display: block;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}
.form-field label .req { color: #ef4444; margin-left: 2px; }
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.875rem 1.125rem;
    border: 2px solid var(--gray-200);
    border-radius: 14px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: var(--gray-800);
    background: var(--gray-50);
    transition: all 0.25s ease;
    outline: none;
    -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(26,86,219,0.1);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--gray-400); }
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field select { cursor: pointer; }

.contact-map-embed {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    height: 380px;
    border: none;
    display: block;
    width: 100%;
    margin-top: 3rem;
}

/* ==========================================
   ACHIEVEMENTS — Pro Redesign
   ========================================== */
.achievement-v4-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
@media (max-width: 640px) { .achievement-v4-grid { grid-template-columns: 1fr; } }

.achievement-v4-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
}
.achievement-v4-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(26,86,219,0.15);
    border-color: transparent;
}
.achievement-v4-img {
    height: 230px;
    overflow: hidden;
    background: var(--gray-100);
    position: relative;
}
.achievement-v4-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.achievement-v4-card:hover .achievement-v4-img img { transform: scale(1.08); }

.achievement-v4-cat {
    position: absolute;
    top: 1rem; left: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.achievement-v4-cat.blue { background: rgba(26,86,219,0.85); color: white; }
.achievement-v4-cat.green { background: rgba(5,150,105,0.85); color: white; }
.achievement-v4-cat.purple { background: rgba(124,58,237,0.85); color: white; }
.achievement-v4-cat.orange { background: rgba(245,158,11,0.85); color: white; }

.achievement-v4-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.achievement-v4-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    line-height: 1.45;
}
.achievement-v4-body p {
    font-size: 0.89rem;
    color: var(--gray-600);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 1.25rem;
}
.achievement-v4-stats {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 12px;
}
.achievement-v4-stat {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gray-700);
}
.achievement-v4-stat i { color: var(--primary-color); font-size: 0.85rem; }

.achievement-v4-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
    margin-top: auto;
}

/* ==========================================
   VSBG PAGE — Images improved
   ========================================== */
.vsbg-gallery-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}
@media (max-width: 768px) { .vsbg-gallery-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .vsbg-gallery-row { grid-template-columns: 1fr; } }

.vsbg-gal-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    height: 260px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.35s ease;
    cursor: pointer;
}
.vsbg-gal-item:first-child {
    grid-column: span 2;
    height: 320px;
}
.vsbg-gal-item:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(124,58,237,0.2); }
.vsbg-gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.vsbg-gal-item:hover img { transform: scale(1.08); }
.vsbg-gal-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(10,15,40,0.9) 0%, transparent 100%);
    color: white;
    padding: 1.5rem 1.25rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ==========================================
   ACTIVITIES PAGE — Cards with Like
   ========================================== */
.act-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
    margin-top: auto;
    flex-wrap: wrap;
}

/* ==========================================
   ACTUALITES PAGE — Like system
   ========================================== */
.news-card-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

/* ==========================================
   POSTER / AFFICHE display
   ========================================== */
.poster-section {
    padding: 4rem 0;
    background: var(--gray-50);
}
.poster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.poster-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}
.poster-card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(0,0,0,0.15); }
.poster-card-img {
    height: 350px;
    overflow: hidden;
    background: var(--gray-100);
    position: relative;
}
.poster-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.poster-card-body { padding: 1.25rem; }
.poster-card-title { font-size: 0.95rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.35rem; }
.poster-card-desc { font-size: 0.82rem; color: var(--gray-500); line-height: 1.6; }

/* Lightbox for posters */
.poster-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10,15,40,0.95);
    z-index: 9990;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 2rem;
}
.poster-lightbox.open { opacity: 1; visibility: visible; }
.poster-lightbox-img {
    max-width: 90vw;
    max-height: 88vh;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    object-fit: contain;
}
.poster-lightbox-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    backdrop-filter: blur(10px);
}
.poster-lightbox-close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }

/* ==========================================
   PAGE HEADER uniform
   ========================================== */
.page-header-v4 {
    background: linear-gradient(160deg, #0f172a 0%, #1a56db 55%, #059669 100%);
    padding: 9rem 0 5rem;
    position: relative;
    overflow: hidden;
}
.page-header-v4.vsbg-header {
    background: linear-gradient(160deg, #0f172a 0%, #7c3aed 55%, #dc2626 100%);
}
.page-header-v4.contact-header {
    background: linear-gradient(160deg, #0f172a 0%, #1a56db 55%, #059669 100%);
}
.page-header-v4.achievements-header {
    background: linear-gradient(160deg, #0f172a 0%, #059669 55%, #1a56db 100%);
}
.page-header-v4::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-header-v4 .page-header-content { position: relative; z-index: 1; }
.page-header-v4 h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}
.page-header-v4 p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.78);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.breadcrumb-v4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
}
.breadcrumb-v4 a { color: rgba(255,255,255,0.6); transition: color 0.2s; text-decoration: none; }
.breadcrumb-v4 a:hover { color: white; }
.breadcrumb-v4 .sep { font-size: 0.6rem; }
.breadcrumb-v4 .current { color: var(--accent-color); font-weight: 600; }

/* ==========================================
   BACK TO TOP
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem; right: 1.5rem;
    width: 48px; height: 48px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(26,86,219,0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-4px); }

/* ==========================================
   UNIFORM SECTION STYLES
   ========================================== */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
    margin: 0;
}

/* CTA Section uniform */
.cta-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a56db 0%, #1e3a8a 50%, #059669 100%);
    overflow: hidden;
    text-align: center;
}
.cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='6'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}
.cta-content p { color: rgba(255,255,255,0.82); font-size: 1.05rem; margin-bottom: 2.5rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ==========================================
   RESPONSIVE FIXES
   ========================================== */
@media (max-width: 480px) {
    .img-ticker-section::before,
    .img-ticker-section::after { width: 60px; }
    .ticker-img-item { width: 160px; height: 105px; }
    .contact-form-card { padding: 1.75rem; }
    .contact-info-panel-header { padding: 1.75rem; }
}



/* =============================================
   PARTNERS PAGE — Professional Redesign
   ============================================= */
.partners-hero-banner {
  background: linear-gradient(135deg,#1a56db 0%,#059669 100%);
  padding: 4rem 0 3rem;
  text-align: center;
  color: white;
}
.partners-hero-banner h2 { font-size:clamp(1.6rem,4vw,2.5rem); font-weight:800; margin-bottom:1rem; }
.partners-hero-banner p { font-size:1.1rem; opacity:0.9; max-width:650px; margin:0 auto; }

.partner-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.partner-card-pro {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26,86,219,0.10);
  border: 1px solid rgba(26,86,219,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.partner-card-pro:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26,86,219,0.18);
}
.partner-card-header {
  padding: 2rem 2rem 1rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-bottom: 2px solid var(--gray-100);
}
.partner-card-logo {
  width: 80px; height: 80px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800;
  color: white; flex-shrink: 0;
  font-family: var(--font-display);
}
.partner-card-title h3 { font-size: 1.25rem; font-weight: 700; color: var(--gray-900); margin-bottom:0.25rem; }
.partner-card-title span { font-size: 0.85rem; color: var(--gray-500); }
.partner-card-body { padding: 1.5rem 2rem; flex: 1; }
.partner-card-body p { color: var(--gray-700); line-height: 1.8; font-size: 0.95rem; }
.partner-card-achievements { margin-top: 1.2rem; }
.partner-card-achievements h4 {
  font-size: 0.9rem; font-weight: 700; color: var(--gray-800);
  margin-bottom: 0.75rem; display:flex; align-items:center; gap:0.4rem;
}
.partner-card-achievements ul { list-style: none; padding:0; }
.partner-card-achievements li {
  padding: 0.35rem 0;
  color: var(--gray-600);
  font-size: 0.875rem;
  display: flex; align-items: flex-start; gap: 0.5rem;
}
.partner-card-achievements li i { color: var(--secondary-color); flex-shrink:0; margin-top:0.2rem; }
.partner-card-footer {
  padding: 1rem 2rem 1.5rem;
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.partner-domain-tag {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}

/* Partners logos wall */
.partner-logos-wall {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1.5rem; margin-top: 2rem;
}
.partner-logo-bubble {
  width: 110px; height: 110px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 800;
  color: #1a56db;
  text-align: center;
  padding: 0.5rem;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 2px solid rgba(26,86,219,0.08);
}
.partner-logo-bubble:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 28px rgba(26,86,219,0.20);
}

/* =============================================
   VSBG PAGE — Detraumatisation cards (WHITE TEXT)
   ============================================= */
.vsbg-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.vsbg-action-card {
  background: linear-gradient(135deg,#7c3aed 0%,#6d28d9 100%);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  color: white !important;
  box-shadow: 0 4px 20px rgba(124,58,237,0.25);
  transition: transform 0.3s, box-shadow 0.3s;
}
.vsbg-action-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(124,58,237,0.35);
}
.vsbg-action-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.18);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: white !important;
  margin-bottom: 1.25rem;
}
.vsbg-action-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: white !important;
  margin-bottom: 0.75rem;
}
.vsbg-action-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.92) !important;
  line-height: 1.7;
}
.vsbg-action-card a { color: rgba(255,255,255,0.85) !important; text-decoration: underline; }

/* VSBG History Timeline as Cards */
.vsbg-history-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.history-card {
  background: white;
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(26,86,219,0.09);
  border-left: 5px solid var(--primary-color);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.history-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: var(--primary-light);
  border-radius: 0 18px 0 80px;
  opacity: 0.5;
}
.history-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(26,86,219,0.15);
}
.history-card-year {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  line-height: 1;
}
.history-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}
.history-card-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
}
.history-card-icon {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  font-size: 2rem;
  color: var(--primary-color);
  opacity: 0.15;
}

/* Variant colors for history cards */
.history-card.green { border-left-color: #059669; }
.history-card.green .history-card-year { color: #059669; }
.history-card.green::before { background: #d1fae5; }
.history-card.purple { border-left-color: #7c3aed; }
.history-card.purple .history-card-year { color: #7c3aed; }
.history-card.purple::before { background: #ede9fe; }
.history-card.red { border-left-color: #dc2626; }
.history-card.red .history-card-year { color: #dc2626; }
.history-card.red::before { background: #fee2e2; }
.history-card.orange { border-left-color: #d97706; }
.history-card.orange .history-card-year { color: #d97706; }
.history-card.orange::before { background: #fef3c7; }

/* =============================================
   LANG SWITCHER — Clean Functional Design
   ============================================= */
.lang-switcher {
  display: flex;
  background: rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 3px;
  border: 1px solid rgba(255,255,255,0.25);
  gap: 2px;
}
.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.05em;
}
.lang-btn.active {
  background: white;
  color: var(--primary-dark);
}
.lang-btn:hover:not(.active) {
  background: rgba(255,255,255,0.2);
  color: white;
}
/* scrolled navbar lang-switcher */
.navbar.scrolled .lang-switcher {
  background: rgba(26,86,219,0.08);
  border-color: rgba(26,86,219,0.2);
}
.navbar.scrolled .lang-btn { color: var(--gray-600); }
.navbar.scrolled .lang-btn.active { background: var(--primary-color); color: white; }
.navbar.scrolled .lang-btn:hover:not(.active) { background: var(--primary-light); color: var(--primary-dark); }

/* =============================================
   FOOTER SOCIAL — YouTube button
   ============================================= */
.footer-social-btn.yt { background: #FF0000; }
.footer-social-btn.yt:hover { background: #cc0000; transform: translateY(-3px); }

/* =============================================
   GENERAL READABILITY FIXES
   ============================================= */
/* Ensure action-cards have readable text */
.action-card h4 { color: var(--gray-900) !important; }
.action-card p { color: var(--gray-700) !important; }

/* News card content text */
.news-card-content h3 { color: var(--gray-900) !important; }

/* Posters: responsive, not breaking layout */
.poster-thumb {
  max-width: 200px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.3s;
  object-fit: cover;
}
.poster-thumb:hover { transform: scale(1.04); }

/* =============================================
   BACK-TO-TOP BUTTON
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 48px; height: 48px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(26,86,219,0.35);
}
.back-to-top.visible { opacity:1; visibility:visible; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }



/* ============================================================
   FOBE v6 — Final Polish CSS
   ============================================================ */

/* ── FOOTER: no logo, brand name as text ───────────────────── */
.footer-brand-name {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  font-family: var(--font-display, 'Playfair Display', serif);
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
  line-height: 1;
}
.footer-logo-img { display: none !important; }

/* ── X / Twitter button — black bg, white X ───────────────── */
.footer-social-btn.tw-x {
  background: #000000;
  color: white;
  display: flex; align-items: center; justify-content: center;
}
.footer-social-btn.tw-x:hover { background: #333; transform: translateY(-3px); }
.footer-social-btn.tw-x svg { fill: white; width: 16px; height: 16px; }

/* Hide old .tw class if still present */
.footer-social-btn.tw { display: none; }

/* ── VISION / MISSION / VALEURS — Premium Cards ────────────── */
.vm-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.vm-premium-card {
  border-radius: 24px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s;
}
.vm-premium-card:hover { transform: translateY(-6px); }
.vm-premium-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  opacity: 0.12;
  background: white;
}
.vm-premium-card.vision-card {
  background: linear-gradient(135deg,#1a56db,#1e40af);
  color: white;
  box-shadow: 0 8px 32px rgba(26,86,219,0.30);
}
.vm-premium-card.mission-card {
  background: linear-gradient(135deg,#059669,#047857);
  color: white;
  box-shadow: 0 8px 32px rgba(5,150,105,0.30);
}
.vm-premium-card.values-card {
  background: linear-gradient(135deg,#7c3aed,#6d28d9);
  color: white;
  box-shadow: 0 8px 32px rgba(124,58,237,0.30);
}
.vm-premium-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.18);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  color: white;
  margin-bottom: 1.5rem;
}
.vm-premium-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: white !important;
  margin-bottom: 1rem;
  font-family: var(--font-display, 'Playfair Display', serif);
}
.vm-premium-card p, .vm-premium-card li {
  color: rgba(255,255,255,0.9) !important;
  font-size: 0.95rem;
  line-height: 1.8;
}
.vm-values-list { list-style: none; padding: 0; margin: 0; }
.vm-values-list li {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.vm-values-list li:last-child { border-bottom: none; }
.vm-values-list li i { color: rgba(255,255,255,0.85); font-size: 0.95rem; flex-shrink: 0; }

/* ── ORGANIGRAMME — Real Org Chart ──────────────────────────── */
.org-chart-wrap {
  overflow-x: auto;
  padding: 1rem 0 2rem;
}
.org-chart {
  min-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  padding-bottom: 1rem;
}
/* Rows */
.org-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  width: 100%;
}
/* Connector lines */
.org-row::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 2px; height: 40px;
  background: #1a56db;
}
.org-row:first-child::before { display: none; }

.org-connector-h {
  width: 100%;
  height: 2px;
  background: #1a56db;
  position: relative;
  margin: 0 auto;
  max-width: 660px;
}
.org-spacer { height: 40px; width: 2px; background: #1a56db; margin: 0 auto; }

/* Node boxes */
.org-node {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  min-width: 150px;
  max-width: 180px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 2px 12px rgba(26,86,219,0.08);
}
.org-node:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26,86,219,0.18);
  border-color: #1a56db;
}
.org-node.top {
  background: linear-gradient(135deg,#1a56db,#1e40af);
  border-color: #1a56db;
  min-width: 200px;
}
.org-node.top .org-node-icon, .org-node.top h4, .org-node.top p { color: white !important; }
.org-node.top .org-node-icon { background: rgba(255,255,255,0.2); }

.org-node.level2 {
  background: linear-gradient(135deg,#0ea5e9,#0284c7);
  border-color: #0ea5e9;
}
.org-node.level2 .org-node-icon, .org-node.level2 h4, .org-node.level2 p { color: white !important; }
.org-node.level2 .org-node-icon { background: rgba(255,255,255,0.2); }

.org-node.level3 {
  background: linear-gradient(135deg,#059669,#047857);
  border-color: #059669;
}
.org-node.level3 .org-node-icon, .org-node.level3 h4, .org-node.level3 p { color: white !important; }
.org-node.level3 .org-node-icon { background: rgba(255,255,255,0.2); }

.org-node-icon {
  width: 44px; height: 44px;
  background: var(--primary-light, #dbeafe);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-color, #1a56db);
  margin: 0 auto 0.75rem;
}
.org-node h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-900, #111827);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}
.org-node p {
  font-size: 0.72rem;
  color: var(--gray-500, #6b7280);
  line-height: 1.4;
}
.org-node.top h4 { font-size: 0.95rem; }

/* department row connector */
.dept-row-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* ── ZONES D'INTÉRÊT — Map Cards ────────────────────────────── */
.zones-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.zone-card {
  background: white;
  border-radius: 20px;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 20px rgba(26,86,219,0.09);
  border-top: 4px solid var(--primary-color,#1a56db);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.zone-card:hover { transform: translateY(-5px); box-shadow: 0 10px 32px rgba(26,86,219,0.16); }
.zone-card::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--primary-light,#dbeafe);
  opacity: 0.5;
}
.zone-card-icon {
  width: 56px; height: 56px;
  background: var(--primary-light,#dbeafe);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color,#1a56db);
  margin-bottom: 1.25rem;
}
.zone-card h4 { font-size: 1.05rem; font-weight: 700; color: #111827; margin-bottom: 0.5rem; }
.zone-card p { font-size: 0.875rem; color: #4b5563; line-height: 1.7; }
.zone-card .zone-badge {
  display: inline-block;
  background: var(--primary-light,#dbeafe);
  color: var(--primary-dark,#1e3a8a);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 12px;
  margin-top: 0.75rem;
}
/* green/orange/red zone variants */
.zone-card.green { border-top-color: #059669; }
.zone-card.green .zone-card-icon { background: #d1fae5; color: #059669; }
.zone-card.green .zone-badge { background: #d1fae5; color: #065f46; }
.zone-card.orange { border-top-color: #d97706; }
.zone-card.orange .zone-card-icon { background: #fef3c7; color: #d97706; }
.zone-card.orange .zone-badge { background: #fef3c7; color: #92400e; }
.zone-card.purple { border-top-color: #7c3aed; }
.zone-card.purple .zone-card-icon { background: #ede9fe; color: #7c3aed; }
.zone-card.purple .zone-badge { background: #ede9fe; color: #5b21b6; }

/* ── CONTACT: Pourquoi nous suivre — Reason Cards ─────────── */
.follow-reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.follow-reason-card {
  background: white;
  border-radius: 20px;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  border: 1px solid rgba(26,86,219,0.07);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.follow-reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(26,86,219,0.15);
}
.follow-reason-emoji {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}
.follow-reason-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.25rem;
  color: white;
}
.follow-reason-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.6rem;
}
.follow-reason-card p {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.7;
}
.follow-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.follow-social-link:hover { opacity: 0.8; }
.follow-social-link.fb-link { background: #1877F2; color: white; }
.follow-social-link.ig-link { background: linear-gradient(135deg,#E1306C,#833AB4); color: white; }
.follow-social-link.tw-link { background: #000; color: white; }
.follow-social-link.li-link { background: #0A66C2; color: white; }
.follow-social-link.wa-link { background: #25D366; color: white; }
.follow-social-link.yt-link { background: #FF0000; color: white; }

/* ── VSBG page — section spacing / fill ────────────────────── */
.vsbg-stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.vsbg-stat-box {
  background: white;
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(124,58,237,0.10);
  border-top: 4px solid #7c3aed;
}
.vsbg-stat-box .stat-num {
  font-size: 2rem; font-weight: 800;
  color: #7c3aed;
  font-family: var(--font-display,'Playfair Display',serif);
}
.vsbg-stat-box .stat-lbl { font-size: 0.8rem; color: #4b5563; margin-top: 0.25rem; }
