/* ========================================
   SHARED FOOTER STYLES
   ======================================== */
.footer {
  background: linear-gradient(var(--color-black) 64.0351%, var(--color-navy) 100%);
  color: var(--color-white);
  padding: 64px 40px 32px;
}

.footer__inner {
  max-width: 1108px;
  margin: 0 auto;
}

.footer__top {
  display: flex;
  margin-bottom: 48px;
}

.footer__info {
  flex: 0 0 278px;
  margin-right: 137px;
}

.footer__logo {
  margin-bottom: 24px;
}

.footer__logo svg {
  height: 58px;
  width: auto;
  fill: var(--color-white);
}

.footer__contact-item {
  font-family: var(--font-heading);
  font-size: 15.8px;
  font-weight: 400;
  color: var(--color-footer-text);
  margin-bottom: 20px;
}

.footer__contact-item a {
  color: var(--color-footer-text);
  transition: color 0.3s ease;
}

.footer__contact-item a:hover {
  color: var(--color-white);
}

.footer__columns {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer__column-title {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--color-orange-light);
  margin-bottom: 16px;
}

.footer__column-links {
  list-style: none;
}

.footer__column-links li {
  margin-bottom: 10px;
}

.footer__column-links a {
  font-family: var(--font-heading);
  font-size: 13.5px;
  color: var(--color-white);
  transition: color 0.3s ease;
}

.footer__column-links a:hover {
  color: var(--color-orange-light);
}

.footer__bottom {
  padding-top: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.footer__social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer__social-icons {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: opacity 0.3s ease;
}

.footer__social-link:hover {
  opacity: 0.7;
}

.footer__social-link svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.footer__copyright {
  font-family: var(--font-heading);
  font-size: 15.8px;
  font-weight: 400;
  color: var(--color-white);
}

.footer__driver-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 5px 5px 24px;
  border-radius: 338px;
  transition: background 0.3s ease;
  text-decoration: none;
}

.footer__driver-link:hover {
  background: rgba(255, 255, 255, 0.3);
}

.footer__driver-link-arrow {
  width: 61px;
  height: 61px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__driver-link-arrow svg {
  width: 61px;
  height: 61px;
  fill: var(--color-white);
}

/* ========================================
   FOOTER RESPONSIVE - TABLET
   ======================================== */
@media (max-width: 1024px) {
  .footer__top {
    flex-direction: column;
    gap: 40px;
  }

  .footer__info {
    flex: auto;
    margin-right: 0;
  }

  .footer__columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   FOOTER RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 768px) {
  .footer {
    padding: 48px 20px 24px;
  }

  .footer__columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }

  .footer__social {
    order: -1;
    align-items: center;
  }

  .footer__driver-link {
    font-size: 16px;
  }

  .footer__driver-link-arrow,
  .footer__driver-link-arrow svg {
    width: 48px;
    height: 48px;
  }
}
