.elementor-1788 .elementor-element.elementor-element-6bd8017{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}/* Start custom CSS for html, class: .elementor-element-6f55757 *//* ============ WRAPPER (scoped) ============ */
.pa-reviews {
  max-width: 1120px;
  margin: 0 auto;
  padding: 30px 18px 65px;
  background: #fff;
  color: #191919;
}

/* ============ HEADING ============ */
.pa-heading {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 26px;
  color: #015c55;
  position: relative;
}
.pa-heading::after {
  content: "";
  width: 58px;
  height: 3px;
  background: #ed7d28;
  position: absolute;
  left: 0;
  bottom: -10px;
  border-radius: 999px;
}

/* ============ TOP BLOCK ============ */
.pa-top {
  display: grid;
  grid-template-columns: 160px minmax(320px, 1fr) auto;
  gap: 32px;
  align-items: center;
  background: #f5faf9;
  border: 1px solid #e2ebe9;
  border-radius: 18px;
  padding: 24px 26px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.015);
}

.pa-score-number {
  font-size: 52px;
  font-weight: 700;
}
.pa-score-stars span {
  color: #ed7d28;
  font-size: 16px;
}
.pa-score-text {
  font-size: 13px;
  color: #607070;
  margin-top: 3px;
}

.pa-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pa-bar-row {
  display: grid;
  grid-template-columns: 46px 1fr 30px;
  gap: 8px;
  align-items: center;
  font-size: 13px;
}
.pa-bar-label {
  color: #4b5c5c;
}
.pa-bar-track {
  background: #e7efed;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
}
.pa-bar-fill {
  height: 100%;
  background: #015c55;
  border-radius: 999px;
}
.pa-bar-count {
  text-align: right;
  font-size: 12px;
  color: #607070;
}

/* ============ CTA BUTTON ============ */
.pa-cta {
  text-align: right;
}
.pa-btn {
  display: inline-block;
  background: #015c55;
  color: #fff;
  padding: 11px 26px 12px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out, transform 0.2s ease;
  cursor: pointer;
}
.pa-btn:hover {
  background: #ed7d28;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ============ BOTTOM TITLE ============ */
.pa-bottom-head {
  margin-top: 42px;
  margin-bottom: 18px;
  font-weight: 600;
  font-size: 18px;
  color: #191919;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 10px;
}

/* ============ MARQUEE ============ */
.pa-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.pa-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: paScroll 40s linear infinite;
}
.pa-marquee:hover .pa-track {
  animation-play-state: paused;
}

/* REVIEW CARD */
.pa-card {
  flex: 0 0 auto;
  width: 340px;
  background: #f8fbfa;
  border: 1px solid #e1ece9;
  border-radius: 16px;
  padding: 24px 22px 26px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pa-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.pa-card-stars {
  background: rgba(237, 125, 40, 0.12);
  color: #ed7d28;
  padding: 4px 14px 5px;
  width: fit-content;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
}
.pa-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.pa-card-name {
  font-weight: 600;
  color: #015c55;
  font-size: 15px;
}
.pa-card-date {
  font-size: 12.5px;
  color: #6c7a7a;
}
.pa-card-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: #2c3333;
}

/* ANIMATION */
@keyframes paScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ MODAL ============ */
.pa-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 99999;
  justify-content: center;
  align-items: center;
}
.pa-modal.is-open {
  display: flex;
}
.pa-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(2px);
}
.pa-modal-content {
  position: relative;
  max-width: 520px;
  width: calc(100% - 30px);
  background: #fff;
  border-radius: 16px;
  padding: 26px 24px 28px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  z-index: 2;
}
.pa-modal-title {
  font-size: 20px;
  font-weight: 600;
  color: #015c55;
  margin-bottom: 14px;
}
/* close btn */
.pa-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: transparent;
  color: #444;
  width: 26px;
  height: 26px;
  border: none;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.15s ease;
}
.pa-modal-close:hover {
  background: rgba(0,0,0,0.08);
  color: #000;
}

/* form */
.pa-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pa-form-group label {
  display: block;
  font-weight: 600;
  font-size: 13.5px;
  margin-bottom: 5px;
  color: #191919;
}
.pa-form-group input,
.pa-form-group textarea,
.pa-form-group select {
  width: 100%;
  border: 1px solid #d7e2df;
  border-radius: 8px;
  padding: 9px 11px;
  font-size: 14px;
  transition: 0.15s ease;
  background: #fff;
}
.pa-form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.pa-form-group input:focus,
.pa-form-group textarea:focus,
.pa-form-group select:focus {
  outline: none;
  border-color: #015c55;
  box-shadow: 0 0 0 3px rgba(1,92,85,0.08);
}
.pa-submit-btn {
  background: #015c55;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 20px 11px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.15s ease;
}
.pa-submit-btn:hover {
  background: #ed7d28;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .pa-top {
    grid-template-columns: 1fr;
  }
  .pa-card {
    width: 300px;
  }
  .pa-track {
    animation-duration: 30s;
  }
}
@media (max-width: 640px) {
  .pa-card {
    width: 250px;
  }
  .pa-track {
    animation-duration: 25s;
  }
  .pa-modal-content {
    margin-top: 40px;
  }
}/* End custom CSS */