.eh-inquiry-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.eh-inquiry-overlay.open {
  display: flex;
}

.eh-inquiry-modal {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  font-family: 'Source Sans Pro', sans-serif;
  position: relative;
}

.eh-inquiry-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #888;
}

.eh-inquiry-title {
  font-family: Cairo, sans-serif;
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 8px;
  color: #121b17;
}

.eh-inquiry-sub {
  color: #666;
  margin: 0 0 24px;
  font-size: 15px;
}

.eh-inquiry-field {
  margin-bottom: 16px;
}

.eh-inquiry-field label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #121b17;
}

.eh-inquiry-field label span {
  color: #eb391b;
}

.eh-inquiry-field input,
.eh-inquiry-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  box-sizing: border-box;
}

.eh-inquiry-field input:focus,
.eh-inquiry-field textarea:focus {
  outline: none;
  border-color: #222;
}

.eh-inquiry-field textarea {
  min-height: 90px;
  resize: vertical;
}

.eh-inquiry-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  font-family: Manrope, sans-serif;
  margin-top: 8px;
  box-shadow: 0 8px 20px rgba(3, 105, 161, 0.22);
}

.eh-inquiry-submit:hover {
  filter: brightness(1.05);
}

.eh-inquiry-submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

.eh-inquiry-success {
  text-align: center;
  padding: 24px 0;
}

.eh-inquiry-success h3 {
  font-family: Cairo, sans-serif;
  color: #429f51;
  margin: 0 0 12px;
}

.eh-inquiry-tg {
  display: inline-block;
  margin-top: 16px;
  color: #0088cc;
  text-decoration: none;
  font-size: 15px;
}

.eh-inquiry-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 22px;
  font-family: Manrope, sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(3, 105, 161, 0.28);
}

.eh-inquiry-fab:hover {
  filter: brightness(1.05);
}

.eh-inquiry-error {
  color: #eb391b;
  font-size: 14px;
  margin-top: 8px;
}

@media (max-width: 480px) {
  .eh-inquiry-modal {
    padding: 24px 20px;
  }
  .eh-inquiry-fab {
    bottom: 16px;
    right: 16px;
    padding: 12px 18px;
    font-size: 14px;
  }
}
