/* Couleurs principales : #4C989C, #dcabc1, blanc, gris clair */
.coaching-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.coaching-header {
    text-align: center;
    margin-bottom: 3rem;
    width: 90%;
}

.coaching-header h1 {
    color: #4C989C;
    font-family: "Segoe print", Arial, Helvetica, sans-serif;
    margin: 0.5rem 0;
    font-size: calc(1.5rem + 1vw);
}

.coaching-header p {
    font-size: calc(0.9rem + 0.3vw);
    color: #333;
    margin-left:4%;
}

/* Grille principale des services */
.coaching-grid,
.definition-grid,
.method-grid,
.issues-grid,
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Cards génériques */
.service-card,
.definition-card,
.method-card,
.issue-card,
.result-card {
    background: white;
    border-radius: 10px;
    padding: 1.8rem 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #dcabc1;
    text-align: center;
}

.service-card:hover,
.definition-card:hover,
.method-card:hover,
.issue-card:hover,
.result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* Icones */
.service-icon,
.method-icon {
    width: 70px;
    height: 70px;
    background-color: #f0f7fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: #4C989C;
}

/* Titres */
.service-card h3,
.method-card h4 {
    color: #4C989C;
    margin-bottom: 0.8rem;
}

/* Paragraphes */
.service-card p,
.definition-card,
.method-card p,
.issue-card,
.result-card {
    color: #555;
    line-height: 1.5;
    font-size: calc(0.8rem + 0.2vw);
}

/* Public section */
.public-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background-color: #f0f7fa;
    border-radius: 10px;
}

.public-section h3 {
    color: #4C989C;
    margin-bottom: 1rem;
}

.public-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.btn-contact {
    display: inline-block;
    background-color: #4C989C;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-family: "Segoe print", Arial, Helvetica, sans-serif;
    transition: background-color 0.3s, transform 0.3s;
    margin: 0.5rem;
    font-size: 1.1rem;
}

.btn-contact:hover {
    background-color: #3a7a7d;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .coaching-header h1 {
        font-size: 2rem;
    }
    .coaching-grid,
    .definition-grid,
    .method-grid,
    .issues-grid,
    .results-grid {
        gap: 1.2rem;
    }
    .public-section {
        margin-top: 2rem;
    }
}

/* ---- Définition (coaching.html) ---- */
.coaching-definition {
    margin: 3rem auto;
    width: 90%;
    line-height: 1.6;
}

.coaching-definition .definition-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.coaching-definition .definition-text {
    flex: 1 1 55%;
    text-align: justify;
    font-size: 1.1rem;
    color: #333;
    z-index: 2;

}

.coaching-definition .definition-text p {
    margin-bottom: 1rem;
}

.coaching-definition .definition-image {
    flex: 1 1 40%;
    text-align: center;
}

.coaching-definition .definition-image img {
    max-width: 100%;    
    position: relative;
    right: 10%;
    z-index: 1;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .coaching-definition .definition-container {
        flex-direction: column;
        text-align: center;
    }
    .coaching-definition .definition-text {
        flex: 1 1 100%;
    }
    .coaching-definition .definition-image {
        flex: 1 1 100%;
        margin-top: 1rem;
    }

    .coaching-definition .definition-image img {
    right: 0%;
   }


}

/* ---- Problématiques & Résultats (rendu moderne) ---- */
.coaching-issues, 
.coaching-results {
    margin: 3rem auto;
    max-width: 1000px;
}

.coaching-issues h2,
.coaching-results h2 {
    text-align: center;
    font-size: calc(1.2rem + 0.6vw);
    margin-bottom: 1rem;
    color: #2c3e50;
}

.coaching-issues p,
.coaching-results p {
    text-align: center;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Listes modernes */
.issues-list,
.results-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
}

.issues-list li,
.results-list li {
    background: #f9f9f9;
    margin: 0.8rem 0;
    padding: 1rem 1.2rem;
    border-left: 6px solid #dcabc1; /* Utilisation de la couleur directement */
    border-radius: 6px;
    font-size: calc(0.9rem + 0.15vw);
    color: #333;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.results-list li {
    border-left: 6px solid #4C989C; /* Utilisation de la couleur directement */
}

.issues-list li:hover,
.results-list li:hover {
    transform: translateX(6px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .issues-list li,
    .results-list li {
        font-size: 1rem;
        padding: 0.9rem 1rem;
    }
}

/* ---- Timeline de coaching ---- */
/* Variables CSS pour la timeline */
.coaching-journey {
    --timeline-primary-color: #4C989C;
    --timeline-secondary-color: #dcabc1;
    --timeline-light-bg: #f8f9fa;
    --timeline-card-bg: white;
    --timeline-text-dark: #333;
    --timeline-text-light: #555;
    --timeline-problem-color: #e74c3c;
    --timeline-process-color: #4C989C;
    --timeline-result-color: #27ae60;
    
    max-width: 1200px; /* Augmentation de la largeur maximale */
    margin: 3rem auto;
    padding: 2rem 0;
    font-family: "Segoe print", Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background-color: var(--timeline-light-bg);
    color: var(--timeline-text-dark);
}

.coaching-journey h2 {
    text-align: center;
    color: var(--timeline-primary-color);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-family: "Segoe print", Arial, Helvetica, sans-serif;
}

.journey-intro {
    text-align: center;
    color: var(--timeline-text-light);
    font-size: calc(0.9rem + 0.2vw);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Timeline Structure */
.coaching-journey .timeline {
    position: relative;
    padding-left: 3rem;
}

/* Timeline Line */
.coaching-journey .timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(
        to bottom,
        var(--timeline-problem-color) 0%,
        var(--timeline-problem-color) 30%,
        var(--timeline-process-color) 30%,
        var(--timeline-process-color) 70%,
        var(--timeline-result-color) 70%,
        var(--timeline-result-color) 100%
    );
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Timeline Items */
.coaching-journey .timeline-step {
    position: relative;
    margin: 3rem 0;
    padding-left: 4rem;
    opacity: 0;
    animation: slideIn 0.6s ease-out forwards;
}

.coaching-journey .timeline-step:nth-child(1) { animation-delay: 0.2s; }
.coaching-journey .timeline-step:nth-child(2) { animation-delay: 0.4s; }
.coaching-journey .timeline-step:nth-child(3) { animation-delay: 0.6s; }
.coaching-journey .timeline-step:nth-child(4) { animation-delay: 0.8s; }
.coaching-journey .timeline-step:nth-child(5) { animation-delay: 1s; }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Timeline Markers */
.coaching-journey .timeline-marker {
    position: absolute;
    left: -3vw;
    top: 1rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
}

.coaching-journey .step-problem .timeline-marker {
    background: var(--timeline-problem-color);
}

.coaching-journey .step-process .timeline-marker {
    background: var(--timeline-process-color);
}

.coaching-journey .step-result .timeline-marker {
    background: var(--timeline-result-color);
}

/* Content Cards */
.coaching-journey .timeline-content {
    background: var(--timeline-card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-left: 5px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.coaching-journey .timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.03;
    background-size: 50px;
    pointer-events: none;
}

.coaching-journey .timeline-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.coaching-journey .step-problem .timeline-content {
    border-left-color: var(--timeline-problem-color);
    background: linear-gradient(135deg, #fff 0%, rgba(231, 76, 60, 0.02) 100%);
}

.coaching-journey .step-process .timeline-content {
    border-left-color: var(--timeline-process-color);
    background: linear-gradient(135deg, #fff 0%, rgba(76, 152, 156, 0.02) 100%);
}

.coaching-journey .step-result .timeline-content {
    border-left-color: var(--timeline-result-color);
    background: linear-gradient(135deg, #fff 0%, rgba(39, 174, 96, 0.02) 100%);
}

/* Content Headers */
.coaching-journey .step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.coaching-journey .step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.coaching-journey .step-problem .step-icon { background: var(--timeline-problem-color); }
.coaching-journey .step-process .step-icon { background: var(--timeline-process-color); }
.coaching-journey .step-result .step-icon { background: var(--timeline-result-color); }

.coaching-journey .step-title {
    flex: 1;
}

.coaching-journey .step-title h3 {
    margin: 0 0 0.5rem 0;
    font-size: calc(1.1rem + 0.3vw);
    color: var(--timeline-text-dark);
}

.coaching-journey .step-subtitle {
    margin: 0;
    font-size: 0.9rem;
    color: var(--timeline-text-light);
    font-style: italic;
}

/* Content Body */
.coaching-journey .step-description {
    font-size: calc(0.8rem + 0.2vw);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--timeline-text-dark);
}

/* Lists in Timeline */
.coaching-journey .timeline-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.coaching-journey .timeline-list li {
    padding: 0.8rem 1rem;
    margin: 0.8rem 0;
    border-radius: 8px;
    position: relative;
    padding-left: 2.5rem;
    transition: all 0.3s ease;
}

.coaching-journey .timeline-list li::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.coaching-journey .step-problem .timeline-list li {
    background: rgba(231, 76, 60, 0.08);
    border-left: 3px solid var(--timeline-problem-color);
    color: #c0392b;
}

.coaching-journey .step-process .timeline-list li {
    background: rgba(76, 152, 156, 0.08);
    border-left: 3px solid var(--timeline-process-color);
    color: var(--timeline-process-color);
}

.coaching-journey .step-result .timeline-list li {
    background: rgba(39, 174, 96, 0.08);
    border-left: 3px solid var(--timeline-result-color);
    color: #229954;
}

.coaching-journey .timeline-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Quote Style */
.coaching-journey .timeline-quote {
    background: rgba(0,0,0,0.03);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--timeline-secondary-color);
    font-style: italic;
    margin: 1.5rem 0;
    position: relative;
    font-size: calc(0.8rem + 0.2vw);

}

/* Responsive Design */
@media (max-width: 768px) {
    .coaching-journey {
        padding: 1rem;
    }

    /* Supprime la ligne verticale sur mobile */
    .coaching-journey .timeline::before {
        display: none;
    }

    .coaching-journey .timeline {
        padding-left: 0;
    }

    /* Supprime le padding-left pour que les cards prennent toute la largeur */
    .coaching-journey .timeline-step {
        padding-left: 0;
        margin: 2rem 0;
        position: relative;
    }

    /* Positionne les marqueurs sur le bord gauche des cards */
    .coaching-journey .timeline-marker {
        position: absolute;
        left: -12px; /* Légèrement dans la card pour se confondre avec le bord */
        top: 0.6rem;
        width: 24px;
        height: 24px;
        border-width: 3px;
        z-index: 3;
    }

    .coaching-journey .timeline-content {
        padding: 1.2rem;
        margin-left: 0;
        margin-right: 0;
        border-radius: 10px;
        width: 100%; /* Prend toute la largeur disponible */
        box-sizing: border-box;
    }

    .coaching-journey .step-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .coaching-journey .step-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Final CTA Section */
.journey-cta {
    text-align: center;
    margin: 4rem auto 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, var(--timeline-primary-color), var(--timeline-secondary-color));
    border-radius: 20px;
    color: white;
    max-width: 800px;
    width: 90%;
}

.journey-cta h3 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
}

.journey-cta p {
    margin: 0 0 2rem 0;
    opacity: 0.9;
    font-size: calc(0.9rem + 0.2vw);
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Desktop: boutons côte à côte */
@media (min-width: 769px) {
    .cta-buttons {
        flex-wrap: nowrap;
        gap: 2rem;
    }
}

/* Mobile: centrage optimal */
@media (max-width: 768px) {
    .journey-cta {
        margin: 3rem auto 0 auto;
        padding: 1.5rem;
        width: 95%;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 250px;
    }
}

.btn-cta {
    padding: 12px 30px;
    border: 2px solid white;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    display: inline-block;
    text-align: center;
}

.btn-cta:hover {
    background: white;
    color: var(--timeline-primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
