.site-footer {
    width: 100%;
    margin: 0 auto 0;
    background: #111;
    color: #fff;
    padding: 40px 30px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 30px;
}

.footer-brand h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #fff;
}

.footer-brand p {
    font-size: 14px;
    color: #bbb;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #fff;
}

.footer-links a {
    display: block;
    color: #bbb;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: 0.2s;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-contact p {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 6px;
}

.socials {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.socials a {
    width: 34px;
    height: 34px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    transition: 0.2s;
}

.socials a:hover {
    background: #fff;
    color: #111;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

@media (max-width: 480px) {

  .site-footer {
    padding: 20px 12px !important;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .footer-brand h2 {
    font-size: 16px !important;
    margin-bottom: 6px !important;
  }

  .footer-brand p {
    font-size: 11px !important;
    line-height: 1.4 !important;
  }

  .footer-links h4,
  .footer-contact h4 {
    font-size: 13px !important;
    margin-bottom: 6px !important;
  }

  .footer-links a {
    font-size: 11px !important;
    display: block;
    margin-bottom: 4px;
    text-decoration: none;
  }

  .footer-contact p {
    font-size: 11px !important;
    margin-bottom: 4px !important;
  }

  .socials {
    display: flex;
    gap: 8px;
    margin-top: 6px;
  }

  .socials a {
    font-size: 11px !important;
    padding: 4px 6px;
    border-radius: 4px;
  }

  .footer-bottom {
    margin-top: 12px;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 10px !important;
  }

  .footer-brand,
  .footer-links {
    display: none !important;
  }
}