/* ===== Hero Section ===== */
.hero-contact {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('../../public/images/contact/hero-img.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 1.5rem;
}


.hero-text {
  position: relative;
  z-index: 2;
  max-width: 1130px;
  padding: 0 1rem;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}
.contact-section {
  padding: 80px 0;
  background: #fff;
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}
.contact-form-side h2 {
  color: #004a7c;
  font-weight: 700;
  font-size: 42px;
  margin-bottom: 15px;
}

.contact-form-side p {
  margin-bottom: 30px;
  color: #004a7c;
  font-size: 18px;
    font-weight: 600;

}
.contact-form .form-control {
  border-radius: 8px;
  border: 1px solid #cfd8dc;
  background-color: #f5f7fa; 
  padding: 12px 15px;
  font-size: 16px;
   color: #004a7c;
  transition: all 0.3s ease;
}

.contact-form .form-control::placeholder {
   color: #004a7c;
}

.contact-form .form-control:focus {
  border-color: #004a7c;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(0, 74, 124, 0.15);
  outline: none;
}

.form-check-label {
  font-size: 15px;
  color: #004a7c;
}

.btn-submit {
  background-color: #004a7c;
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 10px 35px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.arrow-icon {
  background-color: #042f45;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;

  font-size: 16px;
}
.contact-img-side {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-img {
  width: 480px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 992px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-form-side {
    margin-bottom: 40px;
    text-align: center;
  }

  .contact-form-side h2 {
    font-size: 36px;
  }

  .contact-form-side p {
    font-size: 15px;
  }

  .contact-img {
    width: 380px;
  }
}

@media (max-width: 768px) {
  .contact-container {
    padding: 0 1.5rem;
  }

  .contact-form-side h2 {
    font-size: 32px;
  }

  .contact-img {
    width: 300px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 50px 0;
  }

  .contact-form-side h2 {
    font-size: 28px;
  }

  .contact-img {
    width: 260px;
  }
}

@media (max-width: 1200px) {
  .hero-text h1 {
    font-size: 70px;
  }
}

@media (max-width: 992px) {
  .hero-contact {
    height: 80vh;
  }
  .hero-text h1 {
    font-size: 55px;
  }
}

@media (max-width: 768px) {
  .hero-contact {
    height: 70vh;
    padding: 0 1rem;
  }
  .hero-text h1 {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  .hero-contact {
    height: 60vh;
  }
  .hero-text h1 {
    font-size: 30px;
  }
}
