/* ═══════════════════════════════════════════════════════════
   JKUBSA — Clean Modern Design System v2
   Fonts: Plus Jakarta Sans + Instrument Sans via Bunny Fonts
   Palette: Sky blue + warm brown
═══════════════════════════════════════════════════════════ */

@import url('https://fonts.bunny.net/css?family=plus-jakarta-sans:400,500,600,700,800|instrument-sans:400,500,600&display=swap');

:root {
  --sky:         #e8f4fd;
  --sky-mid:     #c5dff5;
  --blue:        #2563eb;
  --blue-dark:   #1d4ed8;
  --blue-soft:   #eff6ff;
  --brown:       #7c4f2a;
  --brown-light: #a0693f;
  --brown-soft:  #fdf6f0;
  --navy:        #0f172a;
  --navy-mid:    #1e293b;
  --text:        #0f172a;
  --text-mid:    #475569;
  --text-soft:   #94a3b8;
  --border:      #e2e8f0;
  --border-soft: #f1f5f9;
  --white:       #ffffff;
  --surface:     #f8fafc;
  --sh-xs:  0 1px 3px rgba(0,0,0,.06);
  --sh-sm:  0 2px 8px rgba(0,0,0,.07);
  --sh-md:  0 8px 24px rgba(0,0,0,.09);
  --sh-lg:  0 20px 60px rgba(0,0,0,.12);
  --sh-blue:0 8px 24px rgba(37,99,235,.2);
  --r-sm: 8px; --r: 12px; --r-lg: 20px; --r-xl: 28px;
  --nav-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Instrument Sans', 'Helvetica Neue', Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Plus Jakarta Sans', Arial, sans-serif;
  font-weight: 700; line-height: 1.2;
  color: var(--navy); letter-spacing: -.02em;
}
h1 { font-size: clamp(2rem,5vw,3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem,3vw,2.25rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.05rem; }
p  { color: var(--text-mid); line-height: 1.75; }
a  { color: var(--blue); text-decoration: none; transition: color .18s; }
a:hover { color: var(--blue-dark); }

/* ── NAVBAR ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand img { height: 36px; width: 36px; object-fit: contain; }
.nav-brand-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem; font-weight: 800;
  color: var(--navy); letter-spacing: -.03em;
}
.nav-brand-name em { color: var(--blue); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 7px 14px; font-size: 14px; font-weight: 500;
  color: var(--text-mid); border-radius: var(--r-sm); transition: all .18s;
}
.nav-links a:hover { color: var(--navy); background: var(--surface); }
.nav-links a.active { color: var(--blue); font-weight: 600; }
.nav-cta {
  background: var(--blue) !important; color: #fff !important;
  padding: 8px 20px !important; border-radius: var(--r-sm) !important;
  font-weight: 600 !important; font-size: 14px !important;
  box-shadow: var(--sh-blue); transition: all .18s !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; color: #fff !important; }
.nav-ham { display: none; background: none; border: none; cursor: pointer; padding: 6px; color: var(--navy); font-size: 20px; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 20px) 20px 60px;
  background: linear-gradient(180deg, var(--sky) 0%, #f0f9ff 55%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(37,99,235,.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 20px;
  max-width: 720px; width: 100%;
}
.hero-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 100px; padding: 6px 16px 6px 10px;
  font-size: 13px; font-weight: 600; color: var(--blue);
  box-shadow: var(--sh-xs);
}
.hero-chip::before {
  content: ''; width: 7px; height: 7px;
  background: #22c55e; border-radius: 50%;
  animation: blink 2s infinite; flex-shrink: 0;
}
.hero-inner h1 { margin: 0; }
.hero-inner h1 .accent { color: var(--blue); }
.hero-motto {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: italic; font-weight: 600; font-size: 1rem;
  color: var(--brown); margin: 0;
}
.hero-sub {
  font-size: 1rem; color: var(--text-mid);
  max-width: 520px; margin: 0; line-height: 1.7;
}

/* ── HERO SEARCH ──────────────────────────────────────────── */
.hero-search {
  display: flex; align-items: center;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 6px 6px 6px 20px;
  gap: 10px;
  box-shadow: var(--sh-sm);
  width: 100%; max-width: 500px;
}
.hero-search i { color: var(--text-soft); font-size: 14px; flex-shrink: 0; }
.hero-search input {
  flex: 1; border: none; outline: none;
  font-size: 14px; color: var(--text);
  font-family: 'Instrument Sans', sans-serif;
  background: transparent; min-width: 0;
}
.hero-search input::placeholder { color: var(--text-soft); }
.hero-search button {
  background: var(--blue); color: #fff;
  border: none; border-radius: 100px;
  padding: 10px 22px;
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: background .18s;
  white-space: nowrap; flex-shrink: 0;
  display: flex; align-items: center; gap: 6px;
}
.hero-search button:hover { background: var(--blue-dark); }

.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center; margin: 0;
}
.trusted p {
  font-size: 12px; color: var(--text-soft);
  font-weight: 500; margin-bottom: 12px;
  letter-spacing: .06em; text-transform: uppercase;
}
.trusted-logos {
  display: flex; gap: 20px; align-items: center;
  justify-content: center; flex-wrap: wrap;
}
.trusted-logos span {
  font-size: 14px; font-weight: 600;
  color: var(--text-soft); letter-spacing: -.01em;
}
.trusted-logos .dot { color: var(--border); }

/* ── STATS STRIP ─────────────────────────────────────────── */
.stats-strip {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.stats-row {
  display: flex; justify-content: center;
  gap: 60px; flex-wrap: wrap; text-align: center;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.stat-icon {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  background: var(--blue-soft); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 4px;
}
.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem; font-weight: 800;
  color: var(--navy); line-height: 1;
}
.stat-lbl { font-size: 12px; color: var(--text-soft); font-weight: 500; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 600;
  cursor: pointer; border: 1.5px solid transparent;
  transition: all .18s; text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif; white-space: nowrap;
}
.btn-primary  { background: var(--blue); color: #fff; border-color: var(--blue); box-shadow: var(--sh-blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: #fff; transform: translateY(-1px); }
.btn-outline  { background: #fff; color: var(--navy); border-color: var(--border); box-shadow: var(--sh-xs); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-brown    { background: var(--brown); color: #fff; border-color: var(--brown); }
.btn-brown:hover { background: var(--brown-light); color: #fff; }
.btn-ghost    { background: transparent; color: var(--text-mid); border-color: transparent; }
.btn-ghost:hover { background: var(--surface); color: var(--navy); }
.btn-danger   { background: #ef4444; color: #fff; border-color: #ef4444; }
.btn-danger:hover { background: #dc2626; color: #fff; }
.btn-success  { background: #22c55e; color: #fff; border-color: #22c55e; }
.btn-success:hover { background: #16a34a; color: #fff; }
.btn-sm  { padding: 6px 14px; font-size: 13px; }
.btn-lg  { padding: 13px 28px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* ── LAYOUT ───────────────────────────────────────────────── */
.section      { padding: 80px 0; }
.section-gray { background: var(--surface); }
.container    { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.section-label {
  display: inline-block; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; color: var(--blue);
  background: var(--blue-soft); padding: 5px 14px; border-radius: 100px; margin-bottom: 14px;
}
.section-head { margin-bottom: 48px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p  { max-width: 520px; font-size: 1rem; }
.section-head.center { text-align: center; }
.section-head.center p { margin: 0 auto; }

/* ── GRID ─────────────────────────────────────────────────── */
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ── CARD ─────────────────────────────────────────────────── */
.card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: box-shadow .22s, transform .22s;
}
.card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.card-body { padding: 24px; }
.card-img {
  width: 100%; height: 200px; background: linear-gradient(135deg, var(--sky), var(--brown-soft));
  display: flex; align-items: center; justify-content: center; font-size: 36px; color: var(--blue);
}

/* ── FORM ─────────────────────────────────────────────────── */
.form-field { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.form-label small { font-weight: 400; color: var(--text-soft); font-size: 12px; }
.form-input {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-size: 14px; color: var(--text);
  font-family: 'Instrument Sans', sans-serif;
  background: #fff; transition: border-color .18s, box-shadow .18s;
  -webkit-appearance: none; appearance: none;
}
.form-input:focus { border-color: var(--blue); outline: none; box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
.form-input[readonly] { background: var(--surface); color: var(--text-soft); cursor: not-allowed; }
.form-input::placeholder { color: var(--text-soft); }
textarea.form-input { resize: vertical; min-height: 100px; }
select.form-input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}

/* ── BADGE ────────────────────────────────────────────────── */
.badge { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 3px 10px; border-radius: 100px; }
.badge-blue   { background: var(--blue-soft); color: var(--blue); }
.badge-green  { background: #dcfce7; color: #15803d; }
.badge-red    { background: #fee2e2; color: #dc2626; }
.badge-yellow { background: #fef9c3; color: #a16207; }
.badge-gray   { background: var(--surface); color: var(--text-soft); }
.badge-brown  { background: var(--brown-soft); color: var(--brown); }

/* ── EVENT STATUS ─────────────────────────────────────────── */
.ev-status { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 3px 10px; border-radius: 100px; }
.ev-upcoming  { background: #eff6ff; color: #1d4ed8; }
.ev-ongoing   { background: #dcfce7; color: #15803d; }
.ev-past      { background: var(--surface); color: var(--text-soft); }
.ev-cancelled { background: #fee2e2; color: #dc2626; }
.ev-free      { background: #dcfce7; color: #15803d; }
.ev-paid      { background: var(--brown-soft); color: var(--brown); }

/* ── PAGE HERO ────────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 56px) 0 56px;
  background: linear-gradient(180deg, var(--sky) 0%, var(--white) 100%);
  text-align: center;
}
.page-hero h1 { margin-bottom: 10px; }
.page-hero p  { font-size: 1rem; max-width: 500px; margin: 0 auto; }

/* ── FEATURE ICON ─────────────────────────────────────────── */
.feat-icon {
  width: 48px; height: 48px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 14px;
}
.feat-icon.blue   { background: var(--blue-soft); color: var(--blue); }
.feat-icon.brown  { background: var(--brown-soft); color: var(--brown); }
.feat-icon.green  { background: #dcfce7; color: #15803d; }
.feat-icon.yellow { background: #fef9c3; color: #a16207; }

/* ── LEADER CARD ──────────────────────────────────────────── */
.leader-card { text-align: center; padding: 28px 20px; }
.leader-pic {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sky-mid), var(--brown-soft));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.5rem; font-weight: 800;
  color: var(--blue); margin: 0 auto 14px;
  border: 2px solid var(--border); overflow: hidden;
}
.leader-pic img { width: 100%; height: 100%; object-fit: cover; }
.leader-name { font-size: .95rem; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
.leader-role {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: var(--blue); background: var(--blue-soft); padding: 3px 10px;
  border-radius: 100px; margin-bottom: 12px; display: inline-block;
}
.leader-links { display: flex; flex-direction: column; gap: 5px; }
.leader-links a { font-size: 12px; color: var(--text-soft); display: flex; align-items: center; justify-content: center; gap: 5px; }
.leader-links a:hover { color: var(--blue); }

/* ── TABLE ────────────────────────────────────────────────── */
.tbl-box { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.tbl-scroll { overflow-x: auto; }
table.tbl { width: 100%; border-collapse: collapse; }
.tbl th { background: var(--surface); padding: 11px 16px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-soft); border-bottom: 1px solid var(--border); text-align: left; white-space: nowrap; }
.tbl td { padding: 13px 16px; border-bottom: 1px solid var(--border-soft); font-size: 13.5px; color: var(--text); vertical-align: middle; }
.tbl tbody tr:last-child td { border-bottom: none; }
.tbl tbody tr:hover td { background: var(--surface); }

/* ── ALERT ────────────────────────────────────────────────── */
.alert { padding: 12px 16px; border-radius: var(--r-sm); font-size: 14px; font-weight: 500; margin-bottom: 18px; display: flex; align-items: flex-start; gap: 10px; }
.alert i { margin-top: 1px; flex-shrink: 0; }
.alert-success { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.alert-error   { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.alert-info    { background: var(--blue-soft); color: var(--blue); border: 1px solid var(--sky-mid); }
.alert-warning { background: #fefce8; color: #a16207; border: 1px solid #fef08a; }

/* ── PANEL ────────────────────────────────────────────────── */
.panel { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; margin-bottom: 24px; }
.panel-head { padding: 16px 22px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.panel-head h4 { font-size: .9rem; font-weight: 700; color: var(--navy); }
.panel-body { padding: 22px; }

/* ── AUTH ─────────────────────────────────────────────────── */
.auth-wrap { min-height: 100vh; display: flex; }
.auth-left {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 60px 40px;
  background: linear-gradient(160deg, var(--navy) 0%, #1e3a5f 60%, #2c1810 100%);
  position: relative; overflow: hidden;
}
.auth-left::before {
  content: ''; position: absolute; top: -150px; right: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,.2), transparent 70%);
  border-radius: 50%;
}
.auth-left-content { position: relative; z-index: 1; max-width: 380px; }
.auth-left h2 { color: #fff; font-size: 1.8rem; margin-bottom: 14px; }
.auth-left p  { color: rgba(255,255,255,.6); font-size: 15px; line-height: 1.7; }
.auth-left .auth-motto { color: rgba(255,255,255,.4); font-style: italic; font-size: 13px; margin-top: 32px; }
.auth-right {
  width: 480px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 60px 48px; background: #fff;
}
.auth-right-inner { width: 100%; }
.auth-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 32px; }
.auth-logo img { height: 36px; }
.auth-logo span { font-family: 'Plus Jakarta Sans',sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--navy); }
.auth-title { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.auth-sub   { font-size: 14px; color: var(--text-soft); margin-bottom: 28px; }

/* ── DASHBOARD ────────────────────────────────────────────── */
.dash-layout { display: flex; min-height: 100vh; padding-top: var(--nav-h); }
.dash-sidebar {
  width: 240px; flex-shrink: 0; position: fixed;
  top: var(--nav-h); left: 0; bottom: 0;
  background: var(--white); border-right: 1px solid var(--border);
  overflow-y: auto; z-index: 100; padding: 20px 12px;
  transition: transform .28s;
}
.sid-user { padding: 12px; margin-bottom: 8px; }
.sid-user-av {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--blue-soft); display: flex; align-items: center;
  justify-content: center; font-family: 'Plus Jakarta Sans',sans-serif;
  font-weight: 800; font-size: 1rem; color: var(--blue); margin-bottom: 10px;
  border: 1px solid var(--sky-mid);
}
.sid-user strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); }
.sid-user small  { font-size: 11px; color: var(--text-soft); }
.sid-section {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--text-soft); padding: 10px 12px 6px;
}
.dash-sidebar a {
  display: flex !important; align-items: center !important; gap: 10px !important;
  padding: 9px 12px !important; border-radius: var(--r-sm) !important;
  font-size: 13.5px !important; font-weight: 500 !important; color: var(--text-mid) !important;
  transition: all .15s !important; text-decoration: none !important; margin-bottom: 2px !important;
  width: 100% !important;
}
.dash-sidebar a i { width: 18px; text-align: center; font-size: 14px; flex-shrink: 0; }
.dash-sidebar a:hover { background: var(--surface) !important; color: var(--navy) !important; }
.dash-sidebar a.active { background: var(--blue-soft) !important; color: var(--blue) !important; font-weight: 600 !important; }
.sid-logout a { color: #ef4444 !important; }
.sid-logout a:hover { background: #fef2f2 !important; }
.dash-main { margin-left: 240px; flex: 1; padding: 36px 40px; background: var(--surface); min-height: calc(100vh - var(--nav-h)); }
.adm-badge { background: #ef4444; color: #fff; font-size: 9px; font-weight: 700; border-radius: 100px; padding: 1px 5px; margin-left: auto; }

/* ── STAT CARDS ───────────────────────────────────────────── */
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 24px; }
.stat-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 20px 22px;
  display: flex; align-items: flex-start; justify-content: space-between;
}
.stat-card .sc-icon { width: 40px; height: 40px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.stat-card .sc-num  { font-family: 'Plus Jakarta Sans',sans-serif; font-size: 1.7rem; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.stat-card .sc-lbl  { font-size: 12px; color: var(--text-soft); font-weight: 500; }
.sc-blue   .sc-icon { background: var(--blue-soft); color: var(--blue); }
.sc-green  .sc-icon { background: #dcfce7; color: #15803d; }
.sc-yellow .sc-icon { background: #fef9c3; color: #a16207; }
.sc-brown  .sc-icon { background: var(--brown-soft); color: var(--brown); }
.sc-red    .sc-icon { background: #fee2e2; color: #dc2626; }

/* ── GALLERY ──────────────────────────────────────────────── */
.gal-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.gal-item { border-radius: var(--r-sm); overflow: hidden; cursor: pointer; position: relative; aspect-ratio: 4/3; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; display: block; }
.gal-item:hover img { transform: scale(1.04); }
.gal-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 60%); opacity: 0; transition: opacity .25s; display: flex; align-items: flex-end; padding: 12px; }
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-cap { color: #fff; font-size: 12px; font-weight: 500; }

/* ── LIGHTBOX ─────────────────────────────────────────────── */
.lightbox { display: none; position: fixed; inset: 0; z-index: 9000; background: rgba(10,15,28,.95); align-items: center; justify-content: center; }
.lightbox.on { display: flex; }
.lightbox img { max-width: 88vw; max-height: 88vh; border-radius: var(--r); object-fit: contain; }
.lb-close { position: absolute; top: 18px; right: 24px; font-size: 28px; color: #fff; opacity: .6; cursor: pointer; background: none; border: none; transition: opacity .18s; }
.lb-close:hover { opacity: 1; }

/* ── PAYMENT ──────────────────────────────────────────────── */
.pay-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl); padding: 32px; max-width: 440px; }
.pay-amount { font-family: 'Plus Jakarta Sans',sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--navy); }
.pay-detail { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--border-soft); font-size: 14px; }
.pay-detail .lbl { color: var(--text-soft); }
.pay-detail .val { font-weight: 600; color: var(--navy); }

/* ── MODAL ────────────────────────────────────────────────── */
.modal-bg { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,.5); align-items: center; justify-content: center; padding: 20px; }
.modal-bg.on { display: flex; }
.modal-box { background: #fff; border-radius: var(--r-xl); padding: 36px; max-width: 480px; width: 100%; box-shadow: var(--sh-lg); position: relative; }
.modal-close { position: absolute; top: 16px; right: 20px; background: none; border: none; font-size: 20px; color: var(--text-soft); cursor: pointer; }
.modal-close:hover { color: var(--navy); }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer { background: var(--navy); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
.footer-tagline { font-style: italic; font-size: 13px; color: rgba(255,255,255,.3); margin-top: 8px; }
.footer h5 { color: #fff; font-size: 13px; font-weight: 700; margin-bottom: 14px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul li a { font-size: 13px; color: rgba(255,255,255,.45); transition: color .18s; }
.footer ul li a:hover { color: rgba(255,255,255,.9); }
.footer-contact a { font-size: 13px; color: rgba(255,255,255,.45); display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.footer-contact a:hover { color: rgba(255,255,255,.9); }
.footer-social { display: flex; gap: 8px; margin-top: 14px; }
.footer-social a { width: 34px; height: 34px; border-radius: var(--r-sm); background: rgba(255,255,255,.07); color: rgba(255,255,255,.5); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: all .18s; }
.footer-social a:hover { background: var(--blue); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.3); }

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:none} }
.fade-in { animation: fadeUp .5s ease both; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media(max-width:1024px) {
  .g4 { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .auth-left { display: none; }
  .auth-right { width: 100%; }
}
@media(max-width:768px) {
  :root { --nav-h: 58px; }
  .nav { padding: 0 20px; }
  .nav-links {
    display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 12px; flex-direction: column; box-shadow: var(--sh-md); z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-ham { display: flex; }
  .hero { padding: calc(var(--nav-h)+24px) 20px 48px; }
  .container { padding: 0 20px; }
  .g2,.g3 { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 56px 0; }
  .stats-row { gap: 32px; }
  .dash-sidebar { transform: translateX(-100%); }
  .dash-sidebar.open { transform: translateX(0); box-shadow: var(--sh-lg); }
  .dash-main { margin-left: 0; padding: 20px 16px; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .auth-right { padding: 40px 24px; }
  .hero-search { max-width: 100%; }
}
@media(max-width:480px) {
  .stat-row { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { justify-content: center; }
  .stats-row { gap: 24px; }
}
