/* Reset et base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Comic Neue', cursive;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}        
                
       
/* Section CPF avec arrière-plan comics vif */
.cpf-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e056fd 0%, #f39800 50%, #ff6b6b 100%);
    background-size: 400% 400%;
    animation: comicGradientMove 8s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.cpf-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 30%, #333 2.5px, transparent 2.5px),
        radial-gradient(circle at 70% 70%, #333 1.8px, transparent 1.8px);
    background-size: 60px 60px, 90px 90px;
    opacity: 0.1;
    animation: comicPatternMove 20s linear infinite;
}

.cpf-section::after {
    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 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.3)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.2)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.4)"/><circle cx="70" cy="70" r="2.5" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 200px 200px;
    animation: float-particles 20s linear infinite;
    opacity: 0.6;
}

@keyframes float-particles {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.cpf-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cpf-logo {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.cpf-logo:hover {
    transform: scale(1.05) rotate(5deg);
}

.cpf-text {
    color: #fff;
}

.cpf-text h2 {
    font-family: 'Bangers', cursive;
    font-size: 3em;
    color: #fff;
    text-shadow: 3px 3px 0 rgba(0,0,0,0.5);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cpf-text p {
    font-size: 1.3em;
    line-height: 1.7;
    margin-bottom: 30px;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
    opacity: 0.95;
}

.cpf-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.cpf-benefit {
    background: rgba(33, 66, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.cpf-benefit:hover::before {
    left: 100%;
}

.cpf-benefit:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.4);
}

.cpf-benefit-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
    display: block;
}

.cpf-benefit h4 {
    font-family: 'Bangers', cursive;
    font-size: 1.3em;
    margin-bottom: 8px;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
}

.cpf-benefit p {
    font-size: 0.95em;
    margin: 0;
    opacity: 0.9;
}

.btn-cpf {
    background: linear-gradient(135deg, #ffd93d 0%, #ffb74d 100%);
    color: #333;
    padding: 18px 40px;
    font-size: 1.4em;
    border-radius: 50px;
    border: 3px solid rgba(255,255,255,0.3);
    text-shadow: none;
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

.btn-cpf::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.3s ease;
}

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

.btn-cpf:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.5);
}

/* Responsive pour la section CPF */
@media (max-width: 1024px) {
    .cpf-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .cpf-logo {
        justify-self: center;
        width: 150px;
    }
}

@media (max-width: 768px) {
    .cpf-section {
        padding: 80px 0;
    }
    
    .cpf-text h2 {
        font-size: 2.5em;
    }
    
    .cpf-text p {
        font-size: 1.1em;
    }
    
    .cpf-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .btn-cpf {
        padding: 15px 35px;
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .cpf-text h2 {
        font-size: 2em;
    }
    
    .cpf-logo {
        width: 120px;
    }
}

       /* Styles spécifiques à la page permis moto */
        .moto-hero {
            background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
            padding: 60px 0 50px;
            position: relative;
            overflow: hidden;
        }
        
        .moto-hero::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 100 100"><circle cx="50" cy="50" r="3" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
            background-size: 60px 60px;
            animation: sparkle 10s ease-in-out infinite;
        }
        
        @keyframes sparkle {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }
        
        .moto-hero .container {
            position: relative;
            z-index: 2;
        }
        
        .moto-title {
            font-family: 'Bangers', cursive;
            font-size: 3em;
            color: #fff;
            text-shadow: 4px 4px 0 #333;
            text-align: center;
            margin-bottom: 15px;
        }
        
        .moto-subtitle {
            color: #fff;
            text-align: center;
            font-size: 1.2em;
            margin-bottom: 30px;
            text-shadow: 2px 2px 0 #333;
        }
        
        /* Section équipement avec arrière-plan comics vif */
        .equipment-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #ff9999 0%, #66d9d4 50%, #ffeb99 100%);
            background-size: 400% 400%;
            animation: comicGradientMove 10s ease-in-out infinite;
            position: relative;
            overflow: hidden;
        }
        
        .equipment-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 25% 25%, #333 3px, transparent 3px),
                radial-gradient(circle at 75% 75%, #333 2px, transparent 2px);
            background-size: 50px 50px, 80px 80px;
            opacity: 0.1;
            animation: comicPatternMove 20s linear infinite;
        }
        
        .equipment-section .container {
            position: relative;
            z-index: 2;
        }
        
        .equipment-title {
            font-family: 'Bangers', cursive;
            font-size: 2.8em;
            color: #fff;
            text-shadow: 3px 3px 0 #333;
            text-align: center;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        .equipment-subtitle {
            font-size: 1.2em;
            color: #fff;
            text-shadow: 2px 2px 0 #333;
            text-align: center;
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .equipment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .equipment-card {
            background: #fff;
            border-radius: 20px;
            border: 4px solid #333;
            padding: 30px;
            text-align: center;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .equipment-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.5s;
            opacity: 0;
        }
        
        .equipment-card:hover::before {
            opacity: 1;
            transform: rotate(45deg) translate(50%, 50%);
        }
        
        .equipment-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        }
        
        .equipment-card:nth-child(1) {
            border-color: #ff6b6b;
        }
        
        .equipment-card:nth-child(2) {
            border-color: #4ecdc4;
        }
        
        .equipment-card:nth-child(3) {
            border-color: #ffd93d;
        }
        
        .equipment-card:nth-child(4) {
            border-color: #a8e6cf;
        }
        
        .equipment-card:nth-child(5) {
            border-color: #dda0dd;
        }
        
        .equipment-icon {
            font-size: 4em;
            margin-bottom: 20px;
            display: block;
        }
        
        .equipment-name {
            font-family: 'Bangers', cursive;
            font-size: 1.8em;
            color: #333;
            margin-bottom: 15px;
            text-transform: uppercase;
        }
        
        .equipment-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .equipment-requirement {
            background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
            color: #fff;
            padding: 10px 20px;
            border-radius: 25px;
            font-family: 'Bangers', cursive;
            font-size: 1.1em;
            text-shadow: 1px 1px 0 #333;
            border: 2px solid #333;
            display: inline-block;
        }
        
        .safety-warning {
            background: linear-gradient(135deg, #ff6b6b 0%, #e55a5a 100%);
            color: #fff;
            padding: 30px;
            border-radius: 20px;
            border: 4px solid #333;
            text-align: center;
            margin-top: 60px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }
        
        .safety-warning h3 {
            font-family: 'Bangers', cursive;
            font-size: 2em;
            margin-bottom: 15px;
            text-shadow: 2px 2px 0 #333;
        }
        
        .safety-warning p {
            font-size: 1.1em;
            text-shadow: 1px 1px 0 #333;
        }
        


/* Pricing Section avec arrière-plan comics vif */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #ff6b6b 100%);
    background-size: 400% 400%;
    animation: comicGradientMove 8s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, #333 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, #333 1.5px, transparent 1.5px);
    background-size: 40px 40px, 60px 60px;
    opacity: 0.1;
    animation: comicPatternMove 15s linear infinite;
}

.pricing-section .container {
    position: relative;
    z-index: 2;
}

/* Section Headers identiques à l'accueil */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.comic-subtitle {
    color: #fff;
    text-align: center;
    font-size: 1.3em;
    margin-bottom: 60px;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.pricing-title {
    font-family: 'Bangers', cursive;
    font-size: 3.2em;
    color: #fff;
    text-shadow: 4px 4px 0 #333;
    text-align: center;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pricing-subtitle {
    color: #fff;
    text-align: center;
    font-size: 1.3em;
    margin-bottom: 60px;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 25px;
    border: 4px solid #333;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: float-auto 6s ease-in-out infinite;
}

.service-card:nth-child(2) {
    animation-delay: -2s;
}

.service-card:nth-child(3) {
    animation-delay: -4s;
}

@keyframes float-auto {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.service-card:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.service-card.featured {
    border-color: #ffd93d;
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}

.featured-banner {
    background: linear-gradient(135deg, #ffd93d 0%, #ffb74d 100%);
    color: #333;
    text-align: center;
    padding: 12px;
    font-family: 'Bangers', cursive;
    font-size: 1.3em;
    text-shadow: 1px 1px 0 #fff;
    border-bottom: 3px solid #333;
    position: relative;
    overflow: hidden;
}

.featured-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
}

.featured-banner::after {
    content: '⭐';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes sparkle {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.2); }
}

.card-header {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
    padding: 35px 25px;
    text-align: center;
    border-bottom: 4px solid #333;
    position: relative;
}

.service-card.featured .card-header {
    background: linear-gradient(135deg, #ffd93d 0%, #ffb74d 100%);
    color: #333;
    text-shadow: 1px 1px 0 #fff;
}

.service-icon-wrapper {
    background: rgba(255,255,255,0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid #333;
    transition: all 0.3s ease;
}

.service-icon {
    font-size: 2.5em;
    color: #fff;
}

.service-card.featured .service-icon {
    color: #333;
}

.price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffeb99;
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Bangers', cursive;
    font-size: 1.1em;
    border: 2px solid #333;
}

.service-card.featured .price-badge {
    text-shadow: 3px 3px 0 #fff;
}

.card-content {
    padding: 35px 25px;
}

.card-content h3 {
    font-family: 'Bangers', cursive;
    font-size: 1.9em;
    margin-bottom: 15px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-content p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1em;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.features-list li {
    padding: 10px 0;
    border-bottom: 2px dashed #eee;
    font-size: 1.1em;
    color: #333;
    font-weight: 500;
}

.features-list li:last-child {
    border-bottom: none;
}

.card-content .btn-comic {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-family: 'Bangers', cursive;
    font-size: 1.5em;
    text-shadow: 2px 2px 0 #333;
    border: 3px solid #333;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.service-card.featured .card-content .btn-comic {
    background: linear-gradient(135deg, #ffd93d 0%, #ffb74d 100%);
    color: #333;
    text-shadow: 2px 2px 0 #fff;
}

.btn-comic::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.3s ease;
}

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

.btn-comic:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.pricing-note {
    text-align: center;
    margin-top: 50px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.pricing-note p {
    color: #fff;
    font-size: 1.1em;
    margin: 0;
    font-weight: 600;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
    line-height: 1.6;
}

.pricing-link {
    color: #ffd93d;
    text-decoration: underline;
    transition: all 0.3s ease;
    font-weight: 700;
}

.pricing-link:hover {
    color: #ffb74d;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .service-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 80px 0;
    }
    
    .pricing-title {
        font-size: 2.8em;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
    }
    
    .card-header {
        padding: 25px 20px;
    }
    
    .card-content {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .pricing-title {
        font-size: 2.2em;
        letter-spacing: 1px;
    }
    
    .price-badge {
        font-size: 2.8em;
    }
    
    .btn-comic {
        padding: 15px 30px;
        font-size: 1.3em;
    }
    
    .service-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .service-icon {
        font-size: 2em;
    }
}

.featured-badge {
    background: linear-gradient(135deg, #ffd93d 0%, #ffb74d 100%);
    color: #333;
    text-align: center;
    padding: 10px;
    font-family: 'Bangers', cursive;
    font-size: 1.2em;
    text-shadow: 1px 1px 0 #fff;
    border-bottom: 3px solid #333;
}

.pricing-header {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
    padding: 30px;
    text-align: center;
    border-bottom: 4px solid #333;
}

.pricing-card.featured .pricing-header {
    background: linear-gradient(135deg, #ffd93d 0%, #ffb74d 100%);
    color: #333;
    text-shadow: 1px 1px 0 #fff;
}

.pricing-header h3 {
    font-family: 'Bangers', cursive;
    font-size: 1.8em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 0 #333;
}

.pricing-card.featured .pricing-header h3 {
    text-shadow: 2px 2px 0 #fff;
}

.price {
    font-family: 'Bangers', cursive;
    font-size: 3em;
    text-shadow: 3px 3px 0 #333;
}

.pricing-card.featured .price {
    text-shadow: 3px 3px 0 #fff;
}

.pricing-features {
    padding: 30px;
}

.feature {
    padding: 12px 0;
    border-bottom: 2px dashed #eee;
    font-size: 1.1em;
    color: #333;
}

.feature:last-child {
    border-bottom: none;
}

.pricing-cta {
    padding: 30px;
    text-align: center;
    border-top: 3px solid #eee;
}

.btn-pricing {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Bangers', cursive;
    font-size: 1.4em;
    text-shadow: 2px 2px 0 #333;
    border: 3px solid #333;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-pricing.featured {
    background: linear-gradient(135deg, #ffd93d 0%, #ffb74d 100%);
    color: #333;
    text-shadow: 2px 2px 0 #fff;
}

.btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.pricing-note {
    text-align: center;
    margin-top: 50px;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid rgba(255,255,255,0.2);
}

.pricing-note p {
  color: #666;
  font-size: 1.1em;
  margin: 0;
  font-weight: 600;
}

.pricing-link {
  color: #3498db;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.pricing-link:hover {
  color: #2980b9;
}


.packmoto-card {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 18px;
    border: 3px solid #333;
    box-shadow: 0 8px 24px rgba(0,0,0,0.13);
    padding: 35px 30px;
    text-align: center;
}

.packmoto-title {
    font-family: 'Bangers', cursive;
    font-size: 2em;
    color: #333;
    margin-bottom: 10px;
    text-shadow: 2px 2px 0 #fff;
}

.packmoto-desc {
    font-size: 1.15em;
    color: #444;
    margin-bottom: 18px;
}

.packmoto-info {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
    color: #333;
    font-size: 1em;
    text-align: left;
}

.packmoto-info li {
    margin-bottom: 7px;
}

.packmoto-link {
    color: #ff6b6b;
    text-decoration: underline;
    font-weight: bold;
    margin: 0 4px;
}

.packmoto-offer {
    background: linear-gradient(135deg, #ffd93d 0%, #ffb74d 100%);
    color: #333;
    padding: 14px 20px;
    border-radius: 25px;
    font-family: 'Bangers', cursive;
    font-size: 1.15em;
    text-shadow: 1px 1px 0 #fff;
    border: 2px solid #333;
    display: inline-block;
    margin-top: 10px;
}

/* Section partenariat Pack-Moto avec arrière-plan comics vif */
.packmoto-partner-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #36d1dc 0%, #5b86e5 50%, #a8e6cf 100%);
    background-size: 400% 400%;
    animation: comicGradientMove 11s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.packmoto-partner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 35% 65%, #333 2.2px, transparent 2.2px),
        radial-gradient(circle at 65% 35%, #333 1.6px, transparent 1.6px);
    background-size: 65px 65px, 95px 95px;
    opacity: 0.1;
    animation: comicPatternMove 28s linear infinite;
}

.packmoto-partner-section .container {
    position: relative;
    z-index: 2;
}

/* Programme de Formation REMC Section */
.formation-program-section {
    padding: 100px 0;
    background: 
        linear-gradient(45deg, 
            #fd79a8 0%, 
            #fdcb6e 25%, 
            #e17055 50%, 
            #74b9ff 75%, 
            #fd79a8 100%
        );
    background-size: 400% 400%;
    animation: gentleFlow 12s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.formation-program-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 80%, rgba(253, 121, 168, 0.08) 0%, transparent 60%);
    animation: gentleFloat 12s ease-in-out infinite;
}

.formation-program-section::after {
    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 100 100"><polygon points="20,40 80,40 50,80" fill="rgba(255,255,255,0.06)"/></svg>') repeat;
    background-size: 110px 110px, 160px 160px;
    animation: teamFloat 22s linear infinite;
    opacity: 0.6;
}

.formation-program-section .container {
    position: relative;
    z-index: 2;
}

.formation-program-title {
    color: #333;
    text-shadow: 3px 3px 0 rgba(255,255,255,0.8);
    font-family: 'Bangers', cursive;
    font-size: 2.8em;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
}

.formation-program-subtitle {
    font-size: 1.2em;
    color: #666;
    text-shadow: 1px 1px 0 rgba(255,255,255,0.6);
    text-align: center;
    margin-bottom: 40px;
}

.formation-program-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.program-column {
    background: #fff;
    border-radius: 15px;
    border: 3px solid #333;
    padding: 20px;
    box-shadow: 
        6px 6px 0 #333,
        12px 12px 0 rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.program-column:hover {
    transform: translate(-4px, -4px);
    box-shadow: 
        8px 8px 0 #ffdd57,
        14px 14px 0 rgba(0,0,0,0.2);
}

.program-column h3 {
    font-family: 'Bangers', cursive;
    font-size: 1.6em;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.program-column p {
    color: #555;
    margin-bottom: 15px;
    font-size: 1em;
}

.program-column ul {
    list-style: none;
    padding-left: 0;
}

.program-column ul li {
    margin-bottom: 10px;
    color: #333;
    font-size: 0.95em;
    line-height: 1.5;
}

/* Formation modalities button */
.formation-modalities-button {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modalities-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    font-size: 1.3em;
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: #fff;
    border: 4px solid #333;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Bangers', cursive;
    text-transform: uppercase;
    text-shadow: 2px 2px 0 #333;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        6px 6px 0 #333,
        12px 12px 0 rgba(0,0,0,0.15);
    font-weight: 700;
    letter-spacing: 1px;
}

.modalities-btn::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.6s ease;
}

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

.modalities-btn:hover {
    transform: translate(-4px, -4px);
    box-shadow: 
        8px 8px 0 #ffdd57,
        14px 14px 0 rgba(0,0,0,0.2);
    background: linear-gradient(135deg, #0984e3 0%, #74b9ff 100%);
}

.modalities-btn:active {
    transform: translate(-2px, -2px);
    box-shadow: 
        4px 4px 0 #333,
        8px 8px 0 rgba(0,0,0,0.15);
}

/* Animations communes */
@keyframes gentleFlow {
    0%, 100% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
}

@keyframes gentleFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
        opacity: 0.3; 
    }
    50% { 
        transform: translateY(-20px) scale(1.05); 
        opacity: 0.6; 
    }
}

@keyframes teamFloat {
    0% { 
        transform: translateX(0) translateY(0); 
    }
    25% { 
        transform: translateX(20px) translateY(-15px); 
    }
    50% { 
        transform: translateX(40px) translateY(0); 
    }
    75% { 
        transform: translateX(20px) translateY(15px); 
    }
    100% { 
        transform: translateX(0) translateY(0); 
    }
}

/* Section Headers identiques à l'accueil */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

        .comic-title {
            font-family: 'Bangers', cursive;
            font-size: 3.5rem;
            color: #fff;
            text-shadow: 
                4px 4px 0px #000,
                -1px -1px 0px #000,
                1px -1px 0px #000,
                -1px 1px 0px #000,
                1px 1px 0px #000;
            margin-bottom: 20px;
            transform: perspective(500px) rotateX(15deg);
            text-align: center;
        }

.comic-subtitle {
    font-size: 1.3em;
    color: #fff;
    text-shadow: 2px 2px 0 #333;
    max-width: 600px;
    margin: 0 auto;
}

/* Programme de Formation REMC titre */
.formation-program-title {
    color: #fff !important;
    text-shadow: 3px 3px 0 #333 !important;
    font-family: 'Bangers', cursive;
    font-size: 2.8em;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
}

.formation-program-subtitle {
    font-size: 1.2em;
    color: #fff !important;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 2px 2px 0 #333;
}

.formation-program-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.program-column {
    background: #fff;
    border-radius: 15px;
    border: 3px solid #333;
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.program-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.program-column h3 {
    font-family: 'Bangers', cursive;
    font-size: 1.6em;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.program-column p {
    color: #666;
    margin-bottom: 15px;
    font-size: 1em;
}

.program-column ul {
    list-style: none;
    padding-left: 0;
}

.program-column ul li {
    margin-bottom: 10px;
    color: #333;
    font-size: 0.95em;
    line-height: 1.5;
}

/* Responsive pour Programme REMC */
@media (max-width: 1024px) {
    .formation-program-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .formation-program-grid {
        grid-template-columns: 1fr;
    }
}



/* WhatsApp Button */
.whatsapp-chat {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
  /* Ajout de l'image de nuage en arrière-plan */
  background-image: url('../img/tl.webp');
  background-size: 120px 120px;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px;
  transform: scaleX(-1);
}

.whatsapp-chat a {
  display: block;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1001;
}

.whatsapp-chat img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-size: 400% 400%;
  position: relative;
  overflow: hidden;
}



@keyframes float {
  0%, 100% { transform: translateY(-50%) scaleX(-1) translateY(0px); }
  50% { transform: translateY(-50%) scaleX(-1) translateY(-10px); }
}