.companies-hero {
  position: relative;
  margin-top: 110px;
  min-height: 430px;


  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}


.companies-hero {
  position: relative;
  margin-top: 110px;
  min-height: 430px;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: background-image 1s ease-in-out;
}

.companies-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.97) 0%,
    rgba(255,255,255,0.9) 32%,
    rgba(255,255,255,0.15) 55%
  );
  z-index: 1;
}


.companies-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 430px;
  display: flex;
  align-items: center;
}

.companies-hero-inner {
  min-height: 430px;
  display: flex;
  align-items: center;
}

.companies-hero-content {
  max-width: 560px;
}

.companies-hero-content span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #2FB12A;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.companies-hero-content span::before {
  content: "";
  width: 42px;
  height: 3px;
  background: #b98203;
  border-radius: 20px;
}

.companies-hero-content h1 {
  font-size: 48px;
  line-height: 1.08;
  margin: 0 0 18px;
  color: #102f3a;
}

.companies-hero-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #526b6b;
  margin-bottom: 28px;
}

.companies-hero-btn {
  display: inline-block;
  background: #B98203;
  color: #fff;
  padding: 15px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
}

.hero-feature-section {
  position: relative;
  margin-top: -20px;
  padding-bottom: 70px;
  z-index: 5;
}

.hero-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}


.contact-section {
  padding: 80px 20px 60px;
  background: #fff;
}

.contact-container {
  max-width: 1350px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.45fr;
  gap: 28px;
  align-items: stretch;
}

.contact-info,
.contact-form {
  background: #fff;
  border: 1px solid #eef0f3;
  padding: 48px;
  box-shadow: 0 18px 45px rgba(0,0,0,.06);
}

.contact-info > small {
  color: #2FB12A;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 1.5px;
}

.contact-info h2 {
  font-size: 42px;
  line-height: 1.15;
  margin: 18px 0 18px;
  color: #102f3a;
}

.contact-info p {
  color: #5d7070;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid #edf0f2;
}

.contact-item span {
  width: 58px;
  height: 38px !important;
  min-width: 58px;
  background: #B98203;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
}

.contact-item span i,
.contact-item span svg {
  color: #fff;
  font-size: 22px;
}

.contact-item small {
  color: #7b8b8b;
  font-size: 15px;
}

.contact-item strong {
  display: block;
  font-size: 17px;
  line-height: 1.55;
  margin-top: 6px;
  color: #102f3a;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 45px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: none;
  outline: none;
  background: #f4f4f4;
 
  padding: 20px 24px;
  font-family: inherit;
  font-size: 16px;
}

.contact-form textarea {
  min-height: 155px;
  max-height: 180px;
  resize: vertical;
}

.contact-form button {
  width: 280px;
  height: 58px;
  border: none;
  border-radius: 10px;
  background: #B98203;
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  cursor: pointer;
  margin-top: 2%;
}

.contact-map {
  grid-column: 1 / -1;
  height: 380px;
  overflow: hidden;
  margin-top: 35px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info,
  .contact-form {
    padding: 32px;
  }

  .contact-info h2 {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form button {
    width: 100%;
  }

  .contact-map {
    height: 280px;
  }
}

.contact-container {
  align-items: stretch;
}

.contact-info,
.contact-form {
  height: 100%;
}

/* reduce left side size */
.contact-info {
  padding: 42px 42px !important;
}

.contact-info h2 {
  font-size: 38px !important;
  line-height: 1.15 !important;
}

.contact-info p {
  font-size: 16px !important;
  line-height: 1.6 !important;
  margin-bottom: 22px !important;
}

.contact-item {
  gap: 16px !important;
  padding: 18px 0 !important;
}

.contact-item span {
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  font-size: 18px !important;
}

.contact-item span i,
.contact-item span svg {
  font-size: 18px !important;
}

.contact-item small {
  font-size: 14px !important;
}

.contact-item strong {
  font-size: 15px !important;
  line-height: 1.4 !important;
}

@media (max-width: 768px) {
  .container {
    width: 92%;
  }

  .companies-hero {
    margin-top: 80px;
    min-height: 220px !important;
  }

  .companies-hero-inner {
    min-height: 220px !important;
    padding: 0 !important;
    align-items: center;
  }

  .companies-hero-content {
    max-width: 100%;
  }

  .companies-hero-content span {
    font-size: 11px;
    letter-spacing: 1.6px;
    margin-bottom: 10px;
  }

  .companies-hero-content span::before {
    width: 28px;
  }

  .companies-hero-content h1 {
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 12px;
  }

  .companies-hero-btn {
    padding: 11px 20px;
    font-size: 12px;
  }
}



@media (max-width: 768px) {
  .companies-hero-overlay {
    background: rgba(255, 255, 255, 0.52) !important;
    width: 100%;
  }

  .companies-hero {
    background-position: center !important;
  }
}