/*
    Projet  : Start-Elite
    Fichier : assets/css/personnalisation.css
    Page    : PERSONNALISATION - START-ELITE
*/

*, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --gold: #ffb648;
            --gold-light: #ffd089;

            /* Palette contenu clair */
            --c-dark: #1a2235;
            --c-body: #374151;
            --c-muted: #6b7a99;
            --c-accent: #b87513;
            --c-bg: #f0f4f8;
            --c-white: #ffffff;
            --c-border: rgba(0,0,0,0.08);
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Barlow', sans-serif;
            color: var(--c-dark);
            background: var(--c-bg);
            overflow-x: hidden;
        }

        
    /* Fil d'Ariane (breadcrumb) : indique la position dans le site */
        .breadcrumb {
            background: var(--c-white);
            border-bottom: 1px solid var(--c-border);
            padding: 14px 0;
        }

        .breadcrumb-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
            font-family: 'Barlow Condensed', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--c-muted);
        }

        .breadcrumb-content a {
            color: var(--c-accent);
            text-decoration: none;
            transition: color 0.2s;
        }

        .breadcrumb-content a:hover { color: var(--gold); }

        
        /* === CONTENU PRINCIPAL === */

        .main-content {
            max-width: 1400px;
            margin: 70px auto;
            padding: 0 30px;
        }

        .page-title {
            text-align: center;
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(38px, 5vw, 64px);
            font-weight: 400;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--c-dark);
            margin-bottom: 50px;
        }

        /* INTRO */
        .intro-text {
            max-width: 900px;
            margin: 0 auto 50px;
            text-align: center;
        }

        .intro-text p {
            font-size: 18px;
            color: var(--c-body);
            line-height: 1.8;
            margin-bottom: 20px;
            text-align: justify;
        }

        /* PRICING CARDS */
        .pricing-section {
            max-width: 900px;
            margin: 0 auto 60px;
        }

        .pricing-card {
            background: var(--c-white);
            border: 3px solid var(--c-accent);
            border-radius: 3px;
            padding: 30px;
            margin-bottom: 25px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .pricing-card h3 {
            font-size: 20px;
            font-weight: 600;
            color: var(--c-dark);
            margin-bottom: 15px;
        }

        .pricing-card .price {
            font-size: 32px;
            font-weight: 400;
            color: var(--c-accent);
            font-family: 'Bebas Neue', sans-serif;
        }

        .pricing-card p {
            color: var(--c-body);
            padding-top: 10px;
            font-style: italic;
            text-align: justify;
        }

        /* PROCESS SECTION */
        .process-section {
            max-width: 900px;
            margin: 0 auto 50px;
            background: var(--c-bg);
            padding: 40px;
            border-radius: 3px;
        }

        .process-section h3 {
            font-size: 26px;
            font-weight: 700;
            color: var(--c-dark);
            margin-bottom: 30px;
            text-align: center;
        }

        .process-steps { counter-reset: step-counter; }

        .process-step {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            position: relative;
            padding-left: 70px;
        }

        .process-step::before {
            counter-increment: step-counter;
            content: counter(step-counter);
            position: absolute;
            left: 0;
            width: 50px;
            height: 50px;
            background: var(--c-accent);
            color: var(--c-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            font-family: 'Bebas Neue', sans-serif;
        }

        .process-step-content { flex: 1; }

        .process-step h4 {
            font-size: 18px;
            font-weight: 600;
            color: var(--c-dark);
            margin-bottom: 8px;
        }

        .process-step p {
            color: var(--c-body);
            line-height: 1.6;
            text-align: justify;
        }

        .process-step a {
            color: var(--c-accent);
            text-decoration: none;
            font-weight: 600;
        }

        .process-step a:hover { text-decoration: underline; }

        /* DETAILS SECTION */
        .details-section {
            max-width: 900px;
            margin: 0 auto 50px;
            background: var(--c-white);
            padding: 40px;
            border-radius: 3px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .details-section h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--c-dark);
            margin-bottom: 25px;
        }

        .details-section p {
            color: var(--c-body);
            line-height: 1.8;
            margin-bottom: 15px;
            text-align: justify;
        }

        .details-section a {
            color: var(--c-accent);
            text-decoration: none;
            font-weight: 600;
        }

        .details-section a:hover { text-decoration: underline; }

        .contact-info {
            background: var(--c-bg);
            padding: 20px;
            border-radius: 3px;
            margin-top: 25px;
            border-left: 4px solid var(--c-accent);
        }

        .contact-info p { margin-bottom: 0; color: var(--c-dark); }

        /* Bouton "Afficher le numéro" inline */
        .btn-tel-inline {
            display: inline-flex;
            align-items: center;
            padding: 4px 12px;
            border: 1px solid var(--c-accent);
            color: var(--c-accent);
            border-radius: 5px;
            cursor: pointer;
            font-weight: 700;
            user-select: none;
            background: transparent;
            transition: all 0.3s;
            font-size: 0.95em;
            vertical-align: middle;
        }

        .btn-tel-inline:hover { background: rgba(0,119,170,0.08); }

        .tel-inline-content {
            display: none;
            font-weight: 700;
            letter-spacing: 1.5px;
        }

        /* DISCLAIMER */
        .disclaimer {
            max-width: 900px;
            margin: 0 auto;
            background: rgba(0,119,170,0.06);
            border: 2px solid rgba(0,119,170,0.2);
            border-radius: 3px;
            padding: 25px;
        }

        .disclaimer p {
            color: var(--c-dark);
            font-size: 14px;
            font-style: italic;
            line-height: 1.7;
            margin: 0;
            text-align: justify;
        }

        
    /* Bouton retour en haut de page (apparaît après 300px de scroll) */
        #scroll-top-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--gold);
            color: #1a1530;
            width: 46px;
            height: 46px;
            border-radius: 3px;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(255,182,72,0.4);
            z-index: 999;
            transition: all 0.3s;
        }
        #scroll-top-btn.visible,
        #scroll-top-btn.show { display: flex; }
        #scroll-top-btn:hover { background: var(--gold-light); transform: translateY(-3px); }

        
        /* === RESPONSIVE — MEDIA QUERIES · ≤ 968px : tablet · ≤ 768px : mobile paysage · ≤ 576px : mobile portrait === */

        @media (max-width: 968px) {
            .process-section,
            .details-section { padding: 30px 20px; }
            .process-step { padding-left: 60px; }
            .process-step::before { width: 45px; height: 45px; font-size: 20px; }
        }

        @media (max-width: 768px) {
            .main-content { padding: 0 15px; margin: 40px auto; }
            .intro-text p { text-align: left; }
            .process-step p,
            .details-section p,
            .disclaimer p { text-align: left; }
        }

        @media (max-width: 576px) {
            .intro-text p { font-size: 16px; }
            .pricing-card .price { font-size: 26px; }
        }
