/* ===== FOOTER ===== */
    footer {
      background: var(--dark-color);
      color: white;
      padding: 40px 0 20px;
    }

    footer h5 {
      font-weight: 600;
      margin-bottom: 20px;
    }

    footer a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    footer a:hover {
      color: white;
    }

    footer .social-links a {
      display: inline-block;
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      text-align: center;
      line-height: 40px;
      margin-right: 10px;
      transition: all 0.3s ease;
    }

    footer .social-links a:hover {
      background: var(--primary-color);
      transform: translateY(-3px);
    }