/* Adham_Quote — chooser + form styles */

.quote-chooser,
.quote-form {
    max-width: 760px;
    margin: 0 auto;
    padding: 20px 0 40px;
}

.quote-chooser__header,
.quote-form__header {
    text-align: center;
    margin-bottom: 28px;
}

.quote-chooser__title,
.quote-form__title {
    margin: 0 0 8px;
}

.quote-chooser__subtitle {
    color: #6d6d6d;
    margin: 0;
}

/* Chooser cards */
.quote-chooser__options {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.quote-card {
    flex: 1 1 240px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 24px;
    border: 2px solid #e2e2e2;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    background: #fff;
    transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.quote-card:hover,
.quote-card:focus {
    border-color: #1979c3;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    transform: translateY(-2px);
    text-decoration: none;
}

.quote-card__icon {
    color: #1979c3;
    margin-bottom: 14px;
    line-height: 0;
}

.quote-card__label {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.quote-card__hint {
    font-size: 13px;
    color: #8d8d8d;
}

/* Form */
.quote-form__back {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
}

.quote-form__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
}

.quote-form__field--full {
    grid-column: 1 / -1;
}

.quote-form .field .label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.quote-form .input-text {
    width: 100%;
}

.quote-form__actions {
    margin-top: 24px;
    text-align: center;
}

.quote-form__actions .action.primary {
    min-width: 220px;
}

/* Honeypot — keep out of sight and out of the accessibility tree.
   Uses the clip technique (not left:-10000px) so it does NOT extend the page
   horizontally and cause a sideways scroll / empty white space. */
.quote-form__hp {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

@media (max-width: 600px) {
    .quote-form__fields {
        grid-template-columns: 1fr;
    }
}