@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Barlow+Condensed:wght@600;700;800;900&display=swap');

:root {
  --primary: #0a4fd4;
  --primary-dark: #0837a0;
  --primary-light: #1a6af5;
  --accent: #00d4ff;
  --accent-green: #84cc16;
  --white: #ffffff;
  --off-white: #f8faff;
  --panel: #ffffff;
  --text-dark: #1a2233;
  --text-mid: #3a4a6b;
  --text-light: #6b7a99;
  --border: #e2e8f8;
  --shadow-sm: 0 2px 8px rgba(10,79,212,0.08);
  --shadow-md: 0 4px 24px rgba(10,79,212,0.12);
  --shadow-lg: 0 8px 48px rgba(10,79,212,0.16);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --nav-h: 64px;
  --bottom-nav-h: 64px;
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text-dark);
  background: var(--off-white);
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: var(--bottom-nav-h);
}

/* ─── TYPOGRAPHY ─── */
h1,h2,h3,h4,h5 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; line-height: 1.1; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 7vw, 4rem); }
h2 { font-size: clamp(1.6rem, 5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 4vw, 1.7rem); }
h4 { font-size: 1.15rem; }
p { line-height: 1.65; color: var(--text-mid); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── TOP NAV ─── */
.top-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px;
  box-shadow: var(--shadow-sm);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-mark {
  width: 38px; height: 38px; background: var(--primary);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.nav-logo-mark svg { width: 22px; height: 22px; fill: white; }
.nav-brand { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.3rem; color: var(--primary); letter-spacing: 0.02em; }
.nav-brand span { color: var(--accent); }
.nav-actions { display: flex; gap: 8px; }
.btn-nav { padding: 8px 18px; border-radius: 8px; font-weight: 600; font-size: 0.88rem; cursor: pointer; border: none; transition: var(--transition); }
.btn-nav-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-nav-fill { background: var(--primary); color: white; }
.btn-nav:hover { opacity: 0.85; transform: translateY(-1px); }

/* ─── PAGE WRAPPER ─── */
.page-wrap { padding-top: var(--nav-h); }

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, #0837a0 0%, #0a4fd4 45%, #1a6af5 100%);
  padding: 52px 20px 60px;
  position: relative; overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,212,255,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute; bottom: -40px; left: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(132,204,22,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px; padding: 5px 14px; margin-bottom: 20px;
  font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.9); letter-spacing: 0.06em; text-transform: uppercase;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--accent-green); border-radius: 50%; animation: blink 1.4s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero h1 { color: white; margin-bottom: 8px; }
.hero h1 span { color: var(--accent); }
.hero-sub { color: rgba(255,255,255,0.78); font-size: 1.05rem; margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.95rem; cursor: pointer; border: none; transition: var(--transition); font-family: 'Barlow', sans-serif; text-decoration: none; }
.btn-white { background: white; color: var(--primary); }
.btn-outline-white { background: transparent; border: 2px solid rgba(255,255,255,0.6); color: white; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.hero-stats { display: flex; justify-content: center; gap: 32px; margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15); }
.stat-item { text-align: center; }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.9rem; color: white; }
.stat-lbl { font-size: 0.75rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }

/* ─── SECTION ─── */
.section { padding: 48px 20px; }
.section-title { margin-bottom: 6px; color: var(--text-dark); }
.section-sub { color: var(--text-light); font-size: 0.95rem; margin-bottom: 28px; }
.section-header { margin-bottom: 28px; }

/* ─── CHIPS / TABS ─── */
.chip-row { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; margin-bottom: 20px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.chip-row::-webkit-scrollbar { display: none; }
.chip { padding: 7px 16px; border-radius: 20px; font-size: 0.83rem; font-weight: 600; border: 1.5px solid var(--border); background: white; color: var(--text-mid); cursor: pointer; white-space: nowrap; transition: var(--transition); }
.chip.active, .chip:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* ─── CARDS ─── */
.card { background: var(--panel); border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-sm); overflow: hidden; transition: var(--transition); }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-body { padding: 20px; }
.card-img { width: 100%; height: 160px; object-fit: cover; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); display: flex; align-items: center; justify-content: center; }
.card-img svg { width: 48px; height: 48px; fill: rgba(255,255,255,0.6); }

/* GRID */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.grid-1 { display: grid; grid-template-columns: 1fr; gap: 14px; }

/* ─── SERVICE CARDS ─── */
.service-card { background: var(--panel); border-radius: var(--radius); border: 1px solid var(--border); padding: 22px; box-shadow: var(--shadow-sm); transition: var(--transition); }
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.service-icon svg { width: 24px; height: 24px; fill: white; }
.service-card h4 { margin-bottom: 6px; }
.service-card p { font-size: 0.87rem; }
.service-tag { display: inline-block; margin-top: 10px; padding: 3px 10px; border-radius: 20px; background: rgba(10,79,212,0.08); color: var(--primary); font-size: 0.75rem; font-weight: 600; }

/* ─── SCHEDULE TABLE ─── */
.schedule-card { background: var(--panel); border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-sm); overflow: hidden; margin-bottom: 16px; }
.schedule-day { background: var(--primary); color: white; padding: 10px 16px; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1rem; letter-spacing: 0.04em; text-transform: uppercase; }
.schedule-row { display: flex; align-items: center; padding: 12px 16px; border-bottom: 1px solid var(--border); gap: 12px; }
.schedule-row:last-child { border-bottom: none; }
.sched-time { font-size: 0.78rem; font-weight: 700; color: var(--primary); background: rgba(10,79,212,0.08); padding: 4px 8px; border-radius: 6px; white-space: nowrap; min-width: 80px; text-align: center; }
.sched-info { flex: 1; }
.sched-type { font-weight: 700; font-size: 0.88rem; color: var(--text-dark); }
.sched-coach { font-size: 0.78rem; color: var(--text-light); margin-top: 1px; }
.sched-loc { display: flex; align-items: center; gap: 4px; font-size: 0.75rem; color: var(--text-light); }

/* ─── PROMO BANNER ─── */
.promo-banner { background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%); border-radius: var(--radius); padding: 22px; position: relative; overflow: hidden; }
.promo-banner::before { content: ''; position: absolute; top: -30px; right: -30px; width: 120px; height: 120px; background: rgba(255,255,255,0.08); border-radius: 50%; }
.promo-banner h3 { color: white; margin-bottom: 6px; }
.promo-banner p { color: rgba(255,255,255,0.8); font-size: 0.87rem; }
.promo-disc { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 2.5rem; color: var(--accent-green); }
.promo-row { display: flex; gap: 12px; margin-bottom: 16px; }
.promo-box { flex: 1; background: rgba(255,255,255,0.1); border-radius: var(--radius-sm); padding: 14px; text-align: center; border: 1px solid rgba(255,255,255,0.15); }

/* ─── LOCATION CARD ─── */
.location-card { background: var(--panel); border-radius: var(--radius); border: 1px solid var(--border); padding: 18px; box-shadow: var(--shadow-sm); display: flex; align-items: flex-start; gap: 14px; }
.loc-icon { width: 42px; height: 42px; border-radius: 10px; background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.loc-icon svg { width: 20px; height: 20px; fill: white; }
.loc-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 3px; }
.loc-detail { font-size: 0.8rem; color: var(--text-light); }
.loc-sub-list { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 8px; }
.loc-sub { padding: 3px 8px; background: rgba(10,79,212,0.07); border-radius: 6px; font-size: 0.73rem; font-weight: 600; color: var(--primary); }

/* ─── COACH CARD ─── */
.coach-card { background: var(--panel); border-radius: var(--radius); border: 1px solid var(--border); padding: 18px; box-shadow: var(--shadow-sm); text-align: center; }
.coach-avatar { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.coach-avatar svg { width: 32px; height: 32px; fill: rgba(255,255,255,0.9); }
.coach-name { font-weight: 800; font-size: 1rem; margin-bottom: 4px; }
.coach-sport { display: flex; justify-content: center; gap: 5px; flex-wrap: wrap; }
.coach-badge { padding: 3px 8px; border-radius: 20px; font-size: 0.72rem; font-weight: 600; background: rgba(10,79,212,0.08); color: var(--primary); }

/* ─── FORM ─── */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 0.83rem; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; }
.form-control { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: 'Barlow', sans-serif; font-size: 0.93rem; color: var(--text-dark); background: white; transition: var(--transition); outline: none; }
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(10,79,212,0.1); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236b7a99'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 20px; padding-right: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-primary { background: var(--primary); color: white; width: 100%; justify-content: center; padding: 14px; border-radius: var(--radius-sm); font-size: 1rem; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-full { width: 100%; justify-content: center; }
.btn-green { background: #22c55e; color: white; }
.btn-green:hover { background: #16a34a; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }

/* ─── BOTTOM NAV ─── */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  height: var(--bottom-nav-h);
  background: white;
  border-top: 1px solid var(--border);
  display: flex; align-items: stretch;
  box-shadow: 0 -4px 20px rgba(10,79,212,0.08);
}
.bottom-nav-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; cursor: pointer; text-decoration: none;
  color: var(--text-light); transition: var(--transition);
  padding: 8px 4px;
  border: none; background: none; font-family: 'Barlow', sans-serif;
  -webkit-tap-highlight-color: transparent;
}
.bottom-nav-item svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.bottom-nav-item span { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; }
.bottom-nav-item.active { color: var(--primary); }
.bottom-nav-item.active svg { stroke: var(--primary); }
.bnav-center { position: relative; flex: 1.2; }
.bnav-center-btn {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  width: 52px; height: 52px; background: var(--primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(10,79,212,0.35);
  border: 3px solid white;
}
.bnav-center-btn svg { width: 24px; height: 24px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.bnav-center .bottom-nav-item { padding-top: 24px; }

/* ─── DASHBOARD PANEL ─── */
.dash-header {
  background: linear-gradient(135deg, #0837a0 0%, #0a4fd4 100%);
  padding: 28px 20px 24px;
  color: white;
}
.dash-greeting { font-size: 0.83rem; color: rgba(255,255,255,0.7); margin-bottom: 4px; }
.dash-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.6rem; margin-bottom: 2px; }
.dash-role { display: inline-flex; align-items: center; gap: 5px; background: rgba(255,255,255,0.15); border-radius: 20px; padding: 4px 12px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.dash-stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 20px; }
.dash-stat { background: rgba(255,255,255,0.1); border-radius: var(--radius-sm); padding: 12px; text-align: center; border: 1px solid rgba(255,255,255,0.15); }
.dash-stat-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.5rem; }
.dash-stat-lbl { font-size: 0.7rem; color: rgba(255,255,255,0.65); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.04em; }
.menu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 24px; }
.menu-item { background: var(--panel); border-radius: var(--radius); border: 1px solid var(--border); padding: 16px 10px; text-align: center; cursor: pointer; transition: var(--transition); text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 8px; box-shadow: var(--shadow-sm); }
.menu-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.menu-icon { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); display: flex; align-items: center; justify-content: center; }
.menu-icon svg { width: 22px; height: 22px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.menu-label { font-size: 0.73rem; font-weight: 700; color: var(--text-mid); text-align: center; line-height: 1.2; }

/* ─── TABLE ─── */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { background: var(--off-white); padding: 10px 12px; text-align: left; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-light); border-bottom: 1px solid var(--border); }
.data-table td { padding: 12px; border-bottom: 1px solid var(--border); font-size: 0.87rem; color: var(--text-mid); }
.data-table tr:last-child td { border-bottom: none; }
.tbl-wrap { background: var(--panel); border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-sm); overflow: hidden; overflow-x: auto; }

/* ─── BADGE ─── */
.badge { display: inline-flex; align-items: center; padding: 3px 9px; border-radius: 20px; font-size: 0.73rem; font-weight: 700; }
.badge-blue { background: rgba(10,79,212,0.1); color: var(--primary); }
.badge-green { background: rgba(34,197,94,0.1); color: #16a34a; }
.badge-orange { background: rgba(249,115,22,0.1); color: #ea580c; }
.badge-red { background: rgba(239,68,68,0.1); color: #dc2626; }
.badge-purple { background: rgba(124,58,237,0.1); color: #7c3aed; }

/* ─── PANEL LOGIN ─── */
.login-wrap { min-height: 100vh; background: linear-gradient(135deg, #0837a0 0%, #0a4fd4 100%); display: flex; align-items: center; justify-content: center; padding: 24px; }
.login-card { background: white; border-radius: var(--radius-lg); padding: 32px 24px; width: 100%; max-width: 400px; box-shadow: 0 16px 64px rgba(0,0,0,0.2); }
.login-logo { text-align: center; margin-bottom: 24px; }
.login-logo-mark { width: 56px; height: 56px; background: var(--primary); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.login-logo-mark svg { width: 30px; height: 30px; fill: white; }
.login-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.5rem; color: var(--text-dark); }
.login-sub { color: var(--text-light); font-size: 0.85rem; margin-top: 2px; }
.role-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 20px; }
.role-btn { padding: 10px 6px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); text-align: center; cursor: pointer; transition: var(--transition); background: white; font-family: 'Barlow', sans-serif; }
.role-btn.selected { border-color: var(--primary); background: rgba(10,79,212,0.05); }
.role-btn-icon { font-size: 1.2rem; margin-bottom: 4px; }
.role-btn-name { font-size: 0.72rem; font-weight: 700; color: var(--text-mid); }
.role-btn.selected .role-btn-name { color: var(--primary); }

/* ─── PAYMENT ─── */
.payment-card { background: var(--panel); border-radius: var(--radius); border: 1px solid var(--border); padding: 18px; box-shadow: var(--shadow-sm); margin-bottom: 14px; }
.bank-option { display: flex; align-items: center; gap: 14px; padding: 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); cursor: pointer; transition: var(--transition); margin-bottom: 10px; }
.bank-option.selected { border-color: var(--primary); background: rgba(10,79,212,0.04); }
.bank-logo { width: 48px; height: 30px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 0.85rem; }
.bank-bca { background: #005bab; color: white; }
.bank-mandiri { background: #003380; color: #f5c518; }
.bank-bni { background: #f36e21; color: white; }
.bank-bri { background: #003087; color: white; }
.bank-qris { background: linear-gradient(135deg, #e91e63, #9c27b0); color: white; }
.bank-info h5 { font-size: 0.88rem; margin-bottom: 1px; }
.bank-info p { font-size: 0.77rem; color: var(--text-light); }
.radio-dot { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--border); margin-left: auto; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.bank-option.selected .radio-dot { border-color: var(--primary); }
.bank-option.selected .radio-dot::after { content: ''; width: 10px; height: 10px; background: var(--primary); border-radius: 50%; }

/* ─── UTIL ─── */
.divider { height: 1px; background: var(--border); margin: 20px 0; }
.text-center { text-align: center; }
.text-sm { font-size: 0.85rem; }
.text-light { color: var(--text-light); }
.fw-700 { font-weight: 700; }
.mb-4 { margin-bottom: 4px; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mt-16 { margin-top: 16px; }
.p-16 { padding: 16px; }
.gap-8 { gap: 8px; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.color-primary { color: var(--primary); }
.color-green { color: #16a34a; }
.bg-white { background: white; }
.rounded { border-radius: var(--radius); }
.border { border: 1px solid var(--border); }
.shadow-sm { box-shadow: var(--shadow-sm); }

/* ─── STEP INDICATOR ─── */
.steps { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 28px; }
.step { display: flex; align-items: center; }
.step-dot { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.8rem; flex-shrink: 0; }
.step-dot.done { background: var(--primary); color: white; }
.step-dot.active { background: var(--primary); color: white; box-shadow: 0 0 0 4px rgba(10,79,212,0.2); }
.step-dot.pending { background: var(--border); color: var(--text-light); }
.step-line { width: 40px; height: 2px; background: var(--border); }
.step-line.done { background: var(--primary); }

/* ─── SECTION BG ─── */
.bg-blue { background: linear-gradient(135deg, #0837a0 0%, #0a4fd4 100%); }
.section-dark { background: linear-gradient(135deg, #0837a0 0%, #0a4fd4 100%); padding: 48px 20px; }
.section-dark .section-title, .section-dark h2, .section-dark h3 { color: white; }
.section-dark .section-sub, .section-dark p { color: rgba(255,255,255,0.75); }

/* ─── NOTIFICATION DOT ─── */
.notif-dot { width: 8px; height: 8px; background: #ef4444; border-radius: 50%; display: inline-block; }

/* ─── FOOTER ─── */
.footer { background: var(--text-dark); color: rgba(255,255,255,0.7); padding: 32px 20px 20px; }
.footer-brand { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.4rem; color: white; margin-bottom: 8px; }
.footer-brand span { color: var(--accent); }
.footer-desc { font-size: 0.85rem; margin-bottom: 20px; line-height: 1.5; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 20px; }
.footer-link { font-size: 0.85rem; color: rgba(255,255,255,0.65); padding: 4px 0; }
.footer-bottom { padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.75rem; text-align: center; }

/* ─── ALERT ─── */
.alert { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 0.87rem; margin-bottom: 16px; }
.alert-info { background: rgba(10,79,212,0.08); color: var(--primary); border: 1px solid rgba(10,79,212,0.2); }
.alert-success { background: rgba(34,197,94,0.08); color: #16a34a; border: 1px solid rgba(34,197,94,0.2); }
.alert-warn { background: rgba(249,115,22,0.08); color: #ea580c; border: 1px solid rgba(249,115,22,0.2); }

/* ─── RESPONSIVE ─── */
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2,1fr); }
  .menu-grid { grid-template-columns: repeat(4,1fr); }
}
@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .bottom-nav { display: none; }
  .top-nav { display: flex; }
  .hero { padding: 72px 40px 80px; }
  .section { padding: 64px 40px; }
}
