.contact-hero-section {
  position: relative;
  background: url("../images/contact/contact-bg.png") center / cover no-repeat;
  overflow: hidden;
  color: #ffffff;
}

/* Blue overlay */
.contact-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 74, 173, 0.85),
      rgba(0, 74, 173, 0.75));
  z-index: 1;
}

/* Overlay wrapper */
.contact-hero-overlay {
  position: relative;
  z-index: 2;
}

.contact-hero-section button {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  color: white;
}

.contact-hero-section button:hover {
  color: white;
}

.contact-dot {
    width: 10px;
    height: 10px;
    background: #FFFFFF;
    border-radius: 50%;
}

/* --------------contact details ------------------ */

.contact-hero-bottom-card {
  display: flex;
  align-items: stretch;
}

.contact-hero-bottom-card .why-card {
  height: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 40px 60px;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-hero-bottom-card .why-header {
  width: 64px;
  height: 64px;
  background: #eaf1ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-hero-bottom-card .why-card h5 {
  margin-bottom: 12px;
}

.contact-hero-bottom-card .why-card a {
  display: block;
  color: #004aad;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 6px;
}

.contact-hero-bottom-card .why-card span {
  margin-bottom: auto;
  font-size: 14px;
  color: #777;
}

/* -----------------contact form ------------------ */

.contact-form-section {
  background: #ffffff;
}

/* Headings */
.contact-form-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-form-subtitle {
  color: #555;
  font-size: 16px;
}

/* Labels */
.contact-form-section label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}

/* Inputs */
.contact-form-section .form-control {
  height: 54px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  background: #f7f7f7;
  padding: 12px 16px;
  font-size: 15px;
}

.contact-form-section textarea.form-control {
  height: auto;
  resize: none;
}

/* Focus */
.contact-form-section .form-control:focus {
  border-color: #004aad;
  box-shadow: none;
  background: #fff;
}

/* Button */
.contact-submit-btn {
  background: #004aad;
  color: #fff;
  border: none;
  width: 100%;
  height: 52px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-submit-btn:hover {
  background: #003a8c;
}

/* -------contact partner section----------- */

.contact-partner-section {
  background: #004AAD;
  color: #ffffff;
}

.contact-desc {
  font-size: 16px;
  max-width: 700px;
  font-weight: 500;
  margin: 20px 0 30px;
  opacity: 0.95;
}

.contact-features {
  margin-top: 10px;
}

.feature-pill {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}


/* Responsive  */
/* Tablet + Mobile */
@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 32px !important;
    font-weight: 700 !important;
  }

  .fit-hero-content {
    padding: 0;
  }

  .contact-partner-section h1,
  .contact-partner-section p {
    text-align: center;
  }

}

/* Mobile */
@media (max-width: 767px) {

  .hero-content p,
  p.contact-desc, .fit-cta-section p, .contact-form-section p {
    font-size: 14px !important;
  }

  .contact-hero-bottom-card .why-card {
    padding: 40px 20px;
  }

  .contact-partner-section h1, .contact-form-section h1 {
    font-size: 24px !important;
  }

  .fit-cta-section h1 {
    font-size: 32px !important;
    font-weight: 700 !important;
  }

  .fit-cta-section .btn-primary-custom, .fit-cta-section .btn-outline-custom {
      font-size: 12px !important;
  }

      .contact-dot {
  width: 8px;
  height: 8px;
}
}