/* ================================================================
   BRAHMASETU — /assets/css/style.css
   Website-wide stylesheet: global, navbar, footer, shared components
   Breakpoints: 360px | 480px | 768px | 992px | 1280px | 1440px
================================================================ */


/* ════════════════════════════════════════════════════════════════
   1. CSS VARIABLES
════════════════════════════════════════════════════════════════ */
:root {
  /* Brand */
  --navy:       #0a1836;
  --navy2:      #1e3a5f;
  --gold:       #d4af37;
  --gold2:      #f0c64a;
  --cream:      #fdf8f0;

  /* UI */
  --text:       #0f172a;
  --muted:      #64748b;
  --bg:         #f7f9fc;
  --white:      #ffffff;
  --border:     #eef1f6;
  --danger:     #dc2626;

  /* Navbar height — used by sticky offsets site-wide */
  --nav-h:      72px;

  /* Radii */
  --r-sm:       8px;
  --r-md:       14px;
  --r-lg:       20px;
  --r-pill:     50px;

  /* Shadows */
  --shadow-sm:  0 4px 16px rgba(0,0,0,.06);
  --shadow-md:  0 8px 30px rgba(0,0,0,.09);
  --shadow-lg:  0 20px 50px rgba(10,24,54,.14);
}


/* ════════════════════════════════════════════════════════════════
   2. GLOBAL RESET & BASE
════════════════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: 0.1px;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.3px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
}


/* ════════════════════════════════════════════════════════════════
   3. SHARED COMPONENTS (used across all pages)
════════════════════════════════════════════════════════════════ */

/* Card */
.bs-card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .3s ease, box-shadow .3s ease;
}
.bs-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.11);
}

/* Hero (shared base — pages extend with their own bg image) */
.bs-hero {
  background: linear-gradient(135deg, rgba(10,24,54,.92), rgba(30,58,95,.88)),
              url('/assets/img/hero-bg.jpg') center/cover no-repeat;
  padding: 60px 0 50px;
  color: var(--white);
  text-align: center;
}
.bs-hero h1 { font-size: 38px; font-weight: 800; margin-bottom: 10px; }
.bs-hero p  { font-size: 16px; opacity: .85; margin-bottom: 24px; }

/* Sidebar */
.bs-sidebar {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: calc(var(--nav-h) + 16px);
}

/* Form card */
.bs-form-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

/* Section title (filter labels inside sidebar) */
.bs-section-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #888;
  margin: 28px 0 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid #f0f0f0;
}

/* Pill badge */
.bs-pill {
  background: #e8f4fd;
  color: #1a5276;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Tag */
.bs-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--r-pill);
}

/* Empty state */
.bs-empty {
  text-align: center;
  padding: 60px 20px;
  color: #aaa;
}
.bs-empty i {
  font-size: 56px;
  display: block;
  margin-bottom: 16px;
}

/* Pagination */
.pagination .page-link {
  border-radius: var(--r-sm);
  margin: 0 3px;
  color: var(--text);
}
.pagination .page-item.active .page-link {
  background: var(--navy2);
  border-color: var(--navy2);
  color: var(--white);
}


/* ════════════════════════════════════════════════════════════════
   4. NAVBAR
════════════════════════════════════════════════════════════════ */
.bs-navbar {
  background: linear-gradient(135deg, #0a1836 0%, #1e3a5f 100%);
  border-bottom: 1px solid rgba(212,175,55,0.18);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: box-shadow .3s ease;
}
.bs-navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}

/* Navbar inner grid: logo | nav | auth */
.bs-navbar .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  position: relative;
  padding: 0 2rem;
  max-width: -webkit-fill-available;
}

/* ── Logo ── */
.bs-logo img {
  height: 50px;
  width: auto;
  display: block;
}

/* ── Hamburger toggler (hidden on desktop) ── */
.bs-toggler {
  display: none;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(212,175,55,.35);
  border-radius: var(--r-sm);
  padding: 7px 10px;
  cursor: pointer;
  color: rgba(255,255,255,.85);
  font-size: 18px;
  transition: .2s;
  grid-column: 3;
  justify-self: end;
  align-items: center;
  line-height: 1;
}
.bs-toggler:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,175,55,.1);
}

/* ── Main nav list ── */
.bs-nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-shrink: 1;
}
.bs-nav .nav-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  padding: 8px 11px;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: all .2s ease;
  white-space: nowrap;
  position: relative;
  letter-spacing: .1px;
}
.bs-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 11px; right: 11px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .25s ease;
}
.bs-nav .nav-link:hover                   { color: #fff; background: rgba(255,255,255,.07); }
.bs-nav .nav-link:hover::after            { transform: scaleX(1); }
.bs-nav .nav-link.active-page             { color: var(--gold); font-weight: 600; }
.bs-nav .nav-link.active-page::after      { transform: scaleX(1); background: var(--gold); }

/* ── Dropdown nav item ── */
.bs-about-item {
  position: relative;
}
.bs-about-item .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.bs-about-chevron {
  font-size: 10px;
  color: rgba(255,255,255,.5);
  transition: transform .2s;
  pointer-events: none;
}
.bs-about-item.open .bs-about-chevron {
  transform: rotate(180deg);
}

/* Dropdown panel (desktop) */
.bs-about-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 210px;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(10,24,54,.13);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transition: all .2s ease;
  z-index: 1001;
}
.bs-about-item.open .bs-about-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.bs-about-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: .15s ease;
  white-space: nowrap;
}
.bs-about-dropdown a i {
  font-size: 15px;
  width: 18px;
  text-align: center;
  color: var(--muted);
  flex-shrink: 0;
}
.bs-about-dropdown a:hover            { background: #f8fafc; color: var(--navy); }
.bs-about-dropdown a:hover i          { color: var(--navy2); }

/* ── Auth area (right side) ── */
.bs-nav-auth {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  margin-left: 8px;
}

/* Sign In button */
.bs-btn-login {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(212,175,55,.5);
  background: transparent;
  color: rgba(255,255,255,.9);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all .22s ease;
  white-space: nowrap;
}
.bs-btn-login:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,.1);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(212,175,55,.3);
}

/* Join Free button */
.bs-btn-register {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all .22s ease;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(212,175,55,.35);
}
.bs-btn-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(212,175,55,.5);
  color: var(--navy);
}

/* ── Logged-in user pill ── */
.bs-user-menu { position: relative; }

.bs-user-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 6px;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(212,175,55,.4);
  background: rgba(255,255,255,.08);
  cursor: pointer;
  transition: all .2s ease;
  color: rgba(255,255,255,.9);
}
.bs-user-trigger:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,.12);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(212,175,55,.3);
}
.bs-user-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bs-user-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(255,255,255,.9);
}
.bs-user-chevron {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  transition: transform .2s;
}
.bs-user-menu.open .bs-user-chevron { transform: rotate(180deg); }

/* User dropdown panel */
.bs-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 220px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .22s ease;
  z-index: 1000;
}
.bs-user-menu.open .bs-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.bs-dropdown-header {
  padding: 10px 12px 12px;
  border-bottom: 1px solid #f4f6fb;
  margin-bottom: 6px;
}
.bs-dropdown-user-name  { font-weight: 700; font-size: 14px; color: var(--navy); }
.bs-dropdown-user-email {
  font-size: 11px; color: var(--muted); margin-top: 2px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.bs-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: .15s ease;
}
.bs-dropdown a:hover          { background: #f8fafc; color: var(--navy); }
.bs-dropdown a i              { font-size: 15px; width: 18px; text-align: center; color: var(--muted); }
.bs-dropdown a:hover i        { color: var(--navy2); }
.bs-dropdown .bs-dd-logout    { color: var(--danger); }
.bs-dropdown .bs-dd-logout i  { color: var(--danger); }
.bs-dropdown .bs-dd-logout:hover { background: #fef2f2; color: #b91c1c; }
.bs-dropdown-divider          { height: 1px; background: #f1f4f8; margin: 6px 0; }


/* ════════════════════════════════════════════════════════════════
   5. NAVBAR — RESPONSIVE
════════════════════════════════════════════════════════════════ */

/* ── Desktop ≥992px: collapse always visible, centred nav ── */
@media (min-width: 992px) {
  .bs-nav-collapse           { display: contents !important; }
  .bs-nav                    { justify-content: center; }
  .bs-nav-auth               { justify-content: flex-end; }
}

/* ── Tablet + Mobile <992px ── */
@media (max-width: 991px) {

  .bs-toggler { display: flex; }

  /* Collapsible panel drops below navbar */
  .bs-nav-collapse {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: linear-gradient(135deg, #0a1836 0%, #1e3a5f 100%);
    border-bottom: 1px solid rgba(212,175,55,.18);
    box-shadow: 0 16px 40px rgba(0,0,0,.35);
    padding: 16px 20px 20px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
    flex-direction: column;
    gap: 0;
    z-index: 998;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .bs-nav-collapse.open { display: flex; }

  /* Nav list stacked vertically */
  .bs-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    margin-bottom: 16px;
  }
  .bs-nav .nav-link {
    width: 100%;
    padding: 12px 8px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 15px;
  }
  .bs-nav .nav-link::after          { display: none; }
  .bs-nav li:last-child .nav-link   { border-bottom: none; }

  /* Dropdown: static inside mobile panel */
  .bs-about-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none !important;
    box-shadow: none;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 2px;
    margin: 0 0 4px 0;
    padding: 4px;
    display: none;
    background: rgba(255,255,255,.05);
    width: 100%;
  }
  .bs-about-item.open .bs-about-dropdown { display: block; }
  .bs-about-item .nav-link { border-bottom: 1px solid rgba(255,255,255,.08); }
  .bs-about-dropdown a {
    padding: 11px 16px;
    font-size: 14px;
    color: rgba(255,255,255,.75) !important;
  }
  .bs-about-dropdown a:hover {
    background: rgba(255,255,255,.1) !important;
    color: #fff !important;
  }

  /* Auth buttons stacked */
  .bs-nav-auth {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
  }
  .bs-btn-login,
  .bs-btn-register {
    justify-content: center;
    border-radius: 12px;
    padding: 12px;
    font-size: 14px;
  }
  .bs-btn-login {
    border-color: rgba(212,175,55,.4);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.9);
  }

  /* User pill */
  .bs-user-trigger       { justify-content: center; border-radius: 12px; }
  .bs-user-chevron       { display: none; }

  /* User dropdown: static inside panel */
  .bs-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    margin-top: 4px;
    background: rgba(255,255,255,.06);
  }
  .bs-dropdown a                  { color: rgba(255,255,255,.85); }
  .bs-dropdown a:hover            { background: rgba(255,255,255,.1); color: #fff; }
  .bs-dropdown-user-name          { color: #fff !important; }
  .bs-dropdown-user-email         { color: rgba(255,255,255,.5) !important; }
  .bs-dropdown-header             { border-color: rgba(255,255,255,.1) !important; }
  .bs-dropdown-divider            { background: rgba(255,255,255,.1) !important; }
}

/* ── Small phones ≤480px ── */
@media (max-width: 480px) {
  .bs-navbar .container {
    grid-template-columns: auto 1fr;
    gap: 8px;
    padding: 0 1rem;
  }
  .bs-toggler {
    grid-column: 2;
    justify-self: end;
  }
  .bs-logo img { height: 42px; }
}


/* ════════════════════════════════════════════════════════════════
   6. FOOTER
════════════════════════════════════════════════════════════════ */
.footer-premium {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #cbd5e1;
  position: relative;
}

/* Gold top line */
.footer-premium::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.footer-premium h5 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 16px;
}

.footer-premium p {
  font-size: 14px;
  line-height: 1.8;
  color: #cbd5e1;
}

/* Links */
.footer-links li  { margin-bottom: 10px; }
.footer-links a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 14px;
  transition: all .3s ease;
  display: inline-block;
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

/* Contact block */
.footer-contact span {
  color: var(--gold);
  font-weight: 600;
}
.footer-contact i {
  color: var(--gold);
  margin-right: 8px;
}

/* Logo */
.footer-logo {
  max-width: 160px;
  margin-bottom: 15px;
}

/* Divider + bottom bar */
.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom {
  font-size: 13px;
  color: #94a3b8;
}


/* ════════════════════════════════════════════════════════════════
   7. FOOTER — RESPONSIVE
════════════════════════════════════════════════════════════════ */

/* ── Tablet 768px: keep 2-column look ── */
@media (max-width: 991px) {
  .footer-logo { max-width: 130px; }
  .footer-premium h5 { font-size: 15px; margin-bottom: 14px; }
}

/* ── Mobile <768px: stack columns ── */
@media (max-width: 767px) {
  .footer-premium .py-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2rem !important;
  }
  .footer-col-brand {
    text-align: center;
  }
  .footer-logo {
    margin: 0 auto 14px;
    max-width: 120px;
  }
  .footer-links a { font-size: 14px; }
}

/* ── Small phones ≤480px ── */
@media (max-width: 480px) {
  .footer-premium .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 1.5rem !important;
  }
  .footer-premium h5   { font-size: 14px; }
  .footer-bottom       { font-size: 12px; }
}


/* ════════════════════════════════════════════════════════════════
   8. HERO — RESPONSIVE (shared base)
════════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .bs-hero h1  { font-size: 28px; }
  .bs-hero p   { font-size: 14px; margin-bottom: 18px; }
}
@media (max-width: 480px) {
  .bs-hero        { padding: 44px 0 36px; }
  .bs-hero h1     { font-size: 24px; }
  .bs-hero p      { font-size: 13px; }
}


/* ════════════════════════════════════════════════════════════════
   9. LARGE DESKTOP ENHANCEMENTS ≥1440px
════════════════════════════════════════════════════════════════ */
@media (min-width: 1440px) {
  .bs-hero h1         { font-size: 46px; }
  .bs-hero p          { font-size: 18px; }
  .bs-nav .nav-link   { font-size: 16px; padding: 8px 14px; }
}


/* ════════════════════════════════════════════════════════════════
   10. LIST BUSINESSES PAGE  (lb-*)
════════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.lb-hero {
  background: linear-gradient(135deg, rgba(8,18,44,.9), rgba(10,24,54,.85)),
              url('/uploads/logo/l-2.jpg') center/cover no-repeat;
  padding: 70px 0 50px;
  color: #fff;
  text-align: center;
}
.lb-hero h1 { font-size: 40px; font-weight: 800; margin-bottom: 10px; }
.lb-hero p  { font-size: 16px; opacity: 1; margin-bottom: 28px; }

/* ── Search bar ── */
.lb-searchbar {
  display: flex;
  background: #fff;
  border-radius: 60px;
  padding: 7px 7px 7px 22px;
  max-width: 620px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0,0,0,.2);
  gap: 8px;
}
.lb-searchbar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  color: #0f172a;
  background: transparent;
  min-width: 0;
}
.lb-searchbar button {
  border-radius: 50px;
  padding: 11px 28px;
  font-weight: 700;
  font-size: 14px;
  background: linear-gradient(135deg, #d4af37, #f0c64a);
  border: none;
  color: #0a1836;
  white-space: nowrap;
  flex-shrink: 0;
}
.lb-stats { margin-top: 18px; font-size: 14px; color: rgba(255,255,255,.55); }
.lb-stats strong { color: #d4af37; font-size: 18px; }

/* ── Layout ── */
.lb-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  padding: 36px 0 80px;
}

/* ── Filter panel ── */
.lb-sidebar { position: relative; }
.lb-filter-panel {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  border: 1px solid #eef1f6;
  position: sticky;
  top: calc(var(--nav-h) + 12px);
}
.lb-filter-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lb-filter-clear { font-size: 12px; color: #ef4444; text-decoration: none; font-weight: 600; }
.lb-filter-clear:hover { color: #dc2626; }
.lb-filter-group { margin-bottom: 22px; }
.lb-filter-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #94a3b8;
  font-weight: 700;
  margin-bottom: 10px;
}
.lb-filter-select {
  width: 100%;
  padding: 10px 36px 10px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: 14px;
  color: #0f172a;
  background: #f8fafc url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 14px center;
  outline: none;
  transition: .2s ease;
  appearance: none;
}
.lb-filter-select:focus { border-color: #d4af37; background-color: #fff; }
.lb-filter-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: 14px;
  color: #0f172a;
  background: #f8fafc;
  outline: none;
  transition: .2s ease;
}
.lb-filter-input:focus { border-color: #d4af37; background-color: #fff; }
.lb-filter-input::placeholder { color: #94a3b8; }

/* Tier pills */
.lb-tier-pills { display: flex; flex-direction: column; gap: 8px; }
.lb-tier-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  cursor: pointer;
  transition: .2s ease;
  text-decoration: none;
  color: #374151;
  font-size: 13px;
  font-weight: 500;
}
.lb-tier-pill:hover        { border-color: #d4af37; background: #fffbeb; color: #374151; }
.lb-tier-pill.active       { border-color: #d4af37; background: linear-gradient(135deg, #fef9c3, #fffbeb); font-weight: 700; }
.lb-tier-dot               { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

.lb-apply-btn {
  width: 100%;
  padding: 12px;
  border-radius: 50px;
  background: linear-gradient(135deg, #0a1836, #0f2d5e);
  color: #d4af37;
  border: none;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: .3s ease;
  margin-top: 6px;
}
.lb-apply-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(10,24,54,.3); }

/* Subcategory reveal */
.lb-subcat-group { margin-top: -10px; margin-bottom: 22px; animation: lbSubFade .2s ease; }
@keyframes lbSubFade { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }
.lb-subcat-label {
  font-size: 10px; text-transform: uppercase; letter-spacing: .8px;
  color: #d4af37; font-weight: 700; margin-bottom: 8px;
  display: flex; align-items: center; gap: 6px;
}
.lb-subcat-label::before { content: '↳'; font-size: 13px; }

/* Active filter pills */
.lb-active-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.lb-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}
.lb-filter-pill a       { color: #93c5fd; text-decoration: none; font-size: 14px; }
.lb-filter-pill a:hover { color: #dc2626; }

/* ── Business card grid ── */
.lb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.lb-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: .35s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  border: 1px solid #eef1f6;
  display: flex;
  flex-direction: column;
}
.lb-card:hover { transform: translateY(-7px); box-shadow: 0 18px 45px rgba(0,0,0,.11); }
.lb-card[data-tier="premium_gold"] { border-left: 3px solid #d4af37; }
.lb-card[data-tier="gold"]         { border-left: 3px solid #eab308; }
.lb-card[data-tier="platinum"]     { border-left: 3px solid #3b82f6; }

.lb-card-img-wrap { position: relative; height: 190px; overflow: hidden; }
.lb-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: .4s ease; }
.lb-card:hover .lb-card-img-wrap img { transform: scale(1.05); }

.lb-status-badge { position: absolute; top: 12px; right: 12px; padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 600; color: #fff; }
.status-open    { background: #16a34a; }
.status-closed  { background: #dc3545; }
.status-soon    { background: #d97706; }
.status-closing { background: #ea580c; }

.lb-tier-badge-card { position: absolute; top: 12px; left: 12px; font-size: 10px; font-weight: 800; padding: 3px 10px; border-radius: 20px; letter-spacing: .5px; }
.tier-premium_gold  { background: linear-gradient(135deg, #d4af37, #f0c64a); color: #0a1836; }
.tier-gold          { background: #fef9c3; color: #92660a; }
.tier-platinum      { background: #fff; color: #1e40af; border: 1px solid #bfdbfe; }

.lb-card-body    { padding: 18px 18px 12px; flex: 1; }
.lb-card-name    { font-size: 15px; font-weight: 700; color: #0f172a; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; text-transform: capitalize; }
.lb-card-cat     { font-size: 12px; color: #64748b; margin-bottom: 8px; }
.lb-card-loc     { font-size: 12px; color: #94a3b8; display: flex; align-items: center; gap: 4px; }
.lb-card-footer  { padding: 12px 18px 16px; border-top: 1px solid #f1f4f8; display: flex; justify-content: space-between; align-items: center; }
.lb-card-phone   { font-size: 13px; color: #374151; font-weight: 500; display: none; }
.lb-view-btn     { padding: 7px 18px; border-radius: 50px; background: #0f172a; color: #d4af37; font-size: 12px; font-weight: 700; text-decoration: none; transition: .25s ease; }
.lb-view-btn:hover { background: #1e293b; color: #f0c64a; }

/* ── Empty + pagination ── */
.lb-empty      { grid-column: 1/-1; text-align: center; padding: 80px 20px; }
.lb-empty-icon { font-size: 64px; margin-bottom: 20px; opacity: .4; }
.lb-empty h4   { font-size: 20px; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.lb-empty p    { color: #64748b; }

.lb-pagination { display: flex; justify-content: center; gap: 6px; margin-top: 40px; flex-wrap: wrap; }
.lb-page-btn   { padding: 9px 16px; border-radius: 10px; border: 1.5px solid #e2e8f0; background: #fff; color: #374151; font-size: 14px; font-weight: 600; text-decoration: none; transition: .2s ease; }
.lb-page-btn:hover    { border-color: #d4af37; color: #0a1836; }
.lb-page-btn.active   { background: #0a1836; border-color: #0a1836; color: #d4af37; }
.lb-page-btn.disabled { opacity: .4; pointer-events: none; }

.lb-results-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.lb-results-count  { font-size: 14px; color: #64748b; }
.lb-results-count strong { color: #0f172a; }
.lb-mobile-filters { display: none; margin-bottom: 16px; }


/* ── List businesses — RESPONSIVE ── */
@media (max-width: 1199px) {
  .lb-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
  .lb-layout { grid-template-columns: 1fr; }
  .lb-sidebar { display: none; }
  .lb-mobile-filters { display: block !important; }
}
@media (max-width: 767px) {
  .lb-hero h1 { font-size: 28px; }
  .lb-hero p  { font-size: 14px; }
  .lb-searchbar { padding: 6px 6px 6px 16px; }
  .lb-searchbar button { padding: 10px 18px; font-size: 13px; }
}
@media (max-width: 575px) {
  .lb-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .lb-hero         { padding: 44px 0 36px; }
  .lb-hero h1      { font-size: 24px; }
  .lb-searchbar    { flex-wrap: wrap; border-radius: 16px; padding: 10px 14px; }
  .lb-searchbar input  { width: 100%; font-size: 14px; }
  .lb-searchbar button { width: 100%; border-radius: 10px; padding: 11px; }
  .lb-layout       { padding: 24px 0 60px; }
}


/* ════════════════════════════════════════════════════════════════
   11. VIEW BUSINESS PAGE  (vb-*)
════════════════════════════════════════════════════════════════ */

.vb-page { background: #f7f9fc; min-height: 100vh; }

/* ── Hero ── */
.vb-hero { position: relative; height: 420px; overflow: hidden; background: #0a1836; }
.vb-hero-img    { width: 100%; height: 100%; object-fit: cover; opacity: .75; transition: .4s ease; }
.vb-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(10,24,54,.85) 100%); }
.vb-hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px; }

.vb-tier-badge  { display: inline-flex; align-items: center; gap: 6px; background: linear-gradient(135deg,#d4af37,#f0c64a); color: #0a1836; font-size: 11px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; padding: 4px 14px; border-radius: 20px; margin-bottom: 12px; }
.vb-status-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 30px; margin-bottom: 10px; }
.vb-status-open  { background: #16a34a; color: #fff; }
.vb-status-closed{ background: #dc3545; color: #fff; }
.vb-hero-name   { font-size: 36px; font-weight: 800; color: #fff; margin-bottom: 8px; line-height: 1.2; text-transform: capitalize; }
.vb-hero-meta   { display: flex; flex-wrap: wrap; gap: 6px 20px; align-items: center; }
.vb-hero-meta-item { font-size: 14px; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 5px; }

/* ── Body ── */
.vb-body { padding: 40px 0 80px; }
.vb-card { background: #fff; border-radius: 20px; padding: 28px; box-shadow: 0 4px 20px rgba(0,0,0,.06); border: 1px solid #eef1f6; margin-bottom: 22px; }
.vb-card-title { font-size: 17px; font-weight: 700; color: #0f172a; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; padding-bottom: 14px; border-bottom: 1px solid #f1f3f7; }

/* Hours */
.vb-hours-row      { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px solid #f5f7fa; font-size: 14px; }
.vb-hours-row:last-child { border-bottom: none; }
.vb-hours-row.today     { font-weight: 700; color: #0f172a; }
.vb-today-dot      { width: 7px; height: 7px; border-radius: 50%; background: #d4af37; margin-right: 6px; flex-shrink: 0; display: inline-block; }
.vb-open-time      { color: #16a34a; }
.vb-closed-time    { color: #dc3545; }

/* Sidebar */
.vb-sidebar { position: sticky; top: calc(var(--nav-h) + 12px); }
.vb-contact-card { background: linear-gradient(160deg, #0a1836 0%, #0f2d5e 100%); border-radius: 20px; padding: 28px; color: #fff; margin-bottom: 22px; }
.vb-contact-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.vb-contact-item  { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 14px; }
.vb-contact-item:last-of-type { border-bottom: none; }
.vb-contact-icon  { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.vb-contact-label { font-size: 10px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .5px; }
.vb-contact-val   { color: #fff; font-weight: 500; }
.vb-contact-val a { color: #93c5fd; text-decoration: none; }
.vb-contact-val a:hover { color: #bfdbfe; }

.vb-call-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 14px; margin-top: 20px; background: linear-gradient(135deg, #d4af37, #f0c64a); color: #0a1836; border: none; border-radius: 50px; font-weight: 700; font-size: 15px; text-decoration: none; transition: .3s ease; }
.vb-call-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212,175,55,.4); color: #0a1836; }
.vb-wa-btn  { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 13px; margin-top: 10px; background: #25d366; color: #fff; border: none; border-radius: 50px; font-weight: 700; font-size: 14px; text-decoration: none; transition: .3s ease; }
.vb-wa-btn:hover { background: #1ebe5d; color: #fff; transform: translateY(-2px); }

.vb-map-wrap { border-radius: 16px; overflow: hidden; height: 200px; margin-bottom: 20px; }

/* Share */
.vb-share-card  { background: #fff; border-radius: 18px; padding: 22px; border: 1px solid #eef1f6; box-shadow: 0 4px 16px rgba(0,0,0,.05); }
.vb-share-title { font-size: 14px; font-weight: 700; color: #0f172a; margin-bottom: 14px; }
.vb-share-btn   { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 10px 16px; border-radius: 50px; font-size: 13px; font-weight: 600; text-decoration: none; transition: .25s ease; border: none; cursor: pointer; }
.vb-share-wa    { background: #25d366; color: #fff; }
.vb-share-wa:hover  { background: #1ebe5d; color: #fff; }
.vb-share-fb    { background: #1877f2; color: #fff; }
.vb-share-fb:hover  { background: #0e65d0; color: #fff; }
.vb-share-copy  { background: #f1f5f9; color: #374151; }
.vb-share-copy:hover{ background: #e2e8f0; }

/* Info grid */
.vb-info-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.vb-info-item  { background: #f8fafc; border-radius: 14px; padding: 16px 18px; }
.vb-info-label { font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: #94a3b8; font-weight: 600; margin-bottom: 4px; }
.vb-info-val   { font-size: 14px; font-weight: 600; color: #1a1a1a; }

/* Related */
.vb-related-card { background: #fff; border-radius: 16px; overflow: hidden; transition: .3s ease; border: 1px solid #eef1f6; text-decoration: none; }
.vb-related-card:hover { transform: translateY(-5px); box-shadow: 0 14px 35px rgba(0,0,0,.1); }
.vb-related-img  { width: 100%; height: 140px; object-fit: cover; }
.vb-related-body { padding: 14px; }
.vb-related-name { font-size: 14px; font-weight: 700; color: #0f172a; margin-bottom: 3px; }
.vb-related-loc  { font-size: 12px; color: #64748b; }
.vb-description  { line-height: 1.85; color: #374151; font-size: 15px; }

/* ── View business — RESPONSIVE ── */
@media (max-width: 991px) {
  .vb-sidebar { position: static; }
}
@media (max-width: 767px) {
  .vb-hero           { height: 300px; }
  .vb-hero-content   { padding: 24px 20px; }
  .vb-hero-name      { font-size: 24px; }
  .vb-info-grid      { grid-template-columns: 1fr; }
  .vb-body           { padding: 24px 0 50px; }
}
@media (max-width: 480px) {
  .vb-hero           { height: 260px; }
  .vb-hero-name      { font-size: 20px; }
  .vb-card           { padding: 20px 16px; }
  .vb-contact-card   { padding: 20px 16px; }
}


/* ════════════════════════════════════════════════════════════════
   12. ADD BUSINESS PAGE  (ab-*)
════════════════════════════════════════════════════════════════ */

.ab-page { background: #f7f9fc; min-height: 100vh; }
.ab-hero { background: linear-gradient(135deg,rgba(8,18,44,.92),rgba(10,24,54,.88)),url('/uploads/logo/l-2.jpg') center/cover no-repeat; padding: 60px 0 50px; color: #fff; text-align: center; }
.ab-hero h1 { font-size: 36px; font-weight: 800; margin-bottom: 10px; }
.ab-hero p  { opacity: .7; font-size: 15px; margin: 0; }
.ab-layout  { max-width: 880px; margin: 0 auto; padding: 40px 16px 80px; }

.ab-section { background: #fff; border-radius: 20px; padding: 30px 32px; margin-bottom: 20px; box-shadow: 0 4px 20px rgba(0,0,0,.06); border: 1px solid #eef1f6; }
.ab-section-header { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid #f1f4f8; }
.ab-step-num { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg,#0a1836,#0f2d5e); color: #d4af37; font-size: 14px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ab-section-title { font-size: 17px; font-weight: 700; color: #0f172a; margin: 0; }
.ab-section-sub   { font-size: 13px; color: #94a3b8; margin: 2px 0 0; }

.ab-label { font-size: 13px; font-weight: 600; color: #374151; margin-bottom: 6px; display: block; }
.ab-label .req { color: #ef4444; margin-left: 2px; }

.ab-input { width: 100%; padding: 11px 14px; border: 1.5px solid #e2e8f0; border-radius: 12px; font-size: 14px; color: #0f172a; background: #f8fafc; outline: none; transition: .2s ease; }
.ab-input:focus { border-color: #d4af37; background: #fff; box-shadow: 0 0 0 3px rgba(212,175,55,.12); }
.ab-input::placeholder { color: #94a3b8; }

.ab-input-group { display: flex; border: 1.5px solid #e2e8f0; border-radius: 12px; overflow: hidden; background: #f8fafc; transition: .2s ease; }
.ab-input-group:focus-within { border-color: #d4af37; background: #fff; box-shadow: 0 0 0 3px rgba(212,175,55,.12); }
.ab-input-prefix { padding: 11px 14px; font-size: 14px; color: #64748b; background: #eef2f7; font-weight: 600; border-right: 1.5px solid #e2e8f0; white-space: nowrap; }
.ab-input-group input { flex: 1; border: none; outline: none; background: transparent; padding: 11px 14px; font-size: 14px; color: #0f172a; min-width: 0; }

select.ab-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-color: #f8fafc; padding-right: 36px; cursor: pointer; }

.ab-days-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.ab-day-check { display: none; }
.ab-day-label { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; border: 1.5px solid #e2e8f0; font-size: 12px; font-weight: 700; color: #64748b; cursor: pointer; transition: .2s ease; user-select: none; }
.ab-day-check:checked + .ab-day-label { background: #0a1836; border-color: #0a1836; color: #d4af37; }

.ab-actions { background: #fff; border-radius: 20px; padding: 24px 32px; box-shadow: 0 4px 20px rgba(0,0,0,.06); border: 1px solid #eef1f6; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.ab-submit-btn  { padding: 14px 40px; border-radius: 50px; background: linear-gradient(135deg,#d4af37,#f0c64a); color: #0a1836; border: none; font-size: 15px; font-weight: 800; cursor: pointer; transition: .3s ease; box-shadow: 0 6px 20px rgba(212,175,55,.35); }
.ab-submit-btn:hover  { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(212,175,55,.5); }
.ab-preview-btn { padding: 13px 28px; border-radius: 50px; background: transparent; border: 2px solid #e2e8f0; color: #374151; font-size: 14px; font-weight: 600; cursor: pointer; transition: .2s ease; }
.ab-preview-btn:hover { border-color: #0a1836; color: #0a1836; }
.ab-reset-btn   { background: none; border: none; color: #ef4444; font-size: 13px; font-weight: 600; cursor: pointer; padding: 4px; }

.ab-alert-success { background: linear-gradient(135deg,#d1fae5,#ecfdf5); border: 1px solid #6ee7b7; border-radius: 16px; padding: 20px 24px; color: #065f46; font-weight: 600; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.ab-alert-error   { background: #fff1f2; border: 1px solid #fecdd3; border-radius: 16px; padding: 20px 24px; color: #be123c; font-weight: 600; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.ab-help          { font-size: 12px; color: #94a3b8; margin-top: 5px; }
.ab-security-note { font-size: 11px; color: #94a3b8; display: flex; align-items: center; gap: 5px; margin-top: 8px; }

/* Listing cap UI */
.ab-cap-box         { background: #fff; border-radius: 20px; padding: 48px 32px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,.06); border: 1px solid #eef1f6; }
.ab-cap-icon        { font-size: 56px; display: block; margin-bottom: 18px; }
.ab-cap-title       { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 800; color: #0f172a; margin-bottom: 10px; }
.ab-cap-desc        { font-size: 15px; color: #64748b; line-height: 1.7; max-width: 480px; margin: 0 auto 28px; }
.ab-cap-slots       { display: flex; justify-content: center; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.ab-cap-slot        { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; }
.ab-cap-slot.used   { background: linear-gradient(135deg,#0a1836,#1e3a5f); color: #d4af37; }
.ab-cap-slot.empty  { background: #f1f4f8; color: #cbd5e1; border: 2px dashed #e2e8f0; }
.ab-cap-actions     { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.ab-cap-btn-primary { padding: 13px 28px; border-radius: 50px; background: linear-gradient(135deg,#0a1836,#1e3a5f); color: #d4af37; font-size: 14px; font-weight: 700; text-decoration: none; transition: .3s; }
.ab-cap-btn-primary:hover  { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,24,54,.3); color: #d4af37; }
.ab-cap-btn-secondary { padding: 13px 28px; border-radius: 50px; border: 2px solid #e2e8f0; color: #374151; font-size: 14px; font-weight: 600; text-decoration: none; transition: .2s; }
.ab-cap-btn-secondary:hover { border-color: #0a1836; color: #0a1836; }
.ab-cap-counter     { display: inline-flex; align-items: center; gap: 6px; background: #fef2f2; border: 1px solid #fecaca; color: #be123c; font-size: 12px; font-weight: 700; padding: 4px 14px; border-radius: 20px; margin-bottom: 20px; }

/* ── Add business — RESPONSIVE ── */
@media (max-width: 767px) {
  .ab-hero h1   { font-size: 28px; }
  .ab-layout    { padding: 28px 12px 60px; }
}
@media (max-width: 576px) {
  .ab-section   { padding: 22px 18px; }
  .ab-actions   { padding: 20px 18px; flex-direction: column; align-items: stretch; }
  .ab-submit-btn{ width: 100%; }
  .ab-preview-btn { width: 100%; text-align: center; }
}
@media (max-width: 480px) {
  .ab-hero      { padding: 44px 0 36px; }
  .ab-hero h1   { font-size: 24px; }
  .ab-days-grid { gap: 8px; }
  .ab-day-label { width: 40px; height: 40px; font-size: 11px; }
}


/* ════════════════════════════════════════════════════════════════
   13. CATEGORIES PAGE  (cat-*)
════════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.cat-hero {
  background: linear-gradient(135deg, rgba(8,18,44,.82) 0%, rgba(10,24,54,.92) 100%),
              url('/uploads/logo/l-2.jpg') center/cover no-repeat;
  padding: 90px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cat-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, transparent, #d4af37, transparent); }
.cat-hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,175,55,.13); border: 1px solid rgba(212,175,55,.35); color: #d4af37; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 18px; border-radius: 50px; margin-bottom: 20px; }
.cat-hero h1      { font-size: 42px; font-weight: 700; color: #fff; margin-bottom: 14px; letter-spacing: -1px;text-transform: capitalize; }
.cat-hero p       { font-size: 17px; color: #fff; max-width: 520px; margin: 0 auto 28px; }
.cat-hero-stats   { display: inline-flex; align-items: center; gap: 32px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(8px); border-radius: 50px; padding: 12px 32px; }
.cat-hero-stat    { text-align: center; }
.cat-hero-stat-num{ font-size: 22px; font-weight: 800; color: #d4af37; line-height: 1; }
.cat-hero-stat-lbl{ font-size: 11px; color: #fff; text-transform: uppercase; letter-spacing: .8px; margin-top: 3px; }
.cat-hero-divider { width: 1px; height: 36px; background: rgba(255,255,255,.15); }

/* ── Search bar ── */
.cat-search-wrap   { background: #fff; padding: 28px 0; border-bottom: 1px solid #edf1f7; position: sticky; top: var(--nav-h); z-index: 100; box-shadow: 0 2px 20px rgba(0,0,0,.06); }
.cat-search-inner  { max-width: 560px; margin: 0 auto; display: flex; align-items: center; background: #f8fafc; border: 1.5px solid #e2e8f0; border-radius: 50px; padding: 10px 10px 10px 22px; transition: border-color .2s, box-shadow .2s; }
.cat-search-inner:focus-within { border-color: #1e3a5f; box-shadow: 0 0 0 3px rgba(30,58,95,.08); background: #fff; }
.cat-search-inner input { flex: 1; border: none; outline: none; background: transparent; font-size: 15px; color: #1a1a1a; min-width: 0; }
.cat-search-inner input::placeholder { color: #94a3b8; }
.cat-search-btn    { background: linear-gradient(135deg, #0a1836, #1e3a5f); color: #d4af37; border: none; padding: 10px 24px; border-radius: 50px; font-weight: 700; font-size: 14px; cursor: pointer; transition: .2s ease; }
.cat-search-btn:hover { opacity: .9; }

/* ── Grid ── */
.cats-section { background: #f7f9fc; padding: 60px 0 80px; }
.cat-grid     { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.cat-card { background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid #edf1f7; box-shadow: 0 4px 16px rgba(0,0,0,.05); transition: .35s ease; text-decoration: none; display: flex; flex-direction: column; position: relative; }
.cat-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,.11); border-color: #d4af37; }
.cat-card-img   { height: 160px; overflow: hidden; position: relative; background: linear-gradient(135deg, #0a1836, #1e3a5f); }
.cat-card-img img { width: 100%; height: 100%; object-fit: cover; transition: .45s ease; }
.cat-card:hover .cat-card-img img { transform: scale(1.07); }
.cat-card-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 54px; }
.cat-count-badge { position: absolute; top: 12px; right: 12px; background: rgba(10,24,54,.85); backdrop-filter: blur(6px); border: 1px solid rgba(212,175,55,.3); color: #d4af37; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; }
.cat-card-body  { padding: 20px 20px 18px; flex: 1; display: flex; flex-direction: column; }
.cat-card-name  { font-size: 16px; font-weight: 700; color: #0f172a; margin-bottom: 6px; line-height: 1.3; }
.cat-card-sub   { font-size: 13px; color: #64748b; flex: 1; margin-bottom: 16px; }
.cat-card-footer{ display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid #f1f4f8; }
.cat-biz-count  { font-size: 13px; color: #64748b; display: flex; align-items: center; gap: 5px; }
.cat-biz-count strong { color: #0f172a; }
.cat-browse-link{ font-size: 12px; font-weight: 700; color: #1e3a5f; text-decoration: none; display: flex; align-items: center; gap: 3px; transition: gap .2s; }
.cat-browse-link:hover { gap: 7px; color: #0a1836; }

.cat-empty      { text-align: center; padding: 80px 20px; color: #94a3b8; }
.cat-empty-icon { font-size: 64px; margin-bottom: 16px; display: block; }
.cat-empty h3   { font-size: 22px; color: #64748b; margin-bottom: 8px; }
.cat-card.hidden{ display: none; }

/* ── Categories — RESPONSIVE ── */
@media (max-width: 1199px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px) {
  .cat-hero         { padding: 60px 0 50px; }
  .cat-hero h1      { font-size: 30px; }
  .cat-hero p       { font-size: 15px; }
  .cat-hero-stats   { gap: 20px; padding: 10px 22px; flex-wrap: wrap; justify-content: center; }
  .cat-grid         { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cat-search-wrap  { padding: 18px 0; }
}
@media (max-width: 479px) {
  .cat-hero h1      { font-size: 24px; }
  .cat-grid         { grid-template-columns: 1fr; }
  .cat-search-inner { padding: 8px 8px 8px 16px; }
  .cat-search-btn   { padding: 9px 16px; font-size: 13px; }
}


/* ════════════════════════════════════════════════════════════════
   14. HOME PAGE  (hero-*, gold-*, platinum-*, bronze-*, news-*)
════════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.hero-section {
  background: linear-gradient(to bottom, rgba(8,18,44,.78) 0%, rgba(10,24,54,.88) 100%),
              url('/uploads/logo/l-2.jpg') center/cover no-repeat;
  color: #fff;
  min-height: 560px;
  display: flex;
  align-items: center;
  text-align: center;
}
.hero-inner    { padding: 100px 0 90px; max-width: 820px; margin: 0 auto; }
.hero-rule     { width: 48px; height: 2px; background: linear-gradient(to right, transparent, #d4af37, transparent); margin: 0 auto 22px; }
.hero-eyebrow  { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,175,55,.13); border: 1px solid rgba(212,175,55,.38); color: #d4af37; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 18px; border-radius: 50px; margin-bottom: 28px; }
.hero-title    { font-size: 54px; line-height: 1.12; margin-bottom: 18px; font-weight: 800; letter-spacing: -1px; text-transform: capitalize; }
.hero-meta-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 6px 18px; margin-bottom: 14px; }
.hero-meta-pill{ font-size: 16px; color: #fff; display: flex; align-items: center; gap: 5px; }
.hero-meta-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.25); }
.hero-sub      { font-size: 16px; color: #fff; margin-bottom: 36px; line-height: 1.7; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-cta-row  { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.hero-btn      { display: inline-flex; align-items: center; gap: 10px; padding: 15px 38px; font-weight: 700; border-radius: 50px; background: linear-gradient(135deg,#d4af37,#f0c64a); border: none; color: #0a1836; font-size: 15px; text-decoration: none; transition: .3s ease; box-shadow: 0 8px 28px rgba(212,175,55,.38); }
.hero-btn:hover{ transform: translateY(-3px); box-shadow: 0 16px 38px rgba(212,175,55,.55); color: #0a1836; }
.hero-btn-outline { display: inline-flex; align-items: center; gap: 8px; padding: 14px 30px; font-weight: 600; border-radius: 50px; background: transparent; border: 2px solid rgba(255,255,255,.3); color: rgba(255,255,255,.85); font-size: 15px; text-decoration: none; transition: .3s ease; }
.hero-btn-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.55); color: #fff; transform: translateY(-3px); }
.hero-search   { background: #fff; border-radius: 60px; display: flex; align-items: center; padding: 7px 7px 7px 24px; max-width: 580px; margin: 0 auto; box-shadow: 0 10px 40px rgba(0,0,0,.2); }
.hero-search input  { border: none; outline: none; flex: 1; font-size: 15px; background: transparent; color: #1a1a1a; min-width: 0; }
.hero-search button { border-radius: 50px; padding: 12px 30px; font-weight: 700; background: linear-gradient(135deg,#d4af37,#f0c64a); border: none; color: #0a1836; flex-shrink: 0; }

/* Stats counter */
.stats-section { background: linear-gradient(135deg, #0a1836, #0f2d5e); padding: 60px 0; position: relative; overflow: hidden; }
.stats-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, transparent, #d4af37, transparent); }
.stats-section::after  { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, transparent, #d4af37, transparent); }
.stats-grid    { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item     { text-align: center; padding: 30px 20px; position: relative; }
.stat-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 20%; bottom: 20%; width: 1px; background: rgba(255,255,255,.1); }
.stat-icon     { font-size: 34px; margin-bottom: 10px; display: block; }
.stat-number   { font-size: 46px; font-weight: 800; color: #d4af37; line-height: 1; margin-bottom: 8px; }
.stat-label    { font-size: 13px; color: rgba(255,255,255,.55); font-weight: 500; text-transform: uppercase; letter-spacing: .8px; }

/* Section headers */
.section-label { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 16px; border-radius: 20px; margin-bottom: 12px; }
.label-gold     { background: #fef9c3; color: #92660a;  border: 1px solid #fde68a; }
.label-platinum { background: #eff6ff; color: #1e40af;  border: 1px solid #bfdbfe; }
.label-bronze   { background: #f1f5f9; color: #475569;  border: 1px solid #e2e8f0; }
.section-title-wrap    { text-align: center; margin-bottom: 48px; }
.section-title-wrap h2 { font-size: 34px; font-weight: 800; margin-bottom: 10px; color: #0f172a; }
.section-title-wrap p  { color: #64748b; font-size: 16px; margin: 0; }

/* Gold section */
.gold-section  { background: #fff; padding: 80px 0; }
.gold-card-wrap{ position: relative; border-radius: 22px; overflow: hidden; height: 340px; cursor: pointer; box-shadow: 0 12px 35px rgba(0,0,0,.1); transition: .4s ease; border: 2px solid transparent; }
.gold-card-wrap:hover { transform: translateY(-7px); box-shadow: 0 25px 60px rgba(212,175,55,.25); border-color: #d4af37; }
.gold-card-img { width: 100%; height: 100%; object-fit: cover; transition: .5s ease; }
.gold-card-wrap:hover .gold-card-img { transform: scale(1.07); }
.gold-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,24,54,.92) 0%, rgba(0,0,0,.15) 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; }
.gold-corner-badge  { position: absolute; top: 18px; right: 18px; background: linear-gradient(135deg,#d4af37,#f0c64a); color: #0a1836; font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 5px 13px; border-radius: 20px; }
.gold-status-badge  { position: absolute; top: 18px; left: 18px; font-size: 11px; font-weight: 600; padding: 5px 14px; border-radius: 30px; color: #fff; }
.gold-card-name     { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.gold-card-cat      { font-size: 14px; color: #fff; margin-bottom: 16px; }
.gold-card-footer   { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.15); }
.gold-card-district { font-size: 13px; color: rgba(255,255,255,.5); }
.gold-view-btn      { padding: 8px 20px; background: #d4af37; color: #0a1836; border-radius: 50px; font-size: 12px; font-weight: 700; text-decoration: none; transition: .3s ease; }
.gold-view-btn:hover{ background: #f0c64a; color: #0a1836; }

/* Platinum section */
.platinum-section { background: linear-gradient(160deg,#060f26 0%,#0c1e4a 55%,#071530 100%); padding: 90px 0; position: relative; overflow: hidden; }
.platinum-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, transparent, rgba(147,197,253,.7), transparent); }
.platinum-section::after  { content: ''; position: absolute; inset: 0; background-image: radial-gradient(ellipse 60% 45% at 10% 60%, rgba(59,130,246,.09) 0%, transparent 70%), radial-gradient(ellipse 50% 40% at 90% 25%, rgba(99,102,241,.07) 0%, transparent 65%); pointer-events: none; }
.plat-grid  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 18px; position: relative; z-index: 1; }
.plat-scroll-wrap { position: relative; z-index: 1; }
.plat-scroll-row  { display: flex; gap: 18px; overflow-x: auto; padding-bottom: 12px; scroll-behavior: smooth; }
.plat-scroll-row::-webkit-scrollbar { height: 4px; }
.plat-scroll-row::-webkit-scrollbar-track { background: rgba(255,255,255,.04); border-radius: 8px; }
.plat-scroll-row::-webkit-scrollbar-thumb { background: rgba(99,163,253,.5); border-radius: 8px; }
.plat-scroll-wrap::after { content: ''; position: absolute; right: 0; top: 0; bottom: 12px; width: 80px; background: linear-gradient(to right, transparent, #06101f); pointer-events: none; }
.plat-card  { background: linear-gradient(160deg,rgba(255,255,255,.10) 0%,rgba(255,255,255,.04) 100%); border: 1px solid rgba(99,163,253,.2); border-radius: 18px; overflow: hidden; transition: .35s ease; text-decoration: none; display: flex; flex-direction: column; position: relative; }
.plat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(255,255,255,.18), transparent); }
.plat-scroll-row .plat-card { min-width: 185px; flex-shrink: 0; }
.plat-card:hover   { transform: translateY(-7px); border-color: rgba(99,163,253,.6); background: linear-gradient(160deg,rgba(59,130,246,.14) 0%,rgba(59,130,246,.06) 100%); box-shadow: 0 16px 40px rgba(59,130,246,.2), 0 0 0 1px rgba(99,163,253,.3); }
.plat-img-wrap     { position: relative; height: 140px; overflow: hidden; }
.plat-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: .45s ease; }
.plat-card:hover .plat-img-wrap img { transform: scale(1.07); }
.plat-tier-badge   { position: absolute; top: 10px; left: 10px; background: linear-gradient(135deg,rgba(90,16,16,.85),rgba(74,14,14,.7)); backdrop-filter: blur(6px); border: 1px solid rgba(99,163,253,.35); color: #93c5fd; font-size: 9px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; padding: 3px 9px; border-radius: 20px; display: flex; align-items: center; gap: 3px; }
.plat-status       { position: absolute; top: 10px; right: 10px; font-size: 9px; font-weight: 700; padding: 3px 9px; border-radius: 20px; color: #fff; }
.plat-body         { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; }
.plat-name         { font-size: 13px; font-weight: 700; color: #e2e8f0; margin-bottom: 4px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.plat-cat          { font-size: 11px; color: rgba(255,255,255,.4); margin-bottom: 12px; flex: 1; }
.plat-footer       { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.08); }
.plat-district     { font-size: 10px; color: rgba(255,255,255,.35); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 80px; }
.plat-view         { display: inline-flex; align-items: center; gap: 3px; font-size: 10px; font-weight: 700; color: #60a5fa; text-decoration: none; white-space: nowrap; transition: .2s; }
.plat-view:hover   { color: #93c5fd; gap: 6px; }
.plat-owl          { margin-top: 4px; position: relative; }
.plat-owl .owl-dots{ margin-top: 20px; }
.plat-owl .owl-dot span { background: rgba(99,163,253,.25) !important; }
.plat-owl .owl-dot.active span { background: #60a5fa !important; width: 24px !important; border-radius: 10px !important; }
.plat-owl-wrap     { position: relative; }
.plat-arrow        { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; background: rgba(10,24,54,.85); border: 1px solid rgba(99,163,253,.35); backdrop-filter: blur(8px); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; color: #93c5fd; font-size: 18px; opacity: 0; transition: opacity .25s ease, transform .25s ease; pointer-events: none; }
.plat-owl-wrap:hover .plat-arrow { opacity: 1; pointer-events: auto; }
.plat-arrow:hover  { background: rgba(59,130,246,.35); border-color: rgba(99,163,253,.7); color: #fff; }
.plat-arrow-left   { left: -16px; }
.plat-arrow-right  { right: -16px; }
.plat-cta-wrap     { text-align: center; margin-top: 40px; position: relative; z-index: 2; }
.plat-cta-btn      { display: inline-flex; align-items: center; gap: 10px; padding: 14px 42px; border-radius: 50px; font-size: 15px; font-weight: 700; text-decoration: none; background: linear-gradient(135deg,#d4af37,#f0c64a); color: #0a1836; border: none; box-shadow: 0 8px 28px rgba(212,175,55,.35); transition: .3s ease; letter-spacing: .2px; }
.plat-cta-btn:hover{ transform: translateY(-3px); box-shadow: 0 16px 40px rgba(212,175,55,.5); color: #0a1836; }

/* How it works */
.how-section  { background: linear-gradient(180deg,#fff 0%,#f1f5fb 100%); padding: 80px 0; }
.work-steps   { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.work-step    { background: #fff; padding: 44px 24px 36px; border-radius: 20px; text-align: center; transition: .35s ease; border: 1px solid #edf1f7; position: relative; }
.work-step:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.08); border-color: #d4af37; }
.step-num     { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg,#0a1836,#0f2d5e); color: #d4af37; font-size: 11px; font-weight: 800; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.work-icon    { font-size: 46px; margin-bottom: 16px; }
.work-step h4 { font-weight: 700; font-size: 17px; margin-bottom: 10px; color: #0f172a; }
.work-step p  { font-size: 14px; color: #64748b; line-height: 1.7; margin: 0; }

/* Bronze community */
.bronze-section{ background: #f7f9fc; padding: 80px 0; }
.home-card     { background: #fff; border-radius: 18px; overflow: hidden; transition: .35s ease; box-shadow: 0 6px 20px rgba(0,0,0,.06); border: 1px solid #eef1f6; }
.home-card:hover { transform: translateY(-7px); box-shadow: 0 22px 55px rgba(0,0,0,.11); }
.home-img      { position: relative; height: 100px; overflow: hidden; }
.home-img img  { width: 100%; height: 100%; object-fit: cover; transition: .4s ease; }
.home-card:hover .home-img img { transform: scale(1.05); }
.status-badge  { position: absolute; top: 12px; right: 12px; padding: 4px 12px; border-radius: 30px; font-size: 11px; font-weight: 600; color: #fff; }
.home-body     { padding: 12px 18px 10px; }
.home-body h6  { font-weight: 700; font-size: 14px; color: #1a1a1a; margin-bottom: 3px; }
.home-body small { color: #6c757d; font-size: 12px; }
.home-footer   { padding: 10px 18px; border-top: 1px solid #f1f3f6; display: flex; justify-content: space-between; align-items: center; }
.bronze-owl .owl-dots { margin-top: 24px; }
.bronze-owl .owl-dot.active span { background: #0d6efd !important; width: 24px !important; border-radius: 10px !important; }

/* News section */
.news-section  { background: #0a1836; padding: 80px 0; position: relative; overflow: hidden; }
.news-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, transparent, #d4af37, transparent); }
.news-header   { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; position: relative; z-index: 1; }
.news-header h2{ color: #fff; font-size: 32px; margin: 0; }
.news-view-all { display: inline-flex; align-items: center; gap: 6px; padding: 9px 22px; border: 1.5px solid rgba(212,175,55,.45); color: #d4af37; border-radius: 50px; font-size: 13px; font-weight: 600; text-decoration: none; transition: .3s ease; }
.news-view-all:hover { background: rgba(212,175,55,.1); border-color: #d4af37; color: #d4af37; }
.news-card     { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 18px; overflow: hidden; height: 100%; transition: .3s ease; display: flex; flex-direction: column; }
.news-card:hover { transform: translateY(-5px); border-color: rgba(212,175,55,.3); background: rgba(255,255,255,.08); box-shadow: 0 12px 35px rgba(0,0,0,.3); }
.news-card-img-wrap { overflow: hidden; height: 175px; position: relative; }
.news-card-img { width: 100%; height: 175px; object-fit: cover; transition: .4s ease; }
.news-card:hover .news-card-img { transform: scale(1.05); }
.news-card-img-placeholder { width: 100%; height: 175px; background: linear-gradient(135deg,rgba(59,130,246,.12),rgba(212,175,55,.08)); display: flex; align-items: center; justify-content: center; font-size: 46px; }
.news-date-badge { position: absolute; top: 11px; left: 11px; background: rgba(74,14,14,.85); backdrop-filter: blur(6px); color: #d4af37; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; border: 1px solid rgba(212,175,55,.3); }
.news-card-body  { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.news-card-title { font-size: 15px; font-weight: 700; color: #f1f5f9; text-decoration: none; line-height: 1.45; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: .2s; }
.news-card-title:hover { color: #d4af37; }
.news-card-excerpt { font-size: 13px; color: rgba(255,255,255,.42); line-height: 1.7; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 14px; }
.news-card-footer  { padding-top: 13px; border-top: 1px solid rgba(255,255,255,.07); display: flex; justify-content: space-between; align-items: center; }
.news-read-more    { font-size: 12px; font-weight: 700; color: #60a5fa; text-decoration: none; display: flex; align-items: center; gap: 4px; transition: .2s; }
.news-read-more:hover { color: #93c5fd; gap: 8px; }
.news-posted       { font-size: 11px; color: rgba(255,255,255,.28); }
.news-owl .owl-dots{ margin-top: 28px; }
.news-owl .owl-dot span { background: rgba(255,255,255,.2) !important; }
.news-owl .owl-dot.active span { background: #d4af37 !important; width: 24px !important; border-radius: 10px !important; }

/* Value strip + CTA */
.lux-value-strip { background: #0f2d5e; padding: 25px 0; color: #fff; font-size: 15px; letter-spacing: .5px; }
.lux-btn-primary { padding: 16px 40px; border-radius: 50px; background: linear-gradient(135deg,#d4af37,#f0c64a); color: #0a1836; font-weight: 700; text-decoration: none; box-shadow: 0 15px 40px rgba(212,175,55,.4); transition: .3s ease; }
.lux-btn-primary:hover { transform: translateY(-5px); color: #0a1836; }

/* ── Home page — RESPONSIVE ── */
@media (max-width: 767px) {
  .hero-title    { font-size: 36px; }
  .hero-inner    { padding: 70px 0 60px; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .work-steps    { grid-template-columns: repeat(2, 1fr); }
  .news-header   { flex-direction: column; align-items: flex-start; gap: 14px; }
  .plat-grid     { grid-template-columns: repeat(2, 1fr); }
  .section-title-wrap h2 { font-size: 26px; }
}
@media (max-width: 576px) {
  .work-steps    { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-title    { font-size: 28px; }
  .hero-inner    { padding: 56px 0 48px; }
  .hero-btn, .hero-btn-outline { width: 100%; justify-content: center; }
  .hero-search   { flex-wrap: wrap; border-radius: 16px; padding: 10px 14px; gap: 8px; }
  .hero-search input  { width: 100%; }
  .hero-search button { width: 100%; border-radius: 10px; }
  .gold-section, .how-section, .bronze-section { padding: 50px 0; }
  .news-section  { padding: 50px 0; }
  .plat-grid     { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}


/* ════════════════════════════════════════════════════════════════
   15. JOBS PAGE  (jb-*)
════════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.jb-hero {
  background: linear-gradient(135deg, rgba(8,18,44,.92), rgba(10,30,70,.88)),
              url('/uploads/logo/l-2.jpg') center/cover no-repeat;
  padding: 70px 0 55px;
  color: #fff;
  text-align: center;
}
.jb-hero h1 { font-size: 42px; font-weight: 800; margin-bottom: 10px; letter-spacing: -.5px; }
.jb-hero p  { font-size: 16px; opacity: .75; margin-bottom: 30px; }

.jb-searchbar {
  display: flex;
  background: #fff;
  border-radius: 60px;
  padding: 7px 7px 7px 22px;
  max-width: 660px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0,0,0,.2);
  gap: 8px;
}
.jb-searchbar input  { flex: 1; border: none; outline: none; font-size: 15px; color: #0f172a; background: transparent; min-width: 0; }
.jb-searchbar button { border-radius: 50px; padding: 11px 28px; font-weight: 700; font-size: 14px; background: linear-gradient(135deg,#d4af37,#f0c64a); border: none; color: #0a1836; white-space: nowrap; flex-shrink: 0; }
.jb-stats        { margin-top: 18px; font-size: 14px; color: rgba(255,255,255,.55); }
.jb-stats strong { color: #d4af37; font-size: 17px; }

/* ── Layout ── */
.jb-layout { display: grid; grid-template-columns: 268px 1fr; gap: 28px; padding: 36px 0 80px; }

/* ── Filter panel ── */
.jb-filter-panel {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  border: 1px solid #eef1f6;
  position: sticky;
  top: calc(var(--nav-h) + 12px);
}
.jb-filter-head  { font-size: 15px; font-weight: 700; color: #0f172a; display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.jb-clear-link   { font-size: 12px; color: #ef4444; text-decoration: none; font-weight: 600; }
.jb-clear-link:hover { color: #dc2626; }
.jb-filter-label { font-size: 11px; text-transform: uppercase; letter-spacing: .8px; color: #94a3b8; font-weight: 700; margin: 18px 0 10px; }
.jb-filter-label:first-of-type { margin-top: 0; }
.jb-filter-select {
  width: 100%; padding: 10px 36px 10px 14px;
  border: 1.5px solid #e2e8f0; border-radius: 12px;
  font-size: 14px; color: #0f172a;
  background: #f8fafc url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 14px center;
  outline: none; transition: .2s ease; appearance: none; cursor: pointer;
}
.jb-filter-select:focus { border-color: #0a1836; background-color: #fff; }
.jb-filter-input { width: 100%; padding: 10px 14px; border: 1.5px solid #e2e8f0; border-radius: 12px; font-size: 14px; color: #0f172a; background: #f8fafc; outline: none; transition: .2s ease; }
.jb-filter-input:focus { border-color: #d4af37; background: #fff; }
.jb-filter-input::placeholder { color: #94a3b8; }
.jb-radio-row { display: flex; align-items: center; gap: 8px; padding: 7px 0; border-bottom: 1px solid #f8fafc; cursor: pointer; }
.jb-radio-row:last-child { border-bottom: none; }
.jb-radio-row input[type=radio] { accent-color: #0a1836; }
.jb-radio-row label { font-size: 13px; color: #374151; cursor: pointer; flex: 1; }
.jb-apply-btn { width: 100%; margin-top: 18px; padding: 11px; border-radius: 50px; background: linear-gradient(135deg,#0a1836,#0f2d5e); color: #d4af37; border: none; font-weight: 700; font-size: 14px; cursor: pointer; transition: .3s ease; }
.jb-apply-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(10,24,54,.3); }

/* Active filter pills */
.jb-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.jb-pill  { display: inline-flex; align-items: center; gap: 6px; background: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af; font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 20px; }
.jb-pill a { color: #93c5fd; text-decoration: none; font-size: 14px; line-height: 1; }
.jb-pill a:hover { color: #dc2626; }

/* Results header */
.jb-results-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.jb-count        { font-size: 14px; color: #64748b; }
.jb-count strong { color: #0f172a; }

/* ── Job card grid ── */
.jb-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }

.jb-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  border: 1px solid #eef1f6;
  transition: .35s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.jb-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--jb-accent, #e2e8f0); }
.jb-card:hover   { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(0,0,0,.1); }

.jb-card-top     { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.jb-company      { font-size: 12px; color: #94a3b8; margin-bottom: 5px; display: flex; align-items: center; gap: 4px; }
.jb-title        { font-size: 16px; font-weight: 700; color: #0f172a; line-height: 1.35; }
.jb-expired-badge{ background: #dc3545; color: #fff; font-size: 9px; font-weight: 800; padding: 3px 8px; border-radius: 20px; letter-spacing: .3px; white-space: nowrap; flex-shrink: 0; }

.jb-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0; }
.jb-tag  { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; letter-spacing: .3px; }

.jb-card-meta     { font-size: 12px; color: #64748b; display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.jb-card-meta-row { display: flex; align-items: center; gap: 5px; }

.jb-card-footer  { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid #f1f4f8; margin-top: auto; }
.jb-salary       { font-size: 14px; font-weight: 700; color: #16a34a; }
.jb-view-btn     { padding: 7px 18px; border-radius: 50px; background: #0a1836; color: #d4af37; font-size: 12px; font-weight: 700; text-decoration: none; transition: .25s ease; }
.jb-view-btn:hover { background: #1e293b; color: #f0c64a; }

/* Empty + pagination */
.jb-empty      { grid-column: 1/-1; text-align: center; padding: 80px 20px; }
.jb-empty-icon { font-size: 64px; margin-bottom: 16px; opacity: .35; }
.jb-empty h4   { font-size: 20px; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.jb-empty p    { color: #64748b; }

.jb-pagination { display: flex; justify-content: center; gap: 6px; margin-top: 40px; flex-wrap: wrap; }
.jb-page-btn   { padding: 9px 16px; border-radius: 10px; border: 1.5px solid #e2e8f0; background: #fff; color: #374151; font-size: 14px; font-weight: 600; text-decoration: none; transition: .2s ease; }
.jb-page-btn:hover    { border-color: #d4af37; color: #0a1836; }
.jb-page-btn.active   { background: #0a1836; border-color: #0a1836; color: #d4af37; }
.jb-page-btn.disabled { opacity: .4; pointer-events: none; }

.jb-mobile-bar { display: none; gap: 8px; margin-bottom: 16px; }

/* ── Jobs — RESPONSIVE ── */
@media (max-width: 1199px) { .jb-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 991px) {
  .jb-layout     { grid-template-columns: 1fr; }
  .jb-sidebar    { display: none; }
  .jb-mobile-bar { display: flex; flex-wrap: wrap; }
}
@media (max-width: 767px) {
  .jb-hero h1 { font-size: 28px; }
  .jb-hero p  { font-size: 14px; }
  .jb-searchbar { padding: 6px 6px 6px 16px; }
  .jb-searchbar button { padding: 10px 18px; font-size: 13px; }
  .jb-layout  { padding: 24px 0 60px; }
}
@media (max-width: 575px)  { .jb-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) {
  .jb-hero        { padding: 44px 0 36px; }
  .jb-hero h1     { font-size: 24px; }
  .jb-searchbar   { flex-wrap: wrap; border-radius: 16px; padding: 10px 14px; }
  .jb-searchbar input  { width: 100%; }
  .jb-searchbar button { width: 100%; border-radius: 10px; padding: 11px; }
}


/* ════════════════════════════════════════════════════════════════
   16. VIEW JOB PAGE  (vj-*)
════════════════════════════════════════════════════════════════ */

.vj-page { background: #f7f9fc; min-height: 100vh; }

/* ── Hero ── */
.vj-hero {
  background: linear-gradient(135deg, rgba(8,18,44,.93), rgba(10,30,70,.88)),
              url('/uploads/logo/l-2.jpg') center/cover no-repeat;
  padding: 60px 0 50px;
  color: #fff;
  position: relative;
}
.vj-hero-inner      { max-width: 820px; }
.vj-breadcrumb      { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 22px; }
.vj-breadcrumb a    { color: rgba(255,255,255,.55); text-decoration: none; }
.vj-breadcrumb a:hover { color: rgba(255,255,255,.85); }
.vj-breadcrumb span { margin: 0 6px; }

.vj-type-badge      { display: inline-flex; align-items: center; font-size: 12px; font-weight: 800; padding: 5px 16px; border-radius: 50px; margin-bottom: 14px; letter-spacing: .4px; }
.vj-expired-banner  { background: rgba(220,53,69,.2); border: 1px solid rgba(220,53,69,.4); color: #fca5a5; border-radius: 12px; padding: 10px 18px; font-size: 13px; font-weight: 600; margin-bottom: 16px; display: inline-flex; align-items: center; gap: 8px; }
.vj-title           { font-size: 34px; font-weight: 800; margin-bottom: 10px; line-height: 1.2; }
.vj-company         { font-size: 16px; color: rgba(255,255,255,.7); margin-bottom: 20px; display: flex; align-items: center; gap: 6px; }
.vj-hero-meta       { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.vj-hero-meta-pill  { font-size: 13px; color: rgba(255,255,255,.65); display: flex; align-items: center; gap: 5px; }
.vj-posted          { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 16px; }

/* ── Body ── */
.vj-body { padding: 36px 0 80px; }
.vj-card { background: #fff; border-radius: 20px; padding: 30px; box-shadow: 0 4px 20px rgba(0,0,0,.06); border: 1px solid #eef1f6; margin-bottom: 22px; }
.vj-card-title { font-size: 17px; font-weight: 700; color: #0f172a; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid #f1f4f8; display: flex; align-items: center; gap: 10px; }

/* Meta grid */
.vj-meta-grid  { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.vj-meta-item  { background: #f8fafc; border-radius: 14px; padding: 15px 18px; }
.vj-meta-label { font-size: 10px; text-transform: uppercase; letter-spacing: .6px; color: #94a3b8; font-weight: 700; margin-bottom: 5px; }
.vj-meta-value { font-size: 14px; font-weight: 700; color: #0f172a; }

.vj-description { line-height: 1.85; color: #374151; font-size: 15px; white-space: pre-wrap; }

/* Sidebar */
.vj-sidebar { position: sticky; top: calc(var(--nav-h) + 12px); }
.vj-contact-card { background: linear-gradient(160deg,#0a1836 0%,#0f2d5e 100%); border-radius: 20px; padding: 26px; color: #fff; margin-bottom: 20px; }
.vj-contact-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.vj-contact-item  { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 14px; }
.vj-contact-item:last-of-type { border-bottom: none; }
.vj-contact-icon  { width: 34px; height: 34px; border-radius: 10px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.vj-contact-label { font-size: 10px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .4px; }
.vj-contact-val   { color: rgba(255,255,255,.9); font-weight: 500; }
.vj-contact-val a { color: #93c5fd; text-decoration: none; }

.vj-wa-btn    { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 13px; margin-top: 16px; background: #25d366; color: #fff; border: none; border-radius: 50px; font-weight: 700; font-size: 14px; text-decoration: none; transition: .3s ease; }
.vj-wa-btn:hover  { background: #1ebe5d; color: #fff; transform: translateY(-2px); }
.vj-email-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 12px; margin-top: 10px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.85); border: 1.5px solid rgba(255,255,255,.2); border-radius: 50px; font-weight: 600; font-size: 14px; text-decoration: none; transition: .3s ease; }
.vj-email-btn:hover { background: rgba(255,255,255,.14); color: #fff; }

/* Share */
.vj-share-card  { background: #fff; border-radius: 18px; padding: 22px; border: 1px solid #eef1f6; box-shadow: 0 4px 16px rgba(0,0,0,.05); }
.vj-share-title { font-size: 14px; font-weight: 700; color: #0f172a; margin-bottom: 12px; }
.vj-share-btn   { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 9px 16px; border-radius: 50px; font-size: 13px; font-weight: 600; text-decoration: none; transition: .2s ease; border: none; cursor: pointer; }
.vj-share-wa    { background: #25d366; color: #fff; }
.vj-share-wa:hover  { background: #1ebe5d; color: #fff; }
.vj-share-fb    { background: #1877f2; color: #fff; }
.vj-share-fb:hover  { background: #0e65d0; color: #fff; }
.vj-share-copy  { background: #f1f5f9; color: #374151; }
.vj-share-copy:hover{ background: #e2e8f0; }

/* Related */
.vj-related-card    { background: #fff; border-radius: 16px; padding: 18px; border: 1px solid #eef1f6; box-shadow: 0 4px 14px rgba(0,0,0,.05); transition: .3s ease; text-decoration: none; display: block; }
.vj-related-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.1); }
.vj-related-company { font-size: 12px; color: #94a3b8; margin-bottom: 4px; }
.vj-related-title   { font-size: 14px; font-weight: 700; color: #0f172a; margin-bottom: 6px; }
.vj-related-loc     { font-size: 12px; color: #64748b; margin-bottom: 10px; }
.vj-related-salary  { font-size: 13px; font-weight: 700; color: #16a34a; }

/* ── View job — RESPONSIVE ── */
@media (max-width: 991px) {
  .vj-sidebar { position: static; }
}
@media (max-width: 767px) {
  .vj-title     { font-size: 26px; }
  .vj-meta-grid { grid-template-columns: 1fr 1fr; }
  .vj-body      { padding: 24px 0 50px; }
  .vj-hero      { padding: 44px 0 36px; }
}
@media (max-width: 480px) {
  .vj-title     { font-size: 22px; }
  .vj-meta-grid { grid-template-columns: 1fr; }
  .vj-card      { padding: 20px 16px; }
  .vj-contact-card { padding: 20px 16px; }
}


/* ════════════════════════════════════════════════════════════════
   17. CLASSIFIED JOBS PAGE  (cj-*)
════════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.cj-hero {
  background: linear-gradient(135deg, rgba(6,15,38,.95), rgba(10,24,54,.9)),
              url('/uploads/categories/1769004749_l-2.jpg') center/cover no-repeat;
  padding: 70px 0 50px;
  color: #fff;
  text-align: center;
}
.cj-hero h1 { font-size: 40px; font-weight: 800; margin-bottom: 10px; }
.cj-hero p  { font-size: 16px; opacity: .7; margin-bottom: 28px; }

.cj-searchbar { display: flex; background: #fff; border-radius: 60px; padding: 7px 7px 7px 22px; max-width: 620px; margin: 0 auto; box-shadow: 0 10px 40px rgba(0,0,0,.2); gap: 8px; }
.cj-searchbar input  { flex: 1; border: none; outline: none; font-size: 15px; color: #0f172a; background: transparent; min-width: 0; }
.cj-searchbar button { border-radius: 50px; padding: 11px 28px; font-weight: 700; font-size: 14px; background: linear-gradient(135deg,#d4af37,#f0c64a); border: none; color: #0a1836; white-space: nowrap; cursor: pointer; flex-shrink: 0; }
.cj-hero-stats        { margin-top: 18px; font-size: 14px; color: rgba(255,255,255,.55); }
.cj-hero-stats strong { color: #d4af37; font-size: 18px; }

/* ── Layout ── */
.cj-layout { display: grid; grid-template-columns: 280px 1fr; gap: 28px; padding: 36px 0 80px; }

/* ── Filter panel ── */
.cj-sidebar { position: relative; }
.cj-filter-panel { background: #fff; border-radius: 20px; padding: 24px; box-shadow: 0 4px 20px rgba(0,0,0,.06); border: 1px solid #eef1f6; position: sticky; top: calc(var(--nav-h) + 12px); }
.cj-filter-title { font-size: 16px; font-weight: 700; color: #0f172a; margin-bottom: 20px; display: flex; justify-content: space-between; align-items: center; }
.cj-filter-clear { font-size: 12px; color: #ef4444; text-decoration: none; font-weight: 600; }
.cj-filter-clear:hover { color: #dc2626; }
.cj-filter-group { margin-bottom: 22px; }
.cj-filter-label { font-size: 11px; text-transform: uppercase; letter-spacing: .8px; color: #94a3b8; font-weight: 700; margin-bottom: 10px; }
.cj-filter-select { width: 100%; padding: 10px 36px 10px 14px; border: 1.5px solid #e2e8f0; border-radius: 12px; font-size: 14px; color: #0f172a; background: #f8fafc url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 14px center; outline: none; transition: .2s ease; appearance: none; }
.cj-filter-select:focus { border-color: #d4af37; background-color: #fff; }
.cj-filter-input  { width: 100%; padding: 10px 14px; border: 1.5px solid #e2e8f0; border-radius: 12px; font-size: 14px; color: #0f172a; background: #f8fafc; outline: none; transition: .2s ease; box-sizing: border-box; }
.cj-filter-input:focus { border-color: #d4af37; background-color: #fff; }
.cj-filter-input::placeholder { color: #94a3b8; }

.cj-pill-group { display: flex; flex-direction: column; gap: 8px; }
.cj-pill       { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 12px; border: 1.5px solid #e2e8f0; background: #f8fafc; cursor: pointer; transition: .2s ease; text-decoration: none; color: #374151; font-size: 13px; font-weight: 500; }
.cj-pill:hover  { border-color: #d4af37; background: #fffbeb; color: #374151; }
.cj-pill.active { border-color: #d4af37; background: linear-gradient(135deg,#fef9c3,#fffbeb); font-weight: 700; }
.cj-pill-dot    { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

.cj-apply-btn { width: 100%; padding: 12px; border-radius: 50px; background: linear-gradient(135deg,#0a1836,#0f2d5e); color: #d4af37; border: none; font-weight: 700; font-size: 14px; cursor: pointer; transition: .3s ease; margin-top: 6px; }
.cj-apply-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(10,24,54,.3); }

.cj-active-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.cj-filter-pill    { display: inline-flex; align-items: center; gap: 6px; background: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af; font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 20px; }
.cj-filter-pill a  { color: #93c5fd; text-decoration: none; font-size: 14px; }
.cj-filter-pill a:hover { color: #dc2626; }

.cj-results-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; flex-wrap: wrap; gap: 8px; }
.cj-results-count  { font-size: 14px; color: #64748b; }
.cj-results-count strong { color: #0f172a; }

/* ── Card grid ── */
.cj-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.cj-card       { background: #fff; border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; transition: .35s ease; box-shadow: 0 4px 16px rgba(0,0,0,.06); border: 1px solid #eef1f6; }
.cj-card:hover { transform: translateY(-7px); box-shadow: 0 18px 45px rgba(0,0,0,.11); }

/* Source colour strip */
.cj-card-strip           { height: 3px; background: linear-gradient(to right,#d4af37,#f0c64a); }
.cj-card-strip.whatsapp  { background: linear-gradient(to right,#25d366,#128C7E); }
.cj-card-strip.newspaper { background: linear-gradient(to right,#64748b,#94a3b8); }
.cj-card-strip.website   { background: linear-gradient(to right,#3b82f6,#6366f1); }
.cj-card-strip.walkin    { background: linear-gradient(to right,#f59e0b,#fbbf24); }

.cj-card-img-wrap { position: relative; height: 190px; overflow: hidden; }
.cj-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: .4s ease; display: block; }
.cj-card:hover .cj-card-img-wrap img { transform: scale(1.05); }

.cj-card-pdf      { background: #f8fafc; padding: 16px 18px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid #f1f4f8; }
.cj-card-pdf-icon { width: 40px; height: 40px; border-radius: 10px; background: #fef2f2; border: 1.5px solid #fecaca; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.cj-card-pdf-lbl  { font-size: 13px; font-weight: 700; color: #374151; }
.cj-card-pdf-sub  { font-size: 11px; color: #94a3b8; margin-top: 2px; }

.cj-card-body     { padding: 16px 18px 12px; flex: 1; }
.cj-card-title    { font-size: 15px; font-weight: 700; color: #0f172a; text-decoration: none; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.4; margin-bottom: 4px; }
.cj-card-title:hover { color: #1e3a5f; }
.cj-card-company  { font-size: 12px; color: #64748b; margin-bottom: 8px; }
.cj-card-meta     { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.cj-meta-pill     { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 600; color: #64748b; background: #f8fafc; border: 1px solid #e2e8f0; padding: 3px 9px; border-radius: 20px; }
.cj-card-source   { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; border: 1px solid; }

.cj-card-footer { padding: 11px 18px; border-top: 1px solid #f1f4f8; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.cj-card-date   { font-size: 11px; color: #94a3b8; }
.cj-view-btn    { padding: 7px 18px; border-radius: 50px; background: #0f172a; color: #d4af37; font-size: 12px; font-weight: 700; text-decoration: none; transition: .25s ease; }
.cj-view-btn:hover { background: #1e293b; color: #f0c64a; }

.cj-empty      { grid-column: 1/-1; text-align: center; padding: 80px 20px; }
.cj-empty-icon { font-size: 64px; margin-bottom: 20px; opacity: .4; }
.cj-empty h4   { font-size: 20px; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.cj-empty p    { color: #64748b; }

.cj-pagination { display: flex; justify-content: center; gap: 6px; margin-top: 40px; flex-wrap: wrap; }
.cj-page-btn   { padding: 9px 16px; border-radius: 10px; border: 1.5px solid #e2e8f0; background: #fff; color: #374151; font-size: 14px; font-weight: 600; text-decoration: none; transition: .2s ease; }
.cj-page-btn:hover    { border-color: #d4af37; color: #0a1836; }
.cj-page-btn.active   { background: #0a1836; border-color: #0a1836; color: #d4af37; }
.cj-page-btn.disabled { opacity: .4; pointer-events: none; }

.cj-mobile-filters { display: none; margin-bottom: 16px; }

/* ── Classified jobs — RESPONSIVE ── */
@media (max-width: 1199px) { .cj-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 991px) {
  .cj-layout         { grid-template-columns: 1fr; }
  .cj-sidebar        { display: none; }
  .cj-mobile-filters { display: block !important; }
}
@media (max-width: 767px) {
  .cj-hero h1   { font-size: 28px; }
  .cj-hero p    { font-size: 14px; }
  .cj-searchbar { padding: 6px 6px 6px 16px; }
  .cj-searchbar button { padding: 10px 18px; font-size: 13px; }
  .cj-layout    { padding: 24px 0 60px; }
}
@media (max-width: 575px) { .cj-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) {
  .cj-hero        { padding: 44px 0 36px; }
  .cj-hero h1     { font-size: 24px; }
  .cj-searchbar   { flex-wrap: wrap; border-radius: 16px; padding: 10px 14px; }
  .cj-searchbar input  { width: 100%; }
  .cj-searchbar button { width: 100%; border-radius: 10px; padding: 11px; }
}


/* ════════════════════════════════════════════════════════════════
   18. NEWS LIST PAGE  (nl-*)
════════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.nl-hero {
  background: linear-gradient(160deg, #060f26 0%, #0a1836 55%, #071530 100%),
              url('/uploads/logo/l-2.jpg') center/cover no-repeat;
  background-blend-mode: multiply;
  padding: 88px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.nl-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.07) 0%, transparent 70%);
  top: -120px; right: 5%; pointer-events: none;
}
.nl-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
}

.nl-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,175,55,.12); border: 1px solid rgba(212,175,55,.3);
  color: #d4af37; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 20px; border-radius: 50px; margin-bottom: 22px;
}
.nl-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px; font-weight: 800; color: #fff;
  line-height: 1.15; letter-spacing: -.5px; margin-bottom: 16px;
}
.nl-hero-sub { font-size: 16px; color: rgba(255,255,255,.55); max-width: 480px; margin: 0 auto 36px; line-height: 1.7; }

.nl-hero-chips { display: inline-flex; align-items: center; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 50px; overflow: hidden; }
.nl-hero-chip  { padding: 12px 28px; font-size: 13px; color: #fff; font-weight: 500; border-right: 1px solid rgba(255,255,255,.1); }
.nl-hero-chip:last-child { border-right: none; }
.nl-hero-chip strong { color: #d4af37; font-weight: 700; }

/* ── Featured ── */
.nl-featured-section { background: #fff; padding: 64px 0 0; }
.nl-featured-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: #94a3b8; margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.nl-featured-label::after { content: ''; flex: 1; height: 1px; background: #f1f4f8; }

.nl-featured {
  display: grid; grid-template-columns: 1.35fr 1fr;
  border-radius: 24px; overflow: hidden;
  border: 1.5px solid #edf1f7; box-shadow: 0 16px 60px rgba(0,0,0,.09);
  text-decoration: none; transition: .4s ease;
}
.nl-featured:hover { transform: translateY(-6px); box-shadow: 0 32px 80px rgba(0,0,0,.13); border-color: rgba(212,175,55,.3); }

.nl-featured-img { position: relative; overflow: hidden; min-height: 380px; background: linear-gradient(135deg,#0a1836,#1e3a5f); }
.nl-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: .55s ease; }
.nl-featured:hover .nl-featured-img img { transform: scale(1.06); }
.nl-featured-placeholder { width: 100%; height: 100%; min-height: 380px; display: flex; align-items: center; justify-content: center; font-size: 90px; }
.nl-featured-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,15,38,.5) 0%, transparent 50%); }
.nl-featured-badge { position: absolute; top: 18px; left: 18px; background: linear-gradient(135deg,#d4af37,#f0c64a); color: #0a1836; font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; }
.nl-featured-date-pill { position: absolute; bottom: 18px; left: 18px; background: rgba(6,15,38,.8); backdrop-filter: blur(8px); border: 1px solid rgba(212,175,55,.25); color: #d4af37; font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 20px; }

.nl-featured-body { padding: 44px 42px; display: flex; flex-direction: column; justify-content: center; background: #fff; }
.nl-featured-tag     { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #1e3a5f; margin-bottom: 14px; }
.nl-featured-title   { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 800; color: #0a1836; line-height: 1.3; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.nl-featured-excerpt { font-size: 15px; color: #64748b; line-height: 1.75; margin-bottom: 30px; flex: 1; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.nl-featured-cta     { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 50px; background: linear-gradient(135deg,#0a1836,#1e3a5f); color: #d4af37; font-weight: 700; font-size: 14px; text-decoration: none; align-self: flex-start; transition: .3s ease; }
.nl-featured-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(10,24,54,.25); color: #d4af37; }

/* ── Grid ── */
.nl-grid-section  { background: #f4f6fb; padding: 64px 0 84px; }
.nl-grid-header   { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 32px; flex-wrap: wrap; gap: 8px; }
.nl-grid-header h2{ font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: #0a1836; margin: 0; }
.nl-grid-count    { font-size: 13px; color: #94a3b8; }

.nl-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.nl-card { background: #fff; border-radius: 18px; overflow: hidden; border: 1.5px solid #edf1f7; box-shadow: 0 4px 14px rgba(0,0,0,.05); display: flex; flex-direction: column; text-decoration: none; transition: .35s ease; }
.nl-card:hover { transform: translateY(-7px); box-shadow: 0 22px 55px rgba(0,0,0,.1); border-color: rgba(212,175,55,.35); }

.nl-card-img { height: 190px; overflow: hidden; position: relative; background: linear-gradient(135deg,#0a1836,#1e3a5f); flex-shrink: 0; }
.nl-card-img img { width: 100%; height: 100%; object-fit: cover; transition: .45s; }
.nl-card:hover .nl-card-img img { transform: scale(1.07); }
.nl-card-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 52px; }
.nl-card-date-pill   { position: absolute; top: 12px; left: 12px; background: rgba(6,15,38,.82); backdrop-filter: blur(6px); border: 1px solid rgba(212,175,55,.25); color: #d4af37; font-size: 11px; font-weight: 700; padding: 4px 11px; border-radius: 20px; }

.nl-card-body    { padding: 20px 20px 16px; flex: 1; display: flex; flex-direction: column; }
.nl-card-title   { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: #0f172a; line-height: 1.4; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.nl-card-excerpt { font-size: 13px; color: #64748b; line-height: 1.65; flex: 1; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.nl-card-footer  { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid #f1f4f8; }
.nl-card-read    { font-size: 13px; font-weight: 700; color: #1e3a5f; display: flex; align-items: center; gap: 4px; transition: gap .2s; }
.nl-card:hover .nl-card-read { gap: 8px; }
.nl-card-time    { font-size: 11px; color: #94a3b8; }

.nl-empty       { text-align: center; padding: 80px 20px; color: #94a3b8; }
.nl-empty-icon  { font-size: 64px; margin-bottom: 16px; display: block; }
.nl-empty-title { font-family: 'Playfair Display', serif; font-size: 22px; color: #64748b; margin-bottom: 8px; }

/* ── Pagination ── */
.nl-pagination { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 52px; flex-wrap: wrap; }
.nl-page-btn   { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 10px; font-weight: 600; font-size: 14px; text-decoration: none; border: 1.5px solid #e2e8f0; color: #64748b; background: #fff; transition: .2s ease; }
.nl-page-btn:hover  { border-color: #1e3a5f; color: #1e3a5f; }
.nl-page-btn.active { background: linear-gradient(135deg,#0a1836,#1e3a5f); color: #d4af37; border-color: transparent; }
.nl-page-ellipsis   { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: #94a3b8; }

/* ── News list — RESPONSIVE ── */
@media (max-width: 991px) { .nl-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 800px) {
  .nl-featured { grid-template-columns: 1fr; }
  .nl-featured-img { min-height: 240px; }
  .nl-featured-body { padding: 28px 24px; }
  .nl-featured-title { font-size: 22px; }
}
@media (max-width: 600px) {
  .nl-hero h1 { font-size: 34px; }
  .nl-hero-chips { flex-direction: column; border-radius: 16px; }
  .nl-hero-chip { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .nl-hero-chip:last-child { border-bottom: none; }
}
@media (max-width: 576px) { .nl-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) {
  .nl-hero        { padding: 56px 0 48px; }
  .nl-hero h1     { font-size: 28px; }
  .nl-hero-sub    { font-size: 14px; }
  .nl-grid-section{ padding: 40px 0 56px; }
}


/* ════════════════════════════════════════════════════════════════
   19. NEWS ARTICLE PAGE  (na-*)
════════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.na-hero { position: relative; min-height: 480px; display: flex; align-items: flex-end; overflow: hidden; }
.na-hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg,#060f26,#0a1836); }
.na-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .32; transition: opacity .6s ease; }
.na-hero-vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(6,15,38,.98) 0%, rgba(6,15,38,.6) 45%, rgba(6,15,38,.15) 100%),
    linear-gradient(to right, rgba(6,15,38,.35) 0%, transparent 60%);
}
.na-hero-content { position: relative; z-index: 2; width: 100%; padding: 56px 0 52px; }

.na-breadcrumb     { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 12px; color: rgba(255,255,255,.4); margin-bottom: 18px; }
.na-breadcrumb a   { color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
.na-breadcrumb a:hover { color: #d4af37; }
.na-breadcrumb-sep { color: rgba(255,255,255,.2); }

.na-hero-eyebrow { display: inline-flex; align-items: center; gap: 6px; background: rgba(212,175,55,.13); border: 1px solid rgba(212,175,55,.3); color: #d4af37; font-size: 11px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 18px; }
.na-hero-title   { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 800; color: #fff; line-height: 1.2; letter-spacing: -.5px; margin-bottom: 22px; max-width: 820px; }
.na-hero-meta    { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.na-meta-item    { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,.55); }
.na-meta-divider { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.2); }

/* ── Body layout ── */
.na-body   { background: #f4f6fb; padding: 56px 0 88px; }
.na-layout { display: grid; grid-template-columns: 1fr 320px; gap: 30px; align-items: start; }

/* ── Article card ── */
.na-article-card { background: #fff; border-radius: 20px; border: 1.5px solid #edf1f7; box-shadow: 0 6px 24px rgba(0,0,0,.06); overflow: hidden; }
.na-article-body { padding: 44px 44px 36px; font-size: 16px; color: #374151; line-height: 1.85; }
.na-article-body p    { margin-bottom: 20px; }
.na-article-body h2   { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: #0a1836; margin: 36px 0 14px; line-height: 1.3; }
.na-article-body h3   { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: #0f172a; margin: 28px 0 12px; }
.na-article-body ul,
.na-article-body ol   { padding-left: 24px; margin-bottom: 20px; }
.na-article-body li   { margin-bottom: 8px; line-height: 1.7; }
.na-article-body a    { color: #1e3a5f; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.na-article-body img  { max-width: 100%; border-radius: 14px; margin: 28px 0; box-shadow: 0 8px 28px rgba(0,0,0,.1); }
.na-article-body blockquote { border-left: 3px solid #d4af37; margin: 28px 0; padding: 16px 24px; background: #fffdf5; border-radius: 0 12px 12px 0; font-style: italic; color: #4b5563; }
.na-article-body > p:first-child::first-letter { font-family: 'Playfair Display', serif; font-size: 3.8em; font-weight: 800; color: #0a1836; float: left; line-height: .8; margin: 4px 10px 0 0; }

/* Prev / Next */
.na-prevnext   { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1.5px solid #f1f4f8; }
.na-prev-btn,
.na-next-btn   { display: flex; flex-direction: column; gap: 5px; padding: 22px 24px; text-decoration: none; transition: background .2s ease; }
.na-prev-btn   { border-right: 1px solid #f1f4f8; }
.na-prev-btn:hover,
.na-next-btn:hover { background: #f8fafc; }
.na-next-btn   { text-align: right; }
.na-nav-dir    { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #94a3b8; display: flex; align-items: center; gap: 5px; }
.na-next-btn .na-nav-dir { justify-content: flex-end; }
.na-nav-title  { font-size: 14px; font-weight: 600; color: #1e3a5f; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ── Sidebar ── */
.na-sidebar    { display: flex; flex-direction: column; gap: 20px; position: sticky; top: calc(var(--nav-h) + 12px); }
.na-back-btn   { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 22px; border-radius: 14px; background: linear-gradient(135deg,#0a1836,#1e3a5f); color: #d4af37; font-weight: 700; font-size: 14px; text-decoration: none; transition: .3s ease; box-shadow: 0 6px 20px rgba(10,24,54,.2); }
.na-back-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(10,24,54,.28); color: #d4af37; }

.na-widget      { background: #fff; border-radius: 18px; border: 1.5px solid #edf1f7; box-shadow: 0 4px 14px rgba(0,0,0,.05); overflow: hidden; }
.na-widget-head { padding: 16px 20px; border-bottom: 1px solid #f1f4f8; font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; color: #0f172a; }

.na-share-body { padding: 18px 20px; }
.na-share-sub  { font-size: 13px; color: #64748b; margin-bottom: 14px; line-height: 1.5; }
.na-share-btns { display: flex; gap: 10px; }
.na-share-btn  { flex: 1; padding: 10px 12px; border-radius: 10px; border: none; font-size: 13px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 6px; text-decoration: none; transition: .2s; font-family: 'DM Sans', sans-serif; }
.na-share-wa   { background: #25d366; color: #fff; }
.na-share-wa:hover  { background: #1db954; color: #fff; }
.na-share-copy { background: #f1f5f9; color: #1e3a5f; border: 1.5px solid #e2e8f0; }
.na-share-copy:hover { background: #e2e8f0; }

.na-event-widget     { padding: 20px; }
.na-event-date-block { display: flex; align-items: center; gap: 16px; background: linear-gradient(135deg,#0a1836,#1e3a5f); border-radius: 14px; padding: 18px 20px; }
.na-event-cal        { text-align: center; flex-shrink: 0; background: rgba(212,175,55,.15); border: 1px solid rgba(212,175,55,.25); border-radius: 10px; padding: 10px 14px; }
.na-event-cal-day    { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 800; color: #d4af37; line-height: 1; }
.na-event-cal-month  { font-size: 11px; color: rgba(212,175,55,.7); font-weight: 700; letter-spacing: .8px; margin-top: 3px; }
.na-event-info       { flex: 1; }
.na-event-label      { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 4px; }
.na-event-full-date  { font-size: 14px; font-weight: 600; color: #fff; }

.na-recent-item  { display: flex; gap: 13px; align-items: flex-start; padding: 13px 18px; border-bottom: 1px solid #f8f9fb; text-decoration: none; transition: background .2s; }
.na-recent-item:last-child { border-bottom: none; }
.na-recent-item:hover { background: #f8fafc; }
.na-recent-thumb { width: 54px; height: 54px; border-radius: 10px; flex-shrink: 0; overflow: hidden; background: linear-gradient(135deg,#0a1836,#1e3a5f); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.na-recent-thumb img { width: 100%; height: 100%; object-fit: cover; }
.na-recent-title { font-size: 13px; font-weight: 600; color: #1e293b; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.na-recent-date  { font-size: 11px; color: #94a3b8; margin-top: 4px; }

/* ── News article — RESPONSIVE ── */
@media (max-width: 991px) {
  .na-layout  { grid-template-columns: 1fr; }
  .na-sidebar { position: static; order: 2; }
}
@media (max-width: 768px) {
  .na-hero       { min-height: 360px; }
  .na-hero-title { font-size: 28px; }
  .na-body       { padding: 36px 0 60px; }
}
@media (max-width: 576px) {
  .na-article-body { padding: 28px 24px 24px; }
  .na-prevnext     { grid-template-columns: 1fr; }
  .na-prev-btn     { border-right: none; border-bottom: 1px solid #f1f4f8; }
  .na-next-btn     { text-align: left; }
  .na-next-btn .na-nav-dir { justify-content: flex-start; }
}
@media (max-width: 480px) {
  .na-hero-title { font-size: 22px; }
  .na-hero-content { padding: 36px 0 36px; }
}


/* ════════════════════════════════════════════════════════════════
   20. CONTACT US PAGE  (ct-*)
════════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.ct-hero {
  background: linear-gradient(135deg, #060f26 0%, #0a1836 55%, #1a3560 100%);
  padding: 80px 0 60px; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.ct-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 15% 50%, rgba(212,175,55,.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 85% 30%, rgba(30,58,95,.5) 0%, transparent 65%);
  pointer-events: none;
}
.ct-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, #d4af37 35%, #d4af37 65%, transparent);
}
.ct-hero-inner { position: relative; z-index: 1; }
.ct-hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(212,175,55,.12); border: 1px solid rgba(212,175,55,.28);
  color: #d4af37; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 7px 18px; border-radius: 50px; margin-bottom: 20px;
}
.ct-hero h1 { font-size: 44px; font-weight: 800; color: #fff; margin: 0 0 12px; font-family: 'Playfair Display', Georgia, serif; }
.ct-hero p  { font-size: 16px; color: rgba(255,255,255,.5); margin: 0; }

.ct-page { background: #f7f9fc; padding: 48px 0 90px; }

/* ── Layout ── */
.ct-wrap { max-width: 1040px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1fr 320px; gap: 26px; align-items: start; }

/* ── Form card ── */
.ct-card       { background: #fff; border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,.09); padding: 40px 44px; }
.ct-card-title { font-size: 21px; font-weight: 800; color: #0a1836; margin: 0 0 4px; font-family: 'Playfair Display', Georgia, serif; }
.ct-card-sub   { font-size: 13px; color: #94a3b8; margin-bottom: 28px; }

.ct-field  { margin-bottom: 18px; }
.ct-row-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ct-label  { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .7px; color: #374151; margin-bottom: 7px; }
.ct-label em { color: #ef4444; font-style: normal; }

.ct-input,
.ct-select,
.ct-textarea {
  width: 100%; padding: 11px 15px;
  border: 1.5px solid #e2e8f0; border-radius: 10px;
  font-size: 14px; font-family: inherit; color: #0f172a;
  background: #fff; outline: none; box-sizing: border-box;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none; appearance: none;
}
.ct-input:focus,
.ct-select:focus,
.ct-textarea:focus  { border-color: #d4af37; box-shadow: 0 0 0 3px rgba(212,175,55,.13); }
.ct-input::placeholder,
.ct-textarea::placeholder { color: #cbd5e1; }
.ct-textarea { resize: vertical; min-height: 130px; line-height: 1.7; }

.ct-select-wrap { position: relative; }
.ct-select-wrap::after { content: '▾'; position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: #94a3b8; pointer-events: none; font-size: 13px; }
.ct-select option[value=""] { color: #cbd5e1; }

.ct-submit {
  width: 100%; padding: 14px; border-radius: 12px; border: none;
  background: linear-gradient(135deg,#0a1836,#1e3a5f);
  color: #d4af37; font-weight: 800; font-size: 15px; font-family: inherit; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  box-shadow: 0 6px 20px rgba(10,24,54,.22); transition: transform .2s, box-shadow .2s;
}
.ct-submit:hover   { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(10,24,54,.28); }
.ct-submit:active  { transform: none; }

.ct-errors { background: #fef2f2; border: 1.5px solid #fecaca; border-radius: 12px; padding: 14px 18px; margin-bottom: 22px; }
.ct-errors li { font-size: 13px; color: #991b1b; font-weight: 500; padding: 2px 0; list-style: none; }
.ct-errors li::before { content: '⚠️ '; }

.ct-success-wrap  { text-align: center; padding: 44px 20px; }
.ct-success-icon  { font-size: 58px; display: block; margin-bottom: 18px; animation: ctPopIn .4s cubic-bezier(.34,1.56,.64,1); }
@keyframes ctPopIn { from{transform:scale(0);opacity:0} to{transform:scale(1);opacity:1} }
.ct-success-wrap h3 { font-size: 22px; font-weight: 800; color: #0a1836; margin-bottom: 10px; font-family: 'Playfair Display', Georgia, serif; }
.ct-success-wrap p  { font-size: 14px; color: #64748b; margin-bottom: 26px; line-height: 1.7; }
.ct-success-again   { display: inline-block; padding: 11px 28px; background: linear-gradient(135deg,#0a1836,#1e3a5f); color: #d4af37; border-radius: 50px; font-weight: 700; font-size: 13px; text-decoration: none; transition: opacity .2s; }
.ct-success-again:hover { opacity: .88; color: #d4af37; }

/* ── Info sidebar ── */
.ct-info {
  background: linear-gradient(155deg,#0a1836,#1a3560);
  border-radius: 20px; padding: 30px 26px;
  box-shadow: 0 20px 50px rgba(10,24,54,.22);
  position: relative; overflow: hidden;
}
.ct-info::before { content: ''; position: absolute; top: 0; left: 20px; right: 20px; height: 2px; background: linear-gradient(to right, transparent, #d4af37, transparent); }
.ct-info::after  { content: ''; position: absolute; bottom: -60px; right: -60px; width: 180px; height: 180px; background: rgba(212,175,55,.05); border-radius: 50%; pointer-events: none; }
.ct-info-title   { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 22px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.1); font-family: 'Playfair Display', Georgia, serif; }
.ct-info-row     { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 20px; position: relative; z-index: 1; }
.ct-info-icon-box{ width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0; background: rgba(212,175,55,.13); border: 1px solid rgba(212,175,55,.22); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.ct-info-lbl     { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: #d4af37; margin-bottom: 3px; }
.ct-info-val     { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.5; }
.ct-info-val a   { color: rgba(255,255,255,.7); text-decoration: none; }
.ct-info-val a:hover { color: #d4af37; }
.ct-response-box { background: rgba(212,175,55,.09); border: 1px solid rgba(212,175,55,.2); border-radius: 12px; padding: 14px 15px; margin-top: 6px; display: flex; align-items: center; gap: 12px; position: relative; z-index: 1; }
.ct-response-box .icon { font-size: 24px; }
.ct-response-box .text { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.6; }
.ct-response-box .text strong { color: #f0c84a; display: block; font-size: 13px; margin-bottom: 2px; }

/* ── Contact — RESPONSIVE ── */
@media (max-width: 840px)  { .ct-wrap { grid-template-columns: 1fr; } }
@media (max-width: 560px)  { .ct-card { padding: 28px 22px; } }
@media (max-width: 480px)  {
  .ct-hero h1  { font-size: 30px; }
  .ct-row-2    { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════════════════════════════
   21. LOGIN / RESET PASSWORD  (lg-*)
════════════════════════════════════════════════════════════════ */

.lg-page { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 130px); }

/* ── Left branding panel ── */
.lg-left {
  background: linear-gradient(160deg, #060f26 0%, #0a1836 50%, #071530 100%);
  padding: 60px 56px; display: flex; flex-direction: column;
  justify-content: space-between; position: relative; overflow: hidden;
}
.lg-left::before { content: ''; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(59,130,246,.08) 0%, transparent 70%); top: -80px; left: -80px; pointer-events: none; }
.lg-left::after  { content: ''; position: absolute; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(212,175,55,.07) 0%, transparent 70%); bottom: -60px; right: -60px; pointer-events: none; }
.lg-top-rule     { width: 48px; height: 2px; background: linear-gradient(to right,#d4af37,transparent); margin-bottom: 48px; }
.lg-brand-logo   { margin-bottom: 24px; }
.lg-brand-logo img { max-width: 64px; filter: drop-shadow(0 4px 16px rgba(212,175,55,.25)); }
.lg-brand-name   { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 16px; letter-spacing: -.5px; }
.lg-brand-name span { color: #d4af37; }
.lg-brand-desc   { font-size: 15px; color: rgba(255,255,255,.5); line-height: 1.75; max-width: 340px; margin-bottom: 48px; }
.lg-trust-pills  { display: flex; flex-direction: column; gap: 12px; }
.lg-trust-pill   { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 12px 16px; transition: .3s ease; }
.lg-trust-pill:hover { background: rgba(212,175,55,.07); border-color: rgba(212,175,55,.2); }
.lg-trust-icon   { width: 36px; height: 36px; border-radius: 10px; background: rgba(212,175,55,.12); border: 1px solid rgba(212,175,55,.2); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.lg-trust-text   { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.4; }
.lg-trust-text strong { display: block; color: #fff; font-size: 13px; margin-bottom: 1px; }
.lg-tagline      { margin-top: auto; padding-top: 48px; font-size: 12px; color: rgba(255,255,255,.25); letter-spacing: .3px; }
.lg-tagline span { color: rgba(212,175,55,.5); }

/* ── Right form panel ── */
.lg-right      { background: #fafbfc; display: flex; align-items: center; justify-content: center; padding: 48px 32px; }
.lg-form-wrap  { width: 100%; max-width: 420px; }
.lg-form-eyebrow { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: #1e3a5f; background: rgba(30,58,95,.07); padding: 5px 14px; border-radius: 20px; margin-bottom: 22px; }
.lg-form-title { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 800; color: #0a1836; line-height: 1.2; margin-bottom: 6px; letter-spacing: -.5px; }
.lg-form-sub   { font-size: 14px; color: #64748b; margin-bottom: 32px; line-height: 1.6; }

.lg-alert         { border-radius: 12px; padding: 13px 16px; margin-bottom: 22px; font-size: 13px; font-weight: 500; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.lg-alert-info    { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }
.lg-alert-danger  { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.lg-alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.lg-alert-icon    { font-size: 16px; flex-shrink: 0; }

.lg-field      { margin-bottom: 20px; }
.lg-label      { display: block; font-size: 13px; font-weight: 600; color: #374151; margin-bottom: 7px; letter-spacing: .1px; }
.lg-input-wrap { position: relative; }
.lg-input      { width: 100%; border: 1.5px solid #e2e8f0; border-radius: 12px; padding: 13px 16px; font-size: 15px; color: #1a1a1a; background: #fff; outline: none; transition: border-color .2s, box-shadow .2s; }
.lg-input::placeholder { color: #94a3b8; }
.lg-input:focus { border-color: #1e3a5f; box-shadow: 0 0 0 3px rgba(30,58,95,.08); }
.lg-input.has-toggle { padding-right: 44px; }
.lg-pw-toggle  { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: #94a3b8; font-size: 17px; padding: 0; transition: color .2s; line-height: 1; }
.lg-pw-toggle:hover { color: #1e3a5f; }

/* Strength meter (reset-password) */
.lg-strength      { margin-top: 8px; display: none; }
.lg-strength-bars { display: flex; gap: 4px; margin-bottom: 5px; }
.lg-strength-bar  { flex: 1; height: 4px; border-radius: 2px; background: #e2e8f0; transition: background .3s; }
.lg-strength-lbl  { font-size: 11px; color: #94a3b8; font-weight: 600; }

.lg-submit     { width: 100%; padding: 15px; border: none; border-radius: 12px; background: linear-gradient(135deg,#0a1836 0%,#1e3a5f 100%); color: #d4af37; font-size: 16px; font-weight: 700; cursor: pointer; transition: .3s ease; letter-spacing: .3px; margin-top: 4px; }
.lg-submit:hover    { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(10,24,54,.28); }
.lg-submit:active   { transform: translateY(0); }
.lg-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }

.lg-divider { display: flex; align-items: center; gap: 12px; margin: 24px 0 0; font-size: 12px; color: #94a3b8; }
.lg-divider::before, .lg-divider::after { content: ''; flex: 1; height: 1px; background: #e2e8f0; }
.lg-switch   { text-align: center; margin-top: 16px; font-size: 14px; color: #64748b; }
.lg-switch a { color: #1e3a5f; font-weight: 700; text-decoration: none; }
.lg-switch a:hover { text-decoration: underline; }

.lg-back { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 22px; font-size: 14px; color: #64748b; text-decoration: none; transition: color .2s; }
.lg-back:hover { color: #1e3a5f; }
.lg-invalid-box  { text-align: center; padding: 20px 0; }
.lg-invalid-icon { font-size: 52px; display: block; margin-bottom: 16px; }

/* ── Login/Reset — RESPONSIVE ── */
@media (max-width: 900px) {
  .lg-page { grid-template-columns: 1fr; }
  .lg-left { display: none; }
}
@media (max-width: 480px) {
  .lg-right     { padding: 32px 20px; }
  .lg-form-title{ font-size: 28px; }
}


/* ════════════════════════════════════════════════════════════════
   22. REGISTER PAGE  (rg-*)
════════════════════════════════════════════════════════════════ */

.rg-page { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 130px); }

/* ── Left panel ── */
.rg-left {
  background: linear-gradient(160deg,#060f26 0%,#0a1836 55%,#071530 100%);
  padding: 60px 56px; display: flex; flex-direction: column;
  justify-content: space-between; position: relative; overflow: hidden;
}
.rg-left::before { content: ''; position: absolute; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(212,175,55,.08) 0%, transparent 70%); top: -60px; right: -60px; pointer-events: none; }
.rg-left::after  { content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(59,130,246,.07) 0%, transparent 70%); bottom: -50px; left: -50px; pointer-events: none; }
.rg-top-rule     { width: 48px; height: 2px; background: linear-gradient(to right,#d4af37,transparent); margin-bottom: 44px; }
.rg-logo         { margin-bottom: 24px; }
.rg-logo img     { max-width: 60px; filter: drop-shadow(0 4px 14px rgba(212,175,55,.2)); }
.rg-brand        { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 14px; letter-spacing: -.5px; }
.rg-brand span   { color: #d4af37; }
.rg-desc         { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.75; max-width: 550px; margin-bottom: 44px; }
.rg-benefits     { display: flex; flex-direction: column; gap: 14px; }
.rg-benefit      { display: flex; align-items: flex-start; gap: 13px; }
.rg-benefit-icon { width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px; background: rgba(212,175,55,.1); border: 1px solid rgba(212,175,55,.18); display: flex; align-items: center; justify-content: center; font-size: 18px; margin-top: 2px; }
.rg-benefit-text { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.5; }
.rg-benefit-text strong { display: block; color: #fff; font-weight: 600; margin-bottom: 2px; }
.rg-tagline      { padding-top: 44px; font-size: 12px; color: rgba(255,255,255,.22); letter-spacing: .3px; }
.rg-tagline em   { color: rgba(212,175,55,.45); font-style: normal; }

/* ── Right panel ── */
.rg-right      { background: #fafbfc; display: flex; align-items: center; justify-content: center; padding: 48px 32px; overflow-y: auto; }
.rg-form-wrap  { width: 100%; max-width: 440px; }
.rg-eyebrow    { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: #1e3a5f; background: rgba(30,58,95,.07); padding: 5px 14px; border-radius: 20px; margin-bottom: 20px; }
.rg-title      { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 800; color: #0a1836; line-height: 1.2; margin-bottom: 6px; letter-spacing: -.4px; }
.rg-sub        { font-size: 14px; color: #64748b; margin-bottom: 28px; line-height: 1.6; }
.rg-alert      { border-radius: 12px; padding: 13px 16px; margin-bottom: 20px; font-size: 13px; font-weight: 500; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.rg-alert-danger { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.rg-alert-icon   { font-size: 15px; flex-shrink: 0; }

.rg-field      { margin-bottom: 16px; }
.rg-label      { display: block; font-size: 13px; font-weight: 600; color: #374151; margin-bottom: 6px; }
.rg-req        { color: #dc2626; margin-left: 2px; }
.rg-input-wrap { position: relative; }
.rg-input      { width: 100%; border: 1.5px solid #e2e8f0; border-radius: 12px; padding: 12px 14px; font-size: 15px; color: #1a1a1a; background: #fff; outline: none; transition: border-color .2s, box-shadow .2s; }
.rg-input::placeholder { color: #94a3b8; }
.rg-input:focus   { border-color: #1e3a5f; box-shadow: 0 0 0 3px rgba(30,58,95,.08); }
.rg-input.valid   { border-color: #22c55e; }
.rg-input.invalid { border-color: #ef4444; }
.rg-input.has-toggle { padding-right: 42px; }
.rg-pw-toggle  { position: absolute; right: 13px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: #94a3b8; font-size: 16px; padding: 0; line-height: 1; transition: color .2s; }
.rg-pw-toggle:hover { color: #1e3a5f; }
.rg-hint       { font-size: 12px; color: #94a3b8; margin-top: 5px; }

/* Phone picker */
.rg-phone-wrap { display: flex; border: 1.5px solid #e2e8f0; border-radius: 12px; overflow: visible; background: #fff; transition: border-color .2s, box-shadow .2s; position: relative; }
.rg-phone-wrap:focus-within { border-color: #1e3a5f; box-shadow: 0 0 0 3px rgba(30,58,95,.08); }
.rg-country-btn { display: flex; align-items: center; gap: 6px; padding: 0 12px; background: #f8fafc; border: none; border-right: 1.5px solid #e2e8f0; border-radius: 12px 0 0 12px; cursor: pointer; font-size: 14px; font-weight: 600; color: #374151; white-space: nowrap; flex-shrink: 0; min-width: 90px; transition: background .2s; height: 48px; }
.rg-country-btn:hover { background: #f1f5f9; }
.rg-country-btn .cb-flag  { font-size: 14px; line-height: 1; }
.rg-country-btn .cb-code  { font-size: 14px; color: #475569; }
.rg-country-btn .cb-arrow { font-size: 10px; color: #94a3b8; margin-left: 2px; }
.rg-phone-wrap input[type="tel"] { flex: 1; border: none; outline: none; padding: 12px 14px; font-size: 15px; background: transparent; color: #1a1a1a; min-width: 0; }
.rg-phone-wrap input[type="tel"]::placeholder { color: #94a3b8; }

.rg-country-panel { display: none; position: absolute; top: calc(100% + 6px); left: 0; width: 300px; max-height: 320px; background: #fff; border: 1.5px solid #e2e8f0; border-radius: 14px; box-shadow: 0 12px 40px rgba(0,0,0,.13); z-index: 9999; overflow: hidden; flex-direction: column; }
.rg-country-panel.open { display: flex; }
.rg-country-search { padding: 10px 12px; border-bottom: 1px solid #f1f4f8; flex-shrink: 0; }
.rg-country-search input { width: 100%; border: 1.5px solid #e2e8f0; border-radius: 8px; padding: 8px 12px; font-size: 13px; outline: none; }
.rg-country-search input:focus { border-color: #1e3a5f; }
.rg-country-list  { overflow-y: auto; flex: 1; }
.rg-country-item  { display: flex; align-items: center; gap: 10px; padding: 9px 14px; cursor: pointer; font-size: 13px; color: #374151; transition: background .15s; }
.rg-country-item:hover,
.rg-country-item.selected { background: #f0f6ff; }
.rg-country-item .ci-flag { font-size: 18px; flex-shrink: 0; }
.rg-country-item .ci-name { flex: 1; font-weight: 500; }
.rg-country-item .ci-code { color: #94a3b8; font-size: 12px; font-weight: 600; }

.rg-submit { width: 100%; padding: 14px; border: none; border-radius: 12px; background: linear-gradient(135deg,#0a1836 0%,#1e3a5f 100%); color: #d4af37; font-size: 16px; font-weight: 700; cursor: pointer; transition: .3s ease; letter-spacing: .3px; margin-top: 6px; }
.rg-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(10,24,54,.28); }
.rg-divider { display: flex; align-items: center; gap: 12px; margin: 22px 0 0; font-size: 12px; color: #94a3b8; }
.rg-divider::before, .rg-divider::after { content: ''; flex: 1; height: 1px; background: #e2e8f0; }
.rg-switch   { text-align: center; margin-top: 16px; font-size: 14px; color: #64748b; }
.rg-switch a { color: #1e3a5f; font-weight: 700; text-decoration: none; }
.rg-switch a:hover { text-decoration: underline; }

.rg-section-label { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: #94a3b8; margin: 22px 0 14px; display: flex; align-items: center; gap: 10px; }
.rg-section-label::after { content: ''; flex: 1; height: 1px; background: #f1f4f8; }
.rg-strength-wrap  { margin-top: 8px; }
.rg-strength-bars  { display: flex; gap: 4px; margin-bottom: 4px; }
.rg-strength-bar   { flex: 1; height: 4px; border-radius: 2px; background: #e2e8f0; transition: background .3s; }
.rg-strength-label { font-size: 11px; font-weight: 600; color: #94a3b8; }

/* ── Register — RESPONSIVE ── */
@media (max-width: 900px) {
  .rg-page { grid-template-columns: 1fr; }
  .rg-left { display: none; }
}
@media (max-width: 480px) {
  .rg-right  { padding: 32px 20px; }
  .rg-title  { font-size: 26px; }
}


/* ════════════════════════════════════════════════════════════════
   23. INFO PAGES — About, Verification Policy  (info-*)
════════════════════════════════════════════════════════════════ */

.info-hero {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 130px 0;
  text-align: center;
  color: #fff;
}
.info-hero h1    { font-size: 42px; font-weight: 700; }
.info-hero p     { opacity: .85; margin-top: 10px; }

.info-wrapper    { background: #f7f9fc; padding-bottom: 80px; }
.info-content    { max-width: 900px; margin: -70px auto 0; background: #fff; padding: 60px; border-radius: 20px; box-shadow: 0 30px 80px rgba(0,0,0,.08); line-height: 1.9; }
.info-content h2 { font-weight: 700; margin-bottom: 20px; margin-top: 35px; }
.info-content p  { color: #444; font-size: 16px; }
.info-content ul { padding-left: 20px; }

/* ── Info — RESPONSIVE ── */
@media (max-width: 768px) {
  .info-content { padding: 35px; margin-top: -40px; }
  .info-hero h1 { font-size: 28px; }
  .info-hero    { padding: 80px 0; }
}
@media (max-width: 480px) {
  .info-content { padding: 24px 18px; }
  .info-hero h1 { font-size: 24px; }
}


/* ════════════════════════════════════════════════════════════════
   24. MESSAGE FROM FOUNDER PAGE  (founder-* / info-*)
════════════════════════════════════════════════════════════════ */

/* Hero overrides for founder page */
.info-hero.founder-hero {
  background: linear-gradient(135deg, #0a1836 0%, #1e3a5f 100%);
  padding: 80px 0 120px;
  position: relative; overflow: hidden;
}
.info-hero.founder-hero::before {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.08) 0%, transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.info-hero.founder-hero::after {
  content: ''; position: absolute;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,.06) 0%, transparent 70%);
  bottom: -60px; left: -60px; pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: #d4af37; background: rgba(212,175,55,.1); border: 1px solid rgba(212,175,55,.2);
  padding: 6px 18px; border-radius: 20px; margin-bottom: 20px;
}

/* Main content card */
.info-content.founder-card { padding: 0; overflow: hidden; margin-top: -70px; }

.founder-profile {
  background: linear-gradient(135deg,#0a1836 0%,#1e3a5f 100%);
  padding: 44px 52px; display: flex; align-items: center; gap: 36px;
  position: relative; overflow: hidden;
}
.founder-profile::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.founder-img-wrap { position: relative; flex-shrink: 0; }
.founder-img-wrap img { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; object-position: center top; border: 4px solid rgba(212,175,55,.5); box-shadow: 0 8px 32px rgba(0,0,0,.35); display: block; }
.founder-img-wrap::before { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(212,175,55,.2); }
.founder-info          { position: relative; z-index: 1; }
.founder-info .fi-role { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #d4af37; margin-bottom: 6px; }
.founder-info .fi-name { font-size: 26px; font-weight: 800; color: #fff; font-family: 'Playfair Display', serif; line-height: 1.2; margin-bottom: 8px; }
.founder-info .fi-tagline { font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.6; }

.founder-body { padding: 52px 52px 56px; line-height: 1.9; }
.founder-body .opening-quote { font-size: 15px; font-weight: 600; color: #0a1836; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid #f1f4f8; }
.founder-body p { color: #475569; font-size: 15.5px; margin-bottom: 20px; line-height: 1.85; }
.founder-body p:last-of-type { margin-bottom: 0; }

.founder-signature     { margin-top: 36px; padding-top: 28px; border-top: 1px solid #f1f4f8; display: flex; align-items: center; gap: 16px; }
.founder-signature .sig-img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; object-position: center top; border: 2px solid #e2e8f0; flex-shrink: 0; }
.founder-signature .sig-text strong { display: block; font-size: 14px; font-weight: 700; color: #0a1836; }
.founder-signature .sig-text span   { font-size: 12px; color: #94a3b8; }
.sig-badge { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; color: #d4af37; background: rgba(212,175,55,.08); border: 1px solid rgba(212,175,55,.2); padding: 6px 14px; border-radius: 20px; letter-spacing: .5px; }

/* ── Founder — RESPONSIVE ── */
@media (max-width: 768px) {
  .info-hero.founder-hero { padding: 60px 0 100px; }
  .info-content.founder-card { margin-top: -50px; }
  .founder-profile  { flex-direction: column; text-align: center; padding: 36px 28px; gap: 20px; }
  .founder-info .fi-tagline { max-width: 100%; }
  .founder-body     { padding: 36px 28px 40px; }
  .founder-signature{ flex-wrap: wrap; }
  .sig-badge        { margin-left: 0; }
}
@media (max-width: 480px) {
  .founder-body  { padding: 28px 20px 32px; }
  .founder-profile { padding: 28px 20px; }
}