.tejas-enquiry-wrap {
    --tejas-navy: #0b1033;
    --tejas-purple: #5530ff;
    --tejas-green: #76e900;
    --tejas-muted: #5f6982;
    display: grid;
    grid-template-columns: minmax(300px, .72fr) minmax(600px, 1.28fr);
    gap: clamp(38px, 5vw, 76px);
    align-items: start;
    position: relative;
    left: 50%;
    width: min(1420px, calc(100vw - 48px));
    max-width: none;
    margin: 48px auto;
    padding: clamp(38px, 4.5vw, 68px);
    transform: translateX(-50%);
    border-radius: 28px;
    background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 60%, #f1ffea 100%);
    color: var(--tejas-navy);
    box-sizing: border-box;
}

.tejas-enquiry-wrap * { box-sizing: border-box; }

.tejas-enquiry-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--tejas-purple);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
}

.tejas-enquiry-intro h2 {
    margin: 0 0 18px;
    color: var(--tejas-navy);
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.04;
    letter-spacing: -.035em;
}

.tejas-enquiry-intro > p {
    margin: 0;
    color: var(--tejas-muted);
    font-size: 18px;
    line-height: 1.7;
}

.tejas-enquiry-contact {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 32px;
    padding: 22px;
    border-left: 4px solid var(--tejas-green);
    border-radius: 4px 14px 14px 4px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(11, 16, 51, .07);
}

.tejas-enquiry-contact a {
    color: var(--tejas-navy);
    text-decoration: none;
}

.tejas-enquiry-card {
    padding: clamp(24px, 4vw, 42px);
    min-width: 0;
    border: 2px solid #e1e4f2;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(11, 16, 51, .11);
}

.tejas-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.tejas-field { margin-bottom: 20px; }
.tejas-form-grid .tejas-field { margin-bottom: 0; }
.tejas-field-full { margin-top: 20px; }

.tejas-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--tejas-navy);
    font-size: 14px;
    font-weight: 700;
}

.tejas-field label span { color: #d02c3a; }

.tejas-field input,
.tejas-field select,
.tejas-field textarea {
    width: 100%;
    margin: 0;
    min-height: 54px;
    padding: 14px 16px;
    border: 2px solid #d9deea;
    border-radius: 11px;
    background: #fcfcff;
    color: var(--tejas-navy);
    font: inherit;
    font-size: 16px;
    line-height: 1.35;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.tejas-field textarea { min-height: 150px; resize: vertical; }

.tejas-field input:focus,
.tejas-field select:focus,
.tejas-field textarea:focus {
    border-color: var(--tejas-purple);
    box-shadow: 0 0 0 3px rgba(85, 48, 255, .13);
}

.tejas-consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 4px 0 22px;
    color: var(--tejas-muted);
    font-size: 13px;
    line-height: 1.55;
}

.tejas-consent input { flex: 0 0 auto; margin-top: 4px; }
.tejas-consent a { color: var(--tejas-purple); }

.tejas-submit {
    width: 100%;
    padding: 16px 22px;
    border: 0;
    border-radius: 10px;
    background: var(--tejas-green);
    color: #07102f;
    font: inherit;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.tejas-submit:hover,
.tejas-submit:focus {
    background: #83f414;
    box-shadow: 0 12px 26px rgba(83, 180, 0, .24);
    transform: translateY(-2px);
}

.tejas-form-note {
    margin: 12px 0 0;
    color: var(--tejas-muted);
    font-size: 12px;
    text-align: center;
}

.tejas-form-message {
    margin-bottom: 22px;
    padding: 14px 16px;
    border-radius: 9px;
    font-weight: 650;
}

.tejas-form-success { border: 1px solid #9be05c; background: #efffe3; color: #245500; }
.tejas-form-error { border: 1px solid #ef9da6; background: #fff0f2; color: #8f1825; }

.tejas-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 850px) {
    .tejas-enquiry-wrap {
        grid-template-columns: 1fr;
        width: min(760px, calc(100vw - 32px));
    }
    .tejas-enquiry-contact { margin-top: 24px; }
}

@media (max-width: 620px) {
    .tejas-enquiry-wrap {
        gap: 26px;
        left: 0;
        width: 100%;
        margin: 28px 0;
        padding: 24px 16px;
        border-radius: 18px;
        transform: none;
    }
    .tejas-enquiry-intro h2 { font-size: 36px; }
    .tejas-enquiry-intro > p { font-size: 16px; }
    .tejas-enquiry-card { padding: 22px 16px; border-radius: 16px; }
    .tejas-form-grid { grid-template-columns: 1fr; gap: 18px; }
    .tejas-field-full { margin-top: 18px; }
}
