/* ── Kamindi Support Form ─────────────────────────────────────────────────── */

.ksf-wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 8px 0 48px;
    font-family: inherit;
}

/* Hero */
.ksf-hero {
    text-align: center;
    margin-bottom: 36px;
}

.ksf-hero__icon {
    font-size: 52px;
    line-height: 1;
    margin-bottom: 12px;
}

.ksf-hero__title {
    font-size: 26px !important;
    font-weight: 700;
    color: #005daa;
    margin: 0 0 8px !important;
    padding: 0 !important;
    border: none !important;
}

.ksf-hero__sub {
    font-size: 15px;
    color: #64748b;
    margin: 0;
}

/* Alert banners */
.ksf-alert {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 28px;
    font-size: 14px;
    line-height: 1.6;
}

.ksf-alert--success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
}

.ksf-alert--error {
    background: #fff5f5;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.ksf-alert__icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Two-column layout */
.ksf-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 28px;
    align-items: start;
}

@media (max-width: 700px) {
    .ksf-layout { grid-template-columns: 1fr; }
}

/* Sidebar info cards */
.ksf-info-card {
    background: #f4f8fc;
    border: 1px solid #dde4ef;
    border-radius: 10px;
    padding: 18px 20px;
    margin-bottom: 14px;
}

.ksf-info-card:last-child {
    margin-bottom: 0;
}

.ksf-info-card__title {
    font-size: 11px !important;
    font-weight: 700;
    color: #005daa;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin: 0 0 12px !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid #dde4ef !important;
}

.ksf-contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: 13px;
    color: #1a2332;
    text-decoration: none;
    border-bottom: 1px solid #edf2f7;
    transition: color .12s;
}

.ksf-contact-row:last-child { border-bottom: none; }

.ksf-contact-row:hover { color: #005daa; }

.ksf-contact-row__icon {
    font-size: 16px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.ksf-faq-list {
    margin: 0;
    padding: 0 0 0 18px;
    list-style: disc;
}

.ksf-faq-list li {
    font-size: 13px;
    color: #4a5568;
    padding: 4px 0;
    line-height: 1.5;
}

/* Form card */
.ksf-form {
    background: #fff;
    border: 1px solid #dde4ef;
    border-radius: 12px;
    padding: 28px 32px;
}

@media (max-width: 480px) {
    .ksf-form { padding: 20px 16px; }
}

/* Field grid rows */
.ksf-row {
    display: grid;
    gap: 16px;
    margin-bottom: 18px;
}

.ksf-row--2 { grid-template-columns: 1fr 1fr; }

@media (max-width: 560px) {
    .ksf-row--2 { grid-template-columns: 1fr; }
}

/* Individual field */
.ksf-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 18px;
}

.ksf-row .ksf-field { margin-bottom: 0; }

.ksf-field label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.ksf-req     { color: #cc0000; }
.ksf-opt     { font-weight: 400; color: #94a3b8; font-size: 12px; }

/* Inputs, selects, textarea */
.ksf-field input,
.ksf-field select,
.ksf-field textarea {
    width: 100%;
    padding: 10px 13px;
    border: 1px solid #d1d5db;
    border-radius: 7px;
    font-size: 14px;
    color: #1a2332;
    background: #fafafa;
    box-sizing: border-box;
    font-family: inherit;
    transition: border-color .14s, box-shadow .14s;
    -webkit-appearance: none;
    appearance: none;
}

.ksf-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.ksf-field input:focus,
.ksf-field select:focus,
.ksf-field textarea:focus {
    outline: none;
    border-color: #005daa;
    box-shadow: 0 0 0 3px rgba(0, 93, 170, .13);
    background: #fff;
}

.ksf-field textarea {
    resize: vertical;
    min-height: 130px;
}

/* Submit button */
.ksf-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: #005daa;
    color: #fff;
    border: 2px solid #005daa;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .14s, transform .1s;
    font-family: inherit;
    text-decoration: none;
}

.ksf-submit:hover  { background: #004a8a; border-color: #004a8a; color: #fff; }
.ksf-submit:active { transform: translateY(1px); }

.ksf-submit--outline {
    background: transparent;
    color: #005daa;
}

.ksf-submit--outline:hover { background: #005daa; color: #fff; }

/* Post-submit "another question" card */
.ksf-sent-card {
    background: #f4f8fc;
    border: 1px solid #dde4ef;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.ksf-sent-card__text {
    font-size: 16px;
    color: #1a2332;
    margin: 0 0 20px;
}
