/* CONTACT HERO START */
.rd-contact-hero{
  padding:clamp(70px,8vw,120px) 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(196,147,47,.12), transparent 34%),
    linear-gradient(180deg,#fff 0%,#f8f9fb 100%);
}

.rd-contact-hero-inner{
  display:grid;
  grid-template-columns:minmax(0,1fr) 420px;
  gap:clamp(36px,5vw,78px);
  align-items: center;
}

.rd-contact-title{
  margin:18px 0 24px;
  color:var(--zb-color-primary);
  font-size:clamp(1.7rem,3vw,3rem);
  line-height:.98;
  font-weight:900;
}

.rd-contact-hero-copy .zb-section-desc{
  max-width:100%;
}

.rd-contact-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:34px;
}

.rd-contact-hero-panel{
  display:grid;
  gap:16px;
}

.rd-contact-stat{
  padding:24px;
  border:1px solid var(--zb-color-border);
  border-radius:26px;
  background:rgba(255,255,255,.78);
  backdrop-filter:blur(14px);
}

.rd-contact-stat strong{
  display:block;
  margin-bottom:8px;
  color:var(--zb-color-primary);
  font-size:1.05rem;
}

.rd-contact-stat span{
  color:var(--zb-color-muted);
  line-height:1.7;
  font-size:.95rem;
}

@media(max-width:991px){
  .rd-contact-hero-inner{
    grid-template-columns:1fr;
    align-items:start;
  }

  .rd-contact-hero-panel{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:767px){
  .rd-contact-hero-panel{
    grid-template-columns:1fr;
  }
}
/* CONTACT HERO END */
/* SMART INQUIRY FORM START */

.rd-smart-inquiry{
  display:grid;
  grid-template-columns:1fr 640px;
  gap:clamp(40px,5vw,80px);
  align-items:start;
}

.rd-smart-copy{
  position:sticky;
  top:110px;
}

.rd-smart-benefits{
  display:grid;
  gap:18px;
  margin-top:36px;
}

.rd-smart-item{
  padding:22px 0;
  border-top:1px solid var(--zb-color-border);
}

.rd-smart-item h3{
  margin:0 0 10px;
  color:var(--zb-color-primary);
  font-size:1.05rem;
}

.rd-smart-item p{
  margin:0;
  color:var(--zb-color-muted);
  line-height:1.7;
}

.rd-smart-form{
  padding:34px;
  border:1px solid var(--zb-color-border);
  border-radius:36px;
  background:#fff;
}

.rd-smart-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.rd-smart-field{
  display:flex;
  flex-direction:column;
}

.rd-smart-field.full{
  grid-column:1/-1;
}

.rd-smart-field label{
  margin-bottom:10px;
  color:var(--zb-color-primary);
  font-weight:700;
  font-size:.94rem;
}

.rd-smart-field input,
.rd-smart-field select,
.rd-smart-field textarea{
  width:100%;
  border:1px solid var(--zb-color-border);
  border-radius:18px;
  background:#fff;
  padding:16px 18px;
  font:inherit;
  color:var(--zb-color-primary);
}

.rd-smart-field textarea{
  min-height:150px;
  resize:vertical;
}

.rd-smart-submit{
  margin-top:28px;
}

@media(max-width:1199px){

  .rd-smart-inquiry{
    grid-template-columns:1fr;
  }

  .rd-smart-copy{
    position:static;
  }

}

@media(max-width:767px){

  .rd-smart-grid{
    grid-template-columns:1fr;
  }

  .rd-smart-form{
    padding:24px;
    border-radius:28px;
  }

}
/* SMART INQUIRY FORM END */
/* WHAT HAPPENS AFTER YOU CONTACT US START */
.rd-contact-process{padding-bottom:50px;background-image: url(../image/pattern-bjt.webp);background-size:100% 100%;}
.rd-contact-process-line{
  position:relative;
  max-width:980px;
  margin:clamp(40px,5vw,60px) auto 0;
}

.rd-contact-process-line::before{
  content:"";
  position:absolute;
  left:28px;
  top:0;
  bottom:0;
  width:1px;
  background:var(--zb-color-border);
}

.rd-contact-step{
  position:relative;
  display:grid;
  grid-template-columns:74px 1fr;
  gap:24px;
  align-items:start;
}

.rd-contact-step:not(:last-child){
  padding-bottom:34px;
}

.rd-contact-step-number{
  position:relative;
  z-index:2;
  width:56px;
  height:56px;
  border-radius:50%;
  border:1px solid var(--zb-color-border);
  background:#fff;
  color:var(--zb-color-primary);
  font-weight:900;
  display:flex;
  align-items:center;
  justify-content:center;
}

.rd-contact-step-content{
  padding:22px 26px;
  border:1px solid var(--zb-color-border);
  border-radius:24px;
  background:#fff;
  transition:var(--zb-transition);
}

.rd-contact-step:hover .rd-contact-step-content{
  transform:translateY(-4px);
  box-shadow:var(--zb-shadow-sm);
}

.rd-contact-step-content h3{
  margin:0 0 10px;
  color:var(--zb-color-primary);
  font-size:1.08rem;
}

.rd-contact-step-content p{
  margin:0;
  color:var(--zb-color-muted);
  line-height:1.75;
}

.rd-contact-extra{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:50px;
}

.rd-contact-extra-box{
  padding:24px;
  border:1px solid var(--zb-color-border);
  border-radius:24px;
  background:#fff;
}

.rd-contact-extra-box strong{
  display:block;
  margin-bottom:8px;
  color:var(--zb-color-primary);
}

.rd-contact-extra-box span{
  color:var(--zb-color-muted);
  line-height:1.7;
}

@media(max-width:767px){

  .rd-contact-process-line::before{
    left:22px;
  }

  .rd-contact-step{
    grid-template-columns:58px 1fr;
    gap:16px;
  }

  .rd-contact-step-number{
    width:44px;
    height:44px;
    font-size:.9rem;
  }

  .rd-contact-step-content{
    padding:20px;
  }

  .rd-contact-extra{
    grid-template-columns:1fr;
  }

}

/* WHAT HAPPENS AFTER YOU CONTACT US END */