  :root {
            --primary: #0056B8;
            --primary-dark: #003D82;
            --primary-light: #E8F2FF;
            --secondary: #FF6B00;
            --secondary-dark: #E05A00;
            --accent: #00C2FF;
            --light: #FFFFFF;
            --dark: #1A1A2E;
            --gray: #6C757D;
            --gray-light: #F8F9FA;
            --success: #2ECC71;
            --star: #FFC107;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --shadow-heavy: 0 15px 40px rgba(0, 0, 0, 0.15);
            --gradient: linear-gradient(135deg, var(--primary), var(--accent));
            --gradient-secondary: linear-gradient(135deg, var(--secondary), #FF9E00);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Montserrat', 'Segoe UI', sans-serif;
            line-height: 1.7;
            color: var(--dark);
            background-color: #fefefe;
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* ===== BOUTON FIXE AVEC AVIS ===== */
        .urgence-fixe-container {
            position: fixed;
            bottom: 25px;
            left: 25px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 10px;
            max-width: 300px;
            animation: entreeFloat 0.5s ease-out;
        }
        
        .btn-appel-fixe {
            display: flex;
            align-items: center;
            gap: 15px;
            background: var(--gradient-secondary);
            color: white;
            padding: 16px 20px;
            border-radius: 50px;
            text-decoration: none;
            box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }
        
        .btn-appel-fixe:hover {
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 15px 30px rgba(255, 107, 0, 0.6);
        }
        
        .icone-appel {
            background: rgba(255, 255, 255, 0.2);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
        }
        
        .info-appel {
            display: flex;
            flex-direction: column;
            text-align: left;
        }
        
        .numero {
            font-size: 1.3rem;
            font-weight: 900;
            line-height: 1.2;
        }
        
        .sous-titre {
            font-size: 0.85rem;
            opacity: 0.9;
            margin-top: 3px;
        }
        
        .avis-accroche-fixe {
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            color: white;
            padding: 10px 15px;
            border-radius: 12px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            border-left: 4px solid var(--secondary);
        }
        
        .etoiles-avis {
            color: var(--star);
            font-size: 1rem;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4); }
            50% { box-shadow: 0 10px 30px rgba(255, 107, 0, 0.7); }
            100% { box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4); }
        }
        
        @keyframes entreeFloat {
            from { transform: translateX(-20px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        
        /* ===== HEADER PREMIUM ===== */
        .premium-header {
            background: var(--light);
            padding: 15px 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-badge {
            background: var(--gradient);
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
        }
        
        .logo-badge i {
            font-size: 28px;
            color: white;
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
        }
        
        .logo-main {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
        }
        
        .logo-tagline {
            font-size: 13px;
            color: var(--secondary);
            font-weight: 600;
            letter-spacing: 1px;
            margin-top: 5px;
        }
        
        .header-contact {
            display: flex;
            align-items: center;
            gap: 25px;
        }
        
        .urgency-badge {
            background: var(--gradient-secondary);
            color: white;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 15px;
            box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
            animation: pulse 2s infinite;
        }
        
        .phone-cta {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }
        
        .phone-number {
            font-size: 26px;
            font-weight: 900;
            color: var(--dark);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .phone-number i {
            color: var(--secondary);
            font-size: 22px;
        }
        
        .call-text {
            font-size: 13px;
            color: var(--gray);
            margin-top: 3px;
        }
        
        /* ===== HERO SECTION ===== */
        .premium-hero {
            background: linear-gradient(rgba(26, 26, 46, 0.85), rgba(0, 86, 184, 0.9)), url('https://images.unsplash.com/photo-1607472586893-edb57bdc0e39?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 180px 0 120px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
        }
        
        .hero-content {
            flex: 1;
            max-width: 700px;
        }
        
        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 10px 25px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 25px;
        }
        
        .hero-badge i {
            color: var(--accent);
            margin-right: 8px;
        }
        
        .hero-title {
            font-size: 3.8rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 25px;
        }
        
        .hero-title span {
            background: var(--gradient-secondary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .hero-description {
            font-size: 1.4rem;
            margin-bottom: 40px;
            max-width: 600px;
            opacity: 0.9;
        }
        
        .hero-stats {
            display: flex;
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .stat {
            display: flex;
            flex-direction: column;
        }
        
        .stat-number {
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--accent);
            line-height: 1;
        }
        
        .stat-text {
            font-size: 15px;
            opacity: 0.8;
        }
        
        .hero-cta {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 18px 35px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 17px;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary {
            background: var(--gradient-secondary);
            color: white;
            box-shadow: 0 10px 25px rgba(255, 107, 0, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(255, 107, 0, 0.4);
        }
        
        .btn-secondary {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-3px);
        }
        
        .hero-form {
            flex: 1;
            min-width: 300px;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .form-title {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: white;
        }
        
        .input-group {
            margin-bottom: 20px;
        }
        
        .input-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 14px;
        }
        
        .input-icon {
            position: relative;
        }
        
        .input-icon i {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray);
            font-size: 18px;
        }
        
        .form-input {
            width: 100%;
            padding: 18px 18px 18px 50px;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            background: rgba(255, 255, 255, 0.95);
            transition: all 0.3s;
        }
        
        .form-input:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 194, 255, 0.3);
            background: white;
        }
        
        /* ===== SERVICES ===== */
        .premium-services {
            padding: 120px 0;
            background: var(--gray-light);
            position: relative;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }
        
        .section-subtitle {
            color: var(--secondary);
            font-weight: 700;
            font-size: 16px;
            letter-spacing: 2px;
            margin-bottom: 15px;
            text-transform: uppercase;
        }
        
        .section-title {
            font-size: 3rem;
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 20px;
        }
        
        .section-title span {
            color: var(--primary);
        }
        
        .section-description {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            position: relative;
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-heavy);
        }
        
        .service-header {
            padding: 30px 30px 20px;
            position: relative;
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            box-shadow: 0 10px 20px rgba(0, 86, 184, 0.2);
        }
        
        .service-icon i {
            font-size: 36px;
            color: white;
        }
        
        .service-title {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        .service-features {
            padding: 0 30px 20px;
        }
        
        .service-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
        }
        
        .service-feature i {
            color: var(--success);
            font-size: 18px;
        }
        
        .service-cta {
            padding: 0 30px 30px;
        }
        
        /* ===== NOTRE ENTREPRISE ===== */
        .about-company {
            padding: 120px 0;
            background: white;
        }
        
        .about-container {
            display: flex;
            align-items: center;
            gap: 60px;
        }
        
        .about-images {
            flex: 1;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .company-img {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 250px;
            position: relative;
            background-color: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .company-img-large {
            grid-column: span 2;
            height: 300px;
        }
        
        .company-img i {
            font-size: 60px;
            color: var(--primary);
            opacity: 0.7;
        }
        
        .img-text {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 10px;
            text-align: center;
            font-weight: 600;
        }
        
        .about-content {
            flex: 1;
        }
        
        .about-content h2 {
            font-size: 2.8rem;
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 25px;
        }
        
        .about-content h2 span {
            color: var(--primary);
        }
        
        .about-content p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            color: #555;
            line-height: 1.8;
        }
        
        .company-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }
        
        .company-feature {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .company-feature i {
            background: var(--primary-light);
            color: var(--primary);
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
        }
        
        /* ===== CARTE INTERACTIVE ===== */
        .map-section {
            padding: 100px 0;
            background: white;
        }
        
        .map-container {
            display: flex;
            gap: 50px;
            align-items: center;
        }
        
        .map-content {
            flex: 1;
        }
        
        .map-wrapper {
            flex: 1;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-heavy);
        }
        
        #map {
            width: 100%;
            height: 100%;
        }
        
        .zone-intervention {
            background: var(--primary-light);
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            margin-top: 30px;
        }
        
        .zone-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-top: 20px;
        }
        
        .zone-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        
        .zone-list i {
            color: var(--success);
        }
        
        /* ===== AVIS CLIENTS ===== */
        .premium-reviews {
            padding: 120px 0;
            background: var(--gray-light);
            position: relative;
        }
        
        .reviews-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 60px;
        }
        
        .rating-overview {
            display: flex;
            align-items: center;
            gap: 25px;
            background: white;
            padding: 25px 35px;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }
        
        .rating-stars {
            display: flex;
            gap: 5px;
        }
        
        .rating-stars i {
            color: var(--star);
            font-size: 24px;
        }
        
        .rating-score {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--dark);
        }
        
        .rating-total {
            color: var(--gray);
            font-size: 16px;
        }
        
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .review-card {
            background: white;
            border-radius: 20px;
            padding: 35px;
            box-shadow: var(--shadow);
            border: 1px solid #eee;
            transition: all 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }
        
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .reviewer-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: white;
            font-size: 22px;
        }
        
        .reviewer-name {
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--dark);
        }
        
        .review-date {
            color: var(--gray);
            font-size: 14px;
        }
        
        .review-stars {
            display: flex;
            gap: 3px;
        }
        
        .review-stars i {
            color: var(--star);
            font-size: 18px;
        }
        
        .review-text {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #444;
        }
        
        /* ===== SECTION URGENCE ===== */
        .emergency-section {
            background: var(--gradient);
            padding: 100px 0;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .emergency-title {
            font-size: 3.2rem;
            font-weight: 900;
            margin-bottom: 25px;
        }
        
        .emergency-subtitle {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 50px;
            opacity: 0.9;
        }
        
        .emergency-cta {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .btn-emergency {
            background: white;
            color: var(--primary);
            font-size: 1.2rem;
            padding: 22px 45px;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }
        
        .btn-emergency:hover {
            background: var(--secondary);
            color: white;
        }
        
        /* ===== SECTION PROCESSUS ===== */
        .process-section {
            padding: 120px 0;
            background: var(--gray-light);
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 70px;
            position: relative;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 60px;
            left: 50px;
            right: 50px;
            height: 3px;
            background: var(--primary-light);
            z-index: 1;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            background: var(--gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            font-weight: 900;
            margin: 0 auto 30px;
            box-shadow: 0 10px 25px rgba(0, 86, 184, 0.3);
        }
        
        .step-title {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        /* ===== SECTION GARANTIES ===== */
        .guarantees {
            padding: 120px 0;
            background: white;
        }
        
        .guarantees-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 70px;
        }
        
        .guarantee-card {
            text-align: center;
            padding: 40px 30px;
            background: white;
            border-radius: 20px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }
        
        .guarantee-card:hover {
            transform: translateY(-10px);
        }
        
        .guarantee-icon {
            width: 100px;
            height: 100px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 40px;
            color: white;
        }
        
        .guarantee-title {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        /* ===== FOOTER PREMIUM ===== */
        .premium-footer {
            background: var(--dark);
            color: white;
            padding: 100px 0 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 70px;
        }
        
        .footer-logo {
            font-size: 2.2rem;
            font-weight: 900;
            margin-bottom: 20px;
        }
        
        .footer-logo span {
            color: var(--accent);
        }
        
        .footer-description {
            opacity: 0.8;
            margin-bottom: 30px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .social-link:hover {
            background: var(--accent);
            transform: translateY(-5px);
        }
        
        .footer-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: white;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .footer-links a:hover {
            color: var(--accent);
            transform: translateX(5px);
        }
        
        .footer-contact p {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            opacity: 0.9;
        }
        
        .footer-contact i {
            color: var(--accent);
            font-size: 20px;
            width: 25px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 15px;
        }
        
        /* ===== STYLE POUR LA CARTE ===== */
        .leaflet-popup-content {
            font-family: 'Montserrat', sans-serif;
        }
        
        .leaflet-popup-content h3 {
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .custom-marker {
            background: var(--gradient-secondary);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
        }
        
        /* ===== RESPONSIVE ===== */
        @media (max-width: 1100px) {
            .hero-container, .about-container, .map-container {
                flex-direction: column;
            }
            
            .hero-form, .map-wrapper {
                width: 100%;
                max-width: 600px;
            }
            
            .zone-list {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .process-steps::before {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 20px;
            }
            
            .header-contact {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .phone-cta {
                align-items: center;
            }
            
            .hero-title {
                font-size: 2.8rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .reviews-header {
                flex-direction: column;
                gap: 30px;
            }
            
            .emergency-title {
                font-size: 2.5rem;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
            
            .hero-cta, .emergency-cta {
                flex-direction: column;
            }
            
            .urgence-fixe-container {
                bottom: 15px;
                left: 15px;
                right: 15px;
                max-width: none;
                width: auto;
            }
            
            .zone-list {
                grid-template-columns: 1fr;
            }
            
            .map-wrapper {
                height: 400px;
            }
            
            .company-img {
                height: 180px;
            }
            
            .company-img-large {
                height: 200px;
            }
        }
/* === Section Contact Responsive === */
@media screen and (max-width: 768px) {
    .contact-container {
        flex-direction: column; /* empile les colonnes */
        gap: 20px; /* réduit l'espace entre colonnes */
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 20px; /* réduit le padding sur mobile */
        width: 100%;
    }

    .form-row {
        flex-direction: column; /* empile les champs du formulaire */
        gap: 15px;
    }

    .input-group input,
    .input-group select,
    .input-group textarea {
        width: 100%;
    }

    .btn.btn-primary {
        font-size: 1rem;
        padding: 15px;
    }
}
