/* === Footer === */
footer {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #0f0f1e 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 60px 80px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(250, 100, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.footer-section h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-section p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
  padding-left: 0;
  display: inline-block;
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 1px;
  background: rgb(250, 100, 0);
  opacity: 0;
  transition: opacity 0.3s ease, width 0.3s ease;
}

.footer-links a:hover {
  color: rgb(250, 100, 0);
  padding-left: 12px;
}

.footer-links a:hover::before {
  opacity: 1;
  width: 8px;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.footer-social-link {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.footer-social-link:hover {
  border-color: rgb(250, 100, 0);
  color: rgb(250, 100, 0);
  background: rgba(250, 100, 0, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(250, 100, 0, 0.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 40px;
  padding-top: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  letter-spacing: 0.5px;
}

.footer-bottom a {
  color: rgb(250, 100, 0);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #ff6b35;
}

/* === Responsive === */
@media (max-width: 768px) {
  footer {
    padding: 40px 24px;
    margin-top: 60px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-section h3 {
    font-size: 16px;
  }

  .footer-section p {
    font-size: 13px;
  }

  .footer-socials {
    gap: 12px;
  }

  .footer-social-link {
    width: 36px;
    height: 36px;
    font-size: 14px;
    border-radius: 6px;
  }

  .footer-bottom {
    margin-top: 32px;
    padding-top: 24px;
  }

  .footer-bottom p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 32px 16px;
    margin-top: 40px;
  }

  .footer-content {
    gap: 28px;
  }

  .footer-section h3 {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 16px;
  }

  .footer-section p {
    font-size: 12px;
    line-height: 1.6;
  }

  .footer-links a {
    font-size: 12px;
  }

  .footer-social-link {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .footer-bottom p {
    font-size: 11px;
    letter-spacing: 0px;
  }
}
