/* --- FOOTER ÉLÉGANT & MODERNE --- */
    footer {
      background-color: #0d0d0d;
      color: #ffffff;
      padding: 70px 40px 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 40px;
      padding-bottom: 50px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Colonne 1: Marque & Description */
    .footer-brand h3 {
      font-family: 'Hi Melody', cursive;
      font-size: 3.5rem;
      font-weight: 400;
      line-height: 0.8;
      margin-bottom: 15px;
    }

    .footer-brand p {
      color: #9ca3af;
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 20px;
      max-width: 320px;
    }

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

    .social-links a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: 0.9rem;
      transition: all 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    /* Colonnes 2 & 3: Navigation & Services */
    .footer-column h4 {
      font-size: 1.05rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 25px;
      position: relative;
    }

    .footer-column h4::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 30px;
      height: 2px;
      background-color: #ffffff;
    }

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

    .footer-column ul li {
      margin-bottom: 12px;
    }

    .footer-column ul li a {
      color: #9ca3af;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.3s ease;
    }

    .footer-column ul li a:hover {
      color: #ffffff;
    }

    /* Colonne 4: Newsletter */
    .newsletter p {
      color: #9ca3af;
      font-size: 0.9rem;
      line-height: 1.5;
      margin-bottom: 15px;
    }

    .newsletter-form {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .newsletter-form input {
      padding: 12px 16px;
      border-radius: 25px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: rgba(255, 255, 255, 0.05);
      color: #ffffff;
      font-size: 0.85rem;
      outline: none;
      transition: border-color 0.3s;
    }

    .newsletter-form input:focus {
      border-color: #ffffff;
    }

    .newsletter-form button {
      padding: 12px;
      border-radius: 25px;
      border: none;
      background: #ffffff;
      color: #111111;
      font-weight: 600;
      font-size: 0.85rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .newsletter-form button:hover {
      background: #e5e7eb;
      transform: translateY(-2px);
    }

    /* Footer Bas (Copyright) */
    .footer-bottom {
      max-width: 1200px;
      margin: 20px auto 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8rem;
      color: #6b7280;
    }

    .footer-bottom-links {
      display: flex;
      gap: 20px;
    }

    .footer-bottom-links a {
      color: #6b7280;
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-bottom-links a:hover {
      color: #ffffff;
    }

    /* --- RESPONSIVE MOBILE & TABLETTE --- */
    @media (max-width: 900px) {
      .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
      }
    }

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

      .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
      }
    }