/* ── Reset & Base ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0F1F3D;
  --navy2:  #1a2f52;
  --amber:  #F59E0B;
  --amber2: #D97706;
  --bg:     #F8FAFC;
  --white:  #FFFFFF;
  --text:   #1E293B;
  --muted:  #64748B;
  --border: #E2E8F0;
  --green:  #16A34A;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;
}

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── Navbar ──────────────────────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 64px;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.nav-brand {
  font-family: var(--ff-display);
  font-size: 1.4rem; font-weight: 700;
  color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.brand-icon { color: var(--amber); font-size: 1.1rem; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: rgba(255,255,255,.75); text-decoration: none; font-size: .9rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--amber); }
.btn-nav-admin {
  background: var(--amber) !important; color: var(--navy) !important;
  padding: 6px 16px; border-radius: 8px; font-weight: 600 !important;
  transition: background .2s !important;
}
.btn-nav-admin:hover { background: var(--amber2) !important; }

/* ── Hamburger (mobile) ──────────────────────────────────────────────────── */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 38px; height: 38px; background: none; border: none; cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--white);
  border-radius: 2px; transition: transform .25s, opacity .25s;
  margin: 0 auto;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 560px;
  background: var(--hero-img,var(--navy)) center/cover no-repeat;
  display: flex; align-items: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,31,61,.92) 0%, rgba(15,31,61,.72) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; padding: 72px 24px;
  width: 100%;
}
.hero-text { flex: 1; max-width: 580px; }
.badge {
  display: inline-block;
  background: var(--amber); color: var(--navy);
  font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 16px;
}
.hero-text h1 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white); line-height: 1.2; margin-bottom: 16px;
}
.hero-title-link { color: inherit; text-decoration: none; transition: color .2s; }
.hero-title-link:hover { color: var(--amber); }
.hero-desc { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 28px; }

.hero-meta {
  display: flex; align-items: center; gap: 24px; margin-bottom: 32px; flex-wrap: wrap;
}
.meta-item { display: flex; flex-direction: column; }
.meta-val { font-size: 1.5rem; font-weight: 700; color: var(--amber); line-height: 1; }
.meta-lbl { font-size: .8rem; color: rgba(255,255,255,.6); margin-top: 2px; }
.meta-divider { width: 1px; height: 36px; background: rgba(255,255,255,.2); }

/* ── Ring ────────────────────────────────────────────────────────────────── */
.hero-ring-wrap {
  flex-shrink: 0; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.progress-ring { filter: drop-shadow(0 0 18px rgba(245,158,11,.35)); }
.ring-fill { transition: stroke-dashoffset 1.4s cubic-bezier(.4,0,.2,1); }
.ring-label {
  position: absolute; display: flex; flex-direction: column; align-items: center;
}
.ring-pct {
  font-family: var(--ff-display);
  font-size: 2.4rem; font-weight: 900; color: var(--white); line-height: 1;
}
.ring-sub { font-size: .8rem; color: rgba(255,255,255,.6); letter-spacing: .04em; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--amber); color: var(--navy);
  border: none; border-radius: 10px;
  padding: 12px 28px; font-size: .95rem; font-weight: 700;
  cursor: pointer; text-decoration: none; transition: background .2s, transform .1s;
}
.btn-primary:hover { background: var(--amber2); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-hero { font-size: 1.05rem; padding: 14px 34px; }
.btn-sm { padding: 8px 18px; font-size: .85rem; }
.btn-block { width: 100%; padding: 14px; font-size: 1rem; margin-top: 8px; }
.btn-block:disabled { opacity: .5; cursor: not-allowed; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,.25); color: var(--white);
  border-radius: 10px; padding: 12px 28px; font-size: 1.05rem; font-weight: 700;
  text-decoration: none; transition: all .2s; background: transparent;
}
.btn-hero-secondary:hover { border-color: var(--amber); color: var(--amber); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid var(--border); background: var(--white);
  border-radius: 8px; padding: 7px 16px; font-size: .85rem; font-weight: 600;
  color: var(--muted); text-decoration: none; cursor: pointer; transition: all .2s;
}
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }

/* ── Stats Bar ───────────────────────────────────────────────────────────── */
.stats-bar { background: var(--navy2); padding: 20px 0; }
.stats-inner {
  display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 8px 40px; text-align: center;
}
.stat-num { font-family: var(--ff-display); font-size: 1.7rem; font-weight: 700; color: var(--amber); }
.stat-lbl { font-size: .8rem; color: rgba(255,255,255,.55); letter-spacing: .04em; margin-top: 2px; }
.stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,.12); }

/* ── Ticker ──────────────────────────────────────────────────────────────── */
.ticker-wrap {
  background: #FEF3C7; border-top: 2px solid var(--amber);
  display: flex; align-items: center; overflow: hidden;
  height: 38px; gap: 12px;
}
.ticker-label {
  flex-shrink: 0; padding: 0 16px;
  font-size: .78rem; font-weight: 700; color: var(--amber2); white-space: nowrap;
}
.ticker-track {
  display: flex; gap: 56px;
  animation: ticker 30s linear infinite; white-space: nowrap;
}
.ticker-item { font-size: .82rem; color: #78350F; }
.ticker-item strong { color: var(--navy); }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Sections ────────────────────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-dark { background: var(--navy); }
.section-head { text-align: center; margin-bottom: 52px; }
.section-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--navy); margin-bottom: 10px;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section-head.light h2 { color: var(--white); }
.section-head.light p  { color: rgba(255,255,255,.6); }

/* ── Campaign Grid ───────────────────────────────────────────────────────── */
.campaign-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 28px;
}
.card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.13); }
.card-featured { border: 2px solid var(--amber); }
.card-img {
  height: 190px; background: #ddd center/cover no-repeat;
  position: relative;
}
.card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--navy); color: var(--white);
  font-size: .7rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px;
}
.card-badge-gold { left: auto; right: 12px; background: var(--amber); color: var(--navy); }
.card-badge-inactive { left: auto; right: 12px; background: var(--muted); color: var(--white); }
.card-badge-gold ~ .card-badge-inactive { right: 12px; top: 40px; }
.card-img-link { display: block; }
.card-body { padding: 22px; }
.card-title { font-family: var(--ff-display); font-size: 1.15rem; color: var(--navy); margin-bottom: 8px; }
.card-title-link { color: inherit; text-decoration: none; transition: color .2s; }
.card-title-link:hover { color: var(--amber2); }
.card-desc  { font-size: .88rem; color: var(--muted); margin-bottom: 18px; line-height: 1.55; }

.progress-bar-bg {
  background: var(--border); border-radius: 99px; height: 8px; overflow: hidden; margin-bottom: 6px;
}
.progress-bar-fill {
  background: linear-gradient(90deg, var(--amber), var(--amber2));
  height: 100%; border-radius: 99px;
  transition: width .8s ease;
}
.progress-labels { display: flex; justify-content: space-between; font-size: .8rem; color: var(--muted); }

.card-footer {
  display: flex; align-items: center; justify-content: space-between; margin-top: 18px; flex-wrap: wrap; gap: 8px;
}
.card-stats { display: flex; gap: 14px; font-size: .8rem; color: var(--muted); }
.card-actions { display: flex; gap: 8px; }

/* ── How It Works ────────────────────────────────────────────────────────── */
.steps {
  display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap;
}
.step {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 32px 28px; text-align: center; max-width: 240px;
}
.step-icon { font-size: 2.4rem; margin-bottom: 14px; }
.step h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 8px; font-weight: 600; }
.step p  { color: rgba(255,255,255,.6); font-size: .88rem; }
.step-arrow { font-size: 1.6rem; color: var(--amber); flex-shrink: 0; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer { background: #080F1E; padding: 48px 0 0; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 32px; flex-wrap: wrap; padding-bottom: 40px;
}
.footer-brand {
  font-family: var(--ff-display); font-size: 1.3rem; color: var(--white);
  display: flex; flex-direction: column; gap: 10px;
}
.footer-brand p { font-family: var(--ff-body); font-size: .88rem; color: rgba(255,255,255,.4); font-weight: 400; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: var(--amber); }
.footer-copy {
  text-align: center; padding: 16px; border-top: 1px solid rgba(255,255,255,.07);
  font-size: .8rem; color: rgba(255,255,255,.25);
}

/* ── Modal ───────────────────────────────────────────────────────────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(10,20,40,.65); backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white); border-radius: 18px;
  padding: 40px; max-width: 520px; width: 94%; position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
  max-height: 90vh; overflow-y: auto;
  animation: slideUp .28s ease;
}
@keyframes slideUp { from { transform: translateY(24px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--bg); border: none; border-radius: 50%;
  width: 32px; height: 32px; cursor: pointer; font-size: 1rem;
  color: var(--muted); transition: background .2s;
}
.modal-close:hover { background: var(--border); }
.modal-title { font-family: var(--ff-display); font-size: 1.5rem; color: var(--navy); margin-bottom: 4px; }
.modal-campaign-name { color: var(--amber2); font-weight: 600; font-size: .9rem; margin-bottom: 22px; }

.preset-amounts {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 20px;
}
.amount-btn {
  border: 2px solid var(--border); background: var(--bg); border-radius: 8px;
  padding: 8px 4px; cursor: pointer; font-size: .85rem; font-weight: 600;
  color: var(--navy); transition: all .2s;
}
.amount-btn:hover, .amount-btn.active {
  border-color: var(--amber); background: #FEF3C7; color: var(--amber2);
}

.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: .83rem; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.form-group input,
.form-group textarea {
  width: 100%; border: 2px solid var(--border); border-radius: 8px;
  padding: 10px 13px; font-size: .92rem; font-family: var(--ff-body);
  outline: none; transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--amber); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.check-label {
  display: flex; align-items: center; gap: 8px;
  font-size: .88rem; color: var(--muted); cursor: pointer; margin-bottom: 14px;
}
.form-error { color: #DC2626; font-size: .85rem; padding: 8px 12px; background: #FEF2F2; border-radius: 7px; margin-bottom: 10px; }
.success-box { text-align: center; padding: 20px 0; }
.success-icon { font-size: 3rem; margin-bottom: 12px; color: var(--green); }
.success-box p { color: var(--text); font-size: 1rem; margin-bottom: 20px; }

/* ── Multi-step Donation Form ───────────────────────────────────────────── */
.step-indicator {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 26px; gap: 8px;
}
.step-dot {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-size: .85rem; font-weight: 700; color: var(--border);
  position: relative; padding-bottom: 8px;
}
.step-dot::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--border); border-radius: 2px;
}
.step-dot small { font-size: .68rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.step-dot.active { color: var(--amber2); }
.step-dot.active::before, .step-dot.done::before { background: var(--amber); }
.step-dot.done { color: var(--green); }

.modal-step { animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.step-label { display: block; font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }

.form-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 18px; }
.form-nav .btn-primary { flex: 1; }

/* Currency select & amount input */
.currency-select {
  width: 100%; border: 2px solid var(--border); border-radius: 8px;
  padding: 10px 13px; font-size: .92rem; font-family: var(--ff-body);
  outline: none; background: var(--white); transition: border-color .2s;
  margin-bottom: 16px;
}
.currency-select:focus { border-color: var(--amber); }
.amount-input-wrap { position: relative; }
.amount-symbol {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  font-weight: 700; color: var(--navy); font-size: 1.05rem; pointer-events: none;
}
.amount-input-wrap input { padding-left: 36px !important; font-size: 1.1rem !important; font-weight: 600; }

/* Payment method grid */
.payment-method-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 16px;
}
.pm-option {
  display: flex; align-items: center; gap: 10px;
  border: 2px solid var(--border); border-radius: 10px;
  padding: 12px 14px; cursor: pointer; transition: all .2s;
  font-size: .88rem; font-weight: 600; color: var(--navy);
}
.pm-option:hover { border-color: var(--amber); background: #FFFBEB; }
.pm-option input { position: absolute; opacity: 0; width: 0; height: 0; }
.pm-option input:checked ~ .pm-option-icon,
.pm-option:has(input:checked) {
  border-color: var(--amber);
}
.pm-option:has(input:checked) { background: #FEF3C7; color: var(--amber2); }
.pm-option-icon {
  width: 34px; height: 34px; border-radius: 8px; background: var(--bg);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 1rem; color: var(--navy);
}
.pm-option:has(input:checked) .pm-option-icon { background: var(--amber); color: var(--white); }

.pm-instructions {
  background: #FEF3C7; border: 1px solid #FDE68A; border-radius: 10px;
  padding: 14px 16px; margin-bottom: 4px;
}
.pm-instructions-head { font-weight: 700; color: #92400E; font-size: .85rem; margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.pm-instructions p { color: #78350F; font-size: .82rem; white-space: pre-line; line-height: 1.6; margin: 0; }

/* File upload drop zone */
.file-drop {
  border: 2px dashed var(--border); border-radius: 10px;
  padding: 24px 16px; text-align: center; cursor: pointer;
  transition: all .2s; background: var(--bg);
}
.file-drop:hover { border-color: var(--amber); background: #FFFBEB; }
.file-drop.has-file { border-color: var(--green); background: #F0FDF4; }
.file-drop i { font-size: 1.8rem; color: var(--muted); display: block; margin-bottom: 8px; }
.file-drop.has-file i { color: var(--green); }
.file-drop span { display: block; font-size: .85rem; color: var(--navy); font-weight: 600; margin-bottom: 4px; }
.file-drop small { font-size: .75rem; color: var(--muted); }

/* Card image empty state */
.card-img-empty {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1a2f52, #0F1F3D);
  color: rgba(255,255,255,.2); font-size: 2.5rem;
}
.card-img-empty .card-badge { position: absolute; top: 12px; left: 12px; }

/* ── Admin Preview Banner ──────────────────────────────────────────────────── */
.admin-preview-banner {
  background: #1E293B; color: #FDE68A; text-align: center;
  padding: 10px 16px; font-size: .85rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
}
.admin-preview-banner a { color: var(--amber); text-decoration: none; font-weight: 700; }
.admin-preview-banner a:hover { text-decoration: underline; }

/* ── Breadcrumb ───────────────────────────────────────────────────────────── */
.breadcrumb-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 14px 0; }
.breadcrumb-bar .container { display: flex; align-items: center; gap: 10px; font-size: .82rem; flex-wrap: wrap; }
.breadcrumb-bar a { color: var(--muted); text-decoration: none; transition: color .2s; }
.breadcrumb-bar a:hover { color: var(--amber2); }
.breadcrumb-sep { color: var(--border); font-size: .7rem; }
.breadcrumb-current { color: var(--navy); font-weight: 600; }

/* ── Campaign Detail Page ─────────────────────────────────────────────────── */
.campaign-detail { padding-top: 40px; }
.detail-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: 36px; align-items: start; }

.detail-image {
  width: 100%; aspect-ratio: 16/9; border-radius: var(--radius);
  background: #ddd center/cover no-repeat; position: relative; margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.detail-title { font-family: var(--ff-display); font-size: clamp(1.6rem,3vw,2.2rem); color: var(--navy); margin-bottom: 10px; }
.detail-tagline { font-size: 1.05rem; color: var(--amber2); font-weight: 600; margin-bottom: 18px; }
.detail-description { color: var(--text); font-size: .98rem; line-height: 1.75; margin-bottom: 32px; }
.detail-description p { margin-bottom: 14px; }
.detail-description p:last-child { margin-bottom: 0; }

/* Supporters */
.supporters-block h3 {
  font-family: var(--ff-display); font-size: 1.2rem; color: var(--navy);
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.supporters-block h3 i { color: var(--amber); }
.supporters-list { display: flex; flex-direction: column; gap: 14px; }
.supporter-row { display: flex; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.supporter-row:last-child { border-bottom: none; padding-bottom: 0; }
.supporter-avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--bg);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--muted); font-size: .9rem;
}
.supporter-info { flex: 1; min-width: 0; }
.supporter-name { font-weight: 700; color: var(--navy); font-size: .92rem; display: flex; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.supporter-amount { color: var(--amber2); font-weight: 700; }
.supporter-message { font-size: .86rem; color: var(--muted); margin: 4px 0; font-style: italic; }
.supporter-date { font-size: .76rem; color: var(--border); }

/* Sidebar donate card */
.detail-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 84px; }
.donate-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 26px;
}
.donate-card-amount { font-family: var(--ff-display); font-size: 1.9rem; font-weight: 700; color: var(--navy); line-height: 1; }
.donate-card-goal { font-size: .85rem; color: var(--muted); margin-top: 4px; }
.donate-card-stats {
  display: flex; justify-content: space-between; gap: 8px;
  margin: 18px 0; padding: 14px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.dcs-item { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; min-width: 0; }
.dcs-val { font-weight: 700; color: var(--navy); font-size: .92rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.dcs-lbl { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; margin-top: 2px; }
.donate-card-deadline {
  margin-top: 14px; text-align: center; font-size: .8rem; color: var(--muted);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

/* Share card */
.share-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px; }
.share-card h4 { font-size: .95rem; color: var(--navy); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.share-buttons { display: flex; gap: 10px; }
.share-btn {
  display: inline-flex; align-items: center; gap: 8px; flex: 1; justify-content: center;
  border: 1.5px solid var(--border); background: var(--bg); border-radius: 8px;
  padding: 10px; font-size: .85rem; font-weight: 600; color: var(--navy);
  cursor: pointer; transition: all .2s;
}
.share-btn:hover { border-color: var(--amber); color: var(--amber2); }

/* More Campaigns */
.more-campaigns { margin-top: 64px; }
.more-campaigns-title { font-family: var(--ff-display); font-size: 1.5rem; color: var(--navy); margin-bottom: 24px; text-align: center; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-content { flex-direction: column; text-align: center; padding: 48px 24px; }
  .hero-meta { justify-content: center; }
  .hero-ring-wrap { order: -1; }
  .stats-inner { gap: 0; }
  .stat-item { padding: 8px 20px; }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
  .form-row { grid-template-columns: 1fr; }
  .preset-amounts { grid-template-columns: repeat(2,1fr); }
  .payment-method-grid { grid-template-columns: 1fr; }
  .navbar { padding: 0 16px; }

  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 64px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: var(--navy); padding: 12px 16px 20px;
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: transform .25s, opacity .25s, visibility .25s;
    box-shadow: 0 12px 24px rgba(0,0,0,.25);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links a { width: 100%; padding: 10px 4px; }
  .btn-nav-admin { width: 100%; justify-content: center; display: flex !important; }

  .modal { padding: 28px 22px; }
  .step-dot small { display: none; }

  .detail-grid { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
  .hero-actions { width: 100%; }
  .hero-actions .btn-hero, .hero-actions .btn-hero-secondary { flex: 1; justify-content: center; }
}

@media (max-width: 420px) {
  .preset-amounts { grid-template-columns: repeat(2,1fr); }
}
