/* ===================================================
   ABCBizSetu — Page-specific styles
   =================================================== */

/* ===================== HOME ===================== */
.hero {
  background: var(--navy-800);
  padding: 96px var(--space-8) 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 55% at 50% 0%, rgba(201,151,28,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 35% 35% at 15% 90%, rgba(212,82,14,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 35% 35% at 85% 90%, rgba(30,49,96,0.5) 0%, transparent 60%);
}

.hero-inner { position: relative; max-width: 800px; margin: 0 auto; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(201,151,28,0.12);
  border: 1px solid rgba(201,151,28,0.3);
  color: var(--gold-400);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: var(--space-3);
}

.hero h1 .highlight { color: var(--gold-400); }

.hero-subtext {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-style: italic;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-5);
}

.hero-desc {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto var(--space-10);
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* Stats Bar */
.stats-bar {
  background: var(--gold-500);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-bar-item {
  text-align: center;
  padding: var(--space-5) var(--space-6);
  border-right: 1px solid rgba(12,20,40,0.12);
  position: relative;
}

.stats-bar-item:last-child { border-right: none; }

.stats-bar-num {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1;
  margin-bottom: 4px;
}

.stats-bar-label {
  font-size: var(--text-xs);
  font-weight: 700;
  color: rgba(12,20,40,0.65);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Feature cards */
.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--orange-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 52px; height: 52px;
  background: var(--gold-50);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: var(--space-5);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--navy-800);
  margin-bottom: var(--space-3);
}

.feature-card p { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.7; }

/* Category grid on home */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: var(--space-3); }

.cat-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-3);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.cat-card:hover {
  border-color: var(--gold-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cat-card-icon { font-size: 1.6rem; margin-bottom: var(--space-2); }
.cat-card-name { font-size: var(--text-xs); font-weight: 700; color: var(--navy-800); line-height: 1.3; }
.cat-card-count { font-size: 10px; color: var(--color-text-light); margin-top: 4px; }

/* Leader cards */
.leader-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.leader-info h4 { font-weight: 700; color: var(--navy-800); margin-bottom: 4px; }
.leader-info p  { font-size: var(--text-xs); color: var(--color-text-muted); }

/* ===================== DIRECTORY ===================== */
.dir-hero {
  background: var(--navy-800);
  padding: var(--space-12) var(--space-8) var(--space-10);
  border-bottom: 2px solid var(--gold-500);
}

.dir-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: white;
  margin-bottom: var(--space-2);
}

.dir-hero p { color: rgba(255,255,255,0.55); margin-bottom: var(--space-6); }

.dir-search-row {
  display: flex;
  gap: var(--space-3);
  max-width: 780px;
}

.dir-search-row .search-wrap { flex: 1; }

.dir-select {
  padding: 0.625rem 2.4rem 0.625rem 1rem;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(201,151,28,0.25);
  border-radius: var(--radius-lg);
  color: rgba(255,255,255,0.7);
  font-size: var(--text-sm);
  font-family: var(--font-body);
  outline: none;
  appearance: none;
  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='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

.dir-select:focus { border-color: var(--gold-500); }

.dir-filter-bar {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-4) var(--space-8);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  overflow-x: auto;
  scrollbar-width: none;
}

.dir-filter-bar::-webkit-scrollbar { display: none; }
.dir-filter-label { font-size: var(--text-xs); font-weight: 700; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }

.dir-layout {
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr;
  min-height: calc(100vh - 240px);
  align-items: start;
}

.dir-sidebar {
  background: var(--color-surface);
  border-right: 1px solid var(--color-border);
  padding: var(--space-6);
  position: sticky;
  top: var(--nav-height);
  height: calc(100vh - var(--nav-height));
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) transparent;
}

.sidebar-section { margin-bottom: var(--space-8); }
.sidebar-section-title {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-3);
}

.sidebar-list { display: flex; flex-direction: column; gap: 2px; }

.sidebar-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.sidebar-list-item:hover { background: var(--color-surface-2); color: var(--gold-600); }
.sidebar-list-item.active { background: var(--gold-50); color: var(--gold-600); font-weight: 700; }

.sidebar-count {
  background: var(--color-surface-2);
  color: var(--color-text-light);
  font-size: 10px;
  padding: 2px 7px;
  border-radius: var(--radius-full);
}

.sidebar-list-item.active .sidebar-count {
  background: rgba(201,151,28,0.15);
  color: var(--gold-600);
}

.dir-main { padding: var(--space-6); }

.dir-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
  gap: var(--space-3);
}

.dir-count { font-size: var(--text-sm); color: var(--color-text-muted); }
.dir-count strong { color: var(--navy-800); }

.biz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-5);
}

/* Business Card */
.biz-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.biz-card:hover {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.biz-card-head {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  padding: var(--space-5);
  display: flex;
  gap: var(--space-4);
  align-items: center;
}

.biz-meta { min-width: 0; }
.biz-name { font-weight: 700; font-size: var(--text-base); color: white; margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.biz-role { font-size: var(--text-xs); color: var(--gold-400); }

.biz-card-body { padding: var(--space-4) var(--space-5); flex: 1; }

.biz-firm { font-weight: 700; font-size: var(--text-sm); color: var(--navy-800); margin-bottom: var(--space-2); }
.biz-desc { font-size: var(--text-xs); color: var(--color-text-muted); line-height: 1.55; margin-bottom: var(--space-4); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.biz-contacts { display: flex; flex-direction: column; gap: var(--space-1); }
.biz-contact-item { display: flex; align-items: center; gap: var(--space-2); font-size: var(--text-xs); color: var(--color-text-muted); }
.biz-contact-item span { font-weight: 600; color: var(--navy-800); }

.biz-card-foot {
  padding: var(--space-3) var(--space-5);
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.biz-city { font-size: var(--text-xs); color: var(--color-text-light); }

/* ===================== AUTH ===================== */
.auth-shell {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: calc(100vh - var(--nav-height));
}

.auth-side {
  background: var(--navy-800);
  padding: var(--space-16) var(--space-12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.auth-side::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,151,28,0.12) 0%, transparent 70%);
}

.auth-side::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,82,14,0.08) 0%, transparent 70%);
}

.auth-side-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: var(--space-4);
  position: relative;
}

.auth-side-title span { color: var(--gold-400); }

.auth-side-desc {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: var(--space-8);
  max-width: 420px;
  position: relative;
}

.auth-benefits { position: relative; }

.auth-benefit {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.benefit-check {
  width: 22px; height: 22px;
  background: var(--gold-500);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy-800);
  flex-shrink: 0;
  margin-top: 1px;
}

.auth-benefit p { font-size: var(--text-sm); color: rgba(255,255,255,0.7); line-height: 1.5; }

.auth-form-wrap {
  background: var(--color-bg);
  padding: var(--space-10) var(--space-12);
  overflow-y: auto;
  max-height: calc(100vh - var(--nav-height));
}

.auth-form-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--navy-800);
  margin-bottom: var(--space-2);
}

.auth-form-subtitle { font-size: var(--text-sm); color: var(--color-text-muted); margin-bottom: var(--space-8); }

/* Multi-step panels */
.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn 0.3s ease; }

/* Login box */
.login-wrap {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-800);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
}

.login-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 50% at 50% 25%, rgba(201,151,28,0.14), transparent 70%);
}

.login-card {
  background: var(--color-surface);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.login-logo {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 700;
  color: var(--navy-800);
  margin: 0 auto var(--space-5);
}

.login-card h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--navy-800);
  text-align: center;
  margin-bottom: var(--space-1);
}

.login-subtitle { text-align: center; font-size: var(--text-sm); color: var(--color-text-muted); margin-bottom: var(--space-6); }

.forgot-link { font-size: var(--text-xs); color: var(--gold-500); text-decoration: none; float: right; }
.forgot-link:hover { text-decoration: underline; }

.register-prompt { text-align: center; font-size: var(--text-sm); color: var(--color-text-muted); margin-top: var(--space-6); }
.register-prompt a { color: var(--gold-500); font-weight: 700; text-decoration: none; }

/* Ad options */
.ad-option-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  border: 1.5px solid #e2dfd6;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-bottom: var(--space-3);
}

.ad-option-card:hover { border-color: var(--gold-500); }
.ad-option-card.selected { border-color: var(--gold-500); background: var(--gold-50); }
.ad-option-card.popular { border-color: var(--orange-500); }
.ad-option-card.selected.popular { background: rgba(212,82,14,0.04); }

.ad-opt-price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy-800);
  white-space: nowrap;
  min-width: 80px;
  text-align: right;
}

.ad-opt-name  { font-weight: 700; font-size: var(--text-sm); color: var(--navy-800); margin-bottom: 2px; }
.ad-opt-desc  { font-size: var(--text-xs); color: var(--color-text-muted); }

/* ===================== EVENTS ===================== */
.events-hero {
  background: var(--navy-800);
  padding: var(--space-16) var(--space-8) var(--space-12);
  text-align: center;
  border-bottom: 2px solid var(--gold-500);
  position: relative;
  overflow: hidden;
}

.events-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201,151,28,0.15) 0%, transparent 70%);
}

.events-hero-inner { position: relative; }

.events-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  margin-bottom: var(--space-3);
}

.events-hero p { color: rgba(255,255,255,0.55); max-width: 580px; margin: 0 auto var(--space-6); }

.event-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
}

.event-tab-btn {
  padding: var(--space-2) var(--space-6);
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(201,151,28,0.35);
  color: rgba(255,255,255,0.6);
  font-size: var(--text-sm);
  font-weight: 600;
  background: none;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.event-tab-btn:hover, .event-tab-btn.active {
  background: var(--gold-500);
  color: var(--navy-800);
  border-color: var(--gold-500);
}

.events-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: var(--space-10) var(--space-8);
}

.events-section-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.events-section-label::after { content: ''; flex: 1; height: 1px; background: var(--color-border); }

.event-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-5);
  transition: all var(--transition-base);
}

.event-card:hover { border-color: var(--gold-500); box-shadow: var(--shadow-md); }

.event-card-top {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  padding: var(--space-6);
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
}

.event-date-box {
  background: var(--gold-500);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  text-align: center;
  min-width: 72px;
  flex-shrink: 0;
}

.event-date-day   { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--navy-800); line-height: 1; }
.event-date-month { font-size: var(--text-xs); font-weight: 700; color: var(--navy-700); text-transform: uppercase; letter-spacing: 1px; }

.event-info { flex: 1; }
.event-info h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: white;
  margin-bottom: var(--space-2);
}

.event-info p { font-size: var(--text-sm); color: rgba(255,255,255,0.55); }

.event-tags { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-3); }

.event-card-body { padding: var(--space-5) var(--space-6); }

.event-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.event-detail-item { display: flex; flex-direction: column; gap: 4px; }
.event-detail-label { font-size: 10px; font-weight: 700; color: var(--color-text-light); text-transform: uppercase; letter-spacing: 0.5px; }
.event-detail-value { font-size: var(--text-sm); font-weight: 600; color: var(--navy-800); }

.event-desc { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.75; }

.event-card-foot {
  padding: var(--space-4) var(--space-6);
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* Event registration form */
.event-reg-hero {
  background: var(--navy-800);
  padding: var(--space-12) var(--space-8);
  border-bottom: 2px solid var(--gold-500);
}

.event-reg-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: var(--space-10) var(--space-8);
}

.event-reg-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-md);
}

/* ===================== ADVERTISE ===================== */
.advertise-hero {
  background: var(--navy-800);
  padding: var(--space-24) var(--space-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.advertise-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(201,151,28,0.16) 0%, transparent 70%);
}

.advertise-hero-inner { position: relative; }

.advertise-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: white;
  margin-bottom: var(--space-4);
}

.advertise-hero p { font-size: var(--text-md); color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto; }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-6);
}

.pkg-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pkg-card.popular { border: 2px solid var(--orange-500); }
.pkg-card.premium { border: 2px solid var(--gold-500); }

.pkg-card-top {
  padding: var(--space-8) var(--space-6);
  text-align: center;
}

.pkg-card.free .pkg-card-top    { background: #f0fdf4; }
.pkg-card.quarter .pkg-card-top { background: linear-gradient(160deg, var(--color-surface-2), #fef9e7); }
.pkg-card.half .pkg-card-top    { background: linear-gradient(160deg, var(--color-surface-2), #fff7e6); }
.pkg-card.full .pkg-card-top    { background: linear-gradient(160deg, #fff7e6, #fdecc8); }
.pkg-card.premium-plan .pkg-card-top { background: linear-gradient(160deg, var(--navy-800), var(--navy-700)); }

.pkg-popular-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange-500);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 20px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pkg-icon { font-size: 2.5rem; margin-bottom: var(--space-3); }
.pkg-name { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 600; color: var(--navy-800); margin-bottom: var(--space-3); }
.pkg-card.premium-plan .pkg-name { color: white; }

.pkg-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1;
}

.pkg-card.premium-plan .pkg-price { color: var(--gold-400); }
.pkg-price span { font-size: var(--text-sm); font-weight: 400; color: var(--color-text-muted); margin-left: 4px; }
.pkg-card.premium-plan .pkg-price span { color: rgba(255,255,255,0.4); }

.pkg-features { padding: var(--space-5) var(--space-6); flex: 1; }

.pkg-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding-block: var(--space-2);
  border-bottom: 1px solid var(--color-border);
}

.pkg-feature:last-child { border-bottom: none; }

.check-yes { color: var(--color-success); font-weight: 700; }
.check-no  { color: var(--color-error);   font-weight: 700; }

.pkg-card-foot { padding: var(--space-4) var(--space-6) var(--space-6); }
.pkg-card.premium-plan .pkg-features { background: rgba(255,255,255,0.03); }
.pkg-card.premium-plan .pkg-feature { color: rgba(255,255,255,0.65); border-bottom-color: rgba(255,255,255,0.08); }

/* ===================== ADMIN ===================== */
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}

.admin-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}

.applicant-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--color-border);
}

.applicant-row:last-child { border-bottom: none; }

.applicant-info h4 { font-size: var(--text-sm); font-weight: 700; color: var(--navy-800); }
.applicant-info p  { font-size: var(--text-xs); color: var(--color-text-muted); }

.row-actions { display: flex; gap: var(--space-2); margin-left: auto; flex-shrink: 0; }

.city-bar-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--color-border);
}

.city-bar-row:last-child { border-bottom: none; }
.city-bar-label { font-size: var(--text-sm); font-weight: 500; color: var(--navy-800); min-width: 72px; }
.city-bar-track { flex: 1; height: 8px; background: var(--color-surface-2); border-radius: 4px; overflow: hidden; }
.city-bar-fill  { height: 100%; background: linear-gradient(90deg, var(--gold-500), var(--gold-400)); border-radius: 4px; transition: width 0.8s ease; }
.city-bar-count { font-size: var(--text-xs); font-weight: 700; color: var(--color-text-muted); min-width: 28px; text-align: right; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .admin-stats-grid { grid-template-columns: 1fr 1fr; }
  .admin-content-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .auth-shell { grid-template-columns: 1fr; }
  .auth-side  { display: none; }
  .auth-form-wrap { padding: var(--space-6) var(--space-4); max-height: none; }
  .dir-layout { grid-template-columns: 1fr; }
  .dir-sidebar { display: none; }
  .hero { padding: 72px var(--space-4) 60px; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .admin-stats-grid { grid-template-columns: 1fr; }
  .form-grid, .form-grid--3, .form-grid--4 { grid-template-columns: 1fr; }
  .progress-steps { display: none; }
  .event-reg-card { padding: var(--space-5); }
}

/* =============================================
   SUPPLEMENTAL STYLES — All remaining pages
   ============================================= */

/* ---- LOGIN PAGE ---- */
.auth-form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-10) var(--space-6);
  background: var(--color-bg);
}

.login-card {
  width: 100%;
  max-width: 420px;
}

.login-card-header { margin-bottom: var(--space-6); }
.login-card-title  { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; color: var(--navy-900); }
.login-card-sub    { font-size: var(--text-sm); color: var(--color-text-muted); margin-top: var(--space-1); }

.login-tabs {
  display: flex;
  gap: var(--space-2);
  background: var(--color-surface-2);
  border-radius: var(--radius);
  padding: 4px;
  margin-bottom: var(--space-6);
}

.login-tab {
  flex: 1;
  padding: var(--space-2) var(--space-3);
  border: none;
  border-radius: calc(var(--radius) - 2px);
  background: transparent;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.login-tab.active {
  background: white;
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}

.login-panel { margin-bottom: var(--space-4); }

.otp-boxes {
  display: flex;
  gap: var(--space-2);
}

.otp-box {
  flex: 1;
  min-width: 0;
  height: 54px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  text-align: center;
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy-900);
  background: white;
  transition: var(--transition);
}

.otp-box:focus {
  border-color: var(--gold-500);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201,151,28,0.15);
}

.otp-box.filled { border-color: var(--gold-500); background: var(--gold-50); }

.login-admin-hint {
  text-align: center;
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}

.login-terms {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-align: center;
  margin-top: var(--space-4);
}

.form-row-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
  gap: var(--space-3);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  cursor: pointer;
}

/* ---- INPUT GROUP ---- */
.input-group {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.input-group:focus-within {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201,151,28,0.12);
}

.input-group .form-control {
  border: none;
  border-radius: 0;
  flex: 1;
  box-shadow: none !important;
}

.input-group .form-control:focus { box-shadow: none; outline: none; }

.input-prefix,
.input-suffix {
  display: flex;
  align-items: center;
  padding: 0 var(--space-3);
  background: var(--color-surface-2);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 600;
  white-space: nowrap;
  border: none;
}

.input-suffix.btn-icon {
  background: transparent;
  cursor: pointer;
  padding: 0 var(--space-3);
  border: none;
  font-size: 1rem;
}

/* ---- AUTH SIDE PANEL (supplement existing) ---- */
.auth-side-list {
  list-style: none;
  padding: 0;
  margin: var(--space-6) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.auth-side-list li {
  color: rgba(255,255,255,0.85);
  font-size: var(--text-sm);
  display: flex;
  gap: var(--space-2);
}
.auth-side-quote {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-300);
  font-size: var(--text-sm);
  margin-top: var(--space-6);
  opacity: 0.85;
}

/* ---- EVENTS PAGE ---- */
.summit-banner {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  gap: var(--space-8);
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(201,151,28,0.25);
}

.summit-tag {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-400);
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.summit-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-2);
}

.summit-sub {
  color: var(--navy-200);
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}

.summit-meta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  font-size: var(--text-sm);
  color: var(--navy-200);
}

.summit-banner-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  flex-shrink: 0;
}

.summit-date-box {
  background: var(--gold-500);
  color: var(--navy-900);
  border-radius: var(--radius-lg);
  width: 100px;
  text-align: center;
  padding: var(--space-3) var(--space-2);
  font-family: var(--font-display);
}

.summit-month { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; }
.summit-day   { font-size: 2.5rem; font-weight: 900; line-height: 1; }
.summit-year  { font-size: var(--text-xs); opacity: 0.7; }

.events-filter-bar {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.event-tabs {
  display: flex;
  gap: var(--space-2);
  background: var(--color-surface-2);
  padding: 4px;
  border-radius: var(--radius);
}

.event-tab {
  padding: var(--space-2) var(--space-4);
  border: none;
  border-radius: calc(var(--radius) - 2px);
  background: transparent;
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: var(--transition);
}

.event-tab.active {
  background: white;
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}

.events-list { display: flex; flex-direction: column; gap: var(--space-5); }

.event-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0;
  transition: box-shadow 0.2s;
}

.event-card:hover { box-shadow: var(--shadow-lg); }

.event-card--summit { border-top: 3px solid var(--gold-500); }

.event-date-col {
  background: var(--navy-900);
  color: white;
  text-align: center;
  padding: var(--space-5) var(--space-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 96px;
}

.event-date-month { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; color: var(--gold-400); text-transform: uppercase; }
.event-date-day   { font-size: 2.2rem; font-weight: 900; line-height: 1; font-family: var(--font-display); }
.event-date-year  { font-size: var(--text-xs); color: var(--navy-300); }
.event-date-dow   { font-size: var(--text-xs); color: var(--navy-300); margin-top: var(--space-1); }

.event-info-col {
  padding: var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.event-info-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy-900);
}

.event-info-meta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.event-desc { font-size: var(--text-sm); color: var(--color-text-muted); }

.event-progress {
  margin-top: var(--space-3);
}

.event-progress-bar {
  height: 6px;
  background: var(--color-surface-2);
  border-radius: 3px;
  overflow: hidden;
}

.event-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  border-radius: 3px;
  transition: width 0.6s ease;
}

.event-progress-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

.event-actions-col {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  align-items: flex-end;
  justify-content: center;
  min-width: 140px;
}

.event-agenda { font-size: var(--text-sm); margin-top: var(--space-3); }
.event-agenda summary { cursor: pointer; color: var(--gold-600); font-weight: 600; font-size: var(--text-sm); padding: var(--space-2) 0; }
.event-agenda ol { padding-left: var(--space-5); margin-top: var(--space-2); }
.event-agenda li { padding-block: var(--space-1); font-size: var(--text-sm); color: var(--color-text-muted); }
.event-agenda time { color: var(--navy-900); font-weight: 600; margin-right: var(--space-2); }

.about-meetings { background: var(--color-surface-2); }
.about-meetings .card { height: 100%; }

/* ---- EVENT REGISTRATION PAGE ---- */
.event-reg-info {
  background: var(--navy-900);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  gap: var(--space-5);
  align-items: center;
  margin-bottom: var(--space-8);
  color: white;
  border: 1px solid rgba(201,151,28,0.2);
}

.event-reg-date {
  background: var(--gold-500);
  border-radius: var(--radius-lg);
  text-align: center;
  padding: var(--space-3) var(--space-4);
  color: var(--navy-900);
  min-width: 80px;
  font-family: var(--font-display);
  flex-shrink: 0;
}

.event-reg-details { flex: 1; }
.event-reg-title   { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: white; margin: var(--space-2) 0; }
.event-reg-meta    { display: flex; gap: var(--space-4); flex-wrap: wrap; font-size: var(--text-sm); color: var(--navy-200); }

.form-section {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  margin-bottom: var(--space-6);
}

.form-section-title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy-700);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-border);
}

.reg-success {
  text-align: center;
  padding: var(--space-8) var(--space-4);
}

.success-icon  { font-size: 4rem; margin-bottom: var(--space-4); }
.success-title { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; color: var(--navy-900); margin-bottom: var(--space-4); }

.success-card {
  background: var(--color-surface-2);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  margin: var(--space-5) auto;
  max-width: 480px;
  text-align: left;
}

.success-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: var(--space-2);
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-sm);
}

.success-detail-row:last-of-type { border-bottom: none; }
.success-detail-row span { color: var(--color-text-muted); }
.success-detail-row strong { color: var(--navy-900); }

/* ---- ADVERTISE PAGE ---- */
.benefits-section { background: var(--navy-50); }

.benefit-card {
  background: white;
  border-radius: var(--radius-xl);
  /* padding: var(--space-7); */
  padding:20px;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.benefit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.benefit-icon { font-size: 2.5rem; margin-bottom: var(--space-4); }
.benefit-card h3 { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; color: var(--navy-900); margin-bottom: var(--space-3); }
.benefit-card p  { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.7; }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-5);
}

.package-card {
  background: white;
  border-radius: var(--radius-xl);
  border: 2px solid var(--color-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}

.package-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-3px); }
.package-card--featured { border-color: var(--gold-500); box-shadow: var(--shadow-lg); }

.package-badge {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
}

.package-card-top {
  padding: var(--space-6) var(--space-5) var(--space-5);
  color: white;
}

.package-top--free    { background: linear-gradient(135deg, var(--navy-700), var(--navy-900)); }
.package-top--quarter { background: linear-gradient(135deg, #2d6a4f, #1b4332); }
.package-top--half    { background: linear-gradient(135deg, var(--navy-800), var(--navy-900)); }
.package-top--full    { background: linear-gradient(135deg, var(--gold-600), var(--gold-800)); }
.package-top--premium { background: linear-gradient(135deg, #7c3aed, #4c1d95); }

.package-name  { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; margin-bottom: var(--space-2); }
.package-price { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; line-height: 1; }
.package-period { font-size: var(--text-xs); opacity: 0.65; margin-top: 4px; }

.package-body { padding: var(--space-5); flex: 1; display: flex; flex-direction: column; gap: var(--space-4); }

.package-features {
  list-style: none;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.package-features li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding-left: var(--space-1);
}

/* Radio card for package selection */
.radio-card {
  display: block;
  cursor: pointer;
  margin-bottom: var(--space-2);
}

.radio-card input[type=radio] { position: absolute; opacity: 0; width: 0; height: 0; }

.radio-card-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  background: white;
  transition: var(--transition);
  font-size: var(--text-sm);
}

.radio-card input:checked + .radio-card-inner {
  border-color: var(--gold-500);
  background: var(--gold-50);
}

.radio-card-title { font-weight: 600; color: var(--navy-800); }
.radio-card-price { color: var(--gold-600); font-weight: 700; }

/* Ad size preview */
.ad-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: var(--color-surface-2);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
}

.ad-preview-box {
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  color: white;
  line-height: 1.4;
}

.ad-preview-box small { font-weight: 400; opacity: 0.8; }
.full-page    { grid-column: 1 / -1; background: var(--navy-800); }
.half-page    { background: var(--navy-600); }
.quarter-page { background: var(--navy-400); }

/* ---- ARCHIVES PAGE ---- */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: var(--space-10);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-500), var(--navy-300));
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-8);
  display: flex;
  gap: var(--space-6);
  align-items: flex-start;
}

.timeline-marker {
  position: absolute;
  left: calc(-1 * var(--space-10) + 2px);
  top: 4px;
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: var(--text-xs);
  font-weight: 800;
  padding: 4px 6px;
  border-radius: 4px;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 1;
}

.timeline-content {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  flex: 1;
  box-shadow: var(--shadow-sm);
}

.timeline-content h3 { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; color: var(--navy-900); margin-bottom: var(--space-2); }
.timeline-content p  { font-size: var(--text-sm); color: var(--color-text-muted); line-height: 1.7; margin-bottom: var(--space-3); }

/* Detail grid for admin modal */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.detail-grid div { padding: var(--space-3); background: var(--color-surface-2); border-radius: var(--radius); }
.detail-grid strong { font-size: var(--text-xs); color: var(--color-text-muted); display: block; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.detail-grid p { font-size: var(--text-sm); color: var(--navy-800); font-weight: 600; margin: 0; }

/* ---- ADMIN supplemental ---- */
.admin-topbar-right { display: flex; align-items: center; gap: var(--space-3); }
.admin-topbar { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: var(--space-8); flex-wrap: wrap; gap: var(--space-4); }
.admin-page-title { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; color: var(--navy-900); }

/* ---- MISC HELPERS ---- */
.align-center { align-items: center; }
.ml-auto      { margin-left: auto; }
.link-gold    { color: var(--gold-600); text-decoration: none; font-weight: 600; }
.link-gold:hover { text-decoration: underline; }
.req          { color: var(--color-error); }
.text-xs      { font-size: var(--text-xs); }
.text-sm      { font-size: var(--text-sm); }
.mt-2         { margin-top: var(--space-2); }
.mt-4         { margin-top: var(--space-4); }
.mt-6         { margin-top: var(--space-6); }
.mt-8         { margin-top: var(--space-8); }
.mb-4         { margin-bottom: var(--space-4); }
.mb-6         { margin-bottom: var(--space-6); }
.gap-3        { gap: var(--space-3); }
.gap-4        { gap: var(--space-4); }
.justify-center { justify-content: center; }
.flex-wrap    { flex-wrap: wrap; }
.flex-col     { flex-direction: column; }
.flex-between { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap; }
.hidden       { display: none !important; }

/* Print styles for event ticket */
@media print {
  .site-nav, .site-footer, .btn, .breadcrumb { display: none !important; }
  .success-card { border: 2px solid #000; }
}

/* ---- RESPONSIVE SUPPLEMENTS ---- */
@media (max-width: 900px) {
  .summit-banner { flex-direction: column; text-align: center; }
  .summit-banner-right { align-items: center; }
  .summit-meta { justify-content: center; }
  .event-card { grid-template-columns: 1fr; }
  .event-date-col { flex-direction: row; gap: var(--space-3); align-items: center; justify-content: flex-start; padding: var(--space-4) var(--space-5); }
  .event-actions-col { flex-direction: row; min-width: auto; padding: 0 var(--space-5) var(--space-5); }
  .detail-grid { grid-template-columns: 1fr; }
  .timeline { padding-left: var(--space-8); }
}

@media (max-width: 640px) {
  .login-card { max-width: 100%; }
  .event-reg-info { flex-direction: column; text-align: center; }
  .otp-boxes { gap: var(--space-1); }
  .form-section { padding: var(--space-4); }
  .packages-grid { grid-template-columns: 1fr; }
  .summit-banner { padding: var(--space-5); }
}

/* =============================================
   MISSING: events-hero-badge
   ============================================= */
.events-hero-badge {
  display: inline-block;
  background: rgba(201,151,28,0.15);
  border: 1px solid rgba(201,151,28,0.35);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-4);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-4);
}

/* =============================================
   MISSING: align-center utility
   ============================================= */
.align-center { align-items: center; }
.ml-auto { margin-left: auto; }

/* =============================================
   ACCOUNT / MEMBER DASHBOARD
   ============================================= */
.account-hero {
  background: var(--navy-800);
  padding: calc(var(--nav-height) + var(--space-10)) var(--space-8) var(--space-10);
  border-bottom: 2px solid var(--gold-500);
}

.account-hero-inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.account-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem,3vw,2rem);
  color: white;
  margin-bottom: 4px;
}

.avatar--xl {
  width: 72px; height: 72px;
  font-size: 1.6rem;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-800);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.account-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--space-8);
  align-items: start;
}

.account-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-4));
}

.account-nav {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.account-nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.account-nav-link:hover { background: var(--color-surface-2); color: var(--navy-800); }
.account-nav-link.active { background: var(--gold-50); color: var(--gold-600); }
.account-nav-link--danger { color: #ef4444; }
.account-nav-link--danger:hover { background: #fef2f2; color: #dc2626; }

.account-section { animation: fadeIn 0.2s ease; }

@media (max-width: 768px) {
  .account-layout { grid-template-columns: 1fr; }
  .account-sidebar { position: static; }
  .account-nav { flex-direction: row; flex-wrap: wrap; }
}

.action-buttons{
    display:flex;
    align-items:center;
    gap:18px;
}

.btn-view{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:64px;
    height:30px;
    padding:0 18px;
    border:1px solid #e1c36a;
    border-radius:10px;
    background:#fff;
    color:#d4a017;
    font-size:13px;
    font-weight:500;
    text-decoration:none;
    transition:.3s;
}

.btn-view:hover{
    background:#d4a017;
    color:#fff;
}

.btn-call{
    color:#e91e63;
    text-decoration:none;
    font-size:16px;
    transition:.3s;
}

.btn-call:hover{
    transform:scale(1.1);
}

.btn-email{
    color:#d8c7ef;
    text-decoration:none;
    font-size:16px;
    transition:.3s;
}

.btn-email:hover{
    transform:scale(1.1);
}

.popup-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.6);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.popup-box{
    width:850px;
    max-width:95%;
    background:#fff;
    border-radius:20px;
    padding:25px;
    position:relative;
}

.popup-close{
    position:absolute;
    right:20px;
    top:15px;
    font-size:30px;
    cursor:pointer;
}

.popup-header{
    display:flex;
    gap:20px;
    align-items:center;
    background:#03153d;
    padding:20px;
    border-radius:15px;
    margin-bottom:20px;
}

.popup-avatar{
    width:60px;
    height:60px;
    border-radius:12px;
    background:#d4a017;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:bold;
}

.popup-header h3{
    color:#fff;
    margin:0;
}

.popup-header p{
    color:#f6c64a;
    margin:5px 0;
}

.popup-badge{
    background:#d4a017;
    color:#000;
    padding:4px 10px;
    border-radius:20px;
    font-size:12px;
}

.featured{
    margin-left:5px;
}

.popup-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.popup-grid div{
    background:#f7f7f7;
    padding:12px;
    border-radius:8px;
}

.popup-actions{
    display:flex;
    gap:10px;
    margin-top:20px;
}




.custom-modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    z-index:999999;
    justify-content:center;
    align-items:center;
    padding:20px;
}

.custom-modal-content{
    background:#fff;
    width:900px;
    max-width:95%;
    max-height:90vh;   /* important */
    overflow-y:auto;   /* important */
    border-radius:10px;
    padding:20px;
    position:relative;
}

.custom-modal-header{
    position:sticky;
    top:0;
    background:#fff;
    z-index:10;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-bottom:15px;
    border-bottom:1px solid #ddd;
    margin-bottom:15px;
}

.close-btn{
    border:none;
    background:none;
    font-size:24px;
    cursor:pointer;
    color:#000;
}

.row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-control{
    width:100%;
}

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

    .custom-modal-content{
        width:100%;
        max-height:95vh;
    }
}

.custom-modal-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-bottom:15px;
    border-bottom:1px solid #ddd;
    position:sticky;
    top:0;
    background:#fff;
    z-index:99999;
}

.close-btn{
    border:none;
    background:none;
    font-size:28px;
    cursor:pointer;
    color:#000;
    z-index:999999;
    position:relative;
}


.event-card{
    background:#fff;
    border-radius:20px;
    padding:26px;
    border-top:4px solid #18336a;
    box-shadow:0 2px 10px rgba(0,0,0,.05);

    display:flex;
    flex-direction:column;
}

.event-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:14px;
}

.event-name{
    font-size:18px;
    font-weight:700;
    color:#081f4e;
    line-height:1.4;
    margin-bottom:16px;
    text-align:left;
}

.event-details{
    width:100%;
}

.detail-item{
    display:block;
    margin-bottom:10px;
    color:#66708d;
    font-size:15px;
    text-align:left;
}

.registration-area{
    margin-top:18px;
    width:100%;
}

.registration-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:8px;
}

.progress-bar{
    width:100%;
    height:10px;
    background:#ececec;
    border-radius:50px;
    overflow:hidden;
}

.progress-fill{
    height:100%;
    background:#c79610;
    border-radius:50px;
}

.registration-area small{
    display:block;
    margin-top:8px;
    color:#777;
}

.event-footer{
    display:flex;
    align-items:center;
    gap:18px;
    margin-top:22px;
}

.btn-details{
    border:1px solid #d4a017;
    background:#fff;
    color:#d4a017;
    padding:10px 20px;
    border-radius:12px;
    font-weight:600;
}

.btn-edit{
    color:#ef6b4f;
    text-decoration:none;
    font-weight:600;
}
.events-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:24px;
    margin-top:24px;
}

.event-card{
    width:100%;
    background:#fff;
    border-radius:20px;
    padding:26px;
    border-top:4px solid #18336a;
    box-shadow:0 4px 14px rgba(0,0,0,.05);
}

.event-card.summit{
    border-top-color:#d4a017;
}

.event-card.workshop{
    border-top-color:#ef6b24;
}

@media(max-width:991px){
    .events-grid{
        grid-template-columns:1fr;
    }
}
.event-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:16px;
}

.event-type,
.event-status{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:6px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    line-height:1;
}

.event-status.upcoming{
    background:#dff6e7;
    color:#12a150;
    border:1px solid #9adcb1;
}

.event-status.past{
    background:#f3efe8;
    color:#66708d;
    border:1px solid #ddd;
}
.event-card{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.event-name{
    width:100%;
    text-align:left;
}

.event-details{
    width:100%;
}

.detail-item{
    text-align:left;
}

.registration-area{
    width:100%;
}

.event-footer{
    width:100%;
    justify-content:flex-start;
}
.event-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    margin-bottom:16px;
}

.event-type{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:5px 14px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
    line-height:1;
}

/* LEFT BADGE COLORS */
.event-type.meeting{
    background:#f1f3f7;
    border:1px solid #cfd6e4;
    color:#18336a;
}

.event-type.summit{
    background:#fdf4df;
    border:1px solid #e5c56b;
    color:#c79610;
}

.event-type.workshop{
    background:#fff0e8;
    border:1px solid #efb08f;
    color:#ef6b24;
}

/* RIGHT BADGE */
.event-status{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:5px 14px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
    line-height:1;
}

.event-status.upcoming{
    background:#dff6e7;
    border:1px solid #9adcb1;
    color:#12a150;
}

.event-status.past{
    background:#f3efe8;
    border:1px solid #ddd;
    color:#66708d;
}

.events-list{
    display:flex;
    flex-direction:column;
    gap:28px;
}

.event-row{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    display:flex;
    border:1px solid #eadfc8;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.event-date-box{
    width:120px;
    background:#021338;
    color:#fff;
    text-align:center;
    padding:28px 10px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.event-month{
    color:#d4a017;
    font-size:20px;
    font-weight:700;
    letter-spacing:1px;
}

.event-day{
    font-size:56px;
    line-height:1;
    font-weight:800;
    margin:8px 0;
}

.event-year{
    font-size:18px;
    opacity:.9;
}

.event-weekday{
    margin-top:10px;
    font-weight:600;
}

.event-content{
    flex:1;
    padding:24px;
}

.event-top-tags{
    display:flex;
    gap:10px;
    margin-bottom:12px;
}

.event-badge{
    padding:6px 14px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
}

.event-badge.meeting{
    background:#eef2ff;
    color:#18336a;
}

.event-badge.summit{
    background:#fff3d8;
    color:#c99608;
}

.event-badge.workshop{
    background:#fff0e6;
    color:#ef6b24;
}

.price-badge{
    background:#fff1e5;
    color:#ef6b24;
    border:1px solid #ef6b24;
    border-radius:20px;
    padding:6px 12px;
    font-weight:700;
}
.event-meta{
    display:flex;
    flex-wrap:wrap;
    gap:22px;
    margin-bottom:14px;
    color:#66708d;
}

.event-desc{
    color:#5f6880;
    line-height:1.8;
    margin-bottom:20px;
}

.event-progress{
    height:8px;
    background:#ececec;
    border-radius:50px;
    overflow:hidden;
}

.event-progress-fill{
    height:100%;
    background:#d4a017;
}

.event-progress-text{
    margin-top:10px;
    color:#666;
    font-size:14px;
}

.event-actions-right{
    width:170px;
    padding:24px;
    display:flex;
    flex-direction:column;
    gap:12px;
    justify-content:center;
}

.register-btn{
    background:#d4a017;
    color:#000;
    text-align:center;
    padding:14px;
    border-radius:12px;
    font-weight:700;
    text-decoration:none;
}

.share-btn{
    background:#fff;
    border:1px solid #e4d4b0;
    padding:12px;
    border-radius:12px;
    cursor:pointer;
}

@media(max-width:991px){
    .event-row{
        flex-direction:column;
    }
    .event-date-box{
        width:100%;
        flex-direction:row;
        gap:15px;
        align-items:center;
        justify-content:center;
    }
    .event-actions-right{
        width:100%;
        flex-direction:row;
        padding:20px;
    }
}
.event-tab.active,
.filter-chip.active{
    background:#d4a017;
    color:#fff;
    border-color:#d4a017;
}

.event-tab,
.filter-chip{
    cursor:pointer;
    transition:.3s;
}
.event-filter-row{
    display:flex;
    align-items:center;
    gap:15px;
    width:100%;
}

.search-box{
    flex:1;
    min-width:280px;
}

.event-select{
    width:320px;
    min-width:320px;
}

.filter-chips{
    display:flex;
    align-items:center;
    gap:10px;
    margin-left:auto;
}
.filter-chip{
    border:1px solid #d8b04c;
    background:#fff;
    color:#4b5675;
    padding:10px 22px;
    border-radius:999px;
    cursor:pointer;
    transition:.3s;
}
.filter-chip.active{
    background:#d8a51f;
    color:#fff;
    border-color:#d8a51f;
}
.custom-modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.5);
    justify-content:center;
    align-items:center;
    z-index:99999;
}
.custom-modal-content{
    background:#fff;
    border-radius:10px;
    max-width:800px;
    width:90%;
    padding:20px;
}
/* City Dropdown */
.dir-select{
    background-color: #1b2745 !important;
    color: #fff !important;
}
/* Dropdown option list */
.dir-select option{
    background: #03153d !important;   /* dropdown background */
    color: #ffffff !important;        /* text color */
    padding: 10px;
}
/* Selected option */
.dir-select option:checked{
    background: #d4a017 !important;
    color: #000 !important;
}
/* Hover option (supported in some browsers) */
.dir-select option:hover{
    background: #d4a017 !important;
    color: #000 !important;
}
.active-filters{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:20px;
}

.filter-label{
    font-weight:600;
    color:#18336a;
}

.filter-tag{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:6px 12px;
    background:#fdf4df;
    border:1px solid #d4a017;
    border-radius:30px;
    font-size:13px;
    color:#18336a;
}

.filter-tag button{
    border:none;
    background:none;
    cursor:pointer;
    color:#d9534f;
    font-weight:bold;
    font-size:14px;
}

.active-filters-wrapper{
    margin-bottom:20px;
}

.active-filters{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:8px;
}

.filtered-result-count{
    font-size:14px;
    color:#666;
    font-weight:500;
}

.filtered-result-count strong{
    color:#18336a;
    font-size:18px;
    font-weight:700;
}
.nav-actionss{
    display:flex;
    align-items:center;
    gap:10px;
}

.nav-actionss form{
    margin:0;
    display:inline-block;
}
.auth-form-wrap{
    background:
    linear-gradient(
        135deg,
        #041634,
        #0c1e46,
        #041634
    );

    color:#fff;
}

.auth-form-title,
.form-section-title,
.form-label{
    color:#fff;
}

.auth-form-subtitle{
    color:#d6d6d6;
}

.registration-card{
    max-width:600px;
    margin:auto;
    text-align:center;
    padding:50px;
}

.registration-buttons{
    display:flex;
    flex-direction:column;
    gap:20px;
    margin-top:40px;
}

.reg-btn{
    width:100%;
}

.mobile-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.mobile-popup-content{
    width:400px;
    background:#fff;
    padding:30px;
    border-radius:15px;
}


.enquiry-modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.6);
    z-index:99999;
    justify-content:center;
    align-items:center;
}

.enquiry-box{
    background:#fff;
    width:400px;
    padding:25px;
    border-radius:10px;
}

.enquiry-header{
    font-size:20px;
    font-weight:600;
    margin-bottom:15px;
}
