/* ========================================
   Footer Styles - Bold Creative Design
   ======================================== */

footer {
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-card) 100%);
  color: var(--text-secondary);
  padding: 80px 0 0;
  margin-top: 100px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange-primary), var(--teal-primary), transparent);
}

.footer-content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Footer Brand */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.footer-brand-text {
  font-size: 1.5rem;
  font-weight: 900;
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Footer Section Titles */
.footer-section h3 {
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

/* Footer Links */
.footer-section a,
.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  display: inline-block;
}

.footer-section a:hover,
.footer-link:hover {
  color: var(--orange-primary);
  transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
  padding: 32px 0;
}

.footer-bottom-content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--orange-primary);
  background: var(--orange-primary);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 60px 0 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    padding: 0 20px 40px;
    gap: 32px;
  }
  
  .footer-bottom-content {
    padding: 0 20px;
    flex-direction: column;
    text-align: center;
  }
}
