.quote_section {
  background: var(--cream);
}
.quote_header {
    text-align: center;
    margin-bottom: 40px;
}
.section-label {
    font-family: var(--sans);
    font-size: 14px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1rem;
    justify-content: center;
}
.section-label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--red);
    display: inline-block;
}
.section-title {
    font-family: var(--serif);
    font-size: clamp(28px, 4vw, 44px);
    color: var(--black);
    margin-bottom: .5rem;
}
.section-sub {
    font-size: 17px;
    color: var(--gray);
    max-width: 640px;
    margin: 0 auto;
}

.quote_form_wrapper {

    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--cream-dim);
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-card {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--cream-dim);
}
.form-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-card-title {
    font-family: var(--serif);
    color: var(--black);
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--red);
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-card-title i {
    color: var(--red);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
    font-size: 14px;
    display: inline-block;
}

.form-control {
    font-family: var(--sans);
    background: var(--cream);
    border: 1px solid var(--cream-dim);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--black);
    transition: .25s ease;
    height: auto;
    box-shadow: none;
    width: 100%;
    font-size: 15px;
}

.form-control:focus {
    outline: none;
    border-color: var(--red);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.12);
}

.form-control::placeholder {
    color: var(--gray);
    opacity: 1;
}


.custom-check {
    background: var(--cream);
    border: 1px solid var(--cream-dim);
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    margin: 0 0 15px 0;
}

.custom-check:hover {
    border-color: var(--red);
    background: var(--white);
    box-shadow: 0 4px 10px rgba(200, 16, 46, 0.05);
}

.custom-check label {
    cursor: pointer;
    font-weight: 600;
    color: var(--black);
    margin: 0;
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 15px;
    gap: 10px;
}

.custom-check input[type="checkbox"] {
    accent-color: var(--red);
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin: 0;
}

.custom-check input[type="checkbox"]:checked {
    background-color: var(--red);
    border-color: var(--red);
}

.submit-wrapper {
    margin-top: 10px;
    text-align: center;
}


.text-danger {
    color: var(--red);
    font-size: 13px;
    margin-top: 5px;
}
.has-error .form-control {
    border-color: var(--red);
}


@media (max-width: 767px) {
    .quote_section { padding: 56px 0; }
    .quote_form_wrapper { padding: 24px; }
    .quote_header { margin-bottom: 30px; }
    .form-card { margin-bottom: 24px; }
}