/* ====== FOOTER ====== */
.footer_section {
  background: #03153a;
  color: #fff;
  padding: 50px 0 0;
  font-family: "Sen", sans-serif;
  text-align: center;
}

.footer_logo img {
  max-height: 180px;
  margin-bottom: 20px;
}

.footer_contacts {
  margin-bottom: 20px;
}
.footer_contacts p {
  margin: 6px 0;
  font-size: 16px;
  color: #fff;
}
.footer_contacts i {
  margin-right: 8px;
  color: var(--color-secondary);
}
.footer_contacts a {
  color: #fff;
  text-decoration: none;
}
.footer_contacts a:hover {
  color: var(--color-secondary);
}

/* Social ikone */
.footer_social_icon ul {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
}
.footer_social_icon li {
  list-style: none;
}
.footer_social_icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
}
.footer_social_icon a:hover {
  background: var(--color-secondary);
  transform: translateY(-3px);
}

/* Copyright */
.copyright_section {
  background: #021028;
  margin-top: 30px;
  padding: 16px 10px;
}
.copyright_text {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.copyright_text a {
  color: var(--color-secondary);
  font-weight: 700;
  text-decoration: none;
}
.copyright_text a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 767.98px) {
  .footer_contacts p {
    font-size: 14px;
  }
}
