.enq-sec {
  background: #fff;
}

.enq-card {
  background: #f7f7f7de;
  border-radius: 18px;
}

.enq-input,
.enq-select {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.enq-input:focus,
.enq-select:focus {
  outline: none;
  border-color: #5fae3a;
  box-shadow: 0 6px 18px rgba(91, 159, 58, 0.12);
}

.enq-radio {
  flex-wrap: wrap;
  gap: 18px;
}

.enq-rlabel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  font-weight: 500;
  color: #333;
}

.enq-rlabel input[type="radio"] {
  display: none;
}

.enq-rdot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #cfcfcf;
  display: inline-block;
  position: relative;
  flex: 0 0 18px;
  transition: all 0.18s ease;
  background: #cfcfcf;
}

/* inner dot (hidden) */
.enq-rdot::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.18s ease;
  background: #fff;
}

.enq-rlabel input[type="radio"]:checked + .enq-rdot {
  border-color: #6c757d;
  background: #fff;
}
.enq-rlabel input[type="radio"]:checked + .enq-rdot::after {
  transform: translate(-50%, -50%) scale(1);
  background: #28a745;
}

.enq-rtext {
  font-size: 0.95rem;
  color: #222;
}

.enq-btn {
  background: #3aa035 !important;
  color: #fff  !important;
  border-radius: 10px  !important;
  padding: 11px 14px  !important;
  border: 0  !important;
  font-weight: 600  !important;
}
.enq-btn:hover {
  background: #2f8a2b;
}

.enq-img-wrap {
  margin-top: 50px;
  position: relative;
  min-height: 340px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.enq-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 78%;
  max-width: 420px;
  opacity: 0;
  visibility: hidden;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.15));
  transition: opacity 0.32s ease, transform 0.32s ease;
  transform-origin: center bottom;
}
.enq-img.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* responsive tweaks */
@media (max-width: 991px) {
  .enq-img-wrap {
    min-height: 260px;
  }
  .enq-img {
    width: 62%;
    max-width: 300px;
    bottom: -10px;
  }
  .enq-card {
    margin-top: 18px;
  }
  .enq-radio {
    justify-content: flex-start;
    align-content: flex-start;
    flex-direction: column;
  }
}

.enq-select-wrap {
  position: relative;
}

.enq-select {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  border: 1px solid #cfd2c7;
  border-radius: 12px;
  padding: 10px 40px 10px 14px;
  font-weight: 700;
  color: #2d2c2c;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
}

.enq-select:focus {
  border-color: #b2d235;
  box-shadow: 0 0 5px rgba(178, 210, 53, 0.3);
  outline: none;
}

.enq-arrow {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  pointer-events: none;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #28a745;
  transition: all 0.3s ease;
}
