/* ========================================
   FOOTER
   ======================================== */
.footer {
  background-color: var(--color-bg-light);
  padding: 40px 0;
  margin-top: auto;
}

.footer .container {
  max-width: 1080px;
}

.footer__bg {
  display: none;
}

.footer__logo {
  width: 200px;
  object-fit: contain;
}

.footer__tagline {
  margin-top: 20px;
  font-family: var(--font-semibold);
  font-weight: 600;
  color: var(--color-black);
  font-size: 30px;
  line-height: 35px;
  letter-spacing: 0;
}

/* Social Buttons */
.footer__socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  padding-bottom: 30px;
  flex-wrap: wrap;
}

.social {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  background-color: var(--color-white);
  border-radius: 21px;
  text-decoration: none;
}

.social__bg {
  display: none;
}

.social__icon {
  width: 24px;
  height: 24px;
}

.social__icon--instagram {
  width: 28px;
  height: 28px;
}

.social__text {
  font-family: var(--font-semibold);
  font-weight: 400;
  color: var(--color-black);
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
}

/* Footer Links */
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 20px;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__heading {
  font-family: var(--font-semibold);
  font-weight: 400;
  color: var(--color-black);
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
  margin-bottom: 8px;
}

.footer__link {
  font-family: var(--font-regular);
  font-weight: 400;
  color: var(--color-black);
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
  cursor: pointer;
  transition: color 0.3s ease;
  text-decoration: none;
  display: block;
}

.footer__link:hover {
  color: var(--color-primary);
}

.footer__link--multiline {
  line-height: 21px;
}

.footer__contact {
  font-family: var(--font-medium);
  font-weight: 400;
  color: var(--color-black);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 23px;
}

.footer__contact-label {
  font-weight: 500;
}

.footer__contact-value {
  font-family: var(--font-regular);
}

.footer__address {
  font-family: var(--font-regular);
  font-weight: 400;
  color: var(--color-black);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 21px;
}
