/* ============================================
   INFO-EMPLOI - REDESIGN V2
   Basé sur la maquette Lovable
   ============================================ */

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

/* ===== CSS Variables ===== */
:root {
    --navy: #1F457A;
    --navy-dark: #1F2C47;
    --gold: #FAB505;
    --gold-dark: #D29804;
    --gold-light: #FFF3D0;
    --bg-body: #FAF8F5;
    --bg-card: #FFFFFF;
    --bg-muted: #F3F0EB;
    --text-primary: #1B2232;
    --text-muted: #6B7280;
    --border-color: #E8E3DB;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-lg: 16px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
    background-color: var(--bg-body) !important;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

a {
    font-family: 'Inter', system-ui, sans-serif;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

p {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== NAVBAR V2 ===== */
.navbar-v2 {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 0;
    height: 65px;
}

.navbar-v2 .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 65px;
}

.navbar-v2-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.navbar-v2-logo .logo-icon {
    width: 38px;
    height: 38px;
    background: var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-v2-logo .logo-icon i {
    color: var(--text-primary);
    font-size: 1.1rem;
}

.navbar-v2-logo .logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.navbar-v2-logo .logo-text span {
    color: var(--gold-dark);
}

.navbar-v2-logo img {
    height: 38px;
    border-radius: 10px;
}

.navbar-v2-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-v2-links li a,
.navbar-v2-links li button {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', system-ui, sans-serif;
}

.navbar-v2-links li a:hover,
.navbar-v2-links li button:hover {
    color: var(--text-primary);
    background: var(--bg-muted);
}

.navbar-v2-links li a.nav-active,
.navbar-v2-links li button.nav-active {
    color: var(--navy);
    font-weight: 700;
    background: rgba(31,69,122,0.08);
}

.navbar-v2-links .btn-publish-v2 {
    background: var(--navy) !important;
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    font-size: 0.88rem !important;
    transition: all 0.2s ease;
    border: none;
    display: inline-block;
}

.navbar-v2-links .btn-publish-v2:hover {
    background: var(--navy-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(31,69,122,0.3);
}

/* Mobile toggle */
.navbar-v2 .navbar-toggler {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 6px 10px;
}

.navbar-v2 .navbar-toggler i {
    color: var(--text-primary);
    font-size: 1.2rem;
}

/* Dropdown */
.navbar-v2 .dropdown-menu {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 8px;
    margin-top: 8px;
}

.navbar-v2 .dropdown-item {
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.88rem;
    color: var(--text-primary);
    font-family: 'Inter', system-ui, sans-serif;
}

.navbar-v2 .dropdown-item:hover {
    background: var(--bg-muted);
    color: var(--text-primary);
}

/* ===== HERO V2 ===== */
.hero-v2 {
    background: linear-gradient(135deg, #1F457A 0%, #162038 50%, #1F2C47 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
    z-index: 10;
}

/* Lueur dorée en haut à droite */
.hero-v2::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(250,181,5,0.1) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

/* Lueur bleue en bas à gauche */
.hero-v2::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(100,160,255,0.08) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

/* ===== PARTICULES FLOTTANTES ===== */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle linear infinite;
}

.p1 {
    width: 6px; height: 6px;
    background: rgba(250, 181, 5, 0.4);
    top: 20%; left: 10%;
    animation-duration: 8s; animation-delay: 0s;
}
.p2 {
    width: 4px; height: 4px;
    background: rgba(255, 255, 255, 0.2);
    top: 60%; left: 85%;
    animation-duration: 10s; animation-delay: 1s;
}
.p3 {
    width: 8px; height: 8px;
    background: rgba(250, 181, 5, 0.25);
    top: 75%; left: 25%;
    animation-duration: 12s; animation-delay: 2s;
}
.p4 {
    width: 3px; height: 3px;
    background: rgba(255, 255, 255, 0.3);
    top: 30%; left: 70%;
    animation-duration: 9s; animation-delay: 0.5s;
}
.p5 {
    width: 5px; height: 5px;
    background: rgba(250, 181, 5, 0.3);
    top: 50%; left: 50%;
    animation-duration: 11s; animation-delay: 3s;
}
.p6 {
    width: 4px; height: 4px;
    background: rgba(255, 255, 255, 0.15);
    top: 15%; left: 40%;
    animation-duration: 7s; animation-delay: 1.5s;
}
.p7 {
    width: 6px; height: 6px;
    background: rgba(250, 181, 5, 0.2);
    top: 80%; left: 65%;
    animation-duration: 13s; animation-delay: 4s;
}
.p8 {
    width: 3px; height: 3px;
    background: rgba(255, 255, 255, 0.25);
    top: 40%; left: 15%;
    animation-duration: 8s; animation-delay: 2.5s;
}

@keyframes floatParticle {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0) scale(1);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-120px) translateX(40px) scale(0.5);
    }
}

/* ===== HERO FLOATING ICONS ===== */
.hero-floating-icons {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
    animation: floatIcon 6s ease-in-out infinite;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.floating-icon svg {
    display: block;
}

/* Côté gauche */
.fi-1 {
    top: 15%;  left: 5%;
    animation-delay: 0s;
}
.fi-2 {
    top: 48%;  left: 9%;
    animation-delay: 1.5s;
}
.fi-3 {
    top: 76%;  left: 3%;
    animation-delay: 3s;
}

/* Côté droit */
.fi-4 {
    top: 12%;  right: 5%;
    animation-delay: 0.8s;
}
.fi-5 {
    top: 46%;  right: 3%;
    animation-delay: 2.2s;
}
.fi-6 {
    top: 75%;  right: 8%;
    animation-delay: 4s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px) rotate(var(--r, 0deg));
    }
    50% {
        transform: translateY(-14px) rotate(var(--r, 0deg));
    }
}

.fi-1 { --r: -12deg; }
.fi-2 { --r: 8deg; }
.fi-3 { --r: -6deg; }
.fi-4 { --r: 10deg; }
.fi-5 { --r: -8deg; }
.fi-6 { --r: 15deg; }

@media (max-width: 992px) {
    .hero-floating-icons {
        display: none;
    }
}

/* ===== HERO STATS ===== */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat-number {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero-stat-label {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.12);
}

/* ===== HERO WAVE ===== */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 60px;
    display: block;
}

.hero-v2 h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero-v2 h1 .text-gold {
    color: var(--gold);
}

.hero-v2 .hero-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 36px;
    font-weight: 400;
}

/* ===== SEARCH BOX V2 ===== */
.search-box-v2 {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    max-width: 700px;
    margin: 0 auto;
}

.search-box-v2 input[type="text"] {
    border: none;
    padding: 14px 20px;
    font-size: 0.95rem;
    background: var(--bg-muted);
    border-radius: var(--radius);
    flex: 1;
    outline: none;
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text-primary);
    min-width: 0;
}

.search-box-v2 input[type="text"]::placeholder {
    color: var(--text-muted);
}

/* Custom Select Dropdown */
.custom-select-v2 {
    position: relative;
    min-width: 220px;
    max-width: 260px;
    font-family: 'Inter', system-ui, sans-serif;
}
.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
    background: var(--bg-muted);
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: all 0.2s;
    user-select: none;
}
.custom-select-trigger:hover {
    background: var(--border-color);
}
.custom-select-trigger.open {
    background: var(--border-color);
}
.custom-select-trigger svg {
    flex-shrink: 0;
    transition: transform 0.25s ease;
    color: var(--text-muted);
}
.custom-select-trigger.open svg {
    transform: rotate(180deg);
}
.custom-select-options {
    position: absolute;
    width: 340px;
    background: var(--bg-card);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(31, 69, 122, 0.12), 0 4px 12px rgba(0,0,0,0.06);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.2s ease;
    z-index: 1000;
}
.custom-select-options.open {
    max-height: 360px;
    overflow: hidden;
    opacity: 1;
    display: flex;
    flex-direction: column;
}
.custom-select-list {
    overflow-y: auto;
    max-height: 280px;
    padding: 4px 0;
}
.custom-select-option {
    padding: 10px 18px;
    font-size: 0.88rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.custom-select-option:hover {
    background: var(--gold-light);
    color: var(--navy);
}
.custom-select-option.selected {
    background: var(--gold);
    color: var(--navy-dark);
    font-weight: 600;
}
/* Search input dans le dropdown */
.custom-select-search {
    padding: 8px 10px;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background: var(--bg-card);
    z-index: 1;
}
.custom-select-search input {
    width: 100%;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius);
    padding: 8px 12px;
    font-size: 0.85rem;
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text-primary);
    outline: none;
    background: var(--bg-muted);
    transition: border-color 0.2s;
}
.custom-select-search input:focus {
    border-color: var(--gold);
}
.custom-select-search input::placeholder {
    color: var(--text-muted);
}
.custom-select-empty {
    padding: 16px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}
/* Scrollbar pour le dropdown */
.custom-select-list::-webkit-scrollbar {
    width: 6px;
}
.custom-select-list::-webkit-scrollbar-track {
    background: transparent;
    margin: 6px 0;
}
.custom-select-list::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}
.custom-select-list::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

.search-box-v2 .btn-search-v2 {
    background: var(--gold);
    color: var(--text-primary);
    border: none;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-family: 'Inter', system-ui, sans-serif;
}

.search-box-v2 .btn-search-v2:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

/* Quick tags */
.quick-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.quick-tag {
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
}

.quick-tag:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
    text-decoration: none;
}
.quick-tag.active-tag {
    background: var(--gold);
    color: var(--navy-dark);
    font-weight: 600;
}

/* ===== SECTION V2 ===== */
.section-v2 {
    padding: 64px 0;
}

.section-v2-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-v2-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.section-v2-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ===== CATEGORY GRID V2 ===== */
.category-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 260px));
    gap: 16px;
    justify-content: center;
}

.category-card-v2 {
    background: var(--bg-card);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.category-card-v2:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--text-primary);
}

.category-icon-v2 {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.25s ease;
}

.category-icon-v2.blue { background: #EBF2FF; color: #3B82F6; }
.category-icon-v2.amber { background: #FFF7E0; color: #D97706; }
.category-icon-v2.green { background: #ECFDF5; color: #059669; }
.category-icon-v2.rose { background: #FFF1F2; color: #E11D48; }
.category-icon-v2.purple { background: #F3E8FF; color: #7C3AED; }
.category-icon-v2.cyan { background: #ECFEFF; color: #0891B2; }
.category-icon-v2.orange { background: #FFF7ED; color: #EA580C; }
.category-icon-v2.indigo { background: #EEF2FF; color: #4F46E5; }

.category-card-v2:hover .category-icon-v2 {
    transform: scale(1.08);
}

.category-name-v2 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
}

.category-count-v2 {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== JOB CARDS V2 ===== */
.section-jobs-v2 {
    background: var(--bg-muted);
}

.jobs-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.job-card-v2 {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px;
    border: 1.5px solid var(--border-color);
    transition: all 0.25s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.job-card-v2:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    text-decoration: none;
    color: inherit;
}

.job-logo-v2 {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    object-fit: contain;
    background: var(--bg-muted);
    padding: 8px;
    flex-shrink: 0;
}

.job-content-v2 {
    flex: 1;
    min-width: 0;
}

.job-title-v2 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.job-company-v2 {
    font-size: 0.85rem;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.job-meta-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
}

.job-meta-item-v2 {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.job-meta-item-v2 i {
    color: #9CA3AF;
    font-size: 0.78rem;
    width: 14px;
    text-align: center;
}

.job-tags-v2 {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.job-tag-v2 {
    font-size: 0.73rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 6px;
}

.job-tag-v2.cat {
    background: var(--gold-light);
    color: var(--gold-dark);
}

.job-tag-v2.type {
    background: #EBF2FF;
    color: var(--navy);
}

.job-date-v2 {
    font-size: 0.76rem;
    color: var(--text-muted);
}

/* "Voir toutes" button */
.btn-view-all-v2 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 28px;
    border: 1.5px solid var(--border-color);
    background: var(--bg-card);
    color: var(--text-primary);
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: 'Inter', system-ui, sans-serif;
}

.btn-view-all-v2:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* ===== PAGINATION V2 ===== */
.pagination-v2 {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 32px;
}

.pagination-v2 .page-link {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1.5px solid var(--border-color);
    transition: all 0.2s ease;
    font-family: 'Inter', system-ui, sans-serif;
}

.pagination-v2 .page-link:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.pagination-v2 .page-item.active .page-link {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--text-primary);
}

/* ===== FOOTER V2 ===== */
.footer-v2 {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 40px 0 0;
    color: var(--text-muted);
}

.footer-top-v2 {
    display: flex;
    gap: 48px;
    justify-content: space-between;
}

.footer-brand-v2 {
    flex: 0 0 280px;
}

.footer-col-v2 {
    flex: 0 0 auto;
}

.footer-v2 .footer-logo-v2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-v2 .footer-logo-v2 .logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-v2 .footer-logo-v2 .logo-icon i {
    color: var(--text-primary);
    font-size: 0.9rem;
}

.footer-v2 .footer-logo-v2 span {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-v2 .footer-description {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-v2 h5 {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 14px;
    font-family: 'Inter', system-ui, sans-serif;
}

.footer-v2-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-v2-links li {
    margin-bottom: 6px;
}

.footer-v2-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color 0.2s ease;
    font-family: 'Inter', system-ui, sans-serif;
}

.footer-v2-links a:hover {
    color: var(--gold-dark);
    text-decoration: none;
}

.footer-socials-v2 {
    display: flex;
    gap: 8px;
}

.footer-socials-v2 a {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--bg-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.2s ease;
    font-size: 0.8rem;
}

.footer-socials-v2 a:hover {
    background: var(--gold);
    color: var(--text-primary);
}

.footer-bottom-v2 {
    border-top: 1px solid var(--border-color);
    padding: 16px 0;
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-v2 p {
    font-size: 0.8rem;
    margin: 0;
    color: var(--text-muted);
}

.footer-bottom-v2 a {
    color: var(--gold-dark);
}

.footer-admin-link {
    color: var(--text-muted);
    font-size: 0.85rem;
    opacity: 0.4;
    transition: opacity 0.2s;
}

.footer-admin-link:hover {
    opacity: 1;
    color: var(--gold-dark);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .category-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-v2 h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-v2 {
        padding: 50px 0 40px;
    }
    .hero-v2 h1 {
        font-size: 1.8rem;
    }
    .search-box-v2 {
        flex-direction: column;
    }
    .custom-select-v2 {
        max-width: 100%;
        min-width: 100%;
    }
    .custom-select-options {
        left: 0;
        right: 0;
    }
    .category-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .jobs-grid-v2 {
        grid-template-columns: 1fr;
    }
    .job-card-v2 {
        flex-direction: column;
    }
    .navbar-v2 .navbar-collapse {
        background: #fff;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        padding: 8px 16px 16px;
        margin: 0 -15px;
        border-top: 1px solid var(--border-color);
    }
    .navbar-v2-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        width: 100%;
    }
    .navbar-v2-links li {
        width: 100%;
        border-bottom: 1px solid var(--bg-muted);
    }
    .navbar-v2-links li:last-child {
        border-bottom: none;
    }
    .navbar-v2-links li a,
    .navbar-v2-links li button {
        display: block;
        width: 100%;
        text-align: left;
        padding: 12px 8px;
        font-size: 0.95rem;
    }
    .navbar-v2-links .btn-publish-v2 {
        margin-top: 8px;
        text-align: center !important;
        display: block !important;
        width: 100% !important;
    }
    .navbar-v2-links .dropdown-menu {
        box-shadow: none;
        border: none;
        background: var(--bg-muted);
        border-radius: 8px;
        padding: 4px 0;
        margin: 0 0 4px;
    }
    .footer-top-v2 {
        flex-wrap: wrap;
        gap: 32px;
    }
    .footer-brand-v2 {
        flex: 0 0 100%;
    }
    .footer-col-v2 {
        flex: 1;
        min-width: 130px;
    }
    .footer-bottom-v2 {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .section-v2 {
        padding: 40px 0;
    }
}

/* ===== PARTENAIRES CAROUSEL ===== */
.section-partners-v2 {
    padding: 40px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
}

.partners-track-wrapper {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 80px, black calc(100% - 80px), transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 80px, black calc(100% - 80px), transparent);
}

.partners-track {
    display: flex;
    gap: 40px;
    width: max-content;
}

.partner-slide {
    flex-shrink: 0;
    width: 200px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 10px;
    border: 1.5px solid var(--border-color);
    transition: all 0.3s;
}

.partner-slide:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(250, 181, 5, 0.15);
}

.partner-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s;
}

.partner-slide:hover img {
    transform: scale(1.05);
}


/* ===== PUBLICITE SIDEBAR ===== */
.pub-sidebar-v2 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pub-sidebar-v2 img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    object-fit: cover;
}

/* ===== PAGE DETAIL OFFRE V2 ===== */

/* Hero compact */
.detail-hero-v2 {
    background: linear-gradient(135deg, #1F457A 0%, #1F2C47 100%);
    padding: 24px 0 32px;
    color: #fff;
}

.detail-back-link {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    transition: color 0.2s;
}
.detail-back-link:hover {
    color: #fff;
    text-decoration: none;
}

.detail-hero-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.detail-hero-logo {
    flex-shrink: 0;
}
.detail-hero-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: #fff;
    border-radius: 14px;
    padding: 8px;
}
.detail-logo-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: rgba(255,255,255,0.4);
}

.detail-hero-info {
    flex: 1;
}
.detail-hero-info h1 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: #fff;
    line-height: 1.3;
}
.detail-offre-num {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 6px;
    display: block;
}

.detail-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.detail-hero-meta span {
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 6px;
}
.detail-hero-meta i {
    color: var(--gold);
    font-size: 0.85rem;
}

.detail-hero-views {
    flex-shrink: 0;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}
.detail-hero-views i {
    color: var(--gold);
    margin-right: 4px;
}

/* Body */
.detail-body-v2 {
    padding: 32px 0 60px;
}

/* Info cards */
.detail-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.detail-info-card {
    background: var(--bg-card);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.detail-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.detail-info-icon.blue { background: #EBF2FF; color: #1F457A; }
.detail-info-icon.amber { background: var(--gold-light); color: #D29804; }
.detail-info-icon.green { background: #E8F5E9; color: #2E7D32; }

.detail-info-text {
    display: flex;
    flex-direction: column;
}
.detail-info-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 500;
}
.detail-info-value {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 600;
}

/* Section */
.detail-section-v2 {
    background: var(--bg-card);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 24px;
}
.detail-section-v2 h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.detail-section-v2 h2 i {
    color: var(--gold);
}

.detail-description-content {
    font-size: 0.92rem;
    color: var(--text-primary);
    line-height: 1.8;
}
.detail-description-content p {
    margin-bottom: 12px;
}
.detail-description-content strong {
    color: var(--navy);
}

/* Files */
.detail-files-v2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.detail-file-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg-muted);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-size: 0.88rem;
    transition: all 0.2s;
    border: 1.5px solid transparent;
}
.detail-file-link:hover {
    border-color: var(--gold);
    background: var(--gold-light);
    text-decoration: none;
    color: var(--text-primary);
}
.detail-file-link i:first-child {
    color: #E53935;
    font-size: 1.2rem;
}
.detail-file-link span {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.detail-file-link i:last-child {
    color: var(--text-muted);
}

/* Apply button */
.detail-apply-section {
    margin-bottom: 32px;
}
.detail-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--text-primary);
    padding: 14px 32px;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s;
}
.detail-apply-btn:hover {
    background: var(--gold-dark);
    text-decoration: none;
    color: var(--text-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(250, 181, 5, 0.3);
}

/* Sidebar */
.detail-sidebar-v2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 80px;
}
.detail-sidebar-card {
    background: var(--bg-card);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
}
.detail-sidebar-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

/* Dates */
.detail-date-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.detail-date-row:last-child {
    margin-bottom: 0;
}
.detail-date-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.detail-date-icon.green { background: #E8F5E9; color: #2E7D32; }
.detail-date-icon.red { background: #FFEBEE; color: #C62828; }

.detail-date-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
}
.detail-date-value {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 600;
}

/* Company */
.detail-company-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.detail-company-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    background: var(--bg-muted);
    border-radius: 10px;
    padding: 6px;
}
.detail-company-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Share */
.detail-share-links {
    display: flex;
    gap: 8px;
}
.detail-share-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    transition: all 0.2s;
}
.detail-share-btn:hover {
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}
.detail-share-btn.fb { background: #1877F2; }
.detail-share-btn.wa { background: #25D366; }
.detail-share-btn.tw { background: #1DA1F2; }
.detail-share-btn.em { background: var(--navy); }

/* Responsive detail */
@media (max-width: 768px) {
    .detail-hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .detail-hero-views {
        align-self: flex-start;
    }
    .detail-info-cards {
        grid-template-columns: 1fr;
    }
    .detail-section-v2 {
        padding: 20px;
    }
}

/* ============================================
   RESULTATS DE RECHERCHE - V2
   ============================================ */

/* Hero compact */
.results-hero-v2 {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 64px 0 12px;
    color: #fff;
}
.results-hero-v2 {
    position: relative;
    overflow: hidden;
}
.results-hero-v2 h1 {
    font-size: 2rem;
    font-weight: 800;
    margin: 16px 0 8px;
    color: #fff;
}
.results-hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
}
.results-hero-sub strong {
    color: var(--gold);
}
.results-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--navy-dark);
    font-weight: 700;
    font-size: 0.9rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-right: 4px;
}

/* Body layout */
.results-body-v2 {
    padding: 32px 0 60px;
}

/* Sidebar */
.results-sidebar-v2 {
    position: sticky;
    top: 90px;
}
.results-filter-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}
.results-filter-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.results-filter-card h3 i {
    color: var(--navy);
}
.results-filter-group {
    margin-bottom: 16px;
}
.results-filter-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.results-filter-input,
.results-filter-select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    background: var(--bg-body);
    color: var(--text-primary);
    transition: border-color 0.2s;
    outline: none;
}
.results-filter-input:focus,
.results-filter-select:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(31,69,122,0.1);
}
.results-filter-btn {
    width: 100%;
    padding: 12px;
    background: var(--gold);
    color: var(--navy-dark);
    border: none;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}
.results-filter-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

/* Empty state */
.results-empty-v2 {
    text-align: center;
    padding: 80px 20px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}
.results-empty-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.results-empty-icon i {
    font-size: 2rem;
    color: var(--text-muted);
}
.results-empty-v2 h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.results-empty-v2 p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 400px;
    margin: 0 auto 24px;
}
.results-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--navy);
    color: #fff;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}
.results-empty-btn:hover {
    background: var(--navy-dark);
    color: #fff;
    text-decoration: none;
}

/* Result cards list */
.results-list-v2 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Result card */
.result-card-v2 {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-primary);
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.result-card-v2:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--gold);
    text-decoration: none;
    color: var(--text-primary);
}

/* Card logo */
.result-card-logo {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-muted);
    display: flex;
    align-items: center;
    justify-content: center;
}
.result-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.result-logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-muted);
}
.result-logo-placeholder i {
    font-size: 1.4rem;
    color: var(--text-muted);
}

/* Card body */
.result-card-body {
    flex: 1;
    min-width: 0;
}
.result-card-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.result-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.result-card-meta span {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}
.result-card-meta i {
    font-size: 0.8rem;
    color: var(--navy);
}

/* Card right */
.result-card-right {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}
.result-type-badge {
    display: inline-block;
    padding: 5px 14px;
    background: var(--gold-light);
    color: var(--gold-dark);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    white-space: nowrap;
}
.result-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

/* Responsive - Results */
@media (max-width: 991px) {
    .results-body-v2 .col-lg-3 {
        margin-bottom: 24px;
    }
    .results-sidebar-v2 {
        position: static;
    }
}
@media (max-width: 767px) {
    .results-hero-v2 {
        padding: 85px 0 30px;
    }
    .results-hero-v2 h1 {
        font-size: 1.5rem;
    }
    .result-card-v2 {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
    }
    .result-card-logo {
        width: 48px;
        height: 48px;
    }
    .result-card-body h3 {
        white-space: normal;
    }
    .result-card-right {
        flex-direction: row;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }
}

/* ============================================
   CONTACT - V2
   ============================================ */

/* Hero compact */
.contact-hero-v2 {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 64px 0 12px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.contact-hero-v2 h1 {
    font-size: 2rem;
    font-weight: 800;
    margin: 16px 0 8px;
    color: #fff;
}
.contact-hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
}

/* Body */
.contact-body-v2 {
    padding: 36px 0 60px;
}

/* Alerts */
.contact-alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-alert-success {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #A5D6A7;
}
.contact-alert-error {
    background: #FFEBEE;
    color: #C62828;
    border: 1px solid #EF9A9A;
}

/* Form card */
.contact-form-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}
.contact-form-card h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-form-card h2 i {
    color: var(--navy);
}
.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.contact-form-group {
    margin-bottom: 18px;
}
.contact-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    background: var(--bg-body);
    color: var(--text-primary);
    transition: border-color 0.2s;
    outline: none;
    resize: vertical;
}
.contact-form-group input:focus,
.contact-form-group textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(31,69,122,0.1);
}
.contact-recaptcha {
    margin-bottom: 18px;
}
.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: var(--gold);
    color: var(--navy-dark);
    border: none;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.contact-submit-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

/* Info card */
.contact-info-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
}
.contact-info-card h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-info-card h2 i {
    color: var(--navy);
}
.contact-info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}
.contact-info-item:last-child {
    margin-bottom: 0;
}
.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, #2A5A9A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-icon i {
    font-size: 1rem;
    color: #fff;
}
.contact-info-item h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 2px;
}
.contact-info-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}
.contact-info-item a {
    color: var(--navy);
    text-decoration: none;
}
.contact-info-item a:hover {
    text-decoration: underline;
}

/* Map card */
.contact-map-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

/* Responsive contact */
@media (max-width: 767px) {
    .contact-hero-v2 {
        padding: 60px 0 10px;
    }
    .contact-form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-card,
    .contact-info-card {
        padding: 20px;
    }
    .col-lg-5 {
        margin-top: 24px;
    }
}

/* ============================================
   ABOUT - V2
   ============================================ */

.about-hero-v2 {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 80px 0 32px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-hero-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #fff;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.about-hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.about-hero-v2 h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    max-width: 600px;
    margin: 0 auto 12px;
    line-height: 1.3;
}
.about-hero-sub {
    font-size: 1.05rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Body */
.about-body-v2 {
    padding: 48px 0 60px;
}
.about-section-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 36px;
}

/* Cards row */
.about-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 40px;
}
.about-card-v2 {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}
.about-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.about-card-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}
.about-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.about-card-v2:hover .about-card-img img {
    transform: scale(1.05);
}
.about-card-content {
    padding: 24px;
}
.about-card-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.about-card-content p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* CTA */
.about-cta-v2 {
    text-align: center;
}
.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--navy-dark);
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.about-cta-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    color: var(--navy-dark);
    text-decoration: none;
}

/* Responsive about */
@media (max-width: 767px) {
    .about-hero-v2 {
        padding: 66px 0 24px;
    }
    .about-hero-v2 h1 {
        font-size: 1.4rem;
    }
    .about-cards-row {
        grid-template-columns: 1fr;
    }
    .about-card-img {
        height: 180px;
    }
}

/* ============================================
   FOURNISSEURS - V2
   ============================================ */

.fournisseur-hero-v2 {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 80px 0 28px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.fournisseur-hero-v2 h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
}
.fournisseur-hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    margin: 0 0 18px;
}
.fournisseur-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--gold);
    color: var(--navy-dark);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.fournisseur-hero-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
    color: var(--navy-dark);
    text-decoration: none;
}

/* Body */
.fournisseur-body-v2 {
    padding: 32px 0 60px;
}

/* Search bar */
.fournisseur-search-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 28px;
}
.fournisseur-search-form {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}
.fournisseur-search-input {
    flex: 1;
    min-width: 200px;
    position: relative;
}
.fournisseur-search-input i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
}
.fournisseur-search-input input {
    width: 100%;
    padding: 11px 14px 11px 38px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    background: var(--bg-body);
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.2s;
}
.fournisseur-search-input input:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(31,69,122,0.1);
}
.fournisseur-search-select {
    min-width: 220px;
}
.fournisseur-search-select select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    background: var(--bg-body);
    color: var(--text-primary);
    outline: none;
    cursor: pointer;
    transition: border-color 0.2s;
}
.fournisseur-search-select select:focus {
    border-color: var(--navy);
}
.fournisseur-search-btn {
    padding: 11px 22px;
    background: var(--gold);
    color: var(--navy-dark);
    border: none;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.fournisseur-search-btn:hover {
    background: var(--gold-dark);
}
.fournisseur-reset-btn {
    padding: 11px 14px;
    background: var(--bg-muted);
    color: var(--text-muted);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
}
.fournisseur-reset-btn:hover {
    background: var(--border-color);
    color: var(--text-primary);
}

/* Grid */
.fournisseur-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* Card */
.fournisseur-card-v2 {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}
.fournisseur-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.fournisseur-card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: var(--bg-muted);
    display: flex;
    align-items: center;
    justify-content: center;
}
.fournisseur-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.fournisseur-card-v2:hover .fournisseur-card-img img {
    transform: scale(1.05);
}
.fournisseur-card-body {
    padding: 20px;
}
.fournisseur-card-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px;
}
.fournisseur-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.fournisseur-card-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.fournisseur-card-info span {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}
.fournisseur-card-info i {
    color: var(--navy);
    width: 16px;
    text-align: center;
}
.fournisseur-card-info a {
    color: var(--navy);
    text-decoration: none;
}
.fournisseur-card-info a:hover {
    text-decoration: underline;
}

/* Empty state */
.fournisseur-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}
.fournisseur-empty h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 16px 0 6px;
}
.fournisseur-empty p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Responsive fournisseur */
@media (max-width: 767px) {
    .fournisseur-hero-v2 {
        padding: 66px 0 20px;
    }
    .fournisseur-hero-v2 h1 {
        font-size: 1.4rem;
    }
    .fournisseur-search-form {
        flex-direction: column;
    }
    .fournisseur-search-input,
    .fournisseur-search-select {
        min-width: 100%;
    }
    .fournisseur-search-btn {
        width: 100%;
        justify-content: center;
    }
    .fournisseur-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FORMULAIRE CANDIDATURE - V2
   ============================================ */

.formulaire-hero-v2 {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 64px 0 12px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.formulaire-hero-v2 h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin: 16px 0 8px;
}
.formulaire-hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
}

.formulaire-body-v2 {
    padding: 36px 0 60px;
}

.formulaire-card-v2 {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}
.formulaire-card-header {
    text-align: center;
    margin-bottom: 28px;
}
.formulaire-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), #2A5A9A);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.formulaire-card-icon i {
    font-size: 1.3rem;
    color: #fff;
}
.formulaire-card-header h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px;
}
.formulaire-card-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.formulaire-file-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px dashed var(--border-color);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    background: var(--bg-body);
    color: var(--text-primary);
    cursor: pointer;
    transition: border-color 0.2s;
}
.formulaire-file-input:hover {
    border-color: var(--navy);
}

/* ============================================
   INSCRIPTION - V2
   ============================================ */

.inscription-hero-v2 {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 64px 0 12px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.inscription-hero-v2 h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
}
.inscription-hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
}

.inscription-body-v2 {
    padding: 36px 0 60px;
}

.inscription-card-v2 {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.inscription-error {
    display: block;
    font-size: 0.8rem;
    color: #C62828;
    margin-top: 4px;
}

.inscription-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}
.inscription-checkbox input[type="checkbox"] {
    margin-top: 4px;
    accent-color: var(--navy);
}
.inscription-checkbox label {
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    margin: 0;
}

.inscription-login-link {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.inscription-login-link a {
    color: var(--navy);
    font-weight: 600;
    text-decoration: none;
}
.inscription-login-link a:hover {
    text-decoration: underline;
}

/* ============================================
   CV PAGE - V2
   ============================================ */

.cv-hero-v2 {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 64px 0 12px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cv-hero-v2 h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
}
.cv-hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
}

.cv-body-v2 {
    padding: 36px 0 60px;
    max-width: 850px;
}

/* Accordion sections */
.cv-section-v2 {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    margin-bottom: 16px;
    overflow: hidden;
}
.cv-section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    cursor: pointer;
    transition: background 0.2s;
}
.cv-section-header:hover {
    background: var(--bg-muted);
}
.cv-section-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), #2A5A9A);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cv-section-icon i {
    font-size: 0.95rem;
    color: #fff;
}
.cv-section-header h2 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}
.cv-chevron {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: transform 0.3s;
}
.cv-section-header:not(.collapsed) .cv-chevron {
    transform: rotate(180deg);
}
.cv-section-content {
    padding: 0 24px 24px;
    padding-left: 78px;
}
.cv-section-content p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 12px;
    text-align: justify;
}
.cv-section-content h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin: 20px 0 8px;
}

@media (max-width: 767px) {
    .cv-hero-v2 {
        padding: 60px 0 10px;
    }
    .cv-section-content {
        padding-left: 24px;
    }
}

/* ============================================
   BLOG / ACTUALITE - V2
   ============================================ */

.blog-hero-v2 {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 64px 0 12px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.blog-hero-v2 h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
}
.blog-hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
}

.blog-body-v2 {
    padding: 36px 0 60px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.blog-card-v2 {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: var(--text-primary);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.blog-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    color: var(--text-primary);
}
.blog-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-muted);
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.blog-card-v2:hover .blog-card-img img {
    transform: scale(1.05);
}
.blog-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 10px;
}
.blog-card-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0 0 16px;
    flex: 1;
}
.blog-card-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 767px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SERVICES - V2
   ============================================ */

.service-body-v2 {
    padding: 48px 0 60px;
}
.service-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card-v2 {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.service-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.service-card-icon i {
    font-size: 1.4rem;
    color: #fff;
}
.service-card-v2 h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.service-card-v2 p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 767px) {
    .service-grid-v2 {
        grid-template-columns: 1fr;
    }
}

/* ===== Utilities ===== */
.text-gold { color: var(--gold) !important; }
.bg-gold { background-color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }
