/* =========================================
   VARIABLES & BASE
   ========================================= */
:root {
    --primary-orange: #E67E22;
    --primary-blue: #007cc2; /* Bleu du logo */
    --dark-blue: #005a8d;
    --text-main: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: #fff;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }

.main-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-orange { color: var(--primary-orange); }
.text-blue { color: var(--primary-blue); }
.grey-bg { background-color: var(--light-bg); }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* =========================================
   1. HERO SPLIT
   ========================================= */
.hero-split {
    display: flex;
    height: 500px;
    overflow: hidden;
}

.hero-col { flex: 1; position: relative; }

.hero-text-side {
    background: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    z-index: 2;
}

.hero-content { max-width: 400px; }

.hero-content h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1.1;
    margin-bottom: 10px;
}

.hero-content h2 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p { font-size: 0.9rem; margin-bottom: 30px; }

.hero-image-center img, .hero-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-pill {
    background: var(--primary-orange);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--primary-orange);
    transition: var(--transition);
}

.btn-pill:hover { background: transparent; color: var(--primary-orange); }

/* =========================================
   2. INTRO SECTION
   ========================================= */
.section-intro { padding: 80px 20px; }
.section-title { font-size: 2rem; margin-bottom: 50px; text-transform: uppercase; font-weight: 800; }

.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

.intro-img img { border-radius: var(--border-radius); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.highlight-text { border-left: 4px solid var(--primary-orange); padding-left: 15px; font-style: italic; color: #555; }

/* =========================================
   3. FOCUS / ACCOMPAGNEMENT
   ========================================= */
.section-focus { padding: 60px 0; }
.focus-container { display: flex; align-items: center; gap: 40px; }

.focus-img-circle {
    flex-shrink: 0;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.focus-img-circle img { width: 100%; height: 100%; object-fit: cover; }

.btn-orange-outline {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-orange);
    border-bottom: 2px solid var(--primary-orange);
    font-weight: 600;
    padding-bottom: 2px;
}

/* =========================================
   4. A PROPOS
   ========================================= */
.section-about { padding: 80px 20px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 40px; }
.about-visual img { border-radius: var(--border-radius); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.objective-banner {
    background: #FFF3E0;
    padding: 20px;
    text-align: center;
    color: var(--primary-orange);
    font-weight: 700;
    border-radius: 8px;
}

/* =========================================
   5. ROCKET (CONVERSION)
   ========================================= */
.section-rocket { padding: 60px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.rocket-wrapper { display: flex; align-items: center; justify-content: center; gap: 30px; }

.rocket-circle {
    width: 140px;
    height: 140px;
    border: 4px solid var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 3.5rem;
    flex-shrink: 0;
    background: white;
}

.rocket-info h2 { font-size: 1.8rem; margin: 10px 0; }
.btn-orange-shadow {
    background: var(--primary-orange);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    display: inline-block;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
    transition: var(--transition);
}
.btn-orange-shadow:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(230, 126, 34, 0.6); }

/* =========================================
   6. PROCESSUS (ETAPES OVALES)
   ========================================= */
.section-process { padding-bottom: 80px; }
.process-header-img {
    background: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=1200&q=80') center/cover;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}
.overlay-process { background: rgba(255,255,255,0.9); padding: 30px; display: inline-block; border-radius: 8px; }

.steps-container { display: flex; flex-direction: column; gap: 30px; }

.step-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    transition: var(--transition);
    border-bottom: 1px solid #eee;
}

.step-card:hover { transform: translateX(10px); }

/* Le style Ovale de l'image 2 */
.step-img-oval {
    width: 180px;
    height: 110px;
    border-radius: 50%; /* Ovale */
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.step-img-oval img { width: 100%; height: 100%; object-fit: cover; }
.step-content h4 { font-size: 1.1rem; margin-bottom: 5px; text-transform: uppercase; }
.read-more { font-size: 0.8rem; font-weight: 800; color: var(--primary-orange); cursor: pointer; text-transform: uppercase; letter-spacing: 1px; }

/* =========================================
   7. MAP & PARTNERS
   ========================================= */
.section-map { padding: 60px 20px; }
.map-grid { display: flex; align-items: center; gap: 40px; justify-content: center; margin-bottom: 40px; }
.map-visual { width: 200px; }
.map-text { max-width: 500px; }
.partners-logos { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; }
.logo-box { border: 2px solid #eee; height: 80px; display: flex; align-items: center; justify-content: center; font-weight: bold; color: #ccc; }

/* =========================================
   8. TEMOIGNAGES (DESIGN BULLE BLEUE SPECIFIQUE)
   ========================================= */
.section-testimonials { padding: 80px 20px; background: white; }

.testimonial-unique-card {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.testi-avatar {
    position: absolute;
    left: -40px; /* Fait sortir l'image à gauche */
    z-index: 2;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid var(--primary-orange); /* Bordure Orange */
    overflow: hidden;
    background: white;
}

.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }

.testi-bubble {
    background: var(--primary-blue); /* Fond bleu */
    color: white;
    padding: 40px 40px 40px 100px; /* Padding gauche important pour laisser place à la tête */
    border-radius: 0 50px 50px 0; /* Arrondi seulement à droite */
    width: 100%;
    box-shadow: 0 10px 20px rgba(0, 124, 194, 0.3);
}

.testi-bubble p { font-size: 1.1rem; font-style: italic; line-height: 1.8; margin: 0; }

/* =========================================
   9. FAQ
   ========================================= */
.section-faq { padding: 80px 20px; }
.faq-layout { display: flex; gap: 40px; max-width: 900px; margin: 0 auto; }
.faq-icon-side { text-align: center; color: var(--primary-blue); font-size: 1.5rem; font-weight: 800; }
.faq-big-icon { font-size: 4rem; color: #5dade2; display: block; margin-bottom: 10px; }
.faq-list { flex: 1; }

.faq-item { margin-bottom: 15px; }
.faq-btn {
    width: 100%;
    background: white;
    border: 1px solid var(--primary-orange);
    color: var(--primary-blue);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-btn:hover, .faq-btn.active { background: var(--primary-orange); color: white; border-color: var(--primary-orange); }
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 15px; }
.faq-content p { padding: 15px 0; color: #666; font-size: 0.9rem; }

/* =========================================
   RESPONSIVE MOBILE
   ========================================= */
@media (max-width: 768px) {
    .hero-split { flex-direction: column; height: auto; }
    .hero-text-side { padding: 60px 20px; text-align: center; }
    .hero-image-center, .hero-image-side { height: 250px; }
    
    .intro-grid, .about-grid, .rocket-wrapper, .map-grid, .focus-container, .faq-layout {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
    }
    
    .step-card { flex-direction: column; text-align: center; }
    .highlight-text { border-left: none; border-top: 4px solid var(--primary-orange); padding-top: 15px; }
    
    .partners-logos { grid-template-columns: repeat(2, 1fr); }
    
    /* Responsive Testimonial */
    .testimonial-unique-card { flex-direction: column; margin-top: 50px; }
    .testi-avatar { position: relative; left: 0; margin-bottom: -40px; width: 100px; height: 100px; }
    .testi-bubble { padding: 50px 20px 30px 20px; border-radius: 20px; text-align: center; }
}