/* ====== FOOTER SECTION ====== */
.site-footer {
  background-color: #0a0a0c;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 50px 20px;
  z-index: 10 !important;
  
  /* Full viewport width */
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  font-weight: normal;
}

.footer-gradient-text {
  background: linear-gradient(135deg, #0ea5ff, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 15px;
  display: block;
}

.footer-copyright,
.footer-tagline,
.footer-address {
  font-weight: normal !important;
}

.footer-copyright {
  font-size: 1rem;
  margin-bottom: 10px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-address {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 20px;
}

/* ====== MOBILE VERSION ====== */
@media (max-width: 768px) {
  .site-footer {
    padding: 50px 15px !important;
  }
  
  .footer-gradient-text {
    font-size: 1.8rem !important;
  }
  
  .footer-copyright {
    font-size: 0.95rem !important;
  }
}

/* ====== DESKTOP STYLES ====== */
@media (min-width: 768px) {
  .site-footer {
    padding: 60px 40px;
    
  }
  
  .footer-gradient-text {
    font-size: 2.5rem;
  }
}