  /* Fonts */
  @import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');

  @font-face {
      font-family: 'Cinzel';
      src: url('assets/fonts/agency-fb.ttf') format('truetype');
      font-display: swap;
  }

  /* Base Styles */
  .site-footer {
      font-family: 'Cinzel', sans-serif;
      color: #ffffff;
      position: relative;
  }

  /* Nouvelle structure BG */
  .footer-bg-wrapper {
      position: relative;
      width: 100%;
      min-height: 400px;
  }

  .footer-bg-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('../images/footer-bg.webp');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0.7;
      z-index: 0;
  }

  .footer-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.85);
      z-index: 1;
  }

  .footer-content {
      position: relative;
      z-index: 2;
      padding: 60px 0;
  }

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

  /* Grid Layout */
  .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
  }

  .footer-col {
      padding: 15px;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.5s ease;
  }

  .footer-col.animated {
      opacity: 1;
      transform: translateY(0);
  }

  /* Typography */
  .footer-title {
      font-family: 'Cinzel', serif;
      font-size: clamp(1.5rem, 2vw, 2rem);
      color: #fad303;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 10px;
  }

  .footer-title::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 50px;
      height: 2px;
      background-color: #fad303;
  }

  /* Map Container */
  .map-container {
      border: 3px solid #fad303;
      border-radius: 5px;
      overflow: hidden;
      height: 250px;
  }

  .map-container iframe {
      width: 100%;
      height: 100%;
  }

  /* Contact Info */
  .contact-info {
      list-style: none;
      padding: 0;
  }

  .contact-info li {
      margin-bottom: 15px;
      display: flex;
      align-items: flex-start;
  }

  .contact-info i {
      color: #fad303;
      margin-right: 15px;
      font-size: 18px;
      margin-top: 3px;
      flex-shrink: 0;
  }

  .contact-info span {
      font-size: clamp(0.9rem, 1.5vw, 1rem);
      line-height: 1.5;
  }

  /* Footer Image */
  .footer-img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border: 3px solid #fad303;
      border-radius: 5px;
  }

  /* Social Links */
  .social-links {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 20px;
  }

  .social-links a {
      color: #ffffff;
      background-color: rgba(250, 211, 3, 0.2);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
  }

  .social-links a:hover {
      background-color: #fad303;
      transform: translateY(-3px);
  }

  /* Footer Bottom */
  .footer-bottom {
      background-color: #2c3e50;
      padding: 20px 0;
  }

  .footer-bottom-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
  }

  .footer-logo img,
  .theme-logo img {
      height: 60px;
      width: auto;
      object-fit: contain;
  }

  .copyright p {
      font-family: 'Cinzel', serif;
      margin: 0;
      font-size: clamp(0.8rem, 1.2vw, 0.9rem);
      color: #ffffff;
      text-align: center;
  }

  /* Styles pour la section des extensions */
  .footer-extensions {
      text-align: left;
  }

  .extension-item {
      margin-bottom: 20px;
  }

  .extension-title {
      font-size: 1.1rem;
      font-weight: 600;
      color: #fff;
      margin-bottom: 8px;
  }

  .extension-address {
      font-family: 'Montserrat', sans-serif;
      color: rgb(255, 213, 0);
      font-size: 0.6rem;
      margin-bottom: 0;
      display: flex;
      align-items: flex-start;
  }

  .extension-address i {
      margin-right: 10px;
      margin-top: 3px;
  }

  /* Responsive */
  @media (max-width: 768px) {
      .extension-item {
          text-align: center;
      }

      .extension-address {
          justify-content: center;
          font-family: 'Montserrat', sans-serif;
          color: rgb(255, 213, 0);
          font-size: 0.6rem;
      }
  }

  /* Responsive Adjustments */
  @media (max-width: 992px) {
      .footer-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .footer-image {
          grid-column: span 2;
      }

      .footer-bg-wrapper {
          min-height: auto;
      }
  }

  @media (max-width: 768px) {
      .footer-grid {
          grid-template-columns: 1fr;
      }

      .footer-image {
          grid-column: span 1;
      }

      .footer-bottom-content {
          flex-direction: column;
      }

      .footer-logo,
      .theme-logo {
          order: -1;
      }
  }

  @media (max-width: 480px) {
      .footer-content {
          padding: 40px 0;
      }

      .footer-col {
          padding: 10px;
          font-family: 'Montserrat', sans-serif;
          color: rgb(255, 213, 0);
          font-size: 0.6rem;
      }
  }