/* footer.css - Footer styles */

/* ========== Footer Top (Nav Links) ========== */
.footer-top {
  background: var(--color-bg-light);
  border-top: 1px solid var(--color-border);
  padding: 20px 0;
}

.footer-top .inner ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 30px;
}

.footer-top .inner ul li a {
  font-size: 14px;
  color: var(--color-text);
  transition: var(--transition);
}

.footer-top .inner ul li a:hover {
  color: var(--color-text-dark);
}

/* ========== Footer Bottom (Company Info) ========== */
.footer-btm {
  background: var(--color-bg-light);
  padding: 30px 0 40px;
}

.footer-btm .inner .b-flx-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-btm .p-box p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 2;
}

.footer-btm figure {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.footer-btm figure img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* ========== Responsive ========== */
@media (max-width: 780px) {
  .footer-btm .inner .b-flx-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer-btm figure {
    justify-content: center;
  }

  .footer-top .inner ul {
    gap: 8px 20px;
  }
}

@media (max-width: 480px) {
  .footer-top .inner ul {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}
