/* ═══════════════════════════════════════════════════════════
   SIMAK — Kemenag Auth Page Styles
   ═══════════════════════════════════════════════════════════ */

:root {
  --emerald:            #0a5c36;
  --emerald-d:          #073d24;
  --emerald-l:          #0e7a47;
  --gold:               #c9a227;
  --gold-l:             #e8be4d;
  --cream:              #fdf8ef;
  --text-muted-custom:  #6b7c6e;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body { height: 100%; overflow: hidden; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: flex;
  background: var(--emerald-d);
}

/* ─── LEFT PANEL ─────────────────────────────────────────── */
.panel-left {
  width: 44%;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  background: linear-gradient(160deg, var(--emerald-d) 0%, var(--emerald) 60%, var(--emerald-l) 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px 48px;
  flex-shrink: 0;
}

.panel-left::-webkit-scrollbar { width: 4px; }
.panel-left::-webkit-scrollbar-track { background: transparent; }
.panel-left::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 4px; }

.panel-left::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(201,162,39,.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,162,39,.08) 0%, transparent 45%);
  pointer-events: none;
}

.geo-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: .065; pointer-events: none;
}

.masjid-silhouette {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 180px; pointer-events: none; z-index: 1;
}

.brand-area { position: relative; z-index: 2; }

.brand-logo {
  display: flex; align-items: center; gap: 14px; margin-bottom: 36px;
}

.logo-mark {
  width: 50px; height: 50px; background: var(--gold);
  border-radius: 13px; display: flex; align-items: center;
  justify-content: center; font-size: 24px; color: var(--emerald-d);
  font-weight: 700; flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(201,162,39,.4);
}

.brand-text .name {
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-l); font-weight: 600; line-height: 1;
}

.brand-text .tagline { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: 3px; }

.hero-title {
  font-family: 'Scheherazade New', serif;
  font-size: 3.2rem; font-weight: 700; color: #fff;
  line-height: 1.15; margin-bottom: 16px;
}

.hero-title span { color: var(--gold-l); }

.hero-sub {
  font-size: .9rem; color: rgba(255,255,255,.6);
  line-height: 1.75; max-width: 360px;
}

.feature-list {
  margin-top: 36px; display: flex; flex-direction: column;
  gap: 12px; position: relative; z-index: 2;
}

.feature-item {
  display: flex; align-items: center; gap: 12px;
  font-size: .85rem; color: rgba(255,255,255,.72);
}

.feature-icon {
  width: 32px; height: 32px;
  background: rgba(201,162,39,.18); border: 1px solid rgba(201,162,39,.3);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; color: var(--gold-l); font-size: 14px; flex-shrink: 0;
}

.footer-left {
  position: relative; z-index: 2;
  font-size: .72rem; color: rgba(255,255,255,.3);
  padding-bottom: 8px; margin-top: 40px;
}

/* ─── RIGHT PANEL ────────────────────────────────────────── */
.panel-right {
  flex: 1; height: 100vh;
  overflow-y: auto; overflow-x: hidden;
  background: var(--cream);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 40px 48px;
}

.panel-right::-webkit-scrollbar { width: 5px; }
.panel-right::-webkit-scrollbar-track { background: transparent; }
.panel-right::-webkit-scrollbar-thumb { background: #c8d8cc; border-radius: 4px; }

.auth-box {
  width: 100%; max-width: 460px;
  margin-top: auto; margin-bottom: auto; padding: 12px 0;
}

/* ─── TABS ───────────────────────────────────────────────── */
.auth-tab-nav {
  display: flex; background: #e8f0eb; border-radius: 14px;
  padding: 4px; margin-bottom: 30px; gap: 4px;
}

.auth-tab-btn {
  flex: 1; padding: 10px 0; border: none;
  background: transparent; border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .875rem; font-weight: 600;
  color: var(--text-muted-custom); cursor: pointer;
  transition: all .25s ease;
}

.auth-tab-btn.active {
  background: var(--emerald); color: #fff;
  box-shadow: 0 4px 14px rgba(10,92,54,.25);
}

/* ─── FORM ───────────────────────────────────────────────── */
.auth-section-title {
  font-size: 1.6rem; font-weight: 700;
  color: var(--emerald-d); margin-bottom: 5px;
}

.auth-section-sub {
  font-size: .85rem; color: var(--text-muted-custom); margin-bottom: 22px;
}

.form-label-custom {
  font-size: .8rem; font-weight: 600; color: #374151;
  margin-bottom: 5px; display: block;
}

.input-group-custom { position: relative; margin-bottom: 16px; }

.input-icon {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  color: #9aad9f; font-size: 15px; z-index: 5; pointer-events: none;
}

.form-control-custom {
  width: 100%; padding: 11px 13px 11px 40px;
  border: 1.5px solid #d4e0d8; border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: .85rem;
  color: #1a2e23; background: #fff;
  transition: border-color .2s, box-shadow .2s; outline: none;
}

.form-control-custom:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3.5px rgba(10,92,54,.11);
}

.form-control-custom::placeholder { color: #b0bfb4; }

.form-control-custom:read-only {
  background: #f0f5f2; color: #4a6456; cursor: default;
}

.input-toggle-pw {
  position: absolute; right: 13px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: #9aad9f;
  cursor: pointer; font-size: 15px; padding: 0; z-index: 5;
}

.input-toggle-pw:hover { color: var(--emerald); }

.select-custom {
  padding-left: 40px; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239aad9f' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; background-color: #fff;
}

.row-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn-submit {
  width: 100%; padding: 12px;
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-l) 100%);
  border: none; border-radius: 10px; color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .9rem; font-weight: 700; cursor: pointer;
  transition: all .25s ease;
  box-shadow: 0 5px 18px rgba(10,92,54,.28);
  margin-top: 4px; letter-spacing: .02em;
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--emerald-l) 0%, var(--emerald) 100%);
  box-shadow: 0 8px 22px rgba(10,92,54,.38); transform: translateY(-1px);
}

.btn-submit:active { transform: translateY(0); }

.btn-secondary-custom {
  background: #fff !important; color: var(--emerald-d) !important;
  border: 1.5px solid #d4e0d8 !important; box-shadow: none !important;
}

.btn-secondary-custom:hover {
  background: #f3f7f4 !important; box-shadow: none !important;
  transform: translateY(-1px);
}

/* ─── MISC ───────────────────────────────────────────────── */
.divider-text {
  text-align: center; font-size: .76rem; color: #b0bfb4; margin: 16px 0; position: relative;
}

.divider-text::before, .divider-text::after {
  content: ''; position: absolute; top: 50%;
  width: calc(50% - 28px); height: 1px; background: #dce8df;
}

.divider-text::before { left: 0; }
.divider-text::after  { right: 0; }

.alt-link {
  text-align: center; font-size: .82rem; color: var(--text-muted-custom); margin-top: 16px;
}

.alt-link a { color: var(--emerald); font-weight: 600; text-decoration: none; }
.alt-link a:hover { text-decoration: underline; }

.form-check-custom { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 16px; }

.form-check-custom input[type="checkbox"] {
  width: 15px; height: 15px; accent-color: var(--emerald);
  flex-shrink: 0; margin-top: 2px; cursor: pointer;
}

.form-check-custom label {
  font-size: .78rem; color: var(--text-muted-custom); line-height: 1.5; cursor: pointer;
}

.form-check-custom label a { color: var(--emerald); font-weight: 600; text-decoration: none; }

.forgot-link {
  font-size: .78rem; color: var(--emerald); font-weight: 600;
  text-decoration: none; float: right; margin-top: -12px;
  margin-bottom: 16px; display: block;
}

.forgot-link:hover { text-decoration: underline; }

.info-box {
  background: rgba(10,92,54,.07); border-left: 3px solid var(--emerald);
  border-radius: 8px; padding: 9px 13px; font-size: .78rem;
  color: var(--emerald-d); margin-bottom: 18px;
  display: flex; align-items: flex-start; gap: 8px;
}

.info-box i { font-size: 13px; margin-top: 1px; flex-shrink: 0; }

/* ─── STEP INDICATOR ─────────────────────────────────────── */
.step-indicator { display: flex; align-items: center; gap: 6px; margin-bottom: 22px; }

.step-dot {
  width: 26px; height: 4px; border-radius: 3px;
  background: #d4e0d8; transition: background .3s;
}

.step-dot.active { background: var(--emerald); }
.step-dot.done   { background: var(--gold); }

/* ─── MAP PICKER ─────────────────────────────────────────── */
.map-section {
  margin-bottom: 18px;
}

.map-section-label {
  font-size: .8rem; font-weight: 600; color: #374151; margin-bottom: 8px; display: flex;
  align-items: center; gap: 6px;
}

.map-section-label .badge-map {
  background: rgba(10,92,54,.1); color: var(--emerald);
  font-size: .68rem; font-weight: 700; padding: 2px 7px;
  border-radius: 20px; letter-spacing: .03em;
}

.map-wrapper {
  position: relative; border-radius: 12px; overflow: hidden;
  border: 1.5px solid #d4e0d8;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}

#mapPicker {
  width: 100%; height: 240px;
}

.map-instruction {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.52));
  color: #fff; font-size: .73rem; padding: 22px 12px 9px;
  pointer-events: none; z-index: 450; text-align: center;
  letter-spacing: .01em;
}

.map-instruction i { margin-right: 4px; }

/* GPS button inside map */
.btn-gps {
  position: absolute; top: 10px; right: 10px; z-index: 500;
  background: #fff; border: 1.5px solid #d4e0d8;
  border-radius: 9px; padding: 7px 11px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .75rem; font-weight: 600; color: var(--emerald);
  cursor: pointer; display: flex; align-items: center; gap: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  transition: all .2s;
}

.btn-gps:hover { background: var(--emerald); color: #fff; border-color: var(--emerald); }
.btn-gps.loading { opacity: .65; cursor: wait; }

/* Koordinat display */
.koordinat-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-top: 10px;
}

.koordinat-box {
  background: #f0f7f4; border: 1.5px solid #cce2d8;
  border-radius: 10px; padding: 9px 13px;
  display: flex; flex-direction: column; gap: 2px;
}

.koordinat-box .k-label {
  font-size: .68rem; font-weight: 700; color: var(--emerald);
  letter-spacing: .08em; text-transform: uppercase;
}

.koordinat-box .k-value {
  font-size: .85rem; font-weight: 600; color: #1a2e23;
  font-variant-numeric: tabular-nums; letter-spacing: .01em;
}

.koordinat-box .k-empty {
  font-size: .8rem; color: #b0bfb4; font-style: italic;
}

/* Status chip */
.map-status {
  display: flex; align-items: center; gap: 6px;
  font-size: .75rem; color: var(--text-muted-custom);
  margin-top: 8px; margin-bottom: 14px;
}

.map-status .dot-status {
  width: 8px; height: 8px; border-radius: 50%;
  background: #d4e0d8; flex-shrink: 0;
  transition: background .3s;
}

.map-status.has-pin .dot-status { background: #16a34a; }
.map-status.has-pin { color: #16a34a; font-weight: 600; }

/* Loading overlay for geocoding */
.geocode-loading {
  display: none; align-items: center; gap: 8px;
  font-size: .76rem; color: var(--text-muted-custom);
  margin-bottom: 6px;
}

.geocode-loading.active { display: flex; }

/* ─── SECTION DIVIDER ────────────────────────────────────── */
.section-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 16px;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #d4e0d8;
}

.section-divider span {
  font-size: .75rem;
  font-weight: 700;
  color: var(--emerald);
  white-space: nowrap;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ─── MAP SEARCH BOX ─────────────────────────────────────── */
.map-search-wrap {
  position: relative;
  margin-bottom: 8px;
}

.map-search-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: #9aad9f;
  font-size: 14px;
  pointer-events: none;
  z-index: 2;
}

.map-search-input {
  width: 100%;
  padding: 10px 13px 10px 38px;
  border: 1.5px solid #d4e0d8;
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .83rem;
  color: #1a2e23;
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.map-search-input:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(10,92,54,.1);
}

.map-search-input::placeholder { color: #b0bfb4; }

.map-search-results {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: #fff;
  border: 1.5px solid #d4e0d8;
  border-radius: 10px;
  z-index: 600;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  overflow: hidden;
  max-height: 220px;
  overflow-y: auto;
}

.map-search-results .search-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 9px 13px;
  font-size: .8rem;
  color: #1a2e23;
  cursor: pointer;
  border-bottom: 1px solid #f0f5f2;
  transition: background .15s;
  line-height: 1.4;
}

.map-search-results .search-item:last-child { border-bottom: none; }

.map-search-results .search-item:hover { background: #f0f7f4; }

.map-search-results .search-item i {
  color: var(--emerald);
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}

.map-search-results .search-item-loading,
.map-search-results .search-item-empty {
  padding: 11px 14px;
  font-size: .8rem;
  color: var(--text-muted-custom);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ─── MAP ALERT BOX ──────────────────────────────────────── */
.map-alert-box {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  background: #fff8e1;
  border: 1.5px solid #f5c842;
  border-radius: 9px;
  padding: 9px 12px;
  font-size: .78rem;
  color: #7a5800;
  margin-top: 8px;
  margin-bottom: 4px;
  animation: fadeSlide .25s ease;
}

.map-alert-box i { font-size: 14px; color: #d97706; flex-shrink: 0; margin-top: 1px; }

.map-alert-box span { flex: 1; line-height: 1.5; }

.map-alert-close {
  background: none;
  border: none;
  color: #b08030;
  font-size: 16px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
}

.map-alert-close:hover { color: #7a5800; }

/* ─── UPLOAD FOTO ────────────────────────────────────────── */
.upload-hint {
  font-size: .76rem;
  color: var(--text-muted-custom);
  margin-bottom: 10px;
  line-height: 1.5;
}

.upload-dropzone {
  border: 2px dashed #c2d9cb;
  border-radius: 12px;
  background: #f6fbf8;
  padding: 22px 16px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  position: relative;
  margin-bottom: 12px;
}

.upload-dropzone:hover,
.upload-dropzone.drag-over {
  border-color: var(--emerald);
  background: rgba(10,92,54,.05);
}

.upload-dropzone-inner { pointer-events: none; }

.upload-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(10,92,54,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 22px;
  color: var(--emerald);
  transition: transform .2s;
}

.upload-dropzone:hover .upload-icon-wrap { transform: translateY(-3px); }

.upload-cta {
  font-size: .85rem;
  font-weight: 700;
  color: var(--emerald-d);
  margin-bottom: 3px;
}

.upload-sub {
  font-size: .72rem;
  color: var(--text-muted-custom);
}

/* Preview grid */
.upload-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 4px;
}

.preview-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #e8f0eb;
  animation: fadeSlide .25s ease both;
  border: 1.5px solid #d4e0d8;
}

.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.preview-item .preview-remove {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 22px;
  height: 22px;
  background: rgba(220,38,38,.85);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
  transition: background .15s, transform .15s;
  z-index: 2;
}

.preview-item .preview-remove:hover {
  background: #b91c1c;
  transform: scale(1.1);
}

.preview-item .preview-name {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.6));
  color: #fff;
  font-size: .62rem;
  padding: 10px 6px 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Counter + add more */
.upload-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: var(--emerald);
  font-weight: 600;
  margin-bottom: 4px;
}

.upload-counter i { font-size: 14px; }

.upload-add-more {
  margin-left: auto;
  background: none;
  border: 1.5px solid var(--emerald);
  border-radius: 7px;
  color: var(--emerald);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all .2s;
}

.upload-add-more:hover {
  background: var(--emerald);
  color: #fff;
}

/* Error state */
.upload-dropzone.has-error {
  border-color: #ef4444;
  background: #fff5f5;
}

.upload-error-msg {
  font-size: .75rem;
  color: #dc2626;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.preview-pdf-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1;
    background: #fff1f0;
    border-radius: 6px;
    font-size: 2.5rem;
    color: #e53935;
}

/* ── Modal Lupa Kata Sandi ── */
.modal-content.modal-custom {
    border: none; border-radius: 18px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.modal-custom-header {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 22px 22px 18px; position: relative;
    background: linear-gradient(135deg, #073d24 0%, #0a5c36 100%);
}
.modal-icon-wrap {
    width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; margin-top: 2px;
    background: rgba(201,162,39,.2); border: 1.5px solid rgba(201,162,39,.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: #e8be4d;
}
.modal-custom-title { font-size: 1.05rem; font-weight: 700; color: #fff; margin: 0 0 3px; }
.modal-custom-sub   { font-size: .78rem; color: rgba(255,255,255,.65); margin: 0; line-height: 1.5; }
.modal-close-btn {
    position: absolute; top: 14px; right: 16px;
    background: rgba(255,255,255,.12); border: none; border-radius: 8px;
    color: rgba(255,255,255,.8); width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; cursor: pointer; transition: background .2s;
}
.modal-close-btn:hover { background: rgba(255,255,255,.25); color: #fff; }
.modal-custom-body { padding: 22px 22px 24px; background: #fdf8ef; }

/* Success state */
.reset-success { text-align: center; padding: 10px 0 4px; }
.reset-success-icon {
    width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 14px;
    background: rgba(10,92,54,.1); display: flex; align-items: center;
    justify-content: center; font-size: 28px; color: #0a5c36;
    animation: popIn .35s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes popIn {
    from { transform: scale(.5); opacity: 0; }
    to   { transform: scale(1);  opacity: 1; }
}
.reset-success-title { font-size: 1.05rem; font-weight: 700; color: #073d24; margin-bottom: 8px; }
.reset-success-msg   { font-size: .82rem; color: #6b7c6e; line-height: 1.65; }

/* ─── ANIMATION ──────────────────────────────────────────── */
.auth-panel { animation: fadeSlide .32s ease both; }

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideDown {

    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .panel-left  { width: 46%; padding: 36px 36px; }
  .panel-right { padding: 32px 32px; }
  .hero-title  { font-size: 2.8rem; }
}

@media (max-width: 768px) {
  html, body { height: auto; overflow: auto; }
  body { flex-direction: column; }

  .panel-left  { width: 100%; height: auto; overflow: visible; padding: 30px 24px 70px; }
  .panel-right { width: 100%; height: auto; overflow: visible; padding: 30px 20px 40px; align-items: flex-start; }

  .auth-box { margin: 0 auto; }
  .hero-title { font-size: 2.2rem; }
  .masjid-silhouette { height: 110px; }
  .feature-list { flex-direction: row; flex-wrap: wrap; }
  .feature-item { width: calc(50% - 8px); }
}

@media (max-width: 480px) {
  .panel-right { padding: 24px 16px; }
  .row-2col    { grid-template-columns: 1fr; gap: 0; }
  .feature-item { width: 100%; }
  .koordinat-row { grid-template-columns: 1fr; }
}