/* =====================================================
   PARINHALL — FOOTER STYLES
   ===================================================== */

.ph-footer {
  background: var(--ph-dark);
  color: #B0D0D8;
  direction: rtl;
}

.ph-footer__main {
  padding: 60px 0 0;
}

.ph-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

/* Brand */
.ph-footer__logo .ph-logo__parin {
  font-size: 21px;
  color: var(--ph-orange);
}

.ph-footer__logo .ph-logo__hall {
  font-size: 21px;
  color: var(--ph-teal);
}

.ph-footer__tagline {
  font-family: var(--font-heading);
  font-size: 13.5px;
  color: #5A8C98;
  margin: 3px 0 14px;
}

.ph-footer__desc {
  font-size: 13px;
  line-height: 1.9;
  color: #7AB8C4;
  max-width: 270px;
  font-weight: 300;
}

.ph-footer__socials {
  display: flex;
  gap: 9px;
  margin-top: 18px;
}

.ph-footer__social-btn {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(244,241,232,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10.5px;
  color: #B0D0D8;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.ph-footer__social-btn:hover {
  background: var(--ph-orange);
  border-color: var(--ph-orange);
  color: var(--ph-white);
}

/* Columns */
.ph-footer__col-title {
  font-size: 11.5px;
  color: #5A8C98;
  margin-bottom: 13px;
  letter-spacing: 0.3px;
  font-family: var(--font-body);
  font-weight: 400;
}

.ph-footer__col-list {
  list-style: none;
}

.ph-footer__link {
  display: block;
  font-size: 13px;
  color: #B0D0D8;
  padding: 5px 0;
  font-weight: 300;
  transition: color 0.2s ease;
  text-decoration: none;
}

.ph-footer__link:hover {
  color: #E9925E;
}

/* Bottom bar */
.ph-footer__bottom {
  border-top: 1px solid rgba(244,241,232,0.1);
}

.ph-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
  padding-block: 20px;
}

.ph-footer__copy {
  font-size: 12px;
  color: #5A8C98;
}

.ph-footer__payment {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.ph-footer__payment-label {
  font-size: 12px;
  color: #5A8C98;
}

.ph-footer__payment-badge {
  font-size: 11px;
  color: #B0D0D8;
  border: 1px solid rgba(244,241,232,0.18);
  border-radius: 5px;
  padding: 3px 9px;
}

/* Responsive footer */
@media (max-width: 1024px) {
  .ph-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .ph-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .ph-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .ph-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
