/* Marche Verte - 50ème Anniversaire */
/* Couleurs nationales et thème commémoratif */

:root {
    --mv-red: #C1272D;
    --mv-green: #006233;
    --mv-gold: #D4A017;
    --mv-white: #FFFFFF;
    --mv-dark: #1a1a1a;
    --mv-gray: #4a5568;
    --mv-light-bg: #f7fafc;
}

.marche-verte-page {
    background: var(--mv-white);
}

/* Hero Section avec Animation du Drapeau */
.hero-marche-verte {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(135deg, 
            rgba(193, 39, 45, 0.92) 0%, 
            rgba(193, 39, 45, 0.85) 30%,
            rgba(0, 98, 51, 0.85) 70%,
            rgba(0, 98, 51, 0.92) 100%
        ),
        url('../../img/actualite/mv.png') center/cover;
    background-attachment: fixed;
    overflow: hidden;
    text-align: center;
    color: var(--mv-white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,112C1248,107,1344,117,1392,122.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') repeat;
    opacity: 0.3;
    animation: movePattern 60s linear infinite;
    mix-blend-mode: overlay;
}

@keyframes movePattern {
    0% { background-position: 0 0; }
    100% { background-position: 1440px 0; }
}

/* Animation du Drapeau */
.flag-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 650px;
    height: 450px;
    opacity: 0.2;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 30px 80px rgba(0,0,0,0.5),
        0 0 100px rgba(193, 39, 45, 0.3);
    animation: flagWave 3s ease-in-out infinite;
    filter: brightness(1.1);
}

@keyframes flagWave {
    0%, 100% { 
        transform: translate(-50%, -50%) perspective(500px) rotateY(0deg);
        opacity: 0.2;
    }
    50% { 
        transform: translate(-50%, -50%) perspective(500px) rotateY(5deg);
        opacity: 0.25;
    }
}

.flag-red {
    flex: 1;
    background: var(--mv-red);
    position: relative;
}

.flag-green {
    flex: 1;
    background: var(--mv-green);
}

.flag-star {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    color: var(--mv-green);
    text-shadow: 0 0 20px rgba(0,0,0,0.3);
    animation: starPulse 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes starPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

/* Hero Content */
.hero-content-mv {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.anniversary-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 25px 50px;
    border-radius: 25px;
    margin-bottom: 35px;
    border: 4px solid var(--mv-gold);
    box-shadow: 
        0 15px 50px rgba(0,0,0,0.4),
        0 0 60px rgba(212, 160, 23, 0.3),
        inset 0 0 30px rgba(212, 160, 23, 0.1);
    animation: badgeFloat 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.anniversary-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.anniversary-badge .years {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--mv-gold);
    text-shadow: 
        3px 3px 12px rgba(0,0,0,0.6),
        0 0 40px rgba(212, 160, 23, 0.4);
    position: relative;
    z-index: 1;
}

.anniversary-badge .label {
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--mv-white);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1;
}

.hero-title-mv {
    font-family: 'Lora', serif;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--mv-white);
    text-shadow: 
        4px 4px 15px rgba(0,0,0,0.7),
        0 0 30px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out 0.2s backwards;
    letter-spacing: -1px;
}

.hero-subtitle-mv {
    font-size: 2rem;
    font-weight: 600;
    color: var(--mv-gold);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.4s backwards;
    text-shadow: 
        2px 2px 10px rgba(0,0,0,0.6),
        0 0 20px rgba(212, 160, 23, 0.3);
    letter-spacing: 1px;
}

.hero-description-mv {
    font-size: 1.4rem;
    line-height: 1.9;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.98);
    animation: fadeInUp 1s ease-out 0.6s backwards;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.7);
    font-weight: 500;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(0,0,0,0.2);
    padding: 25px 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.hero-motto {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--mv-gold);
    animation: fadeInUp 1s ease-out 0.8s backwards;
    text-shadow: 
        3px 3px 12px rgba(0,0,0,0.7),
        0 0 30px rgba(212, 160, 23, 0.3);
    padding: 20px;
    background: rgba(0,0,0,0.25);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 160, 23, 0.3);
}

.motto-separator {
    color: rgba(255,255,255,0.5);
}

/* Vidéo dans le Hero */
.hero-video-container {
    max-width: 800px;
    margin: 40px auto 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    position: relative;
    z-index: 100;
    background: rgba(0,0,0,0.3);
    padding: 10px;
}

.hero-video-container video {
    width: 100%;
    height: auto;
    display: block;
    border: 3px solid var(--mv-gold);
    border-radius: 15px;
    background: #000;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: var(--mv-gold);
    animation: bounce 2s infinite;
    z-index: 10;
    text-shadow: 
        2px 2px 8px rgba(0,0,0,0.7),
        0 0 20px rgba(212, 160, 23, 0.5);
    background: rgba(0,0,0,0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212, 160, 23, 0.5);
    backdrop-filter: blur(10px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* Section Vidéo */
.video-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--mv-light-bg) 0%, var(--mv-white) 100%);
}

.video-container-mv {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    background: var(--mv-dark);
    border: 4px solid var(--mv-gold);
}

.video-container-mv video {
    width: 100%;
    height: auto;
    display: block;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-mv {
    font-family: 'Lora', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--mv-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title-mv .icon {
    margin-right: 15px;
    color: var(--mv-gold);
}

.section-intro {
    font-size: 1.2rem;
    color: var(--mv-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    background: var(--mv-dark);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Ratio 16:9 pour responsive */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.video-caption {
    padding: 25px;
    background: linear-gradient(135deg, var(--mv-red) 0%, var(--mv-green) 100%);
    color: var(--mv-white);
    text-align: center;
}

.video-caption p {
    margin: 5px 0;
}

/* Section Introduction */
.intro-section {
    padding: 80px 0;
    background: var(--mv-white);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-icon {
    font-size: 4rem;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.intro-content h2 {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    color: var(--mv-dark);
    margin-bottom: 25px;
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--mv-gray);
    line-height: 1.9;
    margin-bottom: 20px;
}

.intro-content p {
    font-size: 1.1rem;
    color: var(--mv-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Timeline */
.timeline-section {
    padding: 80px 0;
    background: 
        linear-gradient(135deg, 
            rgba(193, 39, 45, 0.95) 0%, 
            rgba(193, 39, 45, 0.92) 30%,
            rgba(0, 98, 51, 0.92) 70%,
            rgba(0, 98, 51, 0.95) 100%
        ),
        url('../../img/actualite/mvslide.jpg') center/cover;
    background-attachment: fixed;
    position: relative;
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
}

.timeline-section .section-header {
    position: relative;
    z-index: 5;
}

.timeline-section .section-title-mv {
    color: var(--mv-white);
    text-shadow: 3px 3px 12px rgba(0,0,0,0.7), 0 0 30px rgba(212, 160, 23, 0.3);
}

.timeline-section .section-intro {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.timeline {
    max-width: 900px;
    margin: 60px auto;
    position: relative;
    z-index: 5;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--mv-gold) 0%, var(--mv-white) 50%, var(--mv-gold) 100%);
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(212, 160, 23, 0.5);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    animation: fadeInScale 0.8s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    padding-left: 60px;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
    padding-right: 60px;
    text-align: right;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--mv-white);
    border: 5px solid var(--mv-gold);
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(212, 160, 23, 0.6);
}

.timeline-marker.golden {
    width: 35px;
    height: 35px;
    border-color: var(--mv-gold);
    background: var(--mv-gold);
    box-shadow: 0 0 30px rgba(212, 160, 23, 0.8), 0 0 60px rgba(212, 160, 23, 0.4);
}

.timeline-item:hover .timeline-marker {
    transform: translateX(-50%) scale(1.5);
    border-color: var(--mv-gold);
}

.timeline-content {
    width: 45%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(212, 160, 23, 0.2);
}

.timeline-item:hover .timeline-content {
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
    transform: translateY(-5px);
    border-color: var(--mv-gold);
}

.timeline-item.highlight .timeline-content {
    background: rgba(255, 255, 255, 0.98);
    border: 3px solid var(--mv-gold);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3), 0 0 40px rgba(212, 160, 23, 0.3);
}

.timeline-year {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--mv-red);
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--mv-dark);
    margin-bottom: 15px;
}

.timeline-content p {
    font-size: 1rem;
    color: var(--mv-gray);
    line-height: 1.7;
}

.highlight-text {
    font-weight: 500;
    color: var(--mv-dark) !important;
}

.quote-box {
    background: rgba(212, 160, 23, 0.1);
    padding: 20px;
    border-left: 4px solid var(--mv-gold);
    border-radius: 10px;
    margin: 20px 0;
}

.quote-box blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--mv-dark);
    margin-bottom: 10px;
    line-height: 1.7;
}

.quote-box cite {
    display: block;
    font-size: 0.95rem;
    color: var(--mv-gray);
    font-style: normal;
    font-weight: 600;
}

/* Fondements Section */
.fondements-section {
    padding: 80px 0;
    background: var(--mv-white);
}

.fondements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.fondement-card {
    background: linear-gradient(135deg, var(--mv-white) 0%, var(--mv-light-bg) 100%);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    text-align: center;
}

.fondement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    border-color: var(--mv-gold);
}

.fondement-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.fondement-card h3 {
    font-size: 1.4rem;
    color: var(--mv-dark);
    margin-bottom: 15px;
}

.fondement-card p {
    font-size: 1rem;
    color: var(--mv-gray);
    line-height: 1.7;
}

/* Épopée Section */
.epopee-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(193, 39, 45, 0.05) 0%, rgba(0, 98, 51, 0.05) 100%);
}

.epopee-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: var(--mv-white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--mv-red);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--mv-gray);
    font-weight: 600;
}

.epopee-description {
    max-width: 800px;
    margin: 0 auto;
}

.epopee-description h3 {
    font-size: 2rem;
    color: var(--mv-dark);
    margin-bottom: 20px;
    text-align: center;
}

.epopee-description p {
    font-size: 1.1rem;
    color: var(--mv-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--mv-gray);
    line-height: 1.7;
}

.check-icon {
    font-size: 1.5rem;
    color: var(--mv-green);
    flex-shrink: 0;
}

/* Diplomatique Section */
.diplomatique-section {
    padding: 80px 0;
    background: var(--mv-white);
}

.diplo-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.diplo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.diplo-card {
    background: linear-gradient(135deg, var(--mv-light-bg) 0%, var(--mv-white) 100%);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.diplo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    border-color: var(--mv-gold);
}

.diplo-card.highlight {
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.1) 0%, var(--mv-white) 100%);
    border-color: var(--mv-gold);
}

.diplo-stat {
    font-size: 4rem;
    font-weight: 800;
    color: var(--mv-red);
    margin-bottom: 15px;
}

.diplo-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.diplo-card h3 {
    font-size: 1.5rem;
    color: var(--mv-dark);
    margin-bottom: 15px;
}

.diplo-card p {
    font-size: 1.05rem;
    color: var(--mv-gray);
    line-height: 1.7;
}

/* Unité Section */
.unite-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 98, 51, 0.05) 0%, var(--mv-white) 100%);
}

.unite-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.unite-card {
    background: var(--mv-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border-left: 5px solid var(--mv-green);
}

.unite-card h3 {
    font-size: 1.8rem;
    color: var(--mv-dark);
    margin-bottom: 20px;
}

.unite-card p {
    font-size: 1.1rem;
    color: var(--mv-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.unite-list {
    list-style: none;
    padding: 0;
}

.unite-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
    color: var(--mv-gray);
    line-height: 1.6;
}

.unite-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--mv-green);
    font-weight: 700;
    font-size: 1.3rem;
}

/* Citation Finale */
.citation-finale {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--mv-red) 0%, var(--mv-green) 100%);
    position: relative;
    overflow: hidden;
}

.citation-finale::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.03" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,112C1248,107,1344,117,1392,122.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') repeat;
}

.citation-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--mv-white);
    position: relative;
    z-index: 2;
}

.quote-mark {
    font-size: 8rem;
    color: var(--mv-gold);
    line-height: 1;
    opacity: 0.5;
}

.citation-box blockquote {
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 500;
}

.citation-box cite {
    font-size: 1.3rem;
    font-style: normal;
    font-weight: 700;
    color: var(--mv-gold);
}

/* Conclusion Section */
.conclusion-section {
    padding: 100px 0;
    background: var(--mv-white);
}

.conclusion-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.conclusion-icon {
    font-size: 5rem;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

.conclusion-icon .flag-image {
    width: 120px;
    height: auto;
    display: inline-block;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.2));
}

.conclusion-content h2 {
    font-family: 'Lora', serif;
    font-size: 2.8rem;
    color: var(--mv-dark);
    margin-bottom: 30px;
}

.conclusion-motto {
    font-size: 1.25rem;
    color: var(--mv-dark);
    font-weight: 600;
    margin-top: 30px;
    line-height: 1.9;
}

/* Final Motto */
.final-motto {
    margin-top: 60px;
    padding: 50px;
    background: linear-gradient(135deg, rgba(193, 39, 45, 0.05) 0%, rgba(0, 98, 51, 0.05) 100%);
    border-radius: 20px;
    border: 3px solid var(--mv-gold);
}

.motto-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 20px 0;
    font-size: 2.5rem;
    font-weight: 800;
}

.motto-ar {
    color: var(--mv-red);
}

.motto-fr {
    color: var(--mv-green);
    letter-spacing: 3px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title-mv {
        font-size: 3rem;
    }

    .anniversary-badge .years {
        font-size: 4rem;
    }

    .flag-animation {
        width: 400px;
        height: 266px;
    }

    .section-title-mv {
        font-size: 2.2rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px;
        padding-left: 20px;
        text-align: left;
    }

    .timeline-marker {
        left: 20px;
        transform: translateX(0);
    }

    .timeline-item:hover .timeline-marker {
        transform: translateX(0) scale(1.5);
    }

    .unite-content {
        grid-template-columns: 1fr;
    }

    .motto-line {
        font-size: 2rem;
        gap: 20px;
    }

    .fondements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .diplo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-marche-verte {
        min-height: 90vh;
        background-attachment: scroll;
    }

    .hero-title-mv {
        font-size: 2.8rem;
    }

    .hero-subtitle-mv {
        font-size: 1.5rem;
    }
    
    .hero-description-mv {
        font-size: 1.1rem;
        padding: 20px 25px;
    }
    
    .hero-motto {
        font-size: 1.8rem;
        gap: 15px;
        padding: 15px 25px;
    }

    .anniversary-badge .years {
        font-size: 4rem;
    }
    
    .anniversary-badge .label {
        font-size: 1.3rem;
    }

    .flag-animation {
        width: 300px;
        height: 200px;
    }

    .flag-star {
        font-size: 80px;
    }
    
    .scroll-indicator {
        width: 45px;
        height: 45px;
        font-size: 2rem;
    }

    .section-title-mv {
        font-size: 1.8rem;
    }

    .fondements-grid {
        grid-template-columns: 1fr;
    }

    .diplo-grid {
        grid-template-columns: 1fr;
    }

    .epopee-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .citation-box blockquote {
        font-size: 1.3rem;
    }

    .motto-line {
        font-size: 1.5rem;
        gap: 15px;
    }

    .final-motto {
        padding: 30px 20px;
    }

    .hero-video-container {
        max-width: 95%;
        margin: 30px auto 0;
    }

    .hero-motto {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .hero-description-mv {
        font-size: 1.1rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--mv-gold);
    color: var(--mv-white);
}
