/* Nur ul Ilm inspired theme: deep green, warm gold, cream and soft neutrals. */
:root {
  --bg: #eef6dc;
  --bg-soft: #fbfff2;
  --card: #ffffff;
  --text: #1d3b2b;
  --muted: #5d6b4b;
  --primary: #1d3b2b;
  --primary-2: #2f5133;
  --accent: #a7d35a;
  --accent-dark: #6f9637;
  --border: #d7e8b6;
  --error: #b42318;
  --success: #027a48;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(167, 211, 90, .24), transparent 34rem),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  color: var(--text);
}
.container { width: min(980px, calc(100% - 32px)); margin: 28px auto 44px; }
.narrow { max-width: 680px; }
.site-header { display: flex; justify-content: center; margin-bottom: 20px; }
.brand { display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; border-radius: 22px; background: rgba(255,255,255,.78); border: 1px solid rgba(229,216,194,.9); box-shadow: 0 12px 34px rgba(18,60,53,.08); }
.brand-logo { display: block; width: min(210px, 52vw); height: auto; }
.card { background: rgba(255,255,255,.96); border: 1px solid var(--border); border-radius: 24px; padding: 30px; box-shadow: 0 20px 52px rgba(18, 60, 53, .12); }
.hero { margin-bottom: 20px; background: linear-gradient(135deg, rgba(18,60,53,.98), rgba(15,61,53,.9)); color: #fff; position: relative; overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: auto -60px -90px auto; width: 220px; height: 220px; border: 26px solid rgba(167,211,90,.18); border-radius: 50%; }
h1 { margin: 0 0 12px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.05; letter-spacing: .01em; }
h2 { margin: 30px 0 14px; font-size: 1.2rem; color: var(--primary); }
p { line-height: 1.6; }
.hero p:last-child { color: rgba(255,255,255,.86); max-width: 760px; }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; color: var(--accent); font-weight: 900; font-size: .78rem; margin: 0 0 10px; }
.amount-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 12px; }
.amount-button, .payment-button { border: 1px solid var(--border); border-radius: 16px; padding: 15px; background: #f8fcef; color: var(--primary); font: inherit; font-weight: 900; cursor: pointer; text-align: center; transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease, background .15s ease; }
.amount-button:hover, .payment-button:hover { transform: translateY(-1px); border-color: var(--accent); box-shadow: 0 8px 20px rgba(18,60,53,.08); }
.amount-button.selected, .payment-button.selected { border-color: var(--accent); background: linear-gradient(135deg, #123c35, #0f3d35); color: #fff; box-shadow: 0 0 0 4px rgba(167,211,90,.25); }
.custom-amount { grid-column: span 2; display: flex; gap: 10px; align-items: center; text-align: left; }
.custom-amount input[type="number"] { flex: 1; min-width: 120px; background: #fff; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { font-weight: 800; color: var(--primary); }
input, textarea { width: 100%; margin-top: 8px; border: 1px solid var(--border); border-radius: 14px; padding: 13px 14px; font: inherit; color: var(--text); background: #fffdf9; outline: none; transition: border-color .15s ease, box-shadow .15s ease; }
input:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(167,211,90,.22); }
textarea { min-height: 100px; resize: vertical; }
.field-grid label:last-child { grid-column: 1 / -1; }
.payment-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 10px; margin-bottom: 22px; }
button, .button { appearance: none; border: 0; border-radius: 999px; background: linear-gradient(135deg, var(--accent), #8fbd48); color: #123c35; padding: 14px 24px; font-weight: 900; font-size: 1rem; cursor: pointer; text-decoration: none; display: inline-block; box-shadow: 0 12px 24px rgba(154,116,50,.22); }
button:hover, .button:hover { filter: brightness(.98); transform: translateY(-1px); }
.button.secondary { background: #f4fbe8; color: var(--primary); border: 1px solid var(--border); box-shadow: none; }
.alert { border-radius: 14px; padding: 14px 16px; margin-bottom: 16px; font-weight: 800; }
.alert.error { background: #fef3f2; color: var(--error); border: 1px solid #fecdca; }
.reference { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: clamp(1.4rem, 4vw, 2.2rem); letter-spacing: .05em; background: #f6fbe6; border: 1px dashed var(--accent-dark); color: var(--primary); border-radius: 18px; padding: 18px; margin: 22px 0; text-align: center; font-weight: 900; }
.bank-details { display: grid; grid-template-columns: 180px 1fr; gap: 10px 18px; }
dt { color: var(--muted); font-weight: 800; }
dd { margin: 0; font-weight: 900; }
.muted { color: var(--muted); }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: .92rem; }
th, td { text-align: left; padding: 10px; border-bottom: 1px solid var(--border); }
th { color: var(--muted); }
@media (max-width: 720px) { .container { width: min(100% - 24px, 980px); margin-top: 16px; } .card { padding: 22px; } .field-grid { grid-template-columns: 1fr; } .custom-amount { grid-column: span 1; flex-direction: column; align-items: stretch; } .bank-details { grid-template-columns: 1fr; } }
