.site-footer {
  background: #12141d;
  padding: 10px 15px;
  color: #ccc;
  font-size: 15px;
}

/* Контейнер футера */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

/* Верхня частина футера */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Лого + соцмережі */
.footer-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-logo img {
  height: 80px;
  display: block;
}

/* Соцмережі */
.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-socials img {
  width: 30px;
  height: 30px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-socials img:hover {
  opacity: 1;
}

/* Email */
.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
  font-size: 14px;
}

.footer-contact img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  vertical-align: middle;
}

/* Нижня частина футера */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid #333;
  padding-top: 10px;
  margin-top: 20px;
  width: 100%;
}

.footer-copy {
  font-size: 14px;
  color: #ccc;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #1fc0f1;
}

/* Кнопка прокрутки */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.scroll-top:hover {
  background: #eaeaea;
}

.circle-btn {
  background: #fff;
  color: #000;
  font-size: 20px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
}

/* АДАПТАЦІЯ */
@media (max-width: 992px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .footer-left {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-contact {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-logo img {
    height: 50px;
  }

  .scroll-top {
    right: 15px;
    bottom: 20px;
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .footer-copy {
    font-size: 12px;
  }

  .footer-contact {
    font-size: 13px;
  }

  .footer-contact img,
  .footer-socials img {
    width: 20px;
    height: 20px;
  }

  .footer-links a {
    font-size: 12px;
  }
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #ccc;
}

.footer-contact img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  vertical-align: middle;
  filter: brightness(1.2);
}

.email-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.email-label {
  font-size: 14px;
  color: #aaa;
  font-weight: 500;
}

.email-address {
  font-size: 17px;
  color: #fff;
  font-weight: bold;
}
