/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 4rem 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 48%, rgba(0,0,0,0.1) 50%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(0,0,0,0.1) 50%, transparent 52%);
  background-size: 20px 20px;
  opacity: 0.3;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffce00, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.cta-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #dd0000, #cc0000);
  color: white;
  box-shadow: 0 4px 15px rgba(221, 0, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(221, 0, 0, 0.4);
  background: linear-gradient(135deg, #ff0000, #dd0000);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* ===== Follow Section ===== */
.follow-section {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 206, 0, 0.2);
}

.follow-header {
  text-align: center;
  margin-bottom: 3rem;
}

.follow-header h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
  position: relative;
}

.follow-header h3::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #dd0000, #ffce00, #000000);
}

.follow-header p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.follow-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.follow-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.follow-link:hover {
  background: linear-gradient(135deg, rgba(255, 206, 0, 0.1), rgba(221, 0, 0, 0.1));
  border-color: #ffce00;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.follow-link i {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.follow-link:nth-child(1) { border-left: 3px solid #dd0000; }
.follow-link:nth-child(2) { border-left: 3px solid #ffce00; }
.follow-link:nth-child(3) { border-left: 3px solid #000000; }

/* ===== FOOTER STYLES MODERNES ===== */
footer {
  background: linear-gradient(180deg, #000000 0%, #1a1a1a 50%, #000000 100%);
  color: #ffffff;
  padding: 3rem 0 1rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #dd0000 0%, #ffce00 50%, #000000 100%);
  z-index: 10;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Section */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(255, 206, 0, 0.3);
  border: 2px solid #ffce00;
}

.footer-logo h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #ffce00, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo p {
  margin: 0.25rem 0 0 0;
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer-section p {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-social a:nth-child(1) {
  background: #dd0000;
  color: white;
}

.footer-social a:nth-child(2) {
  background: linear-gradient(135deg, #ffce00, #ffffff);
  color: #000000;
}

.footer-social a:nth-child(3) {
  background: #ffffff;
  color: #000000;
}

.footer-social a:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Quick Links */
.footer-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  position: relative;
}

.footer-section h3::before {
  content: '';
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #dd0000, #ffce00);
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.footer-section ul li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 206, 0, 0.1), transparent);
  transition: left 0.5s ease;
}

.footer-section ul li a:hover {
  color: #ffce00;
  padding-left: 1rem;
  background: rgba(255, 206, 0, 0.05);
}

.footer-section ul li a:hover::before {
  left: 100%;
}

.footer-section ul li a i {
  width: 16px;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Contact Section */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding: 0.75rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 206, 0, 0.05);
  border-color: rgba(255, 206, 0, 0.2);
  transform: translateX(5px);
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.contact-item:nth-child(1) .contact-icon {
  background: linear-gradient(135deg, #dd0000, #cc0000);
  color: white;
}

.contact-item:nth-child(2) .contact-icon {
  background: linear-gradient(135deg, #ffce00, #ffffff);
  color: #000000;
}

.contact-item:nth-child(3) .contact-icon {
  background: #ffffff;
  color: #000000;
}

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 0.25rem;
  color: #ffce00;
}

.contact-item p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

.map-container {
  margin-top: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 200px;
  border: none;
  display: block;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.875rem 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
  outline: none;
  border-color: #ffce00;
  box-shadow: 0 0 0 3px rgba(255, 206, 0, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.newsletter-form button {
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #ffce00, #ffffff);
  color: #000000;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 206, 0, 0.3);
  background: linear-gradient(135deg, #ffffff, #ffce00);
}

.newsletter-form p {
  margin: 0.75rem 0 0 0;
  font-size: 0.8rem;
  opacity: 0.7;
  text-align: center;
  width: 100%;
}

/* Google Reviews */
.google-reviews {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.google-reviews h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 600;
}

.stars {
  color: #ffce00;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.google-reviews p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  opacity: 0.7;
  margin: 0;
  line-height: 1.5;
}

.footer-bottom a {
  color: #ffce00;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-bottom a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .btn-group {
    flex-direction: column;
    align-items: center;
  }
  
  .follow-links {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
  
  .contact-item {
    padding: 1rem;
  }
  
  .map-container iframe {
    height: 150px;
  }
  
  .footer-logo {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 2.5rem 0;
  }
  
  .follow-section {
    padding: 2rem 0;
  }
  
  footer {
    padding: 2rem 0 1rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    min-width: auto;
  }
}

/* Animations supplémentaires */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.shimmer {
  background: linear-gradient(90deg, transparent, rgba(255, 206, 0, 0.1), transparent);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

/* Scroll reveal pour les animations */
.footer-section {
  opacity: 0;
}

.footer-section.animate {
  animation: fadeInUp 0.6s ease-out forwards;
}