/* =========================
   RESET (PLUGIN SAFE)
========================= */
.ratq-wrap *,
.ratq-wrap *::before,
.ratq-wrap *::after {
    box-sizing: border-box;
}

/* =========================
   WRAPPERS
========================= */
.ratq-wrap {
    background: #fff;
    font-family: Arial, sans-serif;
}

.ratq-wrap-simple {
    max-width: 420px;
    margin: 30px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    background: #ffffff !important;
}

.ratq-wrap-full {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.12);
}

/* =========================
   HEADINGS & LABELS
========================= */
.ratq-wrap h2,
.ratq-wrap h3 {
    text-align: center;
    margin-bottom: 20px;
}

.ratq-wrap label {
    display: block;
    margin: 10px 0 6px;
    font-weight: 600;
}

/* =========================
   INPUTS & BUTTONS
========================= */
.ratq-wrap input[type="text"],
.ratq-wrap input[type="email"],
.ratq-wrap input[type="tel"],
.ratq-wrap input[type="date"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

.ratq-wrap button {
    width: 100%;
    padding: 12px;
    background: #0073e6;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}

.ratq-wrap button:hover {
    background: #005ecb;
}

/* =========================
   MULTI STEP
========================= */
.ratq-step {
    display: none;
}

.ratq-step.active {
    display: block;
}

/* =========================
   RADIO GROUP
========================= */
.radio-group {
    display: flex;
    gap: 25px;
    margin-bottom: 15px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: normal;
    margin: 0;
}

/* =========================
   CHECKBOX FIX
========================= */
.ratq-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.ratq-checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* =========================
   VEHICLE ROW — inputs in one row
========================= */
.vehicle-row {
    display: block;      /* ek row me ek input */
    margin-bottom: 12px;
}

.vehicle-row input {
    width: 100%;         /* full width */
	padding: 10px;
  margin-bottom: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  font-family: Arial, sans-serif;
}
.vehicle-item {
    display:flex;
    justify-content:space-between;
    background:#f3f3f3;
    padding:8px;
    margin-top:5px;
}

.vehicle-remove {
    cursor:pointer;
    color:red;
}
/* =========================
   CONTACT ROW — inputs in one row
========================= */
.contact-row {
    display: block;
    margin-bottom: 12px;
}

.contact-row input {
    width: 100%;
	padding: 10px;
  margin-bottom: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  font-family: Arial, sans-serif;
}


