/* Footer styles */
.footer-custom {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2d2d2d 100%);
  position: relative;
  border-top: 3px solid #ffd700;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  padding-right: 2rem;
}

.footer-logo-section {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-logo {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  margin-right: 1rem;
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.footer-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.footer-highlight {
  color: #ffd700;
}

.footer-tagline {
  color: #fbbf24;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0.25rem 0 0 0;
}

.footer-description {
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.footer-accent {
  color: #ffd700;
  font-weight: 600;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social-twitter {
  background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.footer-social-linkedin {
  background: linear-gradient(135deg, #0077b5, #005885);
}

.footer-social-instagram {
  background: linear-gradient(135deg, #e4405f, #833ab4);
}

.footer-social-youtube {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

.footer-social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer-social-icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: white;
}

.footer-column-title {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
}

.footer-column-title::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 2rem;
  height: 2px;
  background: #ffd700;
}

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

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

.footer-link {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-link:hover {
  color: #ffd700;
  transform: translateX(4px);
}

.footer-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 2rem 0;
  border-top: 1px solid #374151;
}

.footer-stat {
  text-align: center;
}

.footer-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1;
}

.footer-stat-label {
  color: #9ca3af;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.footer-warning {
  background: linear-gradient(
    135deg,
    rgba(217, 119, 6, 0.1),
    rgba(180, 83, 9, 0.1)
  );
  border: 1px solid rgba(217, 119, 6, 0.3);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-warning-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-warning-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.footer-warning-title {
  color: #f59e0b;
  font-weight: 600;
  font-size: 0.875rem;
  margin: 0 0 0.5rem 0;
}

.footer-warning-text {
  color: #d1d5db;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

.footer-warning-text strong {
  color: #f59e0b;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #374151;
}

.footer-copyright p {
  color: #9ca3af;
  font-size: 0.875rem;
  margin: 0 0 0.25rem 0;
}

.footer-brand-name {
  color: #ffffff;
  font-weight: 600;
}

.footer-license {
  color: #6b7280;
  font-size: 0.75rem;
}

.footer-badges {
  display: flex;
  gap: 1rem;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(55, 65, 81, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(55, 65, 81, 0.5);
  transition: all 0.3s ease;
}

.footer-badge:hover {
  background: rgba(55, 65, 81, 0.7);
  border-color: rgba(255, 215, 0, 0.3);
}

.footer-badge-icon {
  width: 1rem;
  height: 1rem;
  color: #10b981;
  fill: currentColor;
}

.footer-badge span {
  color: #10b981;
  font-size: 0.75rem;
  font-weight: 500;
}

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

  .footer-brand {
    grid-column: span 2;
    padding-right: 0;
    margin-bottom: 1rem;
  }

  .footer-stats {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-logo-section {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-badges {
    justify-content: center;
  }

  .footer-warning {
    flex-direction: column;
    text-align: center;
  }

  .footer-warning-icon {
    margin: 0 auto 1rem;
  }
}

@media (max-width: 640px) {
  .footer-container {
    padding: 2rem 1rem 1rem;
  }

  .footer-badges {
    flex-direction: column;
    align-items: center;
  }

  .footer-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .footer-stat-number {
    font-size: 1.5rem;
  }
}