/* footer.css - Footer styling */
.footer {
  background-color: #0F172A;
  color: #E2E8F0;
  padding: 50px 0 30px;
  border-top: 4px solid var(--brand-yellow);
}

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

.footer-logo-link {
  display: inline-block;
  text-decoration: none;
}

.footer-brand .footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) saturate(100%) invert(79%) sepia(74%) saturate(2335%) hue-rotate(356deg) brightness(103%) contrast(101%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-brand .footer-logo:hover {
  opacity: 0.9;
}

.footer-desc {
  color: #94A3B8;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 440px;
  margin-bottom: 20px;
}

.footer-contacts {
  font-size: 0.9rem;
  color: #CBD5E1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contacts a {
  color: var(--brand-yellow);
  text-decoration: underline;
}

.footer-contacts a:hover {
  color: #FFFFFF;
}

.footer-title {
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.footer-title::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--brand-yellow);
  margin-top: 6px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.95rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.footer-warning {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.badge-18 {
  background-color: var(--warning-red);
  color: #FFFFFF;
  font-weight: 900;
  font-size: 1.1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.warning-text {
  font-size: 0.85rem;
  color: #94A3B8;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #64748B;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 880px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
