/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, #005580 0%, #0077b6 50%, #00a8e8 100%);
    color: white;
    padding: 70px 20px 50px;
    text-align: center;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(255,255,255,0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(245,166,35,0.12) 0%, transparent 45%);
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40px;
    background: white;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    transform: scale(1.3);
}
.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}
.page-hero-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--kuning);
    margin-bottom: 16px;
    backdrop-filter: blur(6px);
}
.page-hero h1 {
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}
.page-hero p {
    opacity: 0.85;
    font-size: 1rem;
    line-height: 1.6;
}
.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
}
.page-hero-breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}
.page-hero-breadcrumb a:hover { color: var(--kuning); }

@media (max-width: 768px) {
    .page-hero { padding: 56px 20px 40px; }
    .page-hero h1 { font-size: 1.5rem; }
    .page-hero p { font-size: 0.875rem; }
}

.pengaduan-layout { display: grid; grid-template-columns: 1fr 350px; gap: 32px; }
.content-card { background: white; border-radius: 12px; padding: 28px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.content-card h2 { color: var(--hijau); font-size: 1.2rem; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid #e8f5e9; display: flex; align-items: center; gap: 10px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: #444; margin-bottom: 6px; }
.form-input { width: 100%; padding: 10px 14px; border: 1.5px solid #e0e0e0; border-radius: 8px; font-size: 0.9rem; font-family: inherit; transition: all 0.2s; }
.form-input:focus { outline: none; border-color: var(--hijau-muda); box-shadow: 0 0 0 3px rgba(45,158,88,0.1); }
.form-input.error { border-color: #e74c3c; }
.err { font-size: 0.8rem; color: #e74c3c; margin-top: 4px; display: block; }
.info-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 0.875rem; color: #555; }
.info-item i { color: var(--hijau); margin-top: 2px; }
.alert { padding: 12px 16px; border-radius: 8px; font-size: 0.9rem; }
.alert-success { background: #e8f5e9; color: #2e7d32; border-left: 4px solid #2e7d32; }

@media (max-width: 768px) {
    .pengaduan-layout { grid-template-columns: 1fr; }
    .form-row-2 { grid-template-columns: 1fr; }
}

/* CAPTCHA */
.captcha-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1.5px dashed #b3d9f2;
    border-radius: 10px;
    padding: 10px 14px;
    background: #f0f8ff;
}
.captcha-soal {
    background: white;
    border: 2px solid #80c5e8;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 1.15rem;
    font-weight: 800;
    color: #0077b6;
    white-space: nowrap;
    min-width: 110px;
    text-align: center;
}
.captcha-wrap input {
    flex: 1;
    min-width: 0;
    padding: 9px 12px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: inherit;
}
.captcha-wrap input:focus {
    outline: none;
    border-color: #00a8e8;
    box-shadow: 0 0 0 3px rgba(0,168,232,0.1);
}
.captcha-wrap button {
    width: 36px;
    height: 36px;
    background: #0077b6;
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}
.captcha-wrap button:hover { background: #00a8e8; transform: rotate(90deg); }