/* footer section start  */
.pwp-footer-sec {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #111622;
  color: #94a3b8;
  padding: 80px 20px 30px 20px;
  box-sizing: border-box;
}

.pwp-ft-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* Footer Main Grid Layout */
.pwp-ft-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* --- Column 1: Brand Info --- */
.pwp-ft-brand-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.pwp-ft-logo-icon {
  width: 40px;
  height: 40px;
  background-color: #f7730e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111622;
  font-size: 18px;
  flex-shrink: 0;
}

.pwp-ft-brand-name {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.3px;
}

.pwp-ft-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
  margin: 0 0 24px 0;
  max-width: 320px;
}

/* Rating Badge Pill */
.pwp-ft-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13.5px;
  color: #cbd5e1;
  margin-bottom: 24px;
}

.pwp-ft-rating-star {
  color: #f7730e;
  font-size: 13px;
}

.pwp-ft-rating-val {
  font-weight: 800;
  color: #ffffff;
}

/* Social Icons */
.pwp-ft-socials {
  display: flex;
  gap: 12px;
}

.pwp-ft-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.pwp-ft-social-btn:hover {
  background-color: #f7730e;
  color: #ffffff;
  border-color: #f7730e;
}

/* --- Columns Headers & Navigation --- */
.pwp-ft-heading {
  font-size: 13px;
  font-weight: 800;
  color: #f7730e;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 24px 0;
}

.pwp-ft-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pwp-ft-links li {
  margin-bottom: 14px;
}

.pwp-ft-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.pwp-ft-links a:hover {
  color: #f7730e;
}

/* --- Column 4: Reach Us --- */
.pwp-ft-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.pwp-ft-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.55;
  color: #cbd5e1;
}

.pwp-ft-contact-icon {
  color: #f7730e;
  font-size: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}

.pwp-ft-map-box {
  width: 100%;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 8px;
}

.pwp-ft-map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Bottom Bar */
.pwp-ft-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #64748b;
  flex-wrap: wrap;
  gap: 12px;
}

.pwp-ft-bottom-right {
  text-align: right;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .pwp-ft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
  }
}

@media (max-width: 640px) {
  .pwp-footer-sec {
    padding: 50px 16px 24px 16px;
  }

  .pwp-ft-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 40px;
  }

  .pwp-ft-desc {
    max-width: 100%;
  }

  .pwp-ft-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .pwp-ft-bottom-right {
    text-align: center;
  }
}

/* footer section end */
