/* Programme Jeune & Entrepreneur - Styles */
.pje-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

/* Hero Section avec slider automatique */
.pje-hero {
    position: relative;
    color: white;
    padding: 0;
    overflow: hidden;
    text-align: center;
    min-height: 600px;
    max-height: 80vh; /* Limite la hauteur maximale */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Styles du slider */
.pje-hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden; /* Empêche tout débordement */
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 100vh; /* Limite la hauteur maximale */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

/* Ajustements responsives pour le slider */
@media (max-width: 768px) {
    .pje-hero {
        min-height: 500px; /* Hauteur réduite sur mobile */
    }
    
    .slide {
        background-position: center 30%; /* Ajuste la position verticale sur mobile */
    }
    
    .pje-hero-content {
        padding: 60px 15px; /* Padding réduit sur mobile */
    }
    
    .pje-title {
        font-size: 2.5rem; /* Taille de titre réduite */
    }
    
    .pje-subtitle {
        font-size: 1.2rem; /* Taille de sous-titre réduite */
    }
    
    .pje-cta-buttons {
        flex-direction: column; /* Boutons empilés sur mobile */
        align-items: center;
    }
    
    .cta-button, .cta-button-secondary {
        width: 80%; /* Largeur des boutons sur mobile */
        margin: 5px 0; /* Marge verticale entre les boutons */
    }
}

@media (max-width: 480px) {
    .pje-hero {
        min-height: 400px; /* Hauteur encore plus réduite sur petit mobile */
    }
    
    .pje-title {
        font-size: 2rem; /* Taille de titre encore plus réduite */
    }
    
    .pje-subtitle {
        font-size: 1.1rem; /* Taille de sous-titre encore plus réduite */
    }
    
    .pje-description {
        font-size: 1rem; /* Taille de description réduite */
    }
    
    .cta-button, .cta-button-secondary {
        width: 100%; /* Largeur des boutons sur petit mobile */
        padding: 12px 20px; /* Padding réduit */
        font-size: 1rem; /* Taille de texte réduite */
    }
}

/* Overlay pour améliorer la lisibilité du texte */
.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 170, 228, 0.5) 0%, rgba(0, 136, 204, 0.5) 100%);
    z-index: 2;
}

.pje-hero-content {
    padding: 100px 20px;
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

.pje-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.pje-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.1;
}

.pje-subtitle {
    font-size: 1.4rem;
    margin-bottom: 20px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pje-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pje-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: white;
    color: #00AAE4;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid white;
    margin: 10px;
}

.cta-button:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta-button-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.cta-button-orange {
    background: #ff6b35;
    color: white;
    border: 2px solid #ff6b35;
}

.cta-button-orange:hover {
    background: #e55a2b;
    border-color: #e55a2b;
    color: white;
}

/* Content Sections */
.content-section {
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00AAE4, #0088cc);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #495057;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Objectives Grid */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.objective-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.objective-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00AAE4, #0088cc);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.objective-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 170, 228, 0.15);
}

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

.objective-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00AAE4, #0088cc);
    color: white;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.objective-card:hover .objective-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 170, 228, 0.3);
}

.objective-text {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.6;
}

/* Offerings Section */
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.offering-card {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00AAE4, #0088cc);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.offering-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 170, 228, 0.15);
}

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

.offering-icon {
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    color: #00AAE4;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 170, 228, 0.1);
}

.offering-card:hover .offering-icon {
    background: #00AAE4;
    color: white;
    transform: translateY(-5px);
}

.offering-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

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

.offering-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #495057;
    line-height: 1.6;
}

.offering-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00AAE4;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Target Audience */
.target-audience {
    background: #f8f9fa;
    padding: 40px 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.audience-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 170, 228, 0.15);
}

.audience-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: rgba(0, 170, 228, 0.1);
    color: #00AAE4;
    border-radius: 50%;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.audience-card:hover .audience-icon {
    transform: rotateY(180deg);
    background: #00AAE4;
    color: white;
}

.audience-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.audience-description {
    color: #495057;
    line-height: 1.6;
}

/* Registration Steps */
.inscription-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 170, 228, 0.15);
}

.step-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00AAE4, #0088cc);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 20px;
}

.step-icon i {
    font-size: 1.5rem;
}

.step-content {
    flex: 1;
    text-align: center;
}

/* Styles responsifs pour les étapes d'inscription */
@media (max-width: 768px) {
    .step-card {
        padding: 20px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .step-icon i {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .step-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 15px;
    }
    
    .step-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .step-content {
        text-align: center;
    }
}

.step-title {
    font-size: .7rem;
    font-weight: 300;
    color: #1a1a1a;
    margin: 20px 0 15px;
}

.step-description {
    color: #495057;
    line-height: 1.6;
}

/* Testimonials step-content */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 40px 0;
}

.testimonials-slider {
    max-width: 90%;
    margin: 25px auto;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonials-slider::before,
.testimonials-slider::after {
    content: '\201C';
    position: absolute;
    font-size: 4rem;
    color: #00AAE4;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonials-slider::before {
    top: -20px;
    left: 10px;
}

.testimonials-slider::after {
    content: '\201D';
    bottom: -50px;
    right: 10px;
}

.testimonial-quote {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    padding: 10px 20px;
}

.highlight-text {
    color: #00AAE4;
    font-weight: 600;
}

.cta-message {
    margin-top: 20px;
    text-align: center;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #00AAE4;
    font-weight: bold;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1rem;
}

.testimonial-role {
    color: #00AAE4;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Forms */
.form-section {
    background: white;
    padding: 40px 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00AAE4;
    box-shadow: 0 0 0 3px rgba(0, 170, 228, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00AAE4;
    margin: 25px 0 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e9ecef;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.5;
}

.submit-button {
    background: linear-gradient(135deg, #00AAE4, #0088cc);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: linear-gradient(135deg, #0088cc, #006699);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 170, 228, 0.3);
}

/* Contact Section */
.contact-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 60px 0;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-icon {
    font-size: 1.5rem;
    color: #00AAE4;
}

.contact-details h4 {
    margin: 0 0 5px 0;
    font-weight: 600;
    color: #1a1a1a;
}

.contact-details p {
    margin: 0;
    color: #495057;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #00AAE4;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #0088cc;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 170, 228, 0.3);
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 30px;
        margin: 0 20px;
    }
}

@media (max-width: 768px) {
    .pje-title {
        font-size: 2.5rem;
    }
    
    .pje-subtitle {
        font-size: 1.2rem;
    }
    
    .content-section {
        padding: 60px 20px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .objectives-grid,
    .offerings-grid,
    .audience-grid,
    .steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        margin: 5px 0;
    }
}

@media (max-width: 480px) {
    .pje-hero {
        padding: 60px 0;
    }
    
    .pje-title {
        font-size: 2rem;
    }
    
    .objective-card,
    .offering-card,
    .audience-card,
    .step-card {
        padding: 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
}

/* Étapes d'inscription */
.inscription-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.step-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 170, 228, 0.15);
}

.step-number {
    font-size: 1.8rem;
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00AAE4, #0088cc);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 170, 228, 0.2);
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 170, 228, 0.3);
}

.step-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 15px;
}

.step-content p {
    color: #495057;
    line-height: 1.6;
    font-size: 14px;
}

.cta-container {
    text-align: center;
    margin-top: 40px;
}

/* Témoignages */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.cta-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 170, 228, 0.15);
    border: none;
    border-top: 4px solid #00AAE4;
    overflow: hidden;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 170, 228, 0.25);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: #00AAE4;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.author-info h4 {
    margin: 0;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.author-info p {
    margin: 5px 0 0 0;
    color: #00AAE4;
    font-size: 0.9rem;
}

.cta-message {
    text-align: center;
    margin: 60px auto 0;
    max-width: 700px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.cta-message p {
    font-size: 1.2rem;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Formulaires */
.form-section {
    padding: 80px 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.form-section {
    margin-bottom: 40px;
}

.form-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00AAE4;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00AAE4;
    box-shadow: 0 0 0 3px rgba(0, 170, 228, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

span.required {
    color: #ff6b35;
    margin-left: 3px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    font-weight: 400;
    margin-bottom: 0;
}

.consent-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.form-submit {
    margin-top: 30px;
    text-align: center;
}
.slider-overlay {
    display: none;
}
.submit-button {
    background: linear-gradient(135deg, #00AAE4, #0088cc);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.submit-button:hover {
    background: linear-gradient(135deg, #0088cc, #006699);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 170, 228, 0.3);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

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

.contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-list li:hover {
    background: #e9ecef;
}

.contact-icon {
    font-size: 1.5rem;
    color: #00AAE4;
}

.contact-list a {
    color: #495057;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: #00AAE4;
}

.social-links {
    margin-top: 30px;
}

.social-links p {
    margin-bottom: 15px;
    color: #495057;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: #f8f9fa;
    color: #495057;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #00AAE4;
    color: white;
    transform: translateY(-2px);
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

/* Bouton retour accueil */
.back-to-home {
    text-align: center;
    margin: 60px 0 40px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: #f8f9fa;
    color: #495057;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
}

.back-button:hover {
    background: #e9ecef;
    color: #1a1a1a;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.objective-card,
.offering-card,
.audience-card,
.step-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease forwards;
}

.objective-card:nth-child(1) { animation-delay: 0.1s; }
.objective-card:nth-child(2) { animation-delay: 0.2s; }
.objective-card:nth-child(3) { animation-delay: 0.3s; }
.objective-card:nth-child(4) { animation-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pje-title {
        font-size: 2.5rem;
    }
    
    .pje-subtitle {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .inscription-steps,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pje-title {
        font-size: 2rem;
    }
    
    .step-card,
    .testimonial-card {
        padding: 20px;
    }
    
    .form-section h3 {
        font-size: 1.2rem;
    }
}

/* Préférences de mouvement réduit */
@media (prefers-reduced-motion: reduce) {
    .objective-card,
    .offering-card,
    .audience-card,
    .step-card,
    .testimonial-card {
        animation: none;
    }
    
    .objective-card:hover,
    .offering-card:hover,
    .audience-card:hover,
    .step-card:hover {
        transform: none;
    }
    
    .cta-button:hover,
    .submit-button:hover,
    .social-link:hover {
        transform: none;
    }
}

/* Styles pour la section formulaires */
.content-section#formulaires {
    background: linear-gradient(135deg, #ffffff, #f0f8ff);
    position: relative;
    overflow: hidden;
}

.content-section#formulaires::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><rect fill="%2300AAE4" fill-opacity="0.03" width="50" height="50"/><rect fill="%2300AAE4" fill-opacity="0.03" x="50" y="50" width="50" height="50"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.content-section#formulaires > * {
    position: relative;
    z-index: 1;
}

/* Styles pour les cartes CTA */
.cta-cards-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

@media (max-width: 768px) {
    .cta-cards-container {
        flex-direction: column;
        align-items: center;
    }
}

.cta-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 170, 228, 0.15);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none;
    border-top: 4px solid #00AAE4;
    min-width: 300px;
    max-width: 450px;
    flex: 1;
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 170, 228, 0.15);
}

.cta-card-header {
    background: linear-gradient(135deg, #00AAE4, #0088cc);
    color: white;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    z-index: 1;
    opacity: 0.5;
}

.cta-card-header * {
    position: relative;
    z-index: 2;
}

.cta-card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.cta-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.cta-card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cta-card-text {
    color: #495057;
    margin-bottom: 25px;
    flex-grow: 1;
}

.cta-card-button {
    display: block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #00AAE4, #0088cc);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.cta-card-button:hover {
    background: linear-gradient(135deg, #0088cc, #00AAE4);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 170, 228, 0.3);
}

.cta-card-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.cta-card-button:hover::after {
    height: 100%;
}

.cta-card-button i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.cta-card-button:hover i {
    transform: translateX(5px);
}

/* Styles pour la section contact simplifiée */
.contact-simple-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-simple-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-simple-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.contact-simple-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 170, 228, 0.15);
}

.contact-simple-icon {
    font-size: 2rem;
    color: #00AAE4;
    margin-bottom: 15px;
    display: inline-block;
}

.contact-simple-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.contact-simple-text {
    color: #495057;
    margin-bottom: 0;
}

.contact-simple-link {
    color: #00AAE4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-simple-link:hover {
    color: #0088cc;
    text-decoration: underline;
}

.social-simple-container {
    margin-top: 40px;
    text-align: center;
}

.social-simple-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.social-simple-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-simple-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: white;
    color: #00AAE4;
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.social-simple-icon:hover {
    background: #00AAE4;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 170, 228, 0.2);
}
