/*
 Theme Name: Perso
 Description: Thème personnalisé - Page Méthode
 Version: 1.0.0
*/

/* ===========================================
   VARIABLES
   =========================================== */

:root {
    --primary-color: #CA9724;
    --primary-hover: #b88620;
    --black: #1a1a1a;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --text-color: #333333;
    --text-muted: #666666;
    --border-color: #e0e0e0;
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.15);
    --font-family: 'Arial', sans-serif;
}

/* ===========================================
   HERO SECTION
   =========================================== */

.method-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.method-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.05;
    border-radius: 50%;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================================
   SECTIONS COMMUNES
   =========================================== */

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

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===========================================
   SECTION ENGAGEMENT
   =========================================== */

.commitment-section {
    padding: 100px 0;
    background: var(--white);
}

.commitment-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.commitment-text {
    text-align: center;
    margin-bottom: 60px;
}

.commitment-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pillar-card {
    background: var(--bg-light);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
    background: var(--white);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1) rotate(5deg);
}

.pillar-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 15px;
}

.pillar-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ===========================================
   SECTION MÉTHODE HYBRIDE
   =========================================== */

.hybrid-method-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.method-steps {
    max-width: 1000px;
    margin: 0 auto 60px;
    padding: 0 30px;
}

.method-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.method-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.method-step:last-child {
    margin-bottom: 0;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 15px;
}

.step-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}

.quality-guarantee {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    border-radius: 20px;
    color: var(--white);
}

.guarantee-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.guarantee-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.guarantee-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* ===========================================
   SECTION TECHNIQUE
   =========================================== */

.technical-section {
    padding: 100px 0;
    background: var(--white);
}

.technical-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.technical-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.technical-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.tech-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.technical-card:hover .tech-icon {
    transform: scale(1.1);
}

.technical-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 15px;
}

.technical-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ===========================================
   SECTION RECRUTEMENT & FORMATION
   =========================================== */

.recruitment-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.recruitment-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

.recruitment-process {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-light);
}

.recruitment-process h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
}

.recruitment-process p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}

.training-process {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
}

.training-process h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 30px;
    text-align: center;
}

.training-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.training-type {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.training-type:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
}

.training-type h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 15px;
}

.training-type p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.training-objective {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    border-radius: 15px;
    color: var(--white);
}

.training-objective p {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 500;
}

/* ===========================================
   SECTION POURQUOI NOUS CHOISIR
   =========================================== */

.why-choose-section {
    padding: 100px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 30px;
}

.benefit-card {
    background: var(--bg-light);
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.conclusion-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    border-radius: 20px;
    text-align: center;
    color: var(--white);
}

.conclusion-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.gains-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.gain-item {
    font-size: 1.2rem;
    font-weight: 500;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

/* ===========================================
   SECTION FOCUS MÉTIER
   =========================================== */

.focus-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.focus-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.focus-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.medical-focus {
    border-top: 5px solid #4CAF50;
}

.legal-focus {
    border-top: 5px solid #2196F3;
}

.focus-header {
    padding: 40px 40px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.focus-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.medical-focus .focus-icon {
    background: #4CAF50;
    color: var(--white);
}

.legal-focus .focus-icon {
    background: #2196F3;
    color: var(--white);
}

.focus-header h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
}

.focus-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
}

.focus-content {
    padding: 30px 40px 40px;
}

.focus-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 15px;
}

.focus-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 25px;
}

.focus-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.focus-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.focus-feature i {
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.focus-feature span {
    color: var(--text-color);
    line-height: 1.5;
}

/* ===========================================
   SECTION CTA
   =========================================== */

.method-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    text-align: center;
    color: var(--white);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */

@media (max-width: 1024px) {

    .pillars-grid,
    .benefits-grid,
    .technical-features,
    .focus-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .training-types {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .method-hero {
        padding: 100px 0 60px;
    }

    .hero-content,
    .commitment-content,
    .method-steps,
    .technical-features,
    .recruitment-content,
    .benefits-grid,
    .focus-grid,
    .cta-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .method-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 25px;
    }

    .quality-guarantee {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 25px;
    }

    .gains-list {
        gap: 15px;
    }

    .gain-item {
        font-size: 1rem;
        padding: 8px 16px;
    }

    .focus-header,
    .focus-content {
        padding: 30px 25px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .method-hero {
        padding: 80px 0 40px;
    }

    .hero-content,
    .commitment-content,
    .method-steps,
    .technical-features,
    .recruitment-content,
    .benefits-grid,
    .focus-grid,
    .cta-content {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .pillar-card,
    .technical-card,
    .benefit-card {
        padding: 30px 20px;
    }

    .recruitment-process,
    .training-process {
        padding: 30px 20px;
    }

    .training-type {
        padding: 25px 15px;
    }

    .conclusion-box {
        padding: 30px 20px;
    }

    .focus-header,
    .focus-content {
        padding: 25px 20px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }
}