/* ─────────────────────────────────────────────────────────────────────────
   JK Wellness Mental Health Awareness Forum — Main Stylesheet
   ───────────────────────────────────────────────────────────────────────── */

/* ─── Variables ──────────────────────────────────────────────────────────── */
:root {
  --teal-50:  #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #134e4a;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0,0,0,.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,.12);
}

/* ─── Base ──────────────────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--slate-700);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; transition: color .2s; }
img { max-width: 100%; height: auto; display: block; }

/* ─── Utility ────────────────────────────────────────────────────────────── */
.text-teal          { color: var(--teal-600) !important; }
.text-teal-light    { color: var(--teal-200) !important; }
.text-amber         { color: var(--amber-500) !important; }
.body-text          { color: var(--slate-600); line-height: 1.75; font-size: 1.05rem; }

/* ─── Navbar ────────────────────────────────────────────────────────────── */
.site-navbar {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: .75rem 0;
  box-shadow: 0 1px 8px rgba(0,0,0,.05);
  z-index: 1030;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}

.brand-icon {
  font-size: 2rem;
  color: var(--teal-600);
  background: var(--teal-50);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  border: 2px solid var(--teal-100);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--teal-700);
}

.brand-tagline {
  font-size: .7rem;
  color: var(--slate-600);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.site-nav-link {
  color: var(--slate-700) !important;
  font-weight: 500;
  padding: .5rem .9rem !important;
  border-radius: 8px;
  transition: background .2s, color .2s;
}

.site-nav-link:hover,
.site-nav-link.active {
  background: var(--teal-50);
  color: var(--teal-700) !important;
}

.btn-register {
  background: var(--teal-600);
  color: #fff !important;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  padding: .5rem 1.25rem;
  transition: background .2s, box-shadow .2s;
}
.btn-register:hover { background: var(--teal-700); box-shadow: 0 4px 12px rgba(13,148,136,.3); }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn-primary-brand {
  background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
  color: #fff !important;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  padding: .6rem 1.5rem;
  transition: transform .15s, box-shadow .15s;
}
.btn-primary-brand:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13,148,136,.35);
}

.btn-outline-white {
  border: 2px solid rgba(255,255,255,.6);
  color: #fff !important;
  border-radius: 10px;
  font-weight: 600;
  padding: .6rem 1.5rem;
  background: transparent;
  transition: background .2s, border-color .2s;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
}

.btn-register-sm {
  background: var(--teal-600);
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600;
  padding: .45rem 1rem;
  font-size: .85rem;
  display: inline-block;
}
.btn-register-sm:hover { background: var(--teal-700); }

.btn-outline-teal {
  border: 2px solid var(--teal-600);
  color: var(--teal-600) !important;
  border-radius: 10px;
  font-weight: 600;
  padding: .55rem 1.4rem;
  background: transparent;
  transition: background .2s, color .2s;
}
.btn-outline-teal:hover {
  background: var(--teal-600);
  color: #fff !important;
}

/* ─── Hero Section ───────────────────────────────────────────────────────── */
.hero-section {
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-700) 50%, var(--teal-600) 100%);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  align-items: center;
}

.hero-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  padding: .45rem 1rem;
  border-radius: 30px;
  font-size: .82rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  color: rgba(255,255,255,.82);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 1.5rem;
}

.hero-tagline {
  color: var(--teal-200);
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* ─── Stats Bar ──────────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--teal-800);
  padding: 2rem 0;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--amber-400);
  line-height: 1;
}

.stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  margin-top: .35rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ─── Sections ───────────────────────────────────────────────────────────── */
.section-padding { padding: 5rem 0; }

.section-header { text-align: center; margin-bottom: 3rem; }

.section-tag {
  display: inline-block;
  background: var(--teal-50);
  color: var(--teal-700);
  border: 1px solid var(--teal-200);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 20px;
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--slate-800);
  line-height: 1.25;
}

.section-subtitle {
  color: var(--slate-600);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 1rem auto 0;
  line-height: 1.7;
}

/* ─── Event Highlight Card ───────────────────────────────────────────────── */
.event-highlight-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
  .event-highlight-card { grid-template-columns: 1fr; }
}

.event-highlight-img { 
  aspect-ratio: 4/3; 
  overflow: hidden; 
  min-height: 280px;
}
.event-highlight-img img { 
  width: 100%; 
  height: 100%; 
  object-fit: contain;
  object-position: center;
  background: #f8fafc;
}

.event-highlight-body { padding: 2.5rem; background: #fff; }
.event-highlight-title { font-size: 1.45rem; font-weight: 800; color: var(--slate-800); margin-bottom: .75rem; }

/* ─── Event Meta Grid ────────────────────────────────────────────────────── */
.event-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.event-meta-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
}

.event-meta-item i { font-size: 1.1rem; margin-top: .05rem; }
.event-meta-label { color: var(--slate-600); font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; }
.event-meta-value { color: var(--slate-800); font-weight: 600; }

/* ─── Access Info Box ────────────────────────────────────────────────────── */
.access-info-box {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: 10px;
  padding: 1rem 1.25rem;
}

/* ─── Event Tags ─────────────────────────────────────────────────────────── */
.event-tag {
  display: inline-flex;
  align-items: center;
  background: var(--teal-50);
  color: var(--teal-700);
  border: 1px solid var(--teal-200);
  font-size: .75rem;
  font-weight: 600;
  padding: .3rem .75rem;
  border-radius: 20px;
}

.event-tag-virtual {
  background: #eff6ff;
  color: #1d4ed8;
  border-color: #bfdbfe;
}

/* ─── Pillar Cards ───────────────────────────────────────────────────────── */
.pillar-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow .2s, transform .2s;
}

.pillar-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.pillar-icon {
  width: 52px; height: 52px;
  background: var(--teal-50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--teal-600);
  font-size: 1.5rem;
}

.pillar-title { font-size: 1rem; font-weight: 700; color: var(--slate-800); margin-bottom: .6rem; }
.pillar-desc  { font-size: .9rem; color: var(--slate-600); line-height: 1.65; }

/* ─── CTA Section ────────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--teal-700) 0%, var(--teal-900) 100%);
  padding: 5rem 0;
}

.cta-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-subtitle {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.site-footer { background: #0f172a; }

.footer-heading {
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1.2rem;
}

.footer-desc { color: #94a3b8; font-size: .9rem; line-height: 1.7; }

.footer-links a {
  display: block;
  color: #94a3b8;
  font-size: .9rem;
  padding: .3rem 0;
  transition: color .2s;
}

.footer-links a:hover,
.footer-contact li:hover { color: var(--teal-500); }

.footer-contact { color: #94a3b8; font-size: .9rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: .6rem; padding: .35rem 0; }
.footer-contact i  { margin-top: .15rem; flex-shrink: 0; }

.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 1rem;
  transition: background .2s, color .2s;
}

.social-link:hover {
  background: var(--teal-600);
  color: #fff;
}

.mission-quote { color: var(--teal-200); font-style: italic; }

/* ─── Page Hero ──────────────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--teal-800), var(--teal-600));
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 24px 24px;
}

.page-hero-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: .5rem;
  position: relative;
}

.page-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,.7); }
.page-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,.9); }
.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); }

/* ─── About ──────────────────────────────────────────────────────────────── */
.about-stats-card {
  background: var(--teal-50);
  border: 2px solid var(--teal-200);
  border-radius: var(--radius);
  padding: 2rem;
}

.about-stat { padding: 1rem 0; }
.about-stat-number { font-size: 2.2rem; font-weight: 800; color: var(--teal-700); display: block; }
.about-stat-label  { color: var(--slate-600); font-size: .9rem; margin-top: .25rem; }
.border-teal-subtle { border-color: var(--teal-200) !important; }

.mv-card {
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid #e2e8f0;
}

.mv-mission { border-top: 4px solid var(--teal-600); }
.mv-vision  { border-top: 4px solid var(--amber-500); }

.mv-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.mv-mission .mv-icon { background: var(--teal-50); color: var(--teal-600); }
.mv-vision  .mv-icon { background: #fffbeb; color: var(--amber-500); }

.mv-title { font-size: 1.25rem; font-weight: 700; color: var(--slate-800); margin-bottom: .75rem; }
.mv-desc  { color: var(--slate-600); line-height: 1.7; font-size: .95rem; }

.team-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow .2s;
}
.team-card:hover { box-shadow: var(--shadow); }

.team-avatar {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--teal-600), var(--teal-800));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
}

.team-name { font-size: 1.05rem; font-weight: 700; color: var(--slate-800); }
.team-role { color: var(--teal-600); font-size: .85rem; font-weight: 500; margin: .25rem 0 .75rem; }
.team-bio  { color: var(--slate-600); font-size: .88rem; line-height: 1.65; }

/* ─── Events page ────────────────────────────────────────────────────────── */
.event-card-full {
  display: grid;
  grid-template-columns: 340px 1fr;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #e2e8f0;
  transition: box-shadow .2s;
}
.event-card-full:hover { box-shadow: var(--shadow-md); }

@media (max-width: 900px) {
  .event-card-full { grid-template-columns: 1fr; }
  .event-card-img-col { min-height: 240px; }
  .event-highlight-img { min-height: 240px; }
}

@media (max-width: 576px) {
  .event-card-img-col { 
    min-height: 200px; 
    aspect-ratio: 16/9;
  }
  .event-highlight-img { 
    min-height: 200px; 
    aspect-ratio: 16/9;
  }
}

.event-card-img-col {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  min-height: 280px;
}
.event-card-img-col img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #f8fafc;
}

.event-status-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: .75rem;
  font-weight: 700;
  padding: .35rem .8rem;
  border-radius: 20px;
}
.badge-upcoming   { background: #dcfce7; color: #166534; }
.badge-past       { background: #f1f5f9; color: #475569; }
.badge-cancelled  { background: #fee2e2; color: #991b1b; }

.event-card-body-col { padding: 2.5rem; background: #fff; }
.event-card-title    { font-size: 1.4rem; font-weight: 800; color: var(--slate-800); margin-bottom: .75rem; }

.event-detail-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  padding: .75rem;
  background: var(--teal-50);
  border-radius: 8px;
}
.event-detail-label { color: var(--slate-600); font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; }
.event-detail-value { color: var(--slate-800); font-weight: 600; font-size: .88rem; }
.event-detail-item i { font-size: 1.1rem; margin-top: .1rem; flex-shrink: 0; }

.topics-list { list-style: none; padding: 0; margin: 0; }
.topics-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: var(--slate-700);
  padding: .35rem 0;
  border-bottom: 1px solid #f1f5f9;
}
.topic-dot {
  width: 8px; height: 8px;
  background: var(--teal-600);
  border-radius: 50%;
  flex-shrink: 0;
}

.past-topic-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: .9rem 1rem;
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--slate-700);
  font-weight: 500;
}
.past-topic-check {
  width: 22px; height: 22px;
  background: var(--teal-600);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: .7rem;
  flex-shrink: 0;
}

/* ─── Registration page ──────────────────────────────────────────────────── */
.register-sidebar-card {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.register-event-img { 
  width: 100%; 
  height: 220px; 
  object-fit: contain;
  background: #f8fafc;
}
.register-payment-box { background: var(--teal-50); border: 1px solid var(--teal-200); border-radius: 8px; padding: .9rem 1rem; }

.success-card {
  max-width: 540px;
  margin: 2rem auto;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.success-icon-wrap {
  font-size: 3.5rem;
  color: var(--teal-600);
  margin-bottom: 1rem;
  line-height: 1;
}

.success-title  { font-size: 1.6rem; font-weight: 800; color: var(--slate-800); margin-bottom: .75rem; }
.success-msg    { color: var(--slate-600); font-size: 1rem; margin-bottom: 1.5rem; }

.next-steps-box {
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: .9rem;
  color: var(--slate-700);
}

/* ─── Form styles ────────────────────────────────────────────────────────── */
.brand-input {
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: .65rem 1rem;
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
  background: #fff;
}
.brand-input:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(13,148,136,.12);
  outline: none;
}

/* ─── Contact page ───────────────────────────────────────────────────────── */
.contact-info-list { display: flex; flex-direction: column; gap: 1rem; }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: 1rem;
  background: var(--teal-50);
  border-radius: 10px;
  border: 1px solid var(--teal-100);
}

.contact-info-icon {
  width: 40px; height: 40px;
  background: var(--teal-600);
  color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-label { font-size: .75rem; color: var(--slate-600); text-transform: uppercase; letter-spacing: .05em; }
.contact-info-value { font-weight: 600; color: var(--slate-800); font-size: .95rem; }
.contact-event-reminder { background: var(--teal-50); border: 1px solid var(--teal-200); border-radius: 10px; padding: 1rem; }

/* ─── Admin Login ────────────────────────────────────────────────────────── */
.admin-login-page {
  background: linear-gradient(135deg, var(--teal-900), var(--teal-700));
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-login-wrap {
  width: 100%;
  max-width: 420px;
  padding: 1.5rem;
}

.admin-login-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 16px 48px rgba(0,0,0,.2);
}

.admin-login-header { text-align: center; margin-bottom: 2rem; }

.admin-login-logo-icon {
  font-size: 3rem;
  color: var(--teal-600);
  display: block;
  margin-bottom: .5rem;
}

.admin-login-title { font-size: 1.5rem; font-weight: 800; color: var(--slate-800); margin: 0; }
.admin-login-subtitle { color: var(--slate-600); font-size: .9rem; margin: .35rem 0 0; }

/* ─── Admin Panel Layout ─────────────────────────────────────────────────── */
.admin-body { background: #f8fafc; min-height: 100vh; }

.admin-shell {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.admin-sidebar {
  width: 240px;
  background: #0f172a;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; bottom: 0; left: 0;
  z-index: 200;
  transition: transform .25s;
}

.admin-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.admin-nav {
  flex: 1;
  padding: 1rem .75rem;
  overflow-y: auto;
}

.admin-nav-section {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.35);
  padding: .75rem .6rem .4rem;
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .65rem .9rem;
  border-radius: 8px;
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  font-weight: 500;
  transition: background .2s, color .2s;
  text-decoration: none;
  margin-bottom: 2px;
}

.admin-nav-link:hover,
.admin-nav-link.active {
  background: rgba(13,148,136,.25);
  color: var(--teal-200);
}

.admin-sidebar-footer {
  padding: .75rem;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* Main area */
.admin-main {
  margin-left: 240px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

@media (max-width: 767.98px) {
  .admin-sidebar {
    transform: translateX(-100%);
  }
  .admin-sidebar.open {
    transform: translateX(0);
  }
  .admin-main {
    margin-left: 0;
  }
  .admin-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 190;
  }
  .admin-overlay.visible {
    display: block !important;
  }
}

.admin-topbar {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
}

.admin-page-title { font-size: 1.25rem; font-weight: 700; color: var(--slate-800); }
.admin-page-subtitle { font-size: .82rem; color: var(--slate-600); }

.admin-content { padding: 1.75rem; flex: 1; }

/* ─── Admin Cards & Tables ───────────────────────────────────────────────── */
.admin-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}

.admin-card-header {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid #f1f5f9;
}

.admin-table th {
  background: #f8fafc;
  color: var(--slate-600);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .8rem 1rem;
  border-bottom: 1px solid #e2e8f0;
  white-space: nowrap;
}

.admin-table td {
  padding: .85rem 1rem;
  vertical-align: middle;
  border-bottom: 1px solid #f8fafc;
  font-size: .88rem;
}

.admin-table tbody tr:hover { background: #fafafa; }
.admin-table tbody tr:last-child td { border-bottom: none; }

/* ─── Stat Cards ─────────────────────────────────────────────────────────── */
.stat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}

.stat-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.stat-card-teal  .stat-card-icon { background: var(--teal-50); color: var(--teal-600); }
.stat-card-amber .stat-card-icon { background: #fffbeb; color: var(--amber-500); }
.stat-card-green .stat-card-icon { background: #f0fdf4; color: #16a34a; }
.stat-card-slate .stat-card-icon { background: #f1f5f9; color: var(--slate-600); }

.stat-card-value { font-size: 1.8rem; font-weight: 800; color: var(--slate-800); line-height: 1; }
.stat-card-label { font-size: .78rem; color: var(--slate-600); margin-top: .35rem; text-transform: uppercase; letter-spacing: .05em; }

/* ─── Badge Status ───────────────────────────────────────────────────────── */
.badge-status {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  padding: .3rem .7rem;
  border-radius: 20px;
}

.badge-confirmed { background: #dcfce7; color: #166534; }
.badge-pending   { background: #fef9c3; color: #854d0e; }
.badge-cancelled { background: #fee2e2; color: #991b1b; }

.badge-status-select {
  font-size: .78rem;
  font-weight: 600;
  border-radius: 20px;
  padding: .25rem .65rem;
  border: none;
  cursor: pointer;
}
.status-confirmed { background: #dcfce7; color: #166534; }
.status-pending   { background: #fef9c3; color: #854d0e; }
.status-cancelled { background: #fee2e2; color: #991b1b; }

/* ─── Progress bar teal ──────────────────────────────────────────────────── */
.bg-teal { background-color: var(--teal-600) !important; }
.badge.bg-teal { background-color: var(--teal-600) !important; color: #fff; }
.btn-outline-teal-sm { border: 1px solid var(--teal-600); color: var(--teal-600); background: transparent; border-radius: 8px; padding: .3rem .8rem; font-size: .82rem; transition: all .2s; }
.btn-outline-teal-sm:hover { background: var(--teal-600); color: #fff; }
.btn-outline-teal { border: 1.5px solid var(--teal-600) !important; }

/* ─── Admin Topbar Avatar ─────────────────────────────────────────────────── */
.admin-topbar-avatar {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--teal-600), var(--teal-800));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .8rem;
  flex-shrink: 0;
}
