/* ==============================
   🦶 FOOTER (FIXED + CLEAN)
   ============================== */
.site-footer {
  background: #222222;
  color: #fff;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  margin: 0 !important;          /* 🚫 прибираємо зовнішній відступ */
  padding: 0 !important;         /* 🚫 прибираємо внутрішній відступ */
  line-height: 1.5;
}

/* Верхній ряд */
.footer-top {
  padding: 50px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Заголовки */
.footer-heading {
  font-size: 18px;
  color: #8DAC99;
  margin-bottom: 15px;
  text-transform: uppercase;
  text-align: center;
}

/* Перший блок — логотип */
.footer-about {
  text-align: center;
}

.footer-logo-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #8DAC99;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}

.footer-logo-img:hover {
  transform: scale(1.05);
}

/* Посилання */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #8DAC99;
}

/* Телефони */
.footer-phones a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

/* Нижній ряд */
.footer-bottom {
  background: #333;
  padding: 15px 0;
  text-align: center;
  border-top: 1px solid #333;
  margin: 0 !important;          /* 🚫 гарантія, що нема відступу */
}

.footer-bottom p {
  color: #aaa;
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
}



/* Адаптив */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-top {
    display: none; /* Ховаємо верхній ряд на мобільних */
  }

  .footer-bottom {
    padding: 20px 0;
  }
}







