    /* --- KALI SENA MEMBERSHIP FORM CSS --- */
.ks-membership-section {
    background: #f8fafc; /* Light grey for contrast */
    margin-top: 130px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.ks-container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

.ks-form-wrapper {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.05);
    border-top: 6px solid #D32F2F; /* Brand Red */
}

.ks-form-header { text-align: center; margin-bottom: 40px; }
.ks-form-badge {
    display: inline-block;
    background: rgba(211, 47, 47, 0.1);
    color: #D32F2F;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 15px;
}

.ks-form-header h2 { font-size: 36px; font-weight: 900; color: #111; }
.ks-form-header h2 span { color: #D32F2F; }
.ks-form-header p { color: #666; margin-top: 10px; }

/* Form Grid */
.ks-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.ks-input-box { display: flex; flex-direction: column; gap: 8px; }
.ks-input-box label { font-size: 13px; font-weight: 700; color: #334155; }

.ks-input-box input, .ks-input-box select, .ks-input-box textarea {
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #f9fbff;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    transition: 0.3s;
}

.ks-input-box input:focus, .ks-input-box select:focus {
    border-color: #D32F2F;
    box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.1);
}

.full-width { grid-column: span 2; }

/* Form Footer & Button */
.ks-form-footer { margin-top: 40px; text-align: center; }

.ks-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 30px;
    cursor: pointer;
}

.ks-submit-btn {
    background: #111;
    color: #fff;
    border: none;
    padding: 16px 45px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.ks-submit-btn:hover {
    background: #D32F2F;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(211, 47, 47, 0.3);
}

/* --- MOBILE RESPONSIVE FIXES --- */
@media (max-width: 768px) {
    .ks-form-wrapper { padding: 30px 20px; border-radius: 20px; }
    .ks-form-grid { grid-template-columns: 1fr; }
    .full-width { grid-column: span 1; }
    .ks-form-header h2 { font-size: 28px; }
    .ks-submit-btn { width: 100%; justify-content: center; }
}
