.site-footer {
  background: linear-gradient(135deg, #0a0a1a 0%, #12122b 100%);
  border-top: 1px solid rgba(255, 107, 53, 0.3);
  padding: 2.5rem 0 1.5rem;
  margin-top: 3rem;
  font-family: 'Open Sans', 'Segoe UI', sans-serif;
  width: 100%;
  clear: both;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo-col,
.footer-address-col,
.footer-links-col,
.footer-disclaimer-col {
  flex: 1;
  min-width: 180px;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.footer-logo-link img {
  border-radius: 12px;
}

.footer-brand {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  white-space: nowrap;
}

.brand-white {
  color: #ffffff;
}

.brand-orange {
  color: #ffb347;
}

.footer-address-col h4,
.footer-links-col h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffb347;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.footer-address-col address {
  font-style: normal;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #ccddee;
}

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

.footer-links-col li {
  margin-bottom: 0.5rem;
}

.footer-links-col a {
  color: #ccddee;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links-col a:hover {
  color: #ffb347;
  text-decoration: underline;
}

.footer-disclaimer-col {
  font-size: 0.75rem;
  color: #99aacc;
  line-height: 1.5;
  border-left: 2px solid rgba(255, 107, 53, 0.5);
  padding-left: 1rem;
}

.footer-copyright {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  color: #8899bb;
}

@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-disclaimer-col {
    border-left: none;
    padding-left: 0;
  }
  .footer-brand {
    font-size: 1rem;
    white-space: normal;
  }
}