/*widget kontaktu*/
.contact-widget {
  background: #fff;
  padding: 34px 20px;
}

.contact-widget__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.contact-widget__title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111;
}

.contact-widget__line {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  line-height: 1.6;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
}

.contact-widget__link {
  color: inherit;
  text-decoration: none;
}

.contact-widget__link:hover {
  text-decoration: underline;
}

.contact-widget__dot {
  opacity: 0.65;
  user-select: none;
}

.contact-widget__ico {
  display: inline-block;
  margin-right: 6px;
  opacity: 0.75;
  transform: translateY(1px);
}
/*stopka*/
.site-footer {
  background: #404040;
  color: #fff;
  padding: 44px 20px 54px;
}

.site-footer__inner {
  max-width: 1300px;
  margin: 0 auto;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 28px;
}

.footer-nav {
  display: grid;
  grid-template-columns: 160px 160px;
  gap: 56px;
}

.footer-nav__col {
  display: grid;
  gap: 10px;
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-cta {
  display: grid;
  gap: 50px;
  justify-items: end;
}

.footer-cta__head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-cta__title {
  margin: 0;
  font-size: 24px;
  font-weight: 200;
  color: #ffffff;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social__btn {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #fff;
  color: #222;

  display: grid;
  place-items: center;
  text-decoration: none;

  position: relative;
  overflow: hidden;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease;
}

.footer-social__btn > * {
  position: relative;
  z-index: 2;
  transition: transform 0.25s ease;
}

.footer-social__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 1;
}

.footer-social__btn.fb::before {
  background: #1877f2;
}
.footer-social__btn.ig::before {
  background: linear-gradient(
    45deg,
    #feda75,
    #fa7e1e,
    #d62976,
    #962fbf,
    #4f5bd5
  );
}

.footer-social__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  color: #fff;
}

.footer-social__btn:hover::before {
  transform: translateY(0);
}

.footer-social__btn:hover > * {
  transform: translateY(-2px) scale(1.05);
}

.footer-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #f07a00;
  color: #111;
  border-radius: 999px;
  padding: 12px 22px;

  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;

  position: relative;
  overflow: hidden;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease;
}

.footer-cta__btn .footer-cta__arrow {
  transition: transform 0.25s ease;
}

.footer-cta__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
}

.footer-cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(240, 122, 0, 0.35);
}

.footer-cta__btn:hover::before {
  animation: shine 0.9s ease forwards;
}

.footer-cta__btn:hover .footer-cta__arrow {
  transform: translateX(5px);
}

.footer-cta__btn:active {
  transform: translateY(-1px) scale(0.98);
}

@keyframes shine {
  to {
    left: 130%;
  }
}

.footer-cta__arrow {
  font-size: 18px;
  line-height: 1;
}

.site-footer__slogan {
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-size: clamp(44px, 6.2vw, 78px);
}

.slogan__orange {
  color: #fc9352;
}
.slogan__white {
  color: #f6f9ff;
}

@media (max-width: 1024px) {
  .site-footer {
    padding: 40px 18px 46px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .site-footer__slogan {
    font-size: clamp(40px, 6vw, 64px);
    margin-top: 30px;
  }

  /* NAV WYŚRODKOWANY */
  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    text-align: center;
  }

  .footer-nav__col {
    justify-items: center;
  }

  .footer-cta {
    justify-items: center;
    text-align: center;
    gap: 22px;
  }
}

/* Mobile */
@media (max-width: 700px) {
  .site-footer {
    padding: 38px 16px 44px;
  }

  .site-footer__slogan {
    font-size: clamp(34px, 9vw, 52px);
    line-height: 1;

    /* SLOGAN NIŻEJ OD FORMULARZA */
    margin-top: 30px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
    justify-content: center;
    text-align: center;
  }

  .footer-nav__col {
    justify-items: center;
  }

  .footer-nav a {
    font-size: 16px;
  }

  .footer-cta {
    justify-items: center;
    text-align: center;
    gap: 18px;
  }

  .footer-cta__head {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-cta__btn {
    width: 100%;
    max-width: 420px;
    justify-content: center;
  }
}

/* Małe telefony */
@media (max-width: 420px) {
  .footer-nav {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-nav a {
    font-size: 15px;
  }

  .site-footer__slogan {
    margin-top: 36px; /* jeszcze niżej */
  }

  .footer-cta__btn {
    font-size: 14px;
  }
}
