.footer {
  width: 100%;
  background: #1c1e24;
  color: #fff;
}

.footer .content-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 64px;
  padding-bottom: 64px;
  height: auto;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.5;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-links-scroll {
  max-height: 140px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.footer-links-scroll::-webkit-scrollbar {
  display: none;
}

.footer-links-chevron {
  display: flex;
  justify-content: center;
  padding-top: 6px;
  height: 10px;
}

.footer-links-chevron::before {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255,255,255,0.35);
  border-bottom: 2px solid rgba(255,255,255,0.35);
  transform: rotate(45deg);
  transform-origin: center;
  animation: footerChevronBounce 1.5s ease-in-out infinite;
}

@keyframes footerChevronBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(3px); }
}

.footer-col-brand {
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.footer-logo {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-email {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 4px;
}

.footer-copyright {
  font-size: 12px;
  opacity: 0.4;
  margin-top: 16px;
}

@media (max-width: 767px) {
  .footer .content-container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer-col-brand {
    grid-column: 1 / -1;
    text-align: left;
  }
}
