

/* Layout control */
#grQuote .custom-control {
    display: flex;
    align-items: flex-start;
}

/* Checkbox appearance, size & alignment */
#grQuote .custom-control-input[type="checkbox"] {
    appearance: checkbox !important;
    -webkit-appearance: checkbox !important;
    -moz-appearance: checkbox !important;

    transform: scale(1.3);        /* 🔥 INCREASE SIZE */
    transform-origin: top left;

    position: relative !important;
    top: 0.15rem;                 /* re-align after scaling */
    margin-right: 0.6rem;         /* spacing after scale */
    border-radius: 0.25rem;       /* square */
}
/* Label cleanup */
#grQuote .custom-control-label {
    margin: 0;
    line-height: 1.45;
    cursor: pointer;
}
#grQuote .card {
    border-radius: 1rem;  /* card is rounded */
    overflow: hidden;
}

#grQuote .card-header {
    border-radius: 0;  /* header stays flat */
    border-bottom: none;
}

/* Optional: smooth text rendering */
#grQuote .card-header h4 {
    font-weight: 600;
    letter-spacing: 0.3px;
}
/* === Select2 rounded to match form inputs === */
#grQuote .select2-container--default .select2-selection--single,
#grQuote .select2-container--default .select2-selection--multiple {
    border-radius: 0.5rem !important;   /* match other inputs */
    min-height: 45px;
    padding: 6px 12px;
    border-color: #ced4da;
    display: flex;
    align-items: center;
}

/* Remove sharp corners inside multiple select */
#grQuote .select2-selection__choice {
    border-radius: 0.4rem !important;
}

/* Dropdown arrow centering */
#grQuote .select2-selection__arrow {
    height: 100%;
    top: 0 !important;
}

/* Focus / hover consistency */
#grQuote .select2-container--default.select2-container--focus
.select2-selection--multiple,
#grQuote .select2-container--default.select2-container--open
.select2-selection--single {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.15rem rgba(0, 123, 255, 0.15);
}

/* Wrapper spacing */
.quick-quote-info {
    margin-bottom: 3rem;
}

/* Heading */
.quick-quote-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a; /* dark navy */
    margin-bottom: 1.5rem;
}

/* Description list */
.quick-quote-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Each line */
.quick-quote-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #475569; /* muted text */
    line-height: 1.6;
}

/* Green check icon */
.quick-quote-info li::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    background-color: #10b981; /* green */
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50%;
    margin-top: 2px;
}

/* ===============================
   jQuery Validate error message
=============================== */
#grQuote label.error {
    display: block;
    color: #dc3545;              /* Bootstrap danger red */
    font-size: 0.875rem;
    margin-top: 0.35rem;
    line-height: 1.4;
}

/* Error state for inputs */
#grQuote input.error,
#grQuote select.error,
#grQuote textarea.error {
    border-color: #dc3545;
}

/* Select2 error border */
#grQuote .select2-container--default .select2-selection--single.error,
#grQuote .select2-container--default .select2-selection--multiple.error {
    border-color: #dc3545 !important;
}

/* Checkbox error spacing */
#grQuote .custom-control label.error {
    margin-left: 2rem; /* aligns under checkbox text */
}


