/* IMAGE */
.enquiry-img {
  width: 100%;
}

.enquiry-img img {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 13 / 7;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

/* FORM BOX */
.enquiry-box {
  background: #fff;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* 🔥 STICKY FORM (Desktop) */
@media (min-width: 992px) {
  .enquiry-box {
    position: relative;
    top: 80px;
  }
}

@media (max-width: 991px) {
  .enquiry-img img {
    max-width: 100%;
    aspect-ratio: 13 / 7;
    max-height: 360px;
  }
}

@media (max-width: 576px) {
  .enquiry-img img {
    max-height: 240px;
    border-radius: 16px;
  }
}

/* INPUT GROUP FIX */
.custom-input {
  display: flex;              /* 🔥 IMPORTANT */
  align-items: stretch;
  border-radius: 8px;
  overflow: hidden;
}

/* ICON BOX */
.input-group-text {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f3f6;
  border: none;
  padding: 0 12px;
  height: 45px;              /* 🔥 SAME HEIGHT */
}

/* ICON */
.input-group-text i {
  font-size: 14px;
  color: #555;
  line-height: 1;
}

/* INPUT FIELD */
.form-control {
  border: none;
  background: #f9fafc;
  padding: 0 12px;
  font-size: 14px;
  height: 45px;              /* 🔥 MATCH HEIGHT */
}

/* TEXTAREA */
.custom-textarea {
  height: 100px;
  border-radius: 8px;
  background: #f9fafc;
  border: none;
  padding: 12px;
}

/* FOCUS */
.form-control:focus,
.custom-textarea:focus {
  box-shadow: none;
  background: #fff;
}

/* BUTTON */
.submit-btn {
  background: #e53935;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #c62828;
}
