/* HYT Contact page */
.bt-banner{
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background-color: var(--bt-navy);
}
.bt-banner::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20,30,80,0.72), rgba(20,30,80,0.72)),
    url('https://images.unsplash.com/photo-1556745757-8d76bdb6984b?w=1600&q=80');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.bt-banner.bt-banner--dynamic::before{
  background-image:
    linear-gradient(rgba(20,30,80,0.72), rgba(20,30,80,0.72)),
    var(--bt-banner-bg);
}
.bt-banner > .container-xxl{ position: relative; z-index: 1; }
.bt-banner h1{
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #fff;
  margin: 0 0 18px;
  max-width: 1100px;
}
.bt-banner .crumbs{
  color: #fff;
  font-size: 14.5px;
  margin: 0;
}
.bt-banner .crumbs a{
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .15s ease;
}
.bt-banner .crumbs a:hover{ color: var(--bt-orange); }
.bt-banner .crumbs .sep{ margin: 0 8px; opacity: .8; }

.bt-contact-main{
  background: #fff;
  padding: 70px 0 50px;
}
.contact-q-heading{
  font-weight: 800;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.3;
  color: var(--bt-navy);
  margin-bottom: 22px;
  letter-spacing: -0.3px;
}
.contact-q-heading .hl{
  background: var(--bt-orange);
  color: #fff;
  padding: 4px 12px 6px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  line-height: 1.5;
  margin-right: 2px;
}
.contact-intro-text{
  color: #2c2c2c;
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 26px;
}
.contact-info-rows{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 18px;
  margin-top: 8px;
}
.contact-info-row{
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-info-row .ic{
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bt-orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.contact-info-row .txt{
  color: var(--bt-navy);
  font-size: 14px;
  line-height: 1.55;
  padding-top: 7px;
}
.contact-info-row .txt a{
  color: inherit;
  text-decoration: none;
}
.contact-info-row .txt a:hover{ color: var(--bt-orange); }

.contact-form-card{
  background: var(--bt-navy);
  border-radius: 8px;
  padding: 30px 32px;
  color: #fff;
}
.contact-form-card .bt-contact-heading{
  font-weight: 800;
  font-size: clamp(22px, 2.2vw, 28px);
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -0.3px;
  line-height: 1.2;
}
.contact-form-card .bt-contact-heading .hl{
  background: var(--bt-orange);
  color: #fff;
  padding: 4px 12px 6px;
  margin-right: 4px;
  display: inline-block;
}
.contact-form-card__lead{
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 22px;
}
.contact-form-card__open{
  background: var(--bt-orange);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 14.5px;
  transition: background .15s ease, transform .15s ease;
}
.contact-form-card__open:hover{
  background: var(--bt-orange-hover);
  color: #fff;
  transform: translateY(-1px);
}
.contact-form-card .hyt-quote-form .invalid-feedback{
  display: block;
  color: #ffb4b4;
  font-size: 13px;
  margin-top: 6px;
  padding-left: 8px;
}
.contact-form-card .hyt-quote-form .form-control.is-invalid{
  box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.55);
}
.contact-form-card .hyt-contact-quote-alert{
  margin-bottom: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.contact-form-card .hyt-contact-quote-alert.is-error{
  background: rgba(255, 107, 107, 0.2);
  border: 1px solid rgba(255, 107, 107, 0.45);
}
.contact-form-card .hyt-contact-quote-success{
  text-align: center;
  padding: 20px 12px 8px;
  color: #fff;
}
.contact-form-card .hyt-contact-quote-success .success-icon{
  font-size: 48px;
  color: var(--bt-orange);
  margin-bottom: 12px;
  line-height: 1;
}
.contact-form-card .hyt-contact-quote-success h3{
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 10px;
}
.contact-form-card .hyt-contact-quote-success p{
  opacity: 0.9;
  line-height: 1.6;
}
.contact-form-card .bt-form .form-control{
  height: 42px;
  border-radius: 100px;
  padding: 0 18px;
  font-size: 13.5px;
  background: #fff;
  border: none;
  color: var(--bt-navy);
}
.contact-form-card .bt-form textarea.form-control{
  height: 90px;
  border-radius: 20px;
  padding: 12px 18px;
  resize: none;
}
.contact-form-card .bt-form .row > div{ margin-bottom: 14px; }
.contact-form-card .bt-form .form-label{
  color: #fff;
  font-size: 13px;
  margin-bottom: 6px;
  font-weight: 500;
}
.contact-form-card .bt-form .req{ color: #ff6b6b; }
.contact-form-card .bt-form .btn-quote{
  background: var(--bt-orange);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 10px 26px;
  font-weight: 600;
  font-size: 13.5px;
  margin-top: 6px;
  transition: background .15s ease, transform .15s ease;
}
.contact-form-card .bt-form .btn-quote:hover{
  background: var(--bt-orange-hover);
  transform: translateY(-1px);
}

.bt-help{
  position: relative;
  background: var(--bt-navy);
  padding: 70px 0 80px;
  overflow: hidden;
  color: #fff;
}
.bt-help::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='160' viewBox='0 0 180 160'><g fill='none' stroke='%23f08023' stroke-width='1' opacity='0.18'><polygon points='30,5 55,20 55,50 30,65 5,50 5,20'/><polygon points='90,5 115,20 115,50 90,65 65,50 65,20'/><polygon points='150,5 175,20 175,50 150,65 125,50 125,20'/><polygon points='60,55 85,70 85,100 60,115 35,100 35,70'/><polygon points='120,55 145,70 145,100 120,115 95,100 95,70'/><polygon points='30,105 55,120 55,150 30,165 5,150 5,120'/><polygon points='90,105 115,120 115,150 90,165 65,150 65,120'/><polygon points='150,105 175,120 175,150 150,165 125,150 125,120'/></g></svg>");
  background-repeat: repeat;
  pointer-events: none;
  z-index: 0;
}
.bt-help > .container-xxl{ position: relative; z-index: 1; }
.help-heading{
  text-align: center;
  font-weight: 800;
  font-size: clamp(24px, 2.8vw, 36px);
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}
.help-heading .hl{
  background: var(--bt-orange);
  color: #fff;
  padding: 4px 14px 8px;
  margin-right: 6px;
  display: inline-block;
}
.help-sub{
  text-align: center;
  color: #d8dbe6;
  font-size: 14.5px;
  margin: 0 auto 44px;
  max-width: 700px;
}
.help-cards{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.help-card{
  border: 1.5px solid rgba(255,255,255,0.7);
  border-radius: 100px;
  padding: 28px 14px 22px;
  text-align: center;
  background: transparent;
  transition: background .2s ease, transform .2s ease;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.help-card:hover{
  background: rgba(255,255,255,0.06);
  transform: translateY(-3px);
}
.help-card .icon{
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bt-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.help-card .icon svg{ width: 30px; height: 30px; }
.help-card .label{
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.3;
}
a.help-card:hover .label{ color: #fff; }

.bt-faq{
  background: #fff;
  padding: 70px 0 90px;
}
.faq-heading{
  font-weight: 800;
  font-size: clamp(24px, 2.8vw, 34px);
  color: var(--bt-navy);
  margin-bottom: 32px;
  line-height: 1.3;
  letter-spacing: -0.3px;
}
.faq-heading .hl{
  background: var(--bt-orange);
  color: #fff;
  padding: 4px 14px 8px;
  margin-right: 6px;
  display: inline-block;
}
.faq-list .faq-item{
  border: 1px solid #e6e6e6;
  border-radius: 100px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-radius .25s ease;
}
.faq-list .faq-item.open{
  border-radius: 18px;
  border-color: #f0bd8e;
}
.faq-list .faq-q{
  width: 100%;
  background: #fff;
  border: none;
  text-align: left;
  color: var(--bt-navy);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background .15s ease;
}
.faq-list .faq-item.open > .faq-q{ color: var(--bt-orange); }
.faq-list .faq-q .chevron{
  color: var(--bt-navy);
  font-size: 14px;
  transition: transform .25s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-list .faq-item.open .chevron{
  transform: rotate(180deg);
  color: var(--bt-orange);
}
.faq-list .faq-a{
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-list .faq-a-inner{
  padding: 0 26px 18px;
  color: #4a4a4a;
  font-size: 14.5px;
  line-height: 1.65;
}
.faq-list .faq-item.open .faq-a{ max-height: 600px; }

.bt-techcta{
  position: relative;
  background: #f4f4f4;
  padding: 60px 0 80px;
  overflow: hidden;
  text-align: center;
}
.bt-techcta::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='160' viewBox='0 0 180 160'><g fill='none' stroke='%23f08023' stroke-width='1' opacity='0.32'><polygon points='30,5 55,20 55,50 30,65 5,50 5,20'/><polygon points='90,5 115,20 115,50 90,65 65,50 65,20'/><polygon points='150,5 175,20 175,50 150,65 125,50 125,20'/><polygon points='60,55 85,70 85,100 60,115 35,100 35,70'/><polygon points='120,55 145,70 145,100 120,115 95,100 95,70'/><polygon points='30,105 55,120 55,150 30,165 5,150 5,120'/><polygon points='90,105 115,120 115,150 90,165 65,150 65,120'/><polygon points='150,105 175,120 175,150 150,165 125,150 125,120'/></g></svg>");
  background-repeat: repeat;
  background-position: bottom;
  mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 75%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 75%);
  pointer-events: none;
  z-index: 0;
}
.bt-techcta > .container-xxl{ position: relative; z-index: 1; }
.techcta-heading{
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--bt-navy);
  margin-bottom: 14px;
  line-height: 1.3;
  letter-spacing: -0.3px;
}
.techcta-heading .hl{
  background: var(--bt-orange);
  color: #fff;
  padding: 4px 14px 8px;
  margin-right: 4px;
  display: inline-block;
}
.techcta-sub{
  color: #2c2c2c;
  font-size: 15px;
  max-width: 720px;
  margin: 0 auto 30px;
  line-height: 1.6;
}
.techcta-buttons{
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-speak-expert{
  display: inline-flex;
  align-items: stretch;
  background: var(--bt-navy);
  border: none;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-speak-expert:hover{
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}
.btn-speak-expert .ic{
  background: var(--bt-orange);
  color: #fff;
  width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.btn-speak-expert .lbl{
  color: #fff;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 14.5px;
  display: flex;
  align-items: center;
}
.btn-submit-inq{
  display: inline-flex;
  align-items: stretch;
  background: #fff;
  border: 1.5px solid var(--bt-orange);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-submit-inq:hover{
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(240,128,35,0.18);
}
.btn-submit-inq .ic{
  background: var(--bt-orange);
  color: #fff;
  width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.btn-submit-inq .lbl{
  color: var(--bt-navy);
  padding: 12px 22px;
  font-weight: 600;
  font-size: 14.5px;
  display: flex;
  align-items: center;
}

@media (max-width: 991.98px){
  .bt-banner{ min-height: 280px; }
  .bt-contact-main{ padding: 50px 0; }
  .contact-form-card{ margin-top: 36px; padding: 26px 24px; }
  .help-cards{ grid-template-columns: repeat(3, 1fr); }
  .bt-help{ padding: 60px 0; }
  .bt-faq{ padding: 60px 0 80px; }
}
@media (max-width: 767.98px){
  .bt-banner{ min-height: 240px; }
  .bt-contact-main{ padding: 40px 0; }
  .contact-info-rows{ grid-template-columns: 1fr; gap: 16px; }
  .help-cards{ grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .help-card{
    min-height: 200px;
    padding: 24px 12px 20px;
    border-radius: 90px;
  }
  .help-card .label{ font-size: 13.5px; }
  .bt-help{ padding: 50px 0; }
  .bt-techcta{ padding: 50px 0 60px; }
  .techcta-buttons{ flex-direction: column; align-items: stretch; }
  .bt-faq{ padding: 50px 0 60px; }
  .faq-list .faq-item{ border-radius: 22px; }
  .faq-list .faq-q{ padding: 14px 20px; font-size: 14px; }
}
@media (max-width: 480px){
  .help-cards{ grid-template-columns: 1fr; }
}

/* ===== GET QUOTE MODAL (same as hyt-product; used on contact CTA) ===== */
.hyt-quote-modal .modal-dialog{
  max-width: min(920px, calc(100vw - 32px));
}
.hyt-quote-modal .modal-content{
  border: none;
  border-radius: 0;
  overflow: visible;
}
.hyt-quote-modal__content{
  background: var(--bt-navy);
  color: #fff;
  position: relative;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}
.hyt-quote-modal__body{
  padding: clamp(36px, 5vw, 56px) clamp(28px, 4.5vw, 64px) clamp(40px, 5vw, 56px);
  position: relative;
}
.hyt-quote-modal__body::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 110px;
  height: 100%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='110' height='500' viewBox='0 0 110 500'><g fill='none' stroke='%23ffffff' stroke-width='1.1' opacity='0.16'><polygon points='26,18 50,32 50,62 26,76 2,62 2,32'/><polygon points='26,98 50,112 50,142 26,156 2,142 2,112'/><polygon points='26,178 50,192 50,222 26,236 2,222 2,192'/><polygon points='26,258 50,272 50,302 26,316 2,302 2,272'/><polygon points='26,338 50,352 50,382 26,396 2,382 2,352'/><polygon points='76,58 100,72 100,102 76,116 52,102 52,72'/><polygon points='76,138 100,152 100,182 76,196 52,182 52,152'/><polygon points='76,218 100,232 100,262 76,276 52,262 52,232'/><polygon points='76,298 100,312 100,342 76,356 52,342 52,312'/></g></svg>");
  background-repeat: no-repeat;
  background-position: left center;
  pointer-events: none;
  z-index: 0;
}
.hyt-quote-modal__body > *{
  position: relative;
  z-index: 1;
}
.hyt-quote-modal__close{
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  width: 44px;
  height: 44px;
  border: none;
  background: var(--bt-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition: background 0.15s ease;
}
.hyt-quote-modal__close:hover{
  background: var(--bt-orange-hover);
  color: #fff;
}
.hyt-quote-modal__heading{
  font-weight: 800;
  font-size: clamp(26px, 3.2vw, 40px);
  color: #fff;
  margin: 0 0 clamp(20px, 3vw, 32px);
  letter-spacing: -0.4px;
  line-height: 1.15;
  padding-right: 48px;
}
.hyt-quote-modal__heading .hl{
  background: var(--bt-orange);
  color: #fff;
  padding: 4px 14px 8px;
  margin-right: 6px;
  display: inline-block;
}
.hyt-quote-modal__product{
  margin: -8px 0 20px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.92);
}
.hyt-quote-modal__product .lbl{
  opacity: 0.75;
  margin-right: 6px;
}
.hyt-quote-modal__alert{
  margin-bottom: 18px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.12);
}
.hyt-quote-modal__alert.is-error{
  background: rgba(255, 107, 107, 0.2);
  border: 1px solid rgba(255, 107, 107, 0.45);
}
.hyt-quote-modal .hyt-quote-form .form-label{
  display: block;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 10px;
  padding-left: 4px;
}
.hyt-quote-modal .hyt-quote-form .form-label .req{
  color: #ff6b6b;
  margin-left: 2px;
}
.hyt-quote-modal .hyt-quote-form .form-control{
  background: #fff;
  border: none;
  border-radius: 100px;
  min-height: 48px;
  padding: 12px 22px;
  font-size: 14.5px;
  color: var(--bt-navy);
  box-shadow: none;
}
.hyt-quote-modal .hyt-quote-form textarea.form-control{
  min-height: 130px;
  border-radius: 22px;
  padding: 16px 22px;
  resize: vertical;
}
.hyt-quote-modal .hyt-quote-form .form-control::placeholder{
  color: #9aa3b8;
  opacity: 1;
}
.hyt-quote-modal .hyt-quote-form .form-control:focus{
  box-shadow: 0 0 0 3px rgba(240, 128, 35, 0.28);
  outline: none;
}
.hyt-quote-modal .hyt-quote-form .form-control.is-invalid{
  box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.55);
}
.hyt-quote-modal .hyt-quote-form .invalid-feedback{
  display: block;
  color: #ffb4b4;
  font-size: 13px;
  margin-top: 6px;
  padding-left: 8px;
}
.hyt-quote-modal .hyt-quote-form .btn-quote{
  background: var(--bt-orange);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 14px 36px;
  font-weight: 600;
  font-size: 14.5px;
  margin-top: clamp(12px, 2vw, 20px);
}
.hyt-quote-modal .hyt-quote-form .btn-quote:hover:not(:disabled){
  background: var(--bt-orange-hover);
  color: #fff;
}
.hyt-quote-modal .hyt-quote-form .btn-quote:disabled{
  opacity: 0.75;
}
.hyt-quote-modal .hyt-quote-recaptcha{
  transform-origin: left top;
}
.hyt-quote-modal__success{
  text-align: center;
  padding: 24px 12px 8px;
}
.hyt-quote-modal__success .success-icon{
  font-size: 56px;
  color: var(--bt-orange);
  margin-bottom: 16px;
  line-height: 1;
}
.hyt-quote-modal__success h3{
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 12px;
}
.hyt-quote-modal__success p{
  opacity: 0.9;
  max-width: 420px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.hyt-quote-modal .modal-backdrop.show{
  opacity: 0.72;
}
.btn-submit-inq[href="#"]{
  cursor: pointer;
}
