/* 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;
}        
               
        
        /* Styles spécifiques à la page agence */
        .agency-hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 50px 0 40px;
            position: relative;
            overflow: hidden;
        }
        
        .agency-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;
        }
        
        .agency-hero .container {
            position: relative;
            z-index: 2;
        }
        
        .agency-title {
            font-family: 'Bangers', cursive;
            font-size: 2.5em;
            color: #fff;
            text-shadow: 4px 4px 0 #333;
            text-align: center;
            margin-bottom: 10px;
        }
        
        .agency-subtitle {
            color: #fff;
            text-align: center;
            font-size: 1em;
            margin-bottom: 20px;
            text-shadow: 2px 2px 0 #333;
        }
        
        .agency-content {
            padding: 80px 0;
            background: #fff;
        }
        
        .agency-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 80px;
        }
        
        .agency-info {
            background: #fff;
            padding: 40px;
            border-radius: 20px;
            border: 4px solid #333;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }
        
        .agency-info h3 {
            font-family: 'Bangers', cursive;
            font-size: 2.2em;
            color: #333;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        .agency-info p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 30px;
            font-size: 1.1em;
        }
        
        .agency-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px;
            background: #f8f9fa;
            border-radius: 10px;
            border: 2px solid #333;
        }
        
        .feature-icon {
            font-size: 1.5em;
        }
        
        .agency-image {
            position: relative;
        }
        
        .agency-photo {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 20px;
            border: 5px solid #333;
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        }
        
        .contact-section {
            background: linear-gradient(135deg, #ffeaa7 0%, #fd79a8 100%);
            padding: 80px 0;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .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;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.3);
        }
        
        .contact-icon {
            font-size: 2.5em;
            margin-bottom: 15px;
            display: block;
        }
        
        .contact-card h4 {
            font-family: 'Bangers', cursive;
            font-size: 1.5em;
            color: #333;
            margin-bottom: 15px;
            text-transform: uppercase;
        }
        
        .contact-card p {
            color: #666;
            margin: 5px 0;
        }
        
        .services-section {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .services-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"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.15)"/><circle cx="40" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
            animation: float 20s infinite linear;
        }
        
        @keyframes float {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }
        
        .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);
        }
        
        .comic-subtitle {
            font-family: 'Comic Neue', cursive;
            font-size: 1.4rem;
            color: #fff;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .service-card {
            background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 
                0 20px 40px rgba(0,0,0,0.1),
                0 0 0 3px #fff,
                0 0 0 6px #4CAF50;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 3px solid #000;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7);
            border-radius: 22px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .service-card:hover::before {
            opacity: 1;
        }
        
        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 
                0 30px 60px rgba(0,0,0,0.2),
                0 0 0 3px #fff,
                0 0 0 6px #ff6b6b;
        }
        
        .service-card.featured {
            background: linear-gradient(145deg, #fff3cd 0%, #ffeaa7 100%);
            box-shadow: 
                0 20px 40px rgba(0,0,0,0.15),
                0 0 0 3px #fff,
                0 0 0 6px #f39c12;
            border-color: #f39c12;
        }
        
        .service-card.featured::after {
            content: 'POPULAIRE';
            position: absolute;
            top: 15px;
            right: -30px;
            background: linear-gradient(45deg, #e74c3c, #c0392b);
            color: white;
            padding: 5px 40px;
            font-size: 0.8rem;
            font-weight: bold;
            transform: rotate(45deg);
            font-family: 'Bangers', cursive;
            letter-spacing: 1px;
            border: 2px solid #000;
        }
        
        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 3px solid #000;
            padding: 10px;
            background: linear-gradient(145deg, #fff, #f0f0f0);
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        
        .price-badge {
            background: linear-gradient(45deg, #ff6b6b, #ee5a52);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-family: 'Bangers', cursive;
            font-size: 1.1rem;
            border: 2px solid #000;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            transform: rotate(-5deg);
        }
        
        .card-content h3 {
            font-family: 'Bangers', cursive;
            font-size: 1.8rem;
            color: #2c3e50;
            margin-bottom: 10px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        
        .card-content p {
            font-family: 'Comic Neue', cursive;
            color: #666;
            margin-bottom: 20px;
            font-style: italic;
            font-weight: 600;
        }
        
        .features-list {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }
        
        .features-list li {
            font-family: 'Comic Neue', cursive;
            color: #2c3e50;
            margin-bottom: 8px;
            font-weight: 600;
            position: relative;
            padding-left: 5px;
        }
        
        .features-list li::before {
            content: '✓';
            color: #27ae60;
            font-weight: bold;
            margin-right: 8px;
            font-size: 1.1rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        
        .btn-comic.primary {
            background: linear-gradient(45deg, #3498db, #2980b9);
            color: white;
            border: 3px solid #000;
            padding: 12px 24px;
            border-radius: 15px;
            font-family: 'Bangers', cursive;
            font-size: 1.1rem;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }
        
        .btn-comic.primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }
        
        .btn-comic.primary:hover::before {
            left: 100%;
        }
        
        .btn-comic.primary:hover {
            background: linear-gradient(45deg, #2980b9, #3498db);
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.3);
        }
        
        .btn-comic.primary:active {
            transform: translateY(0);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        /* Section Carte et Transport */
        .map-section {
            background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .map-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"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.2)"/><circle cx="70" cy="70" r="2" fill="rgba(255,255,255,0.15)"/></svg>');
            animation: float 15s infinite linear;
        }

        .map-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: start;
            position: relative;
            z-index: 2;
        }

        .map-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            border: 5px solid #000;
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
            margin-bottom: 40px;
        }

        .map-iframe {
            width: 100%;
            height: 500px;
            border: none;
            display: block;
        }

        .transport-section {
            background: #fff;
            padding: 50px;
            border-radius: 20px;
            border: 4px solid #000;
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
            width: 100%;
        }

        .transport-section h3 {
            font-family: 'Bangers', cursive;
            font-size: 2rem;
            color: #2c3e50;
            margin-bottom: 30px;
            text-align: center;
            text-transform: uppercase;
        }

        .transport-options {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }

        .transport-item {
            background: linear-gradient(145deg, #f8f9fa, #e9ecef);
            padding: 40px;
            border-radius: 15px;
            border: 3px solid #333;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            min-height: 120px;
            width: 100%;
        }

        .transport-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .transport-item:hover::before {
            left: 100%;
        }

        .transport-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
        }

        .transport-metro {
            background: linear-gradient(145deg, #e8f4f8, #d1ecf1);
            border-color: #17a2b8;
        }

        .transport-bus {
            background: linear-gradient(145deg, #fff3cd, #ffeaa7);
            border-color: #f39c12;
        }

        .transport-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .transport-icon {
            font-size: 2rem;
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
            color: #2c3e50;
        }

        .transport-icon i {
            display: block;
        }

        .transport-title {
            font-family: 'Bangers', cursive;
            font-size: 1.4rem;
            color: #2c3e50;
            margin: 0;
            text-transform: uppercase;
        }

        .transport-details p {
            margin: 8px 0;
            color: #555;
            font-weight: 600;
            line-height: 1.4;
        }

        .transport-details strong {
            color: #2c3e50;
            font-weight: 700;
        }

        /* Animation pour le twinkle manquant */
        @keyframes twinkle {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }
        
        @media (max-width: 768px) {
            .agency-hero {
                padding: 40px 0 30px;
            }
            
            .agency-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .agency-title {
                font-size: 2em;
            }
            
            .agency-features {
                grid-template-columns: 1fr;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .map-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .comic-title {
                font-size: 2.5rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 20px;
            }
            
            .service-card {
                padding: 20px;
            }
            
            .service-icon {
                width: 60px;
                height: 60px;
            }

            .transport-section {
                padding: 25px;
            }

            .transport-section h3 {
                font-size: 1.5rem;
            }

            .transport-options {
                grid-template-columns: 1fr;
            }

            .transport-item {
                padding: 30px;
                min-height: 110px;
            }

            .map-iframe {
                height: 300px;
            }
        }


/* WhatsApp Button */
.whatsapp-chat {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
  /* Ajout de l'image de nuage en arrière-plan */
  background-image: url('../img/tl.webp');
  background-size: 120px 120px;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px;
  transform: scaleX(-1);
}

.whatsapp-chat a {
  display: block;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1001;
}

.whatsapp-chat img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-size: 400% 400%;
  position: relative;
  overflow: hidden;
}


@keyframes float {
  0%, 100% { transform: translateY(-50%) scaleX(-1) translateY(0px); }
  50% { transform: translateY(-50%) scaleX(-1) translateY(-10px); }
}