* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0d2847;
    --gold: #c8a866;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* TOP BAR */
.top-bar {
    background: var(--navy);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: white;
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: var(--gold);
}

/* HEADER */
header {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
}

.logo img {
    height: 60px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--gold);
}

.btn-login {
    background: var(--gold);
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    white-space: nowrap;
}

.btn-login:hover {
    background: #b89650;
    color: white;
}

/* BURGER MENU */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 1001;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--navy);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.burger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(13, 40, 71, 0.75) 0%, rgba(13, 40, 71, 0.65) 100%),
                url('/assets/images/negociation_recouvrement_de_creance.png') center/cover no-repeat;
    color: white;
    padding: 3rem 2rem;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 800px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 1.05rem;
}

.btn-primary {
    background: var(--gold);
    color: white;
}

.btn-primary:hover {
    background: #b89650;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200, 168, 102, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--navy);
}

.hero-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    margin-left: 1rem;
}

.hero-contact a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
}

/* CONTAINER & SECTIONS */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

section {
    scroll-margin-top: 80px;
}

h2 {
    color: var(--navy);
    font-size: 2.3rem;
    margin-top: 0;
    margin-bottom: 4rem;
    text-align: center;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-top: -2rem;
    margin-bottom: 3rem;
    font-size: 1.15rem;
}

/* SERVICES */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 0;
}

.service-card {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid var(--gold);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.service-card h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* STATS */
.stats {
    background: var(--navy);
    color: white;
}

.stats h2 {
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-top: 0;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* EXPERTISE */
.expertise {
    background: var(--light-bg);
}

.expertise-content {
    max-width: 900px;
    margin: 0 auto;
}

.expertise-list {
    list-style: none;
    margin-top: 2rem;
}

.expertise-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.expertise-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.5rem;
}

/* PROCESS avec Timeline interactive */
.process {
    background: white;
    position: relative;
    overflow: hidden;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
    margin-top: 0;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

/* Timeline connector - ligne continue */
.process-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 60px;
    right: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--gold), var(--navy), var(--navy), var(--gold));
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
    padding: 0 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-number {
    display: inline-block;
    width: 70px;
    height: 70px;
    background: var(--gold);
    color: white;
    border-radius: 50%;
    line-height: 70px;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(200, 168, 102, 0.4);
    position: relative;
    z-index: 2;
    border: 4px solid white;
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(200, 168, 102, 0.6);
    background: var(--navy);
}

.step h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-intro {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    min-height: 80px;
}

.step-detail {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.9rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.step:hover .step-detail {
    max-height: 300px;
    opacity: 1;
    margin-top: 1rem;
}

.step:hover {
    transform: translateY(-10px);
}

/* Ãƒâ‚¬ PROPOS (anciennement intro) */
.about {
    background: var(--light-bg);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-light);
}

.about-text p {
    margin-bottom: 1.8rem;
    text-align: justify;
}

.about-text strong {
    color: var(--navy);
    font-weight: 600;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    max-width: 500px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

/* WHY US */
.why-us {
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 0;
}

.why-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.08);
}

.why-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.why-card h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.why-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* CONTACT */
.contact {
    background: var(--light-bg);
}

.contact-form {
    max-width: 700px;
    margin: 3rem auto 0;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--navy);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* FOOTER */
footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
    font-size: 0.9rem;
}

/* RESPONSIVE MOBILE */
@media (max-width: 968px) {
    /* Top bar mobile */
    .top-bar-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .top-bar-content > div:first-child span {
        display: block;
        margin: 0.25rem 0;
    }

    .top-bar a {
        margin-left: 0;
    }

    /* Navigation mobile avec burger */
    .burger {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        transition: right 0.3s ease;
        gap: 1.5rem;
        align-items: flex-start;
        overflow-y: auto;
    }

    nav ul.active {
        right: 0;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .btn-login {
        width: 100%;
        text-align: center;
        display: block;
        padding: 12px 20px;
    }

    /* Hero mobile */
    .hero {
        min-height: 70vh;
        padding: 2rem 1.5rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .hero-contact {
        margin-left: 0;
        width: 100%;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    /* Sections mobile */
    .container {
        padding: 3rem 1.5rem;
    }

    h2 {
        font-size: 1.8rem;
        margin-bottom: 3rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Process timeline mobile - supprimer la ligne */
    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-steps::before {
        display: none;
    }

    .step {
        width: 100%;
        max-width: 400px;
        padding: 1.5rem;
        margin-bottom: 2rem;
        background: var(--light-bg);
        border-radius: 10px;
    }

    .step h3 {
        min-height: auto;
        font-size: 1.2rem;
    }

    .step-intro {
        min-height: auto;
    }

    .step-detail {
        max-height: none;
        opacity: 1;
        margin-top: 1rem;
    }

    .step:hover {
        transform: none;
    }

    /* About mobile */
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0;
    }

    .about-image {
        order: -1;
        max-width: 100%;
    }

    .about-text p {
        text-align: left;
    }

    /* Grilles mobile */
    .services-grid,
    .stats-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Form mobile */
    .contact-form {
        padding: 2rem 1.5rem;
    }

    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Overlay pour le menu mobile */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.menu-overlay.active {
    display: block;
}

/* ============================================
   STYLES SPÃ‰CIFIQUES PAGE SERVICE B2C
   ============================================ */

/* Hero Service */
.hero-service {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(13, 40, 71, 0.75) 0%, rgba(13, 40, 71, 0.65) 100%),
                url('/assets/images/lex-recouvrement-service.png') center/cover no-repeat;
    color: white;
    padding: 6rem 2rem 4rem;
}

.hero-service-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-service h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    max-width: 900px;
    line-height: 1.2;
}

.hero-service .subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 800px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.hero-stat {
    flex: 1;
    min-width: 150px;
}

.hero-stat-number {
    font-size: 3rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    opacity: 0.95;
    font-size: 1rem;
}

.btn-white {
    background: white;
    color: var(--navy);
}

.btn-white:hover {
    background: var(--light-bg);
}

/* Intro Section */
.intro-section {
    background: white;
    padding: 6rem 2rem;
}

.intro-content {
    max-width: 1200px;
    margin: 0 auto;
}

.intro-content h2 {
    color: var(--navy);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.8rem;
    font-size: 1.05rem;
    text-align: justify;
}

.intro-text strong {
    color: var(--navy);
    font-weight: 600;
}

.intro-text h3 {
    color: var(--navy);
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem;
}

.intro-text ul {
    list-style: none;
    margin: 2rem 0;
}

.intro-text ul li {
    padding: 0.8rem 0 0.8rem 2.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
}

.intro-text ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.3rem;
}

/* Benefits Section */
.benefits-section {
    background: var(--light-bg);
    padding: 6rem 2rem;
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.8;
}


/* Types Professionnels */
.types-section {
    background: white;
    padding: 6rem 2rem;
}

.types-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.type-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s, border-left-color 0.3s;
    border-left: 4px solid transparent;
}

.type-card:hover {
    transform: translateY(-5px);
    border-left-color: var(--gold);
}

.type-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.type-card h3 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.type-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Process Section Dark */
.process-section {
    background: var(--navy);
    color: white;
    padding: 6rem 2rem;
}

.process-section h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.process-grid {
    max-width: 1100px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.process-step {
    background: rgba(255,255,255,0.05);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.process-step:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.process-number {
    display: inline-block;
    width: 70px;
    height: 70px;
    background: var(--gold);
    color: white;
    border-radius: 50%;
    line-height: 70px;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.process-step h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.process-step p {
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: var(--gold);
    padding: 5rem 2rem;
    text-align: center;
    color: white;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    opacity: 0.95;
}

/* Responsive - Pages Service */
@media (max-width: 968px) {
    .hero-service {
        min-height: 60vh;
        padding: 4rem 1.5rem 3rem;
    }

    .hero-service h1 {
        font-size: 2rem;
    }

    .hero-service .subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .intro-section,
    .benefits-section,
    .types-section,
    .process-section,
    .cta-section {
        padding: 4rem 1.5rem;
    }

    .intro-content h2 {
        font-size: 2rem;
    }

    .intro-text {
        text-align: left;
    }

    .intro-text p {
        text-align: left;
    }

    .intro-text h3 {
        font-size: 1.5rem;
    }

    .benefits-grid,
    .types-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
}
/* ============================================
   CORRECTIONS PAGE PILIER - ESPACEMENTS & CONTRASTE
   ============================================ */

/* Classe pour espacements réduits (pages piliers) */
.intro-text-compact p {
    margin-bottom: 1rem !important;
}

/* Contraste optimisé sur fond navy (process-section) */
.process-section .intro-text {
    color: rgba(255,255,255,0.95) !important;
}

.process-section .intro-text h3 {
    color: var(--gold) !important;
    margin-top: 2.5rem !important;
    margin-bottom: 1rem !important;
}

.process-section .intro-text p {
    color: rgba(255,255,255,0.95) !important;
    margin-bottom: 1rem !important;
}

.process-section .intro-text ul {
    margin: 1.5rem 0 !important;
}

.process-section .intro-text ul li {
    color: rgba(255,255,255,0.9) !important;
    padding: 0.6rem 0 0.6rem 2.5rem !important;
}

.process-section .intro-text ul li:before {
    color: var(--gold) !important;
}

.process-section .intro-text strong {
    color: white !important;
}

.process-section .intro-text p strong {
    color: var(--gold) !important;
}