/* ===== OUTER WRAPPER ===== */
.price-box-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

/* ===== FORM BOX ===== */
.price-box-card {
  background: rgba(0, 0, 0, 0.45);
  border-radius: 18px;
  border: 1px solid #2c2c2c;
  padding: 40px;
  width: 100%;
  max-width: 550px;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* ===== TITLE ===== */
.price-box-title {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #ffffff;
  line-height: 1.3;
}

.highlight-blue {
  color: #489fda;
}

/* ===== FORM FIELDS ===== */
.price-box-form input,
.price-box-form select,
.price-box-form textarea {
  width: 100%;
  padding: 15px 16px;
  margin-bottom: 18px;
  border-radius: 10px;
  border: 1px solid #333;
  background: #f2f2f2;
  font-size: 14px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.price-box-form input:focus,
.price-box-form select:focus,
.price-box-form textarea:focus {
  outline: none;
  border-color: #489fda;
  box-shadow: 0 0 0 2px rgba(72, 159, 218, 0.2);
}

.price-box-form textarea {
  resize: none;
  height: 110px;
}

/* ===== CAPTCHA ===== */
.custom-captcha-area {
  margin-top: 15px;
}

.custom-captcha-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

#captchaImage {
  height: 55px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #ccc;
  object-fit: contain;
}

.refresh-captcha-btn {
  height: 55px;
  width: 55px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  background: #489fda;
  color: #fff;
  transition: 0.3s;
}

.refresh-captcha-btn:hover {
  background: #3a8cc7;
}

.custom-captcha-area input[type="text"] {
  height: 55px;
}

/* ===== BUTTON ===== */
.submit-price-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(to bottom, #7fc3f3, #489fda);
  border: none;
  color: #000;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.submit-price-btn:hover {
  transform: translateY(-3px);
  background: #3a8cc7;
  box-shadow: 0 8px 18px rgba(72, 159, 218, 0.3);
}

/* ===== ERROR ===== */
.captcha-error-text {
  color: red;
  font-size: 13px;
  margin-top: 5px;
}

/* ===== SUCCESS PAGE ===== */

.success-page-wrapper {
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.success-box {
  background: rgba(0, 0, 0, 0.6);
  padding: 50px;
  border-radius: 18px;
  text-align: center;
  max-width: 500px;
  width: 100%;
  border: 1px solid #333;
  backdrop-filter: blur(8px);
}

.success-box h2 {
  font-size: 32px;
  color: #489fda;
  margin-bottom: 20px;
}

.success-box p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 30px;
}

.back-home-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(to bottom, #7fc3f3, #489fda);
  color: #000;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.back-home-btn:hover {
  background: #3a8cc7;
  transform: translateY(-2px);
}
