.site-footer {
  background: radial-gradient(circle at right, #2b0a0a, #000 100%);
  color: #cfcfcf;
  padding: 80px 60px 30px;
  font-family: 'Montserrat', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 60px;
  max-width: 1400px;
  margin: auto;
}

/* Brand */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-logo img {
  width: 48px;
  height: 48px;
}

.footer-logo h3 {
  font-size: 20px;
  font-weight: 700;
}

.footer-logo small {
  font-size: 13px;
  color: #aaa;
}

.white { color: #fff; }
.red { color: #e10600; }

.footer-desc {
  max-width: 340px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background: #e10600;
}

/* Links */
.footer-links h4,
.footer-newsletter h4 {
  font-size: 18px;
  margin-bottom: 18px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  color: #cfcfcf;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

/* Newsletter */
.footer-newsletter p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 8px;
  border: none;
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.newsletter-form input::placeholder {
  color: #aaa;
}

.newsletter-form button {
  background: #e10600;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
}

/* Bottom */
.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 14px;
}

.scroll-top {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
}

.scroll-top:hover {
  background: #e10600;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }
}
