/*----------------------------------------
  Contact page styles
----------------------------------------*/

.contact-detail-page{
  background: var(--service-cream, #f3f1f2);
}

/* Hero — match the bottom padding used on other detail pages */
.contact-detail-page .service-detail-hero.tp-hero-cst-spacing{
  padding-bottom: clamp(80px, 8vw, 120px);
}

/* Shared dark zone — process + fit-call banner */
.contact-dark-zone{
  color: #f3f1f2;
  background:
    radial-gradient(circle at 14% 10%, rgba(180, 231, 23, 0.13), transparent 32%),
    radial-gradient(circle at 88% 90%, rgba(213, 255, 221, 0.07), transparent 34%),
    linear-gradient(180deg, #0f2b27 0%, #10302a 55%, #071513 100%);
}

/* No-pressure process */
.contact-next-area{
  padding-top: clamp(70px, 7.5vw, 115px);
  padding-bottom: clamp(60px, 6.5vw, 95px);
  scroll-margin-top: 90px;
}
.contact-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243, 241, 242, 0.66);
}
.contact-eyebrow::before{
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tp-common-green-2, #b4e717);
}
.contact-next-head{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 40px;
  margin-bottom: clamp(40px, 4.5vw, 64px);
  padding-bottom: clamp(26px, 3vw, 38px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-next-intro h2{
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 0;
  max-width: 520px;
  color: #ffffff;
}
.contact-assurances{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 430px;
}
.contact-assurances li{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 14px;
  font-weight: 600;
  color: #f3f1f2;
}
.contact-assurances li::before{
  content: "";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--tp-common-green-2, #b4e717) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.6 6.3 5 8.6l4.4-5.2' fill='none' stroke='%2310302a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px 12px no-repeat;
}

/* Process steps — three columns on one row */
.contact-next-steps{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(30px, 3.5vw, 60px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-next-steps li{
  position: relative;
}
.contact-next-steps li::before{
  content: "";
  position: absolute;
  top: 27px;
  left: 70px;
  right: calc(clamp(30px, 3.5vw, 60px) * -1 + 16px);
  height: 1px;
  background: linear-gradient(90deg, rgba(180, 231, 23, 0.4), rgba(243, 241, 242, 0.1));
}
.contact-next-steps li:last-child::before{
  display: none;
}

.contact-next-num{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(180, 231, 23, 0.35);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
  color: var(--tp-common-green-2, #b4e717);
  background: rgba(180, 231, 23, 0.08);
}
.contact-next-copy{
  margin-top: 24px;
}
.contact-next-steps h3{
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: #ffffff;
}
.contact-next-steps p{
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
  color: rgba(243, 241, 242, 0.72);
}

/* Shared CTA section spacing on the dark zone */
.contact-detail-page .tp-service-cta-area{
  margin-top: 0;
  padding: 0 0 clamp(70px, 7.5vw, 115px);
  background: transparent;
}

/* Responsive */
@media (max-width: 991px){
  .contact-next-steps{
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
  .contact-next-steps li{
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 0 22px;
    padding-bottom: clamp(30px, 4vw, 42px);
  }
  .contact-next-steps li:last-child{
    padding-bottom: 0;
  }
  .contact-next-steps li::before{
    top: 58px;
    bottom: 4px;
    left: 27px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(180, 231, 23, 0.4), rgba(243, 241, 242, 0.1));
  }
  .contact-next-copy{
    margin-top: 0;
    padding-top: 4px;
  }
}
@media (max-width: 575px){
  .contact-next-steps li{
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 0 18px;
  }
  .contact-next-steps li::before{
    top: 48px;
    left: 22px;
  }
  .contact-next-num{
    width: 44px;
    height: 44px;
    font-size: 13px;
  }
  .contact-assurances li{
    padding: 10px 14px;
    font-size: 13px;
  }
}
