body { font-family: 'Inter', sans-serif; background-color: #f8fafc; color: #334155; }
.page-banner { padding: 80px 0; }
.pengaduan-container { padding: 60px 0 100px; }

/* Channel cards */
.channel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 40px; justify-content: center; }
.channel-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 8px 25px rgba(0,0,0,0.02);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: flex; flex-direction: column; align-items: center;
}
.channel-card:hover { transform: translateY(-5px); box-shadow: var(--theme-shadow-hover); border-color: rgba(11, 92, 59, 0.25); }
.channel-icon { width: 64px; height: 64px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 16px; }
.channel-wa   .channel-icon { background: #dcfce7; color: #16a34a; }
.channel-card .channel-name { font-size: 15px; font-weight: 800; color: #1e293b; margin-bottom: 6px; font-family: 'Raleway', sans-serif; }
.channel-card .channel-desc { font-size: 13px; color: #64748b; line-height: 1.5; margin: 0; }

/* Form Card */
.pengaduan-card { background: #ffffff; border-radius: 16px; border: 1px solid #f1f5f9; box-shadow: 0 10px 30px rgba(0,0,0,0.02); padding: 40px; }
@media (max-width: 576px) { .pengaduan-card { padding: 25px 18px; } }

.form-group-custom label { font-weight: 600; color: #1e293b; margin-bottom: 8px; display: block; font-size: 15px; }
.form-group-custom .form-control,
.form-group-custom .form-select {
    height: 52px !important; border-radius: 8px !important;
    border: 1px solid #e2e8f0; background-color: #f8fafc !important;
    font-size: 15px; padding: 10px 18px !important; color: #334155; transition: all 0.3s ease;
}
.form-group-custom textarea.form-control { height: auto !important; min-height: 120px; }
.form-group-custom .form-control:focus,
.form-group-custom .form-select:focus {
    border-color: var(--theme-secondary) !important; background-color: #ffffff !important;
    box-shadow: 0 0 0 4px var(--theme-mint-light) !important; outline: none;
}

/* WA Preview */
.wa-preview {
    background: #f0fdf4; border: 1px solid rgba(34,197,94,0.2);
    border-radius: 12px; padding: 20px; margin-bottom: 25px;
    display: flex; gap: 14px; align-items: flex-start;
}
.wa-preview i { font-size: 22px; color: #16a34a; flex-shrink: 0; margin-top: 3px; }
.wa-preview-text { font-size: 13.5px; color: #166534; line-height: 1.6; margin: 0; }
.wa-preview-text strong { font-weight: 700; }

/* Submit WA Button */
.btn-wa-submit {
    background: #25D366; color: #ffffff; font-weight: 700;
    font-size: 16px; padding: 14px 30px; border-radius: 8px;
    border: none; width: 100%; display: flex; align-items: center;
    justify-content: center; gap: 10px;
    box-shadow: 0 6px 20px rgba(37,211,102,0.25); transition: all 0.3s ease;
    cursor: pointer;
}
.btn-wa-submit:hover { background: #1ebe5a; transform: translateY(-2px); box-shadow: 0 10px 25px rgba(37,211,102,0.35); }
