 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: #2c3e50;
            background: #f8fafc;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="5" cy="20" r="1" fill="rgba(255,255,255,0.08)"/><circle cx="20" cy="5" r="0.8" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23contact)"/></svg>');
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-features {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .feature {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(255,255,255,0.1);
            padding: 10px 20px;
            border-radius: 25px;
            backdrop-filter: blur(10px);
        }
        
        .feature-icon {
            width: 20px;
            height: 20px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }
        
        /* Main Content */
        .contact-main {
            padding: 80px 0;
            background: white;
        }
        
  .contact-single {
    max-width: 600px;
    margin: 0 auto;
}

/*Mail directe */

.contact-info-box {
    background: #e0f2fe;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: center;
}

.contact-info-box h3 {
    color: #0c4a6e;
    margin-bottom: 15px;
}

.direct-contact {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-link {
    color: #0284c7;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: #0284c7;
    color: white;
}
        
        /* Contact Form */
        .contact-form {
            background: #f8fafc;
            padding: 40px;
            border-radius: 16px;
            border: 1px solid #e5e7eb;
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .form-header h2 {
            color: #1f2937;
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        
        .form-header p {
            color: #6b7280;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            color: #374151;
            font-weight: 500;
            margin-bottom: 8px;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #374151 !important; 
}
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
              outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    color: #374151 !important;
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        
        .service-options {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-top: 10px;
        }
        
        .service-option {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .service-option input[type="checkbox"] {
            width: auto;
        }
        
        .urgency-notice {
            background: #fef3c7;
            border: 1px solid #f59e0b;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            display: none;
        }
        
        .urgency-notice.show {
            display: block;
        }
        
        .urgency-notice h4 {
            color: #92400e;
            margin-bottom: 5px;
        }
        
        .urgency-notice p {
            color: #92400e;
            font-size: 0.9rem;
        }
        
        /* Checkbox */
        
        .checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto !important;
    margin: 0;
}

.checkbox-label a {
    color: #10b981;
    text-decoration: underline;
}
        
        .submit-btn {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 20px;
        }
        
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
        }
        
        .form-note {
            text-align: center;
            color: #6b7280;
            font-size: 0.9rem;
            margin-top: 15px;
        }
        
        /* Contact Info */
        .contact-info h2 {
            color: #1f2937;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        .contact-info p {
            color: #6b7280;
            font-size: 1.1rem;
            margin-bottom: 30px;
            line-height: 1.7;
        }
        
        .contact-methods {
            display: grid;
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .contact-method {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px;
            background: #f8fafc;
            border-radius: 12px;
            border-left: 4px solid #10b981;
            transition: all 0.3s ease;
        }
        
        .contact-method:hover {
            background: #f0fdf4;
            transform: translateX(5px);
        }
        
        .method-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }
        
        .method-content h3 {
            color: #1f2937;
            margin-bottom: 5px;
        }
        
        .method-content p {
            color: #6b7280;
            margin: 0;
            font-size: 0.95rem;
        }
        
        .method-content a {
            color: #10b981;
            text-decoration: none;
            font-weight: 500;
        }
        
        .method-content a:hover {
            text-decoration: underline;
        }
        
        .availability {
            background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
            padding: 25px;
            border-radius: 12px;
            border-left: 4px solid #0284c7;
            margin-bottom: 30px;
        }
        
        .availability h3 {
            color: #0c4a6e;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .schedule {
            display: grid;
            gap: 8px;
        }
        
        .schedule-item {
            display: flex;
            justify-content: space-between;
            color: #0c4a6e;
            font-size: 0.95rem;
        }
        
        .urgent-contact {
            background: linear-gradient(135deg, #fee2e2 0%, #fef2f2 100%);
            padding: 25px;
            border-radius: 12px;
            border-left: 4px solid #dc2626;
            margin-top: 30px;
        }
        
        .urgent-contact h3 {
            color: #991b1b;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .urgent-contact p {
            color: #991b1b;
            margin: 0;
            font-size: 0.95rem;
        }
        
        .whatsapp-btn {
            background: #25d366;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 15px;
        }
        
        .whatsapp-btn:hover {
            background: #20ba5a;
            transform: translateY(-2px);
        }
        
        /* FAQ Section */
        .faq {
            padding: 80px 0;
            background: #f8fafc;
        }
        
        .faq h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #1f2937;
            margin-bottom: 50px;
        }
        
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .faq-item {
            background: white;
            padding: 25px;
            border-radius: 12px;
            border-left: 4px solid #10b981;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        
        .faq-question {
            color: #1f2937;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .faq-answer {
            color: #6b7280;
            line-height: 1.6;
        }
        
        /* Location */
        .location {
            padding: 80px 0;
            background: white;
        }
        
        .location-content {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .location h2 {
            font-size: 2.2rem;
            color: #1f2937;
            margin-bottom: 20px;
        }
        
        .location p {
            color: #6b7280;
            font-size: 1.1rem;
            margin-bottom: 30px;
        }
        
        .service-areas {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 30px;
        }
        
        .area-tag {
            background: #e0f2fe;
            color: #0c4a6e;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-features {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .service-options {
                grid-template-columns: 1fr;
            }
            
            .faq-grid {
                grid-template-columns: 1fr;
            }
            
            .container {
                padding: 0 15px;
            }
        }
        
          /* Success message */
        .success-message {
            background: #f0fdf4;
            border: 2px solid #10b981;
            color: #065f46;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            display: none;
        }
        
        .success-message.show {
            display: block;
        }
        
        .success-message h4 {
            margin-bottom: 5px;
        }