
  footer {
    background: linear-gradient(90deg, #602C6D, #D98638);
    color: #fff;
    padding: 50px;
    margin-top: -1px;
    position: relative;
  }

  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 44px;
  }

  .footer-logo {
    margin-bottom: 14px;
  }

  .footer-logo img {
    max-width: 180px;
    height: auto;
    display: block;
  }

  .footer-col h4 {
    font-weight: 700;
    margin-bottom: 12px;
  }

  .footer-col p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
  }

  .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

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

  .footer-col ul li a {
    text-decoration: none;
    color: #f3e8ff;
    font-size: 0.95rem;
    transition: color 0.3s ease;
  }

  .footer-col ul li a:hover {
    color: #fff;
  }

  .socials {
    display: flex;
    gap: 14px;
    margin-top: 10px;
  }

  .socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 20px; /* make Boxicons and Lucide match size */
    transition: all 0.3s ease;
  }

  .socials a:hover {
    background: #fff;
    color: #602C6D;
    transform: translateY(-3px);
  }

  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.85rem;
    opacity: 0.9;
  }

  .footer-bottom a {
    color: #f3e8ff;
    text-decoration: none;
    transition: color 0.3s ease;
  }

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

  @media (max-width: 600px) {
    footer {
      padding: 50px 24px;
    }
  }

  /* === Entrance Animations === */
  .show-up,
  .show-left,
  .show-right {
    opacity: 0;
    transition: opacity 1.4s cubic-bezier(0.25, 1, 0.5, 1),
                transform 1.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
  }

  /* Upward */
  .show-up {
    transform: translateY(40px);
  }
  .show-up.show {
    opacity: 1;
    transform: translateY(0);
  }

  /* From Left */
  .show-left {
    transform: translateX(-50px);
  }
  .show-left.show {
    opacity: 1;
    transform: translateX(0);
  }

  /* From Right */
  .show-right {
    transform: translateX(50px);
  }
  .show-right.show {
    opacity: 1;
    transform: translateX(0);
  }
  
  .newsletter p {
      font-size: 0.9rem;
      margin-bottom: 10px;
      opacity: 0.85;
    }
    
    .newsletter-form form input,
    .newsletter-form form button {
      border-radius: 6px !important;
      padding: 10px !important;
    }
    
    .newsletter-form form button {
      background: #602C6D !important;
      color: #fff !important;
      border: none !important;
    }
        
    a {
      text-decoration: none;
    }