/* ========================================
   FOND ANIMÉ
======================================== */
.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-dark);
    z-index: -1;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* ========================================
   SECTION EXPÉRIENCES
======================================== */
.experiences-section {
    min-height: 100vh;
    background: transparent;
    padding: 120px 2rem 5rem;
    position: relative;
    z-index: 1;
}

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

/* Header Section */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-gold);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg,
        transparent 0%,
        var(--accent-gold) 10%,
        var(--accent-gold) 90%,
        transparent 100%);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 4rem;
}

.timeline-marker {
    position: absolute;
    left: 20px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--accent-gold);
    border: 4px solid var(--primary-dark);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
    transition: var(--transition-normal);
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.3);
    box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.3);
}

.timeline-content {
    background: rgba(15, 24, 36, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.timeline-item:hover .timeline-content {
    transform: translateX(10px);
    border-color: var(--accent-gold);
    background: rgba(15, 24, 36, 0.9);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}

.timeline-item:hover .timeline-content::before {
    transform: scaleX(1);
}

/* Header */
.timeline-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.company-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.company-info h3 {
    font-size: 1.4rem;
    color: var(--accent-gold);
    font-weight: 700;
    margin: 0;
}

.timeline-period {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    background: rgba(212, 175, 55, 0.1);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.timeline-period i {
    color: var(--accent-gold);
}

.job-title {
    font-size: 1.15rem;
    color: var(--text-primary);
    font-weight: 600;
}

/* Body */
.timeline-body h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.missions-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.missions-list li {
    color: var(--text-secondary);
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    line-height: 1.6;
}

.missions-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Tech Tags */
.tech-used {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-fast);
    font-family: 'Courier New', monospace;
}

.tech-tag:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--accent-gold);
    transform: translateY(var(--hover-lift-soft));
}

/* ========================================
   BOUTON ATTRACTIF "VOIR DÉTAILS"
======================================== */
.btn-details-modal {
    position: relative;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    color: var(--primary-dark);
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    overflow: visible;
}

.btn-details-modal:hover {
    transform: translateY(var(--hover-lift-medium));
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-details-modal:hover .fa-arrow-right {
    transform: translateX(5px);
}

.btn-details-modal .fa-arrow-right {
    transition: transform 0.3s ease;
}

/* Animation Pulse Ring (pour attirer l'attention) */
.pulse-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 2px solid var(--accent-gold);
    animation: pulseRing 2s infinite;
    pointer-events: none;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0;
    }
}

/* ========================================
   MODALES
======================================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-dark) 100%);
    border: 2px solid var(--accent-gold);
    border-radius: 20px;
    max-width: 900px;
    width: 95%;
    max-height: 85vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 3rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    margin: 10px 0;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 10px;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    font-size: 1.2rem;
}

.modal-close:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.modal-header h2 {
    color: var(--accent-gold);
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.modal-company {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-family: 'Courier New', monospace;
}

.modal-body {
    color: var(--text-primary);
    padding-right: 5px;
}

.detail-section {
    margin-bottom: 2rem;
}

.detail-section h5 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--accent-gold);
}

.detail-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.impact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.impact-list li {
    color: var(--text-secondary);
    padding-left: 1.8rem;
    margin-bottom: 0.9rem;
    position: relative;
    line-height: 1.7;
    font-size: 0.95rem;
}

.impact-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Accordion Achievement */
.achievement-accordion {
    margin-top: 1rem;
}

.achievement-item {
    background: rgba(15, 24, 36, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.achievement-item:hover {
    border-color: rgba(212, 175, 55, 0.4);
}

.achievement-header {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    user-select: none;
}

.achievement-header:hover {
    background: rgba(212, 175, 55, 0.05);
}

.achievement-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.achievement-item.active .achievement-details {
    max-height: 800px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.achievement-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.achievement-icon {
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.achievement-title span:last-child {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.05rem;
}

.achievement-arrow {
    color: var(--accent-gold);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.achievement-item.active .achievement-arrow {
    transform: rotate(180deg);
}

.achievement-details p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.detail-list li {
    color: var(--text-secondary);
    padding-left: 1.8rem;
    margin-bottom: 0.7rem;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.6;
}

.detail-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

/* Badges métriques */
.achievement-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.metric-badge {
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-gold);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.skill-category {
    background: rgba(15, 24, 36, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 1.2rem;
}

.skill-category h6 {
    color: var(--accent-gold);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.skills-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skills-list li {
    color: var(--text-secondary);
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 0.92rem;
    line-height: 1.7;
}

.skills-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 0.6rem;
    top: 0.4rem;
}

.skills-list li strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 768px) {
    .experiences-section {
        padding: 100px 1rem 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline-marker {
        left: 0;
    }

    .company-info {
        flex-direction: column;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .modal-content {
        padding: 2.5rem 2rem;
        max-height: 90vh;
        width: 98%;
    }

    .modal-header h2 {
        font-size: 1.8rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .skill-category {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .company-info h3 {
        font-size: 1.2rem;
    }

    .tech-tag {
        font-size: 0.8rem;
        padding: 0.3rem 0.7rem;
    }

    .btn-details-modal {
        font-size: 0.85rem;
        padding: 0.8rem 1.5rem;
    }

    .modal-content {
        width: 98%;
        padding: 2rem 1.5rem;
    }

    .achievement-header {
        padding: 0.8rem 1rem;
    }

    .achievement-title span:last-child {
        font-size: 0.85rem;
    }

    .achievement-details {
        padding: 0 1rem;
    }

    .achievement-item.active .achievement-details {
        padding: 0 1rem 1rem 1rem;
    }

    .metric-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    .skills-list li {
        font-size: 0.8rem;
    }
}




/* ====================================
   CARTE DE FRANCE - VERSION OPTIMISÉE
   ==================================== */

.france-map-section {
    padding: 80px 20px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.map-wrapper {
    background: rgba(15, 32, 56, 0.6);
    border: 2px solid #d4af37;
    border-radius: 20px;
    padding: 40px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.map-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}
/* SVG de la France - Centré */
.france-svg {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Contour de la France */
.france-outline {
    transition: fill 0.5s ease, stroke 0.5s ease;
}

.france-svg:hover .france-outline {
    fill: #d4af37;
    stroke: #d4af37;
}

.marker-dot {
    fill: var(--primary-color);
    filter: drop-shadow(0 0 5px #d4af37);
}

.marker-ring {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 5;
    opacity: 0.5;
}

.marker-pulse {
    fill: var(--primary-color);
    opacity: 0.3;
    animation: pulse-marker 2s ease-in-out infinite;
}

@keyframes pulse-marker {
    0%, 100% {
        r: 8;
        opacity: 0.3;
    }
    50% {
        r: 16;
        opacity: 0;
    }
}

/* Labels de ville */
.city-label {
    fill: #d4af37;
    font-size: 30px;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    transition: fill 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
}

.city-sublabel {
    fill: rgba(255, 255, 255, 0.6);
    font-size: 27px;
    font-family: 'Courier New', monospace;
    transition: fill 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
}

/* Animation des marqueurs au chargement */
@keyframes markerAppear {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .france-map-section {
        padding: 60px 15px;
    }
    
    .map-wrapper {
        padding: 30px 15px;
    }
    
    .france-svg {
        max-width: 100%;
    }
    
    .city-label {
        font-size: 35px;
    }
    
    .city-sublabel {
        font-size: 25px;
    }  
}

@media (max-width: 480px) {
    .france-map-section {
        padding: 50px 10px;
    }
    
    .map-wrapper {
        padding: 20px 10px;
        border-radius: 15px;
    }
    
    .city-label {
        font-size: 35px;
    }
    
    .city-sublabel {
        font-size: 25px;
    }
}
/* ==================== RÉCAPITULATIF DES VILLES ==================== */

.cities-recap {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.recap-title {
    color: var(--accent-gold);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.recap-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

/* Cartes de villes */
.city-card {
    background: rgba(15, 24, 36, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.city-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.city-card:hover {
    transform: translateY(var(--hover-lift-strong));
    border-color: var(--accent-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
}

.city-card:hover::before {
    transform: scaleX(1);
}

/* Header de la carte */
.city-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(212, 175, 55, 0.08);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.city-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.3);
    font-family: 'Courier New', monospace;
    line-height: 1;
}

.city-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.city-icon i {
    font-size: 1.3rem;
    color: var(--accent-gold);
}

.city-card:hover .city-icon {
    background: rgba(212, 175, 55, 0.25);
    border-color: var(--accent-gold);
    transform: rotate(360deg);
}

/* Body de la carte */
.city-card-body {
    padding: 2rem;
}

.city-name {
    color: var(--accent-gold);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.city-region {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.city-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Tags */
.city-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.city-tag {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.2);
    font-family: 'Courier New', monospace;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.city-card:hover .city-tag {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--accent-gold);
}

/* Responsive */
@media (max-width: 768px) {
    .cities-recap {
        margin-top: 3rem;
    }
    
    .recap-title {
        font-size: 1.5rem;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .city-card-body {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .city-card-header {
        padding: 1.2rem 1.5rem;
    }
    
    .city-number {
        font-size: 2rem;
    }
    
    .city-icon {
        width: 45px;
        height: 45px;
    }
    
    .city-name {
        font-size: 1.3rem;
    }
}
/* ==================== BOUTON VERS FORMATIONS ==================== */

.section-cta {
    margin-top: 4rem;
    text-align: center;
    padding-bottom: 2rem;
}

.btn-formation {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    color: var(--primary-dark);
    padding: 1.2rem 3rem;
    border-radius: 12px;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease, color 0.4s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-formation::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-formation:hover::before {
    left: 100%;
}

.btn-formation:hover {
    transform: translateY(var(--hover-lift-medium));
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.btn-formation .fa-arrow-right {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.btn-formation:hover .fa-arrow-right {
    transform: translateX(8px);
}

/* Effet glow animé */
.btn-glow {
    position: absolute;
    inset: -3px;
    border-radius: 12px;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(212, 175, 55, 0.4), 
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
    filter: blur(8px);
}

.btn-formation:hover .btn-glow {
    opacity: 1;
    animation: rotate-glow 2s linear infinite;
}

@keyframes rotate-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .section-cta {
        margin-top: 3rem;
    }
    
    .btn-formation {
        padding: 1rem 2.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .btn-formation {
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
        gap: 0.8rem;
    }
    
    .btn-text {
        font-size: 0.85rem;
    }
}
/* Hover des points sur la carte */
.france-svg .city-marker{
  cursor: pointer;
  pointer-events: all;
}

.france-svg .city-marker .marker-dot,
.france-svg .city-marker .marker-ring{
  transition: transform .2s ease, opacity .2s ease;
  transform-box: fill-box;
  transform-origin: center;
}

.france-svg .city-marker:hover .marker-dot{
  transform: scale(1.25);
}

.france-svg .city-marker:hover .marker-ring{
  transform: scale(1.08);
  opacity: 0.9;
}

.france-svg .city-marker:hover .city-label{
  fill: #ffd36a; /* un peu plus clair */
}

.france-svg .city-marker:hover .city-sublabel{
  fill: rgba(255,255,255,.85);
}
