/****************************************
    PJS LUXURY FOOTER — WHITE THEME
*****************************************/

.pjs-footer {
  background: #ffffff;
  padding: 70px 0 40px;
  color: #3e3a30;
  border-top: 1px solid #e9e6df;
  width: 100%;
}

/****************************************
    TOP GRID — 3 COLUMNS
*****************************************/

.footer-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1400px;
  margin: 0 auto 60px;
  padding: 0 40px;
  gap: 80px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  color: #222;
}

.footer-col a {
  display: block;
  text-decoration: none;
  font-size: 15px;
  line-height: 32px;
  color: #6a6a6a;
  transition: 0.25s ease;
}

.footer-col a:hover {
  color: #b89a53;
  padding-left: 3px;
}

/****************************************
    BOTTOM BAR
*****************************************/

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 40px 0;
  border-top: 1px solid #e9e6df;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom-left img {
  width: 160px;
  opacity: 0.95;
}

.footer-bottom-center {
  text-align: center;
  margin: 10px auto;
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: #444;
}

.footer-country {
  font-weight: 600;
}

.footer-language {
  color: #b89a53;
  cursor: pointer;
}

.footer-copy {
  color: #7d7d7d;
}

/****************************************
    SOCIAL ICONS
*****************************************/

.footer-bottom-right {
  display: flex;
  gap: 14px;
}

.social-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #d6d6d6;
  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s ease;
}

.social-circle svg {
  width: 22px;
  height: 22px;
  fill: #444;
  transition: fill 0.3s ease;
}

.social-circle:hover {
  background: #b89a53;
  border-color: #b89a53;
}

.social-circle:hover svg {
  fill: #ffffff;
}

/****************************************
   RESPONSIVE
*****************************************/

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

@media (max-width: 700px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col a {
    line-height: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-bottom-center {
    flex-direction: column;
    gap: 6px;
  }
}
