
/* Footer */
.footer-comic {
  background: #333;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-family: 'Bangers', cursive;
  font-size: 1.5em;
  margin-bottom: 20px;
  color: #ffd93d;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ffd93d;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo .logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 10px;
}

.footer-logo h3 {
  font-family: 'Bangers', cursive;
  font-size: 1.8em;
  color: #ffd93d;
  margin: 0;
}

.footer-logo p {
  color: #ccc;
  font-size: 0.9em;
  margin: 5px 0 0 0;
  font-style: italic;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  font-size: 1.5em;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 2px solid #444;
  color: #999;
}

/* WhatsApp Button */
.whatsapp-chat {
  position: fixed;
  z-index: 1000;
}

.whatsapp-chat a {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.whatsapp-chat img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.social-links .social-link i {
    color: #ff6b47 !important;
    transition: all 0.3s ease;
}
.social-links .social-link:hover i {
    color: #ff8c42 !important;
    transform: scale(1.1);
}
/* Styling spécifique pour la section "Nos agences" */
.footer-section .contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-section .contact-info p {
  margin: 0;
  padding: 8px 12px;
  background: rgba(255, 217, 61, 0.1);
  border-radius: 8px;
  border-left: 3px solid #ffd93d;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-section .contact-info p:hover {
  background: rgba(255, 217, 61, 0.2);
  transform: translateX(5px);
  box-shadow: 0 2px 8px rgba(255, 217, 61, 0.3);
}

.footer-section .contact-info p a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-section .contact-info p:hover a {
  color: #ffd93d;
}

/* Style pour les émojis de localisation */
.footer-section .contact-info p:before {
  content: '';
  flex-shrink: 0;
}

/* Responsive pour la section agences */
@media (max-width: 768px) {
  .footer-section .contact-info {
    gap: 8px;
  }
  
  .footer-section .contact-info p {
    padding: 6px 10px;
    font-size: 0.9em;
  }
}