/* ---- CONTACT HERO ---- */
.hero-section {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 60px 0;
  background-image: url(../images/contact-us.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 32px;
  margin-top: 28px;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: linear-gradient(179.97deg, rgba(26, 115, 232, 0.08) 0%, rgba(2, 22, 49, 0.72) 80%);
  z-index: 0;
}
.hero-title {
  font-size: 96px;
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 40px;
}

/* Hero Form Card */
.hero-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  padding: 28px 28px 52px;
  position: relative;
}
.form-label-small {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #18181b;
  margin-bottom: 4px;
}
.hero-input {
  background: #fafafa;
  border: 1px solid transparent;
  border-radius: var(--radius-md) !important;
  font-size: 14px;
  color: #18181b;
  padding: 8px 12px;
  min-height: 38px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hero-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
  background: #fff;
}
.hero-input::placeholder {
  color: #71717a;
}
.btn-request {
  background: var(--primary-gradient);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border-radius: var(--radius-full);
  padding: 14px 40px;
  border: none;
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-request:hover {
  background: linear-gradient(135deg, #0d6efd 0%, #1a73e8 100%);
  color: #fff;
}

.contact_clinic .clinic-card .clinic-img{
  height: 300px !important;
}