.footer-link {
      display: inline-block;
      color: #d1d5db;
      margin-bottom: 0.5rem;
      transition: all 0.3s ease-out;
    }
    .footer-link:hover {
      color: white;
      transform: translateX(4px);
    }
    .footer-title {
      font-size: 1.25rem;
      font-weight: 800;
      margin-bottom: 1.25rem;
      position: relative;
      display: inline-block;
    }
    .footer-title::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 48px;
      height: 3px;
      background: linear-gradient(90deg, #2563eb, #f59e0b);
      border-radius: 2px;
    }
    .social-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      margin: 0 5px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      transition: all 0.3s ease;
    }
    .whatsapp-icon {
      background: linear-gradient(135deg, #25D366, #128C7E);
    }
    .facebook-icon {
      background: linear-gradient(135deg, #1877F2, #0D5CB6);
    }
    .social-icon:hover {
      transform: translateY(-2px) scale(1.05);
      box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    }
    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 0.6rem;
    }
    .footer-contact-item i {
      color: #60A5FA;
      margin-right: 0.75rem;
      margin-top: 0.2rem;
      min-width: 18px;
      transition: color 0.2s;
    }
    .footer-contact-item:hover i {
      color: #FBBF24;
    }
    .footer-copyright {
      margin-top: 2.5rem;
      padding-top: 1.25rem;
      border-top: 1px solid rgba(255,255,255,0.1);
      text-align: center;
      color: #9CA3AF;
      font-size: 0.875rem;
    }

    /* Grid & Column Layout */
    .footer-grid {
      display: grid;
      gap: 2rem;
    }
    .footer-col {
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    /* Social Icons Centered */
    .social-icons-wrapper {
      display: flex;
      justify-content: center;
      margin-top: 1rem;
      flex-wrap: wrap;
    }

    /* Desktop: 4 columns */
    @media (min-width: 1024px) {
      .footer-grid {
        grid-template-columns: repeat(4, 1fr);
      }
      .footer-col {
        text-align: left;
      }
      .footer-col > *:not(.social-icons-wrapper) {
        text-align: left;
      }
    }

    /* Tablet: 2 columns */
    @media (min-width: 768px) and (max-width: 1023px) {
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .footer-col {
        text-align: left;
      }
    }

    /* Mobile: 1 column, ALL centered */
    @media (max-width: 767px) {
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .footer-col {
        text-align: center;
        align-items: center;
      }
      .footer-title {
        display: block;
        text-align: center;
      }
      .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
      }
      .footer-contact-item {
        justify-content: center;
        text-align: center;
      }
      .footer-contact-item i {
        margin-right: 0.5rem;
      }
      .footer-link {
        display: block;
        margin: 0 auto 0.5rem;
      }
    }