.contact-hero{
  background:#fff;
  padding:55px 0 40px;
}

.contact-hero-grid{
  display:grid;
  grid-template-columns:1fr 1.12fr;
  gap:55px;
  align-items:center;
}

.section-label{
  color:var(--orange);
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  display:block;
  margin-bottom:20px;
}

.contact-hero h1{
  font-size:46px;
  line-height:1.16;
  color:var(--blue-dark);
  font-weight:800;
  max-width:680px;
}

.contact-hero h1 span{
  color:var(--orange);
}

.orange-line,
.center-line{
  width:48px;
  height:3px;
  background:var(--orange);
  border-radius:10px;
  margin:18px 0;
}

.contact-hero p{
  color:var(--gray);
  font-size:18px;
  line-height:1.75;
  max-width:650px;
}

.hero-benefits{
  margin-top:25px;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.hero-benefit{
  display:flex;
  align-items:flex-start;
  gap:18px;
}

.benefit-icon{
  min-width:62px;
  height:62px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:25px;
}

.blue{
  background:#eef4ff;
  color:var(--blue);
}

.orange{
  background:#fff4e8;
  color:var(--orange);
}

.green{
  background:#eef8ea;
  color:#70a33d;
}

.purple{
  background:#f1edff;
  color:#6454d8;
}

.hero-benefit h3{
  color:var(--blue-dark);
  font-size:17px;
  margin-bottom:6px;
}

.hero-benefit p{
  font-size:15px;
  line-height:1.7;
}

.contact-hero-image{
  position:relative;
  min-height:510px;
  display:flex;
  align-items:flex-end;
  justify-content:flex-end;
}

.contact-hero-image img{
  width:88%;
  height:470px;
  object-fit:cover;
  position:relative;
  z-index:3;
}

.shape-blue{
  position:absolute;
  width:86%;
  height:96%;
  left:0;
  bottom:0;
  background:linear-gradient(180deg,#6aa0ff,#0057e6);
  border-radius:320px 320px 0 0;
  z-index:1;
}

.shape-orange{
  position:absolute;
  width:25%;
  height:35%;
  left:12%;
  bottom:0;
  background:var(--orange);
  border-radius:180px 180px 0 0;
  z-index:2;
}

/* FORMS */

.forms-section{
  background:#fff;
  padding:20px 0 45px;
}

.section-heading{
  text-align:center;
  margin-bottom:28px;
}

.section-heading h2{
  color:var(--blue-dark);
  font-size:32px;
  font-weight:800;
}

.section-heading p{
  color:var(--gray);
  font-size:16px;
  line-height:1.7;
}

.center-line{
  margin:14px auto 18px;
}

.forms-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.contact-form{
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  padding:30px;
  box-shadow:0 5px 18px rgba(0,0,0,.04);
}

.form-head{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:16px;
}

.form-icon{
  width:72px;
  height:72px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
}

.form-head h3{
  color:var(--blue-dark);
  font-size:22px;
  margin-bottom:5px;
}

.form-head p{
  color:var(--gray);
  font-size:14px;
}

.form-line{
  height:2px;
  margin:18px 0 22px;
}

.form-line.blue{
  background:var(--blue);
}

.form-line.orange{
  background:var(--orange);
}

.input-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  border:1px solid #dfe4ec;
  border-radius:7px;
  padding:15px;
  font-family:inherit;
  font-size:14px;
  color:var(--text);
  outline:none;
  margin-bottom:14px;
  background:#fff;
}

.contact-form textarea{
  min-height:115px;
  resize:vertical;
}

.file-row{
  display:grid;
  grid-template-columns:1fr auto;
  gap:12px;
  align-items:start;
}

.file-row label{
  border:1px solid #dfe4ec;
  border-radius:7px;
  padding:15px 18px;
  font-size:14px;
  font-weight:700;
  color:var(--blue-dark);
  cursor:pointer;
  white-space:nowrap;
}

.file-row i{
  margin-right:8px;
  color:var(--blue);
}

.contact-form small{
  display:block;
  color:#8b93a3;
  margin:-5px 0 14px;
}

.check-row{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:13px;
  color:var(--text);
  margin-bottom:18px;
}

.check-row input{
  width:auto;
  margin:3px 0 0;
}

.check-row a{
  color:var(--blue);
  font-weight:700;
}

.contact-form button{
  width:100%;
  border:none;
  padding:16px;
  border-radius:7px;
  color:#fff;
  font-family:inherit;
  font-weight:800;
  cursor:pointer;
}

.submit-blue{
  background:var(--blue-dark);
}

.submit-orange{
  background:var(--orange);
}

/* CONTACT OPTIONS */

.contact-options{
  background:#fff;
  padding:5px 0 35px;
}

.section-heading.compact{
  margin-bottom:22px;
}

.contact-options-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
}

.contact-option{
  display:flex;
  align-items:center;
  gap:16px;
  padding:10px 24px;
  border-right:1px solid var(--border);
}

.contact-option:last-child{
  border-right:none;
}

.option-icon{
  min-width:60px;
  height:60px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
}

.contact-option h3{
  color:var(--blue-dark);
  font-size:15px;
  margin-bottom:5px;
}

.contact-option p{
  color:var(--gray);
  font-size:14px;
  line-height:1.5;
}

/* CTA */

.contact-cta{
  background:#fff;
  padding:20px 0 10px;
}

.contact-cta-box{
  background:linear-gradient(90deg,#08235a,#0c2b6d);
  border-radius:12px;
  padding:42px 70px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  position:relative;
  overflow:hidden;
}

.contact-cta-box h2{
  color:#fff;
  font-size:32px;
  max-width:760px;
  line-height:1.3;
  padding-left:25px;
  border-left:3px solid var(--orange);
}

.btn-white{
  background:#fff;
  color:var(--blue-dark);
  padding:17px 34px;
  border-radius:10px;
  font-weight:800;
  display:inline-flex;
  gap:12px;
  align-items:center;
  white-space:nowrap;
}

/* RESPONSIVE */

@media(max-width:1100px){
  .contact-hero-grid,
  .forms-grid,
  .contact-options-grid{
    grid-template-columns:1fr;
  }

  .contact-hero h1{
    font-size:38px;
  }

  .contact-hero-image{
    min-height:380px;
  }

  .contact-hero-image img{
    height:350px;
  }

  .contact-option{
    border-right:none;
    border-bottom:1px solid var(--border);
  }

  .contact-cta-box{
    flex-direction:column;
    align-items:flex-start;
    padding:34px;
  }
}

@media(max-width:650px){
  .contact-hero h1{
    font-size:32px;
  }

  .input-grid,
  .file-row{
    grid-template-columns:1fr;
  }

  .section-heading h2{
    font-size:26px;
  }

  .contact-cta-box h2{
    font-size:24px;
  }

  .btn-white{
    width:100%;
    justify-content:center;
  }

  .contact-form{
    padding:22px;
  }
}