/* =========================
   MAIN FOOTER
========================= */

.pp-main-footer {
  width: 100%;
  padding: 0 12px 42px;
  background: #050505;
}

.pp-main-footer-box {
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px 0 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr 1.25fr 1fr;
  gap: 42px;
  border-top: 1px dotted rgba(255,255,255,0.28);
}

.pp-footer-col h4 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.pp-footer-col a {
  display: block;
  margin-bottom: 12px;
  color: #aeb0b4;
  font-size: 12px;
  line-height: 1.2;
  text-decoration: none;
  transition: 0.2s ease;
}

.pp-footer-col a:hover {
  color: #f0b35c;
}

.pp-footer-contact {
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.pp-footer-contact i {
  width: 19px;
  height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  background: linear-gradient(180deg, #d79a5a, #9c642f);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .pp-main-footer-box {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .pp-main-footer {
    padding-bottom: 28px;
  }

  .pp-main-footer-box {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 18px;
  }

  .pp-footer-col h4 {
    margin-bottom: 12px;
  }

  .pp-footer-col a {
    font-size: 11px;
    margin-bottom: 10px;
  }
}