/* Reset et base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Comic Neue', cursive;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}        

/* Section header styling */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
        
/* Styles spécifiques à la page contact */
.contact-hero {
            background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .contact-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"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
            background-size: 50px 50px;
            animation: twinkle 8s ease-in-out infinite;
        }
        
        .contact-hero .container {
            position: relative;
            z-index: 2;
        }
        
        .contact-title {
            font-family: 'Bangers', cursive;
            font-size: 4em;
            color: #fff;
            text-shadow: 4px 4px 0 #333;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .contact-subtitle {
            color: #fff;
            text-align: center;
            font-size: 1.2em;
            margin-bottom: 40px;
            text-shadow: 2px 2px 0 #333;
        }
        
        .contact-content {
            padding: 80px 0;
            background: linear-gradient(135deg, #74b9ff 0%, #0984e3 50%, #6c5ce7 100%);
            position: relative;
            overflow: hidden;
        }

        .contact-content::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"><circle cx="20" cy="20" r="3" fill="rgba(255,255,255,0.15)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><polygon points="50,10 60,30 40,30" fill="rgba(255,255,255,0.08)"/><rect x="10" y="60" width="8" height="8" fill="rgba(255,255,255,0.12)" transform="rotate(45 14 64)"/></svg>') repeat;
            background-size: 80px 80px;
            animation: patternMove 15s linear infinite;
        }

        .contact-content .container {
            position: relative;
            z-index: 2;
        }

        @keyframes patternMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(80px, 80px); }
        }
        
        .contact-main-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-bottom: 80px;
        }
        
        .contact-info {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .contact-card {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 15px;
            border: 3px solid #333;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        .contact-icon {
            font-size: 2.5em;
            margin-bottom: 15px;
        }

        .contact-card h3 {
            font-family: 'Bangers', cursive;
            font-size: 1.5em;
            color: #333;
            margin-bottom: 10px;
        }

        .contact-card p {
            color: #666;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 20px;
            border: 4px solid #333;
            box-shadow: 0 8px 16px rgba(0,0,0,0.3);
        }

        .comic-form h3 {
            font-family: 'Bangers', cursive;
            font-size: 2em;
            color: #333;
            margin-bottom: 30px;
            text-align: center;
        }
        .comic-title {
            font-family: 'Bangers', cursive;
            font-size: 3.5rem;
            color: #fff;
            text-shadow: 
                4px 4px 0px #000,
                -1px -1px 0px #000,
                1px -1px 0px #000,
                -1px 1px 0px #000,
                1px 1px 0px #000;
            margin-bottom: 20px;
            transform: perspective(500px) rotateX(15deg);
            text-align: center;
        }
        .form-group {
            margin-bottom: 20px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 3px solid #333;
            border-radius: 10px;
            font-size: 1em;
            font-family: 'Comic Neue', cursive;
            background: #f8f9fa;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #ff6b6b;
            background: #fff;
            box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
        }
        
        .agencies-section {
            background: linear-gradient(135deg, #ffeaa7 0%, #fd79a8 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .agencies-section::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"><polygon points="50,20 80,80 20,80" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
            background-size: 60px 60px;
            animation: gentleFloat 10s ease-in-out infinite;
        }
        
        .agencies-section .container {
            position: relative;
            z-index: 2;
        }
        
        .agencies-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .agency-contact-card {
            background: #fff;
            padding: 30px;
            border-radius: 20px;
            border: 4px solid #333;
            text-align: center;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 350px;
        }
        
        .agency-contact-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 217, 61, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.5s;
            opacity: 0;
        }
        
        .agency-contact-card:hover::before {
            opacity: 1;
            transform: rotate(45deg) translate(50%, 50%);
        }
        
        .agency-contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        }
        
        .agency-contact-card h4 {
            font-family: 'Bangers', cursive;
            font-size: 1.8em;
            color: #333;
            margin-bottom: 20px;
            text-transform: uppercase;
            position: relative;
            z-index: 2;
        }
        
        .agency-contact-details {
            position: relative;
            z-index: 2;
        }
        
        .agency-contact-details p {
            color: #666;
            margin: 8px 0;
            font-weight: 500;
        }
        
        .agency-contact-details .phone {
            color: #4ecdc4;
            font-weight: 700;
        }
        
        .agency-contact-details .email {
            color: #ff6b6b;
            font-weight: 700;
            word-break: break-word;
        }
        
        .agency-button {
            text-align: center;
            margin-top: 20px;
            position: relative;
            z-index: 2;
        }
        
        .agency-btn {
            background: linear-gradient(135deg, #74b9ff, #0984e3);
            color: #fff;
            padding: 12px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-family: 'Bangers', cursive;
            font-size: 1.1em;
            border: 3px solid #333;
            transition: all 0.3s ease;
            text-shadow: 1px 1px 0 #333;
            text-transform: uppercase;
            display: inline-block;
            box-shadow: 
                4px 4px 8px rgba(0, 0, 0, 0.3),
                -2px -2px 4px rgba(255, 255, 255, 0.7);
        }
        
        .agency-btn:hover {
            background: linear-gradient(135deg, #0984e3, #74b9ff);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 
                6px 6px 12px rgba(0, 0, 0, 0.4),
                -3px -3px 6px rgba(255, 255, 255, 0.8),
                0 8px 16px rgba(116, 185, 255, 0.4);
        }
        
        @media (max-width: 768px) {
            .contact-main-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .contact-title {
                font-size: 3em;
            }
            
            .contact-info {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .agencies-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        
        @media (max-width: 480px) {
            .contact-title {
                font-size: 2.5em;
            }
        }