/* Footer Styles */
.main-footer {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: #f9fafb;
  margin-top: 4rem;
}

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

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
  .footer-container {
    max-width: 1400px;
    padding: 3.5rem 2.5rem 2rem;
  }
}

/* Desktop (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .footer-container {
    max-width: 1200px;
  }
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 35px;
  max-height: 35px;
  width: auto;
  object-fit: contain;
}

.footer-logo span {
  color: #dc2626;
  font-weight: 700;
  font-size: 1.5rem;
}

.footer-section p {
  color: #d1d5db;
  line-height: 1.6;
  font-size: 0.9rem;
}

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

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

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #ffcccc;
}

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

.footer-contact li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #d1d5db;
  font-size: 0.9rem;
}

.footer-contact li i {
  color: #ffffff;
  width: 20px;
}

.footer-contact li a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact li a:hover {
  color: #ffffff;
}

.social-media {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.social-link:hover::before {
  left: 100%;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

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

.footer-contact li svg {
  color: #dc2626;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-link:hover {
  background: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-credits {
  width: 100%;
  text-align: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-credits a {
  color: #e91e63;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: all 0.3s ease;
}

.footer-credits a:hover {
  color: #f06292;
  text-decoration: underline;
}

.footer-credits a i {
  font-size: 1rem;
}

.footer-legal a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #ffffff;
}

.loading {
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
  .main-footer {
    margin-top: 3rem;
  }

  .footer-container {
    padding: 2rem 1rem 1rem;
  }

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

  .footer-section {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-section:last-of-type {
    border-bottom: none;
  }

  .footer-section h4 {
    font-size: 1rem;
    margin-bottom: 0.875rem;
  }

  .footer-section p {
    font-size: 0.875rem;
    line-height: 1.6;
  }

  .footer-logo {
    margin-bottom: 1.5rem;
  }

  .footer-logo img {
    height: 28px;
    max-height: 28px;
  }

  .footer-logo span {
    font-size: 1.375rem;
  }

  .footer-links a {
    font-size: 0.875rem;
    padding: 0.5rem 0;
    display: block;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .footer-contact li {
    font-size: 0.875rem;
    margin-bottom: 0.875rem;
    min-height: 44px;
  }

  .social-media {
    gap: 0.75rem;
  }

  .social-link {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding-top: 1.25rem;
    gap: 0.875rem;
  }

  .footer-bottom p {
    font-size: 0.8125rem;
  }

  .footer-legal {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .footer-legal a {
    font-size: 0.8125rem;
    padding: 0.5rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .main-footer {
    margin-top: 2.5rem;
  }

  .footer-container {
    padding: 1.75rem 0.875rem 1rem;
  }

  .footer-content {
    gap: 1.5rem;
    margin-bottom: 1.25rem;
  }

  .footer-section {
    padding-bottom: 1.25rem;
  }

  .footer-section h4 {
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
  }

  .footer-section p {
    font-size: 0.8125rem;
  }

  .footer-logo {
    margin-bottom: 1.25rem;
  }

  .footer-logo img {
    height: 26px;
    max-height: 26px;
  }

  .footer-logo span {
    font-size: 1.25rem;
  }

  .footer-links a {
    font-size: 0.8125rem;
  }

  .footer-contact li {
    font-size: 0.8125rem;
    margin-bottom: 0.75rem;
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .footer-bottom {
    padding-top: 1rem;
    gap: 0.75rem;
  }

  .footer-bottom p {
    font-size: 0.75rem;
  }

  .footer-legal {
    gap: 0.625rem;
  }

  .footer-legal a {
    font-size: 0.75rem;
  }
}

