.elementor-37 .elementor-element.elementor-element-a350e3e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-37 .elementor-element.elementor-element-e58e4f5{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-a1b68d7 *//* Hero */
        .prestations-hero {
            padding: 140px 20px 100px;
            text-align: center;
            background: linear-gradient(135deg, rgba(20, 21, 26, 0.95), rgba(28, 29, 35, 0.9)),
                        url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1920') center/cover;
            position: relative;
        }
        .prestations-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 0%, rgba(206, 175, 131, 0.15), transparent 60%);
        }
        .prestations-hero-content {
            position: relative;
            z-index: 1;
            max-width: 1000px;
            margin: 0 auto;
        }
        .prestations-hero h1 {
            font-size: clamp(36px, 6vw, 56px);
            margin-bottom: 30px;
            font-weight: 800;
            line-height: 1.2;
            color: var(--gold);
        }
        .prestations-hero .subtitle {
            font-size: clamp(18px, 2.5vw, 22px);
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 15px;
        }
        .prestations-hero .mission {
            font-size: clamp(19px, 2.5vw, 23px);
            color: var(--text-secondary);
            font-weight: 600;
            margin-top: 30px;
            line-height: 1.7;
        }
        
        /* Section */
        .prestations-section {
            padding: 100px 20px;
        }
        .prestations-section.alt {
            background: var(--bg-secondary);
        }
        .section-intro {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 80px;
        }
        .section-intro h2 {
            font-size: clamp(32px, 5vw, 42px);
            margin-bottom: 20px;
            font-weight: 700;
        }
        .section-intro p {
            font-size: 18px;
            color: var(--text-secondary);
            line-height: 1.8;
        }
        
        /* Prestation Card */
        .prestations-list {
            display: grid;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .prestation-card {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 40px;
            align-items: start;
            background: var(--bg-card);
            padding: 50px 45px;
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            transition: var(--transition);
        }
        .prestation-card:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        .prestation-number {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: var(--bg-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 800;
            flex-shrink: 0;
            box-shadow: 0 8px 25px rgba(206, 175, 131, 0.3);
        }
        .prestation-content h3 {
            font-size: 26px;
            margin-bottom: 15px;
            font-weight: 700;
            color: var(--gold-light);
        }
        .prestation-subtitle {
            font-size: 17px;
            color: var(--text-secondary);
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.7;
        }
        .prestation-description {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 20px;
        }
        .prestation-includes {
            background: rgba(206, 175, 131, 0.05);
            padding: 25px;
            border-left: 3px solid var(--gold);
            border-radius: var(--radius-sm);
            margin-top: 20px;
        }
        .prestation-includes h4 {
            font-size: 16px;
            margin-bottom: 15px;
            color: var(--gold);
            font-weight: 600;
        }
        .prestation-includes ul {
            list-style: none;
            display: grid;
            gap: 10px;
        }
        .prestation-includes li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 15px;
            color: var(--text-secondary);
        }
        .prestation-includes li::before {
            content: '✓';
            color: var(--gold);
            font-weight: bold;
            font-size: 18px;
            flex-shrink: 0;
        }
        .result-box {
            background: linear-gradient(135deg, rgba(206, 175, 131, 0.15), rgba(206, 175, 131, 0.05));
            padding: 20px 25px;
            border-radius: var(--radius-sm);
            margin-top: 20px;
            border: 1px solid var(--border-light);
        }
        .result-box strong {
            color: var(--gold);
            font-weight: 700;
        }
        
        
        /* Desktop Prestations Cards - vertical layout */
@media (min-width: 769px) {
    .prestation-card {
        display: flex;
        flex-direction: column; /* numéro en haut, image ensuite, contenu ensuite */
        align-items: center;
        text-align: center;
        padding: 40px 30px;
        gap: 25px; /* espace entre les sections */
        grid-template-columns: unset; /* override grid */
    }
    .prestation-number {
        margin: 0 auto 15px;
    }
    .prestation-content {
        text-align: center;
    }
    .prestation-includes {
        text-align: left; /* garder listes alignées */
    }
}

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--gold-dark), var(--gold));
            padding: 100px 20px;
            text-align: center;
        }
        .cta-section h2 {
            font-size: clamp(32px, 5vw, 48px);
            color: var(--bg-primary);
            margin-bottom: 20px;
            font-weight: 800;
            line-height: 1.2;
        }
        .cta-section p {
            font-size: 20px;
            color: rgba(20, 21, 26, 0.8);
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 20px 50px;
            background: var(--bg-primary);
            color: var(--gold);
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 18px;
            transition: var(--transition);
            text-decoration: none;
        }
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(20, 21, 26, 0.5);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .prestations-hero {
                padding: 100px 20px 60px;
            }
            .prestations-section {
                padding: 60px 20px;
            }
            .prestation-card {
                grid-template-columns: 1fr;
                padding: 35px 25px;
                gap: 25px;
            }
            .prestation-number {
                margin: 0 auto;
            }
            .prestation-content {
                text-align: center;
            }
            .prestation-includes {
                text-align: left;
            }
            .whatsapp-float {
                width: 55px;
                height: 55px;
                bottom: 20px;
                right: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .prestation-card {
                padding: 30px 20px;
            }
            .prestation-includes {
                padding: 20px 15px;
            }
        }
        
       
        
        /* Hero */
        .prestations-hero {
            padding: 140px 20px 100px;
            text-align: center;
            background: linear-gradient(135deg, rgba(20, 21, 26, 0.95), rgba(28, 29, 35, 0.9)),
                        url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1920') center/cover;
            position: relative;
        }
        .prestations-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 0%, rgba(206, 175, 131, 0.15), transparent 60%);
            pointer-events: none;
        }
        .prestations-hero .container {
            position: relative;
            z-index: 1;
        }
        .prestations-hero h1 {
            font-size: clamp(36px, 6vw, 56px);
            margin-bottom: 20px;
            font-weight: 800;
        }
        .prestations-hero p {
            font-size: 20px;
            color: var(--gold-light);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Prestation Showcase */
        .prestation-showcase {
            padding: 100px 20px;
            overflow-x: hidden;
        }
        .prestation-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-bottom: 120px;
        }
        .prestation-item:nth-child(even) {
            direction: rtl;
        }
        .prestation-item:nth-child(even) > * {
            direction: ltr;
        }
        
        /* Service Image */
        .prestation-visual {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            height: 500px;
        }
        .prestation-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .prestation-item:hover .prestation-visual img {
            transform: scale(1.05);
        }
        
        /* Prestation Content */
        .prestation-content h2 {
            font-size: clamp(32px, 5vw, 42px);
            margin-bottom: 20px;
            font-weight: 700;
        }
        .prestation-badge {
            display: inline-block;
            background: rgba(206, 175, 131, 0.15);
            color: var(--gold);
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 20px;
            border: 1px solid var(--border-light);
        }
        .prestation-description {
            font-size: 17px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 30px;
        }
        .prestation-features {
            list-style: none;
            margin-bottom: 35px;
        }
        .prestation-features li {
            display: flex;
            align-items: start;
            gap: 15px;
            padding: 12px 0;
            font-size: 16px;
        }
        .prestation-features i {
            color: var(--gold);
            font-size: 20px;
            margin-top: 3px;
            flex-shrink: 0;
        }
        .prestation-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 36px;
            background: var(--gold);
            color: var(--bg-primary);
            border-radius: var(--radius-sm);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }
        .prestation-cta:hover {
            background: var(--gold-light);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(206, 175, 131, 0.4);
        }
        
        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .section-header h2 {
            font-size: clamp(32px, 5vw, 42px);
            margin-bottom: 15px;
            font-weight: 700;
        }
        .section-header p {
            font-size: 18px;
            color: var(--gold-light);
        }
        
        /* Process Timeline */
        .process-section {
            padding: 100px 20px;
            background: var(--bg-primary);
        }
        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .process-card {
            background: var(--bg-card);
            padding: 40px;
            border-radius: var(--radius);
            border: 1px solid var(--border-light);
            transition: var(--transition);
            text-align: center;
        }
        .process-card:hover {
            border-color: var(--gold);
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        .process-number {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: var(--bg-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            font-weight: 700;
            margin: 0 auto 25px;
            box-shadow: 0 10px 30px rgba(206, 175, 131, 0.3);
        }
        .process-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            font-weight: 600;
        }
        .process-card p {
            color: var(--text-secondary);
            line-height: 1.7;
        }
        
        /* Testimonials */
        .testimonials-section {
            padding: 100px 20px;
            background: var(--bg-secondary);
        }
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .testimonial-card {
            background: var(--bg-card);
            padding: 40px;
            border-radius: var(--radius);
            border: 1px solid var(--border-light);
            transition: var(--transition);
        }
        .testimonial-card:hover {
            border-color: var(--gold);
            transform: translateY(-5px);
        }
        .testimonial-stars {
            color: var(--gold);
            font-size: 20px;
            margin-bottom: 20px;
        }
        .testimonial-text {
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 25px;
            color: var(--text-secondary);
            font-style: italic;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
            color: var(--bg-primary);
        }
        .author-info h4 {
            font-size: 16px;
            margin-bottom: 3px;
        }
        .author-info p {
            font-size: 13px;
            color: var(--text-muted);
        }
        
        /* Process Section */
        .process-section {
            background: var(--bg-secondary);
            padding: 100px 20px;
        }
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        .process-step {
            text-align: center;
            position: relative;
        }
        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: var(--bg-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            font-weight: 800;
            margin: 0 auto 25px;
            box-shadow: 0 10px 30px rgba(206, 175, 131, 0.4);
        }
        .process-step h3 {
            font-size: 22px;
            margin-bottom: 12px;
            font-weight: 700;
        }
        .process-step p {
            color: var(--text-secondary);
            line-height: 1.7;
        }
       .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 20px 48px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 18px;
            transition: var(--transition);
        }
        .hero-cta-primary {
            background: var(--gold);
            color: var(--bg-primary);
            box-shadow: 0 8px 30px rgba(206, 175, 131, 0.3);
        }
        .hero-cta-primary:hover {
            background: var(--gold-light);
            transform: translateY(-5px);
            box-shadow: var(--glow-gold);
            color: var(--bg-primary);
        }
        
        
        /* CTA Banner */
        .cta-banner {
            background: linear-gradient(135deg, var(--gold-dark), var(--gold));
            padding: 80px 40px;
            text-align: center;
            margin: 100px 20px;
            border-radius: var(--radius);
        }
        .cta-banner h2 {
            font-size: clamp(32px, 5vw, 48px);
            color: var(--bg-primary);
            margin-bottom: 20px;
            font-weight: 700;
        }
        .cta-banner p {
            font-size: 20px;
            color: rgba(20, 21, 26, 0.8);
            margin-bottom: 35px;
        }
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 48px;
            background: var(--bg-primary);
            color: var(--gold);
            border-radius: var(--radius-sm);
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition);
        }
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(20, 21, 26, 0.4);
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .prestation-item {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .prestation-item:nth-child(even) {
                direction: ltr;
            }
        }
        
        @media (max-width: 768px) {
            .prestations-hero {
                padding: 100px 20px 60px;
            }
            .prestation-showcase {
                padding: 60px 20px;
            }
            .prestation-visual {
                height: 350px;
            }
            .prestation-item {
                margin-bottom: 80px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .process-grid {
                grid-template-columns: 1fr;
            }
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            .whatsapp-float {
                width: 55px;
                height: 55px;
                bottom: 20px;
                right: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .cta-banner {
                margin: 60px 15px;
                padding: 60px 25px;
            }
        }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ff7265d */.cta-section {
            background: linear-gradient(135deg, var(--gold-dark), var(--gold));
            padding: 100px 20px;
            text-align: center;
        }
        .cta-section h2 {
            font-size: clamp(32px, 5vw, 48px);
            color: var(--bg-primary);
            margin-bottom: 20px;
            font-weight: 800;
        }
        .cta-section p {
            font-size: 20px;
            color: rgba(20, 21, 26, 0.8);
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 48px;
            background: var(--bg-primary);
            color: var(--gold);
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 18px;
            transition: var(--transition);
            text-decoration: none;
        }
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(20, 21, 26, 0.5);
        }
        
        .cta-button-outline {
            border: 2px solid var(--bg-primary);
        }
        .cta-button-outline:hover {
            background: var(--bg-primary);
            color: var(--gold);
        }/* End custom CSS */