/* === FOOTER === */
.footer {
  background-color: var(--color-footer-bg, var(--color-gray-900));
  color: var(--color-footer-text, var(--color-gray-300));
  padding-top: var(--space-16);
}

.footer__main {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid var(--color-gray-700);
}

/* Footer Brand */
.footer__brand {
  padding-right: var(--space-8);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.footer__logo-img {
  height: 48px;
}

.footer__logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--color-white);
}

.footer__logo-text span {
  color: var(--color-accent);
}

.footer__desc {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
  color: var(--color-gray-400);
}

.footer__social {
  display: flex;
  gap: var(--space-3);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--color-gray-800);
  border-radius: var(--radius-md);
  color: var(--color-gray-400);
  font-size: var(--text-lg);
  transition: all var(--transition-base);
}

.footer__social-link:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Footer Columns */
.footer__column h4 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-white);
  margin-bottom: var(--space-5);
  position: relative;
  padding-bottom: var(--space-3);
}

.footer__column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-accent);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-size: var(--text-base);
  color: var(--color-gray-400);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.footer__link::before {
  content: '';
  width: 0;
  height: 1px;
  background-color: var(--color-accent);
  transition: width var(--transition-base);
}

.footer__link:hover {
  color: var(--color-white);
  padding-left: var(--space-2);
}

.footer__link:hover::before {
  width: 10px;
}

/* Contact Info */
.footer__contact-item {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  font-size: var(--text-base);
  align-items: flex-start;
}

.footer__contact-icon {
  color: var(--color-accent);
  width: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-text {
  color: var(--color-gray-400);
  line-height: var(--leading-relaxed);
}

.footer__contact-text a {
  color: var(--color-gray-400);
  transition: color var(--transition-fast);
}

.footer__contact-text a:hover {
  color: var(--color-white);
}

/* Footer Bottom */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
}

.footer__copyright {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
}

.footer__copyright a {
  color: var(--color-accent);
  transition: color var(--transition-fast);
}

.footer__copyright a:hover {
  color: var(--color-accent-light);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-6);
}

.footer__bottom-link {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
  transition: color var(--transition-fast);
}

.footer__bottom-link:hover {
  color: var(--color-white);
}
