/* ===== Footer ===== */
.footer {
  background: var(--color-footer-bg);
  padding: 60px 0;
  color: var(--color-white);
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

/* Footer Left */
.footer__left {
  flex: 0 0 auto;
}

.footer__title {
  font-size: 36px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__email {
  font-size: 24px;
  font-weight: var(--fw-bold);
  color: var(--color-white);
  display: block;
  margin-bottom: 24px;
  transition: opacity var(--transition);
}

.footer__email:hover {
  opacity: 0.8;
}

.footer__btn {
  padding: 14px 28px;
}

/* Footer Right - Legal Info */
.footer__legal {
  flex: 0 0 auto;
  max-width: 560px;
  font-size: 20px;
  font-weight: var(--fw-medium);
  line-height: 1.3;
  word-break: keep-all;
}

/* Footer Social */
.footer__social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer__social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
}

.footer__social-link:hover {
  transform: translateY(-3px);
  background: var(--color-red);
}

.footer__social-link svg,
.footer__social-link img {
  width: 24px;
  height: 24px;
}

/* === Responsive === */
@media (max-width: 992px) {
  .footer .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer__title {
    font-size: 28px;
  }
  .footer__legal {
    max-width: 100%;
    font-size: 16px;
  }
  .footer__social {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0;
  }
  .footer__email {
    font-size: 18px;
  }
  .footer__title {
    font-size: 24px;
  }
}
