section {
  padding: 80px 0;
}

/* ===== Contact Hero ===== */
.contact-hero {
  position: relative;
  min-height: 520px;
  padding: 72px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .35);
}

.contact-hero__bottomfade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background: linear-gradient(to top, rgba(28, 76, 209, .65), rgba(28, 76, 209, 0));
  pointer-events: none;
}

.contact-hero__container {
  position: relative;
  z-index: 2;
}

.contact-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}

.contact-hero__title {
  color: #fff;
  font-weight: 700;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.05;
  margin: 0 0 14px;
}

.contact-hero__desc {
  color: rgba(255, 255, 255, .88);
  max-width: 520px;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

/* ===== Right Card ===== */
.contact-card {
  background: #fff;
  border-radius: 10px;
  padding: 26px 26px 22px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
}

.contact-card__title {
  margin-top: 5px;
  margin-bottom: 25px;
  font-size: 21px;
  font-weight: 700;
  color: #111;
}

/* ===== Form ===== */
.contact-form__group {
  margin-bottom: 13px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  padding: 11px 12px;
  font-size: 14px;
  outline: none;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1c4cd1;
  box-shadow: 0 0 0 4px rgba(28, 76, 209, .12);
}

.contact-form__btn {
  width: 100%;
  border: none;
  border-radius: 8px;
  padding: 12px 14px;
  font-weight: 600;
  color: #fff;
  background: #1c4cd1;
  transition: transform .15s ease, opacity .2s ease;
}

.contact-form__btn:hover {
  opacity: .92;
  transform: translateY(-1px);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .contact-hero {
    padding: 56px 0;
    min-height: auto;
  }

  .contact-hero__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-hero__desc {
    max-width: 100%;
  }
}





/* start::section-2 */
#section-2 span {
  position: relative;
  padding-left: 15px;
}
#section-2 span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #2443DB;
  border-radius: 50%;
}
/* end::section-2 */


/* start::section-3 */
#section-3 {
  padding: 5px 0;
}
#section-3 a {
  color: black;
}
#section-3 p {
  max-width: 620px;
  margin: 0 auto;
}
#section-3 .contact-box {
  border: 1px solid #8D8D8D;
  padding: 20px 40px;
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 20px;
}
#section-3 .contact-box img {
  width: 40px;
  height: 40px;
}
/* end::section-3 */


/* start::section-4 */
.tiny-header {
  position: relative;
  padding-left: 15px;
}
.tiny-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #2443DB;
  border-radius: 50%;
}
#section-4 .title-wrapper {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.faq-title{
  padding: 30px;
  text-align:center;
  max-width: 620px;
  margin: 0 auto;
}
.faq-title p{
  color:#838383;
  margin-top:15px;
}
.faq-columns{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:34px;
}
.faq-col{
  display:flex;
  flex-direction:column;
  gap:26px;
}
.faq-item{
  background:#d9d9d9;
}
.faq-q{
  width:100%;
  border:0;
  background:transparent;
  padding:20px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
  text-align:left;
  font-weight:600;
  color:#101828;
}
.faq-icon{
  width:22px;
  height:22px;
  position:relative;
}
.faq-icon::before,.faq-icon::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:16px;
  height:2px;
  background:#101828;
  transform-origin:center;
  transition:transform .25s ease-in-out,opacity .2s ease;
}
.faq-icon::before{
  transform:translate(-50%,-50%) rotate(0deg);
}
.faq-icon::after{
  transform:translate(-50%,-50%) rotate(90deg);
}
.faq-a{
  height:0;
  overflow:hidden;
  transition:height .28s ease;
}
.faq-a-inner{
  padding:0 22px 20px;
  color:#101828;
  opacity:.9;
  line-height:1.6;
}
.faq-item.is-open .faq-icon::before{
  transform:translate(-50%,-50%) rotate(45deg);
}
.faq-item.is-open .faq-icon::after{
  transform:translate(-50%,-50%) rotate(-45deg);
}
@media (max-width:991px){
  .faq-columns{
    grid-template-columns:1fr;
    gap:26px;
  }
}
/* end::section-4 */


/* start::section-5 */
#section-5 .cta-wrap{
  display:flex;
  min-height:380px;
}
#section-5 .cta-media{
  width:45%;
  background-image:url("/assets/img/home-cta-worker.png");
  background-repeat:no-repeat;
  background-position:center top;
  background-size:cover;
}
#section-5 .cta-content{
  width:55%;
  background:#2443DB;
  padding:70px 70px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
#section-5 .cta-content h1{
  color:#fff;
  margin:0 0 18px;
  max-width:620px;
}
#section-5 .cta-content p{
  color:rgba(255,255,255,.85);
  margin:0 0 28px;
  max-width:560px;
  line-height:1.6;
}
#section-5 .cta-form{
  display:flex;
  gap:14px;
  align-items:center;
  max-width:560px;
}
#section-5 .cta-form input{
  flex:1;
  height:48px;
  border:0;
  outline:none;
  padding:0 16px;
  background:#fff;
  color:#101828;
}
#section-5 .cta-form input::placeholder{
  color:#8b95a7;
}
#section-5 .cta-form button{
  height:48px;
  padding:0 26px;
  border:0;
  cursor:pointer;
  background:#D4372E;
  color:#fff;
  font-weight:600;
  transition:transform .2s ease,opacity .2s ease;
}
#section-5 .cta-form button:hover{
  transform:translateY(-1px);
  opacity:.95;
}
@media (max-width:991px){
  #section-5 .cta-wrap{
    flex-direction:column;
  }
  #section-5 .cta-media{
    width:100%;
    height:260px;
  }
  #section-5 .cta-content{
    width:100%;
    padding:50px 26px;
  }
  #section-5 .cta-content h2{
    font-size:32px;
  }
  #section-5 .cta-form{
    flex-direction:column;
    /* display: block; */
    align-items:stretch;
    height: 105px;
  }
  #section-5 .cta-form button{
    width:180px;
  }
}
/* end::section-5 */