
    /* GLOBAL */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #eef2ff, #e0f2fe, #f8fafc);
   overflow-x: hidden;
}

.page-wrapper {
  overflow: visible;
}

/* SECTION */
.form-section {
  padding: 80px 20px;
}

.form-section form > .row {
  align-items: flex-start;
}

/* FORM BOX */
.form-container {
  background: #fff;
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.form-container h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 35px;
  color:#2F7E7E;
}

/* FORM SPACING (IMPORTANT FIX) */
#consultForm .col-md-6,
#consultForm .col-12 {
  margin-bottom: 10px;
}

/* LABEL (BIG IMPROVEMENT) */
label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #374151;
}

/* INPUT DESIGN */
input, select {
  width: 100%;
  height: 52px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  padding: 0 14px;
  font-size: 14px;
  background: #fff;
  transition: all 0.2s ease;
}

/* PLACEHOLDER */
input::placeholder {
  color: #9ca3af;
}

/* HOVER EFFECT */
input:hover, select:hover {
  border-color: #9ca3af;
}

/* FOCUS */
input:focus, select:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
  outline: none;
}

/* RIGHT BOX */
.checkout-box {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  align-self: flex-start;
  position: sticky;
  top: 24px;
  height: max-content;
  max-height: none;
  overflow: visible;
}

.md-checkout-summary-col {
  align-self: stretch;
}

.checkout-box h3 {
  margin-bottom: 25px;
  color: #2F7E7E;
  font-weight: 600;
}

/* SUMMARY */
.summary-item,
.price-box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  font-size: 15px;
  padding: 10px 0px
}
.price-box.is-hidden {
  display: none;
}

/* BUTTON */
.pay-btn {
  width: 100%;
  padding: 15px;
  background: #2F7E7E;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  margin-top: 15px;
  transition: 0.2s;
}

.pay-btn:hover {
  background: #065f46;
}

/* ERROR TEXT */
.error-text {
  color: #ef4444;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}

/* MOBILE */
@media (max-width: 768px) {
  .form-container {
    padding: 25px;
  }

  .checkout-box {
    position: static;
    max-height: none;
    overflow: visible;
  }

  .md-checkout-summary-col {
    align-self: auto;
  }
}
.coupon-box {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.coupon-box input {
  flex: 1;
  height: 45px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  padding: 0 12px;
}

.coupon-box button {
  padding: 0 16px;
  border: none;
  background: #2F7E7E;
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
}
.coupon-box button:hover {
  padding: 0 16px;
  border: none;
  background: #056357;
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
}
.coupon-status {
  display: none;
  margin: -8px 0 16px;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}
.coupon-status.is-success {
  display: block;
  background: #eef8f6;
  color: #2F7E7E;
  border: 1px solid rgba(47, 126, 126, 0.18);
}
.coupon-status.is-error {
  display: block;
  background: #fff8ed;
  color: #8a5b00;
  border: 1px solid rgba(224, 182, 89, 0.35);
}
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("data:image/svg+xml;utf8,<svg fill='%236b7280' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5H5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 15px center; 
  background-size: 16px;

  padding-right: 40px; 
}






