/* About page "Our Team" section had no top/bottom breathing room (original post-1507.css never shipped) */
.elementor-element-e5459bb {
  padding: 110px 0 150px 0;
}
@media (max-width: 767px) {
  .elementor-element-e5459bb {
    padding: 60px 0 80px 0;
  }
}

/* Team slider: guarantee clipping/positioning even before Swiper JS attaches its own classes */
.team-slider {
  position: relative;
  overflow: hidden;
}
.team-slider .swiper-wrapper {
  display: flex;
}
.team-slider .swiper-slide {
  flex-shrink: 0;
}

/* About page "Why Us" capability bars - fit real screenshots without distortion */
.xb-experience .xb-item--persantage_box {
  width: 180px;
  overflow: hidden;
  border-radius: 10px;
}
.xb-experience .xb-item--persantage_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.xb-experience .xb-item--persantage_box::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
  pointer-events: none;
}
.xb-experience .xb-item--persantage {
  z-index: 1;
}

.portfolio-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  column-gap: 32px;
  row-gap: 16px;
}
.portfolio-menu button,
.portfolio-menu button:not(:last-child) {
  margin: 0 !important;
}
@media (max-width: 767px) {
  .portfolio-menu {
    justify-content: flex-start;
    column-gap: 24px;
    row-gap: 14px;
  }
}

/* "Why Enterprise Real Estate Leaders Scale with PropX" - turn plain bullet list into numbered cards */
.about-paragraph ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  counter-reset: about-item;
}
.about-paragraph ul li {
  position: relative;
  padding: 20px 22px 20px 66px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  line-height: 1.7;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.about-paragraph ul li:hover {
  background: rgba(227, 103, 6, 0.07);
  border-color: rgba(227, 103, 6, 0.3);
  transform: translateX(4px);
}
.about-paragraph ul li::before {
  counter-increment: about-item;
  content: counter(about-item, decimal-leading-zero);
  position: absolute;
  left: 20px;
  top: 20px;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(227, 103, 6, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #e36706;
}
.about-paragraph ul li strong {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
@media (max-width: 767px) {
  .about-paragraph ul li {
    padding: 18px 18px 18px 58px;
  }
  .about-paragraph ul li::before {
    left: 16px;
    top: 16px;
    width: 26px;
    height: 26px;
  }
}

/* Hero intro paragraph: narrower column, calmer size so it doesn't compete with the heading */
.hero__intro {
  max-width: 400px;
  margin-left: auto;
  text-align: right;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 24px;
  margin-bottom: 36px;
}
@media (max-width: 767px) {
  .hero__intro {
    max-width: 100%;
    margin-left: 0;
    text-align: left;
    font-size: 15px;
    margin-top: 16px;
    margin-bottom: 26px;
  }
}

/* Hero video (replaces static building image) */
.hero__main-img video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Auto-advancing "Discover Our Capabilities" journey stepper */
.journey-stepper {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
  max-width: 960px;
  margin: 0 auto 30px;
  padding: 8px 30px 0;
  overflow-x: auto;
}
.journey-line {
  position: absolute;
  top: 32px;
  left: 54px;
  right: 54px;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 0;
}
.journey-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #e36706;
  transition: width 0.6s ease;
}
.journey-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  flex: 1;
  min-width: 60px;
  text-decoration: none;
  color: inherit;
}
.journey-step:hover .journey-step-icon {
  border-color: rgba(227, 103, 6, 0.6);
  color: #fff;
}
.journey-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.45);
  transition: all 0.35s ease;
}
.journey-step-icon svg {
  width: 20px;
  height: 20px;
  display: block;
  transition: transform 0.35s ease;
}
.journey-step.active .journey-step-icon {
  color: #fff;
  border-color: #e36706;
  background: linear-gradient(145deg, #2a1608, #1c1005);
  transform: scale(1.14);
  box-shadow: 0 0 0 5px rgba(227, 103, 6, 0.16), 0 0 26px rgba(227, 103, 6, 0.55), inset 0 0 10px rgba(227, 103, 6, 0.25);
  animation: journeyPulse 1.8s ease-out infinite;
}
.journey-step.active .journey-step-icon svg {
  transform: scale(1.05);
}
@keyframes journeyPulse {
  0% { box-shadow: 0 0 0 5px rgba(227, 103, 6, 0.16), 0 0 26px rgba(227, 103, 6, 0.55), inset 0 0 10px rgba(227, 103, 6, 0.25); }
  70% { box-shadow: 0 0 0 10px rgba(227, 103, 6, 0), 0 0 26px rgba(227, 103, 6, 0.55), inset 0 0 10px rgba(227, 103, 6, 0.25); }
  100% { box-shadow: 0 0 0 5px rgba(227, 103, 6, 0), 0 0 26px rgba(227, 103, 6, 0.55), inset 0 0 10px rgba(227, 103, 6, 0.25); }
}
.journey-step-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.4);
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.35s ease;
  white-space: nowrap;
}
.journey-step.active .journey-step-label {
  color: #fff;
  font-weight: 600;
  opacity: 1;
  transform: translateY(0);
  text-shadow: 0 0 12px rgba(227, 103, 6, 0.5);
}
.row.journey-grid {
  position: relative;
}
.journey-grid-item {
  transition: opacity 0.35s ease;
  opacity: 1;
}
.journey-grid-item.is-hidden {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 575px) {
  .journey-stepper {
    padding: 8px 14px 0;
  }
  .journey-line {
    left: 40px;
    right: 40px;
  }
  .journey-step-icon {
    width: 38px;
    height: 38px;
  }
  .journey-line {
    top: 29px;
  }
}

/* PropX Features: With/Without toggle + animated hub-spoke flow */
.propx-toggle {
  display: flex;
  justify-content: center;
  width: max-content;
  gap: 4px;
  margin: 0 auto 60px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}
.propx-toggle-btn {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.propx-toggle-btn.active {
  background: #e36706;
  color: #fff;
}

.propx-flow {
  position: relative;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 1200 / 620;
  margin: 0 auto 60px;
}
.propx-flow-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.propx-flow-path {
  fill: none;
  stroke: rgba(227, 103, 6, 0.35);
  stroke-width: 2;
  transition: stroke 0.4s ease, stroke-dasharray 0.4s ease;
}
.propx-dot {
  fill: #e36706;
  filter: drop-shadow(0 0 4px rgba(227, 103, 6, 0.8));
  transition: opacity 0.3s ease;
}
.propx-flow[data-state="without"] .propx-flow-path {
  stroke: rgba(255, 255, 255, 0.12);
  stroke-dasharray: 6 8;
}
.propx-flow[data-state="without"] .propx-dot {
  opacity: 0;
}

.propx-node {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 96px;
  text-align: center;
}
.propx-node-icon {
  width: 56px;
  height: 56px;
  flex: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e36706;
  transition: all 0.35s ease;
}
.propx-node-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}
.propx-node-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.3;
}
.propx-flow[data-state="without"] .propx-node-icon {
  color: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.08);
}
.propx-flow[data-state="without"] .propx-node-label {
  color: rgba(255, 255, 255, 0.35);
}

.propx-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #fff;
  background: linear-gradient(145deg, #e36706, #ff9142);
  box-shadow: 0 0 0 8px rgba(227, 103, 6, 0.12), 0 0 40px rgba(227, 103, 6, 0.35);
  transition: all 0.4s ease;
}
.propx-hub-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}
.propx-hub-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.propx-flow[data-state="without"] .propx-hub {
  background: #1a1a1a;
  box-shadow: none;
}
.propx-flow[data-state="without"] .propx-hub-icon,
.propx-flow[data-state="without"] .propx-hub-label {
  color: rgba(255, 255, 255, 0.35);
}

.propx-result {
  position: absolute;
  left: 75%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 230px;
}
.propx-result-icon {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(227, 103, 6, 0.12);
  color: #e36706;
}
.propx-result-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.propx-result-icon.state-without {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.4);
}
.propx-result-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.propx-result-copy strong {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.propx-result-copy em {
  font-style: normal;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}
.propx-result-copy .state-without {
  display: none;
}
.propx-flow[data-state="without"] .propx-result-icon.state-with,
.propx-flow[data-state="without"] .propx-result-copy .state-with {
  display: none;
}
.propx-flow[data-state="without"] .propx-result-icon.state-without,
.propx-flow[data-state="without"] .propx-result-copy .state-without {
  display: flex;
}
.propx-flow[data-state="without"] .propx-result-copy strong.state-without,
.propx-flow[data-state="without"] .propx-result-copy em.state-without {
  display: block;
}

@media (max-width: 991px) {
  .propx-flow-svg {
    display: none;
  }
  .propx-flow {
    aspect-ratio: auto;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .propx-node,
  .propx-result {
    position: static;
    transform: none;
    width: 100%;
    max-width: 320px;
  }
  .propx-hub {
    position: static;
    transform: none;
    flex: none;
  }
  .propx-node {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    max-width: 320px;
  }
}

/* CRM for Developers hero: make the small "CRM for Developers" label above the headline stand out more */
.crm-hero-title .sub-title {
  font-size: 30px;
  letter-spacing: 1.5px;
  color: #e36706;
}

/* CRM for Developers hero: heading full-width on top, then image (left) + intro copy (right) below it */
.crm-hero-body {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
}
.crm-hero-image {
  flex: 1;
  min-width: 0;
}
.crm-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
.crm-hero-content {
  flex: 1;
  min-width: 0;
}
.crm-hero-intro {
  text-align: left;
}
.crm-hero-cta {
  text-align: left;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .crm-hero-body {
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
  }
  .crm-hero-intro,
  .crm-hero-cta {
    text-align: center;
  }
}

/* Solutions sub-pages: top banner is now a plain full-bleed image with no text overlay;
   the page title sits in its own line below it instead. */
.crm-banner-with-img {
  height: 320px;
  padding: 0 !important;
  overflow: hidden;
}
.crm-banner-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.crm-banner-caption {
  background: #000;
  padding: 50px 20px;
}
.crm-banner-caption-title {
  font-size: 56px;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.7);
  text-stroke: 1.5px rgba(255, 255, 255, 0.7);
}
@media (max-width: 767px) {
  .crm-banner-with-img {
    height: 240px;
  }
  .crm-banner-caption {
    padding: 30px 20px;
  }
  .crm-banner-caption-title {
    font-size: 32px;
  }
}

/* Solutions sub-pages (CRM for Developers etc.): the per-page column gutter CSS (post-2145.css)
   was never scraped, so these custom columns had zero side padding and bled past the
   site's decorative edge guides. Restore the standard column inset. */
[data-id="crm-hero-text"] > .elementor-widget-wrap,
[data-id="crm-hero-img"] > .elementor-widget-wrap,
[data-id="crm-modules-col"] > .elementor-widget-wrap,
[data-id="crm-cta-col"] > .elementor-widget-wrap {
  padding: 0 20px !important;
}

/* Solutions sub-pages (CRM for Developers etc.): hero image, module blocks, closing CTA images */
.crm-hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
.module-block {
  margin-top: 70px;
}
.module-block:first-child {
  margin-top: 0;
}
.module-block-title {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 24px;
  margin-bottom: 26px;
}
.module-block-num {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(227, 103, 6, 0.12);
  border: 1px solid rgba(227, 103, 6, 0.4);
  color: #e36706;
  font-size: 13px;
  font-weight: 700;
}
.crm-cta-images {
  max-width: 900px;
  margin: 50px auto 0;
  padding: 0 20px;
}
.crm-cta-images img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.propx-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.propx-feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 26px 22px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease, background 0.3s ease;
}
.propx-feature-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.propx-feature-card:hover {
  border-color: rgba(227, 103, 6, 0.4);
  background: rgba(227, 103, 6, 0.05);
}
.propx-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(227, 103, 6, 0.12);
  color: #e36706;
  margin-bottom: 16px;
}
.propx-feature-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.propx-feature-card h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 8px;
}
.propx-feature-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 1199px) {
  .propx-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .propx-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .propx-feature-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Us page: column gutters (no per-page post-*.css was ever scraped for this page) */
[data-id="contact-hero-text"] > .elementor-widget-wrap,
[data-id="contact-info-col"] > .elementor-widget-wrap,
[data-id="contact-form-col"] > .elementor-widget-wrap,
[data-id="contact-cta-col"] > .elementor-widget-wrap,
/* Book A Demo page: same missing-gutter issue, same fix */
[data-id="demo-hero-text"] > .elementor-widget-wrap,
[data-id="demo-info-col"] > .elementor-widget-wrap,
[data-id="demo-form-col"] > .elementor-widget-wrap,
[data-id="demo-cta-col"] > .elementor-widget-wrap {
  padding: 0 20px !important;
}

/* Contact Us page: info cards row */
.propx-contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 10px;
}
.propx-contact-info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 30px 24px;
  text-align: left;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease, background 0.3s ease;
}
.propx-contact-info-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.propx-contact-info-card:hover {
  border-color: rgba(227, 103, 6, 0.4);
  background: rgba(227, 103, 6, 0.05);
}
.propx-contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(227, 103, 6, 0.12);
  color: #e36706;
  margin-bottom: 18px;
}
.propx-contact-info-icon svg {
  width: 21px;
  height: 21px;
  display: block;
}
.propx-contact-info-card h4 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 8px;
}
.propx-contact-info-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0 0 12px;
}
.propx-contact-info-card a {
  color: #e36706;
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
}
.propx-contact-info-card a:hover {
  text-decoration: underline;
}
@media (max-width: 1199px) {
  .propx-contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .propx-contact-info-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Us page: two-column "why talk to us" + form */
.propx-contact-wrap {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-top: 10px;
}
.propx-contact-side {
  flex: 0 0 38%;
  min-width: 0;
}
.propx-contact-side-title {
  text-align: left;
  margin-bottom: 34px;
}
.propx-contact-side-title .sub-title {
  font-size: 18px;
  letter-spacing: 1.5px;
  color: #e36706;
}
.propx-contact-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.propx-contact-points li {
  display: flex;
  gap: 18px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.propx-contact-points li.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.propx-contact-point-num {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(227, 103, 6, 0.12);
  border: 1px solid rgba(227, 103, 6, 0.4);
  color: #e36706;
  font-size: 13px;
  font-weight: 700;
}
.propx-contact-points h4 {
  color: #fff;
  font-size: 17px;
  margin: 0 0 8px;
}
.propx-contact-points p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}
.propx-contact-form-card {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 46px;
}
.propx-contact-form-card h3 {
  color: #fff;
  font-size: 26px;
  margin: 0 0 8px;
}
.propx-contact-form-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14.5px;
  margin: 0 0 30px;
}
.propx-form-row {
  margin-bottom: 20px;
}
.propx-form-row--2 {
  display: flex;
  gap: 20px;
}
.propx-form-row--2 .propx-form-field {
  flex: 1;
  min-width: 0;
}
.propx-form-field > label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
}
.propx-form-field--full {
  width: 100%;
}
.propx-required {
  color: #e36706;
  margin-left: 2px;
}
.propx-optional-hint {
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
}
/* "Are you a" / "Interested in" pill choices (radio or checkbox) */
.propx-choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.propx-choice {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 11px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13.5px;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.propx-choice:hover {
  border-color: rgba(227, 103, 6, 0.5);
}
.propx-choice input[type="radio"],
.propx-choice input[type="checkbox"] {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: #e36706;
  flex: none;
}
.propx-choice:has(input:checked) {
  background: rgba(227, 103, 6, 0.12);
  border-color: #e36706;
  color: #fff;
}
.propx-form-field input,
.propx-form-field select,
.propx-form-field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 13px 16px;
  color: #fff;
  font-size: 14.5px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.propx-form-field textarea {
  resize: vertical;
  min-height: 110px;
}
.propx-form-field input::placeholder,
.propx-form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.propx-form-field input:focus,
.propx-form-field select:focus,
.propx-form-field textarea:focus {
  border-color: rgba(227, 103, 6, 0.6);
  background: rgba(227, 103, 6, 0.05);
}
.propx-form-err {
  display: block;
  min-height: 16px;
  color: #ff6b6b;
  font-size: 12.5px;
  margin-top: 6px;
}
.propx-form-field input.propx-field-invalid {
  border-color: rgba(255, 107, 107, 0.7);
  background: rgba(255, 107, 107, 0.06);
}
/* Custom styled dropdown (replaces native <select> since the browser popup can't be themed) */
.propx-select {
  position: relative;
}
.propx-select-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 13px 16px;
  color: #fff;
  font-size: 14.5px;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.propx-select-trigger:hover {
  border-color: rgba(227, 103, 6, 0.4);
}
.propx-select.is-open .propx-select-trigger {
  border-color: rgba(227, 103, 6, 0.6);
  background: rgba(227, 103, 6, 0.05);
}
.propx-select-value.is-placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.propx-select-arrow {
  flex: none;
  display: flex;
  color: #e36706;
  transition: transform 0.25s ease;
}
.propx-select-arrow svg {
  width: 16px;
  height: 16px;
  display: block;
}
.propx-select.is-open .propx-select-arrow {
  transform: rotate(180deg);
}
.propx-select-options {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  margin: 0;
  padding: 8px;
  list-style: none;
  background: #16181d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  max-height: 260px;
  overflow-y: auto;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.propx-select.is-open .propx-select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.propx-select-options li {
  padding: 11px 14px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.propx-select-options li:hover {
  background: rgba(227, 103, 6, 0.12);
  color: #fff;
}
.propx-select-options li.is-selected {
  background: rgba(227, 103, 6, 0.16);
  color: #e36706;
  font-weight: 500;
}
.propx-select-options::-webkit-scrollbar {
  width: 6px;
}
.propx-select-options::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
}

/* Footer "Ping us" circle button: theme used a parrot-green hover fill; keep it on-brand orange */
.circle-btn .button__bg::before,
.circle-btn .button__bg::after {
  background: #e36706 !important;
}

/* Footer social links: icon buttons instead of the theme's plain text list */
.xb-footer .propx-footer-social {
  list-style: none;
  display: flex;
  gap: 12px;
  margin: 0 0 30px;
  padding: 0;
}
@media (max-width: 991px) {
  .xb-footer .propx-footer-social {
    margin-bottom: 20px;
  }
}
.propx-footer-social li {
  margin: 0;
}
.propx-footer-social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 16px;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.propx-footer-social li a:hover {
  background: #e36706;
  border-color: #e36706;
  color: #14161a;
  transform: translateY(-3px);
}
.propx-social-svg {
  width: 1em;
  height: 1em;
  display: block;
}
.propx-footer-social li a svg {
  width: 17px;
  height: 17px;
}

/* CTA button (homepage + every solution page's closing CTA share this markup):
   theme's plain white block felt flat and sat right under the paragraph with no breathing room. */
.cta-title a {
  margin-top: 35px;
  padding: 21px 40px;
  background-color: transparent;
  border: 1.5px solid #e36706;
  border-radius: 50px;
  color: #fff;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.cta-title a:hover {
  background-color: #e36706;
  border-color: #e36706;
  color: #14161a;
  transform: translateY(-3px);
}
.cta-title a svg path {
  fill: currentColor;
  transition: fill 0.3s ease;
}
@media (max-width: 767px) {
  .cta-title a {
    margin-top: 24px;
    padding: 17px 30px;
  }
}
.propx-form-submit {
  border: none;
  cursor: pointer;
  margin-top: 6px;
}
.propx-form-submit.is-sent {
  background: #1fa971 !important;
}
@media (max-width: 991px) {
  .propx-contact-wrap {
    flex-direction: column;
    gap: 40px;
  }
  .propx-contact-side {
    flex: 1 1 auto;
  }
  .propx-contact-form-card {
    width: 100%;
    padding: 32px 24px;
  }
}
@media (max-width: 575px) {
  .propx-form-row--2 {
    flex-direction: column;
    gap: 20px;
  }
}
