/* assets/css/forms.css — enquiry form, hero layout */

/* ── HERO ──────────────────────────────────── */
.hero {
    background: #F1EFE8;
    padding: 3.5rem 0;
    border-bottom: 1px solid #E8E6E0;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
    align-items: flex-start;
}
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0F6E56;
    margin-bottom: 1rem;
}
.eyebrow-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #1D9E75;
    flex-shrink: 0;
}
.hero-title {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #2C2C2A;
    line-height: 1.25;
    margin-bottom: 1.125rem;
}
.hero-accent { color: #0F6E56; }
.hero-desc {
    font-size: 1rem;
    color: #5F5E5A;
    line-height: 1.75;
    margin-bottom: 1.75rem;
    max-width: 520px;
}
.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.5rem;
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #5F5E5A;
}
.trust-item svg { color: #1D9E75; flex-shrink: 0; }

/* ── ENQUIRY CARD ───────────────────────────── */
.enquiry-card {
    background: #fff;
    border: 1px solid #D3D1C7;
    border-radius: 12px;
    padding: 1.375rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: sticky;
    top: 64px;
}
.enquiry-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.125rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #F1EFE8;
    color: #0F6E56;
}
.enquiry-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #2C2C2A;
    margin: 0;
}

/* Alert messages */
.form-alert {
    padding: 9px 12px;
    border-radius: 6px;
    font-size: 0.82rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}
.form-alert-success {
    background: #EAF3DE;
    color: #27500A;
    border: 1px solid #97C459;
}
.form-alert-error {
    background: #FCEBEB;
    color: #791F1F;
    border: 1px solid #F09595;
}

/* Fields */
.form-field {
    margin-bottom: 0.875rem;
}
.form-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #5F5E5A;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}
.req { color: #E24B4A; }

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    font-size: 0.875rem;
    font-family: inherit;
    padding: 8px 10px;
    border: 1px solid #D3D1C7;
    border-radius: 6px;
    background: #FAFAF9;
    color: #2C2C2A;
    transition: border-color 0.15s, box-shadow 0.15s;
    appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #1D9E75;
    box-shadow: 0 0 0 3px rgba(29,158,117,0.12);
}
.form-field input.invalid,
.form-field select.invalid { border-color: #E24B4A; }

.field-error {
    display: block;
    font-size: 0.75rem;
    color: #A32D2D;
    margin-top: 3px;
    min-height: 1em;
}

/* Submit button */
.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: #0F6E56;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: inherit;
    padding: 10px;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    margin-top: 4px;
    transition: background 0.18s;
}
.btn-submit:hover   { background: #085041; }
.btn-submit:disabled { opacity: 0.65; cursor: not-allowed; }

.enquiry-alt {
    font-size: 0.78rem;
    color: #888780;
    text-align: center;
    margin-top: 0.75rem;
}
.phone-link { color: #0F6E56; font-weight: 600; }
.wa-link    { color: #128C5E; font-weight: 600; }
