/*
Theme Name:  BukhariHRMS
Theme URI:   https://bukharihrms.com/
Author:      BukhariSoft
Author URI:  https://bukharisoft.com/
Description: Custom WordPress theme for BukhariHRMS — Personal job placement & HR consultancy in Karachi. Built with Tailwind CSS, Alpine JS, and glass morphism design. No Results, No Fee.
Version:     1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License:     Proprietary
License URI: https://bukharihrms.com/terms-of-service/
Text Domain: bukhari-hrms
Tags:        custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ═══════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════ */
:root {
  --navy:      #0A1F44;
  --navy-mid:  #1E56A0;
  --navy-800:  #0D2657;
  --gold:      #D4A017;
  --gold-l:    #E5B830;
  --gold-dk:   #B8800F;
  --burg:      #8B1A3A;
  --burg-l:    #FDF0F4;
  --charcoal:  #1A1A2E;
  --off:       #F8F9FB;
  --silver:    #F4F7FB;
  --ebf:       #EBF3FB;
  --text:      #2D2D2D;
  --muted:     #607080;
  --wa:        #25D366;
  --wa-dk:     #20BA5A;
}

/* ═══════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body, 'Inter'), sans-serif;
  color: var(--text);
  background: var(--off);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: var(--navy-mid); border-radius: 3px; }

/* ═══════════════════════════════════════════════
   TYPOGRAPHY SCALE — customizer overrides via CSS vars
═══════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading, 'Playfair Display'), serif;
  line-height: 1.2;
  color: var(--navy);
}
.font-nav  { font-family: var(--font-nav, 'Poppins'), sans-serif; }
.font-body { font-family: var(--font-body, 'Inter'), sans-serif; }

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.bhrms-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.1rem 0; transition: all .4s ease;
}
.bhrms-navbar.scrolled {
  background: rgba(10,31,68,.97) !important;
  backdrop-filter: blur(20px);
  padding: .65rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.bhrms-navbar.solid {
  background: rgba(10,31,68,.97);
  padding: .65rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.bhrms-wordmark {
  font-family: var(--font-heading, 'Playfair Display'), serif;
  font-weight: 800; font-size: 1.4rem; color: #fff;
  text-decoration: none; display: flex; align-items: center; gap: .55rem;
}
.bhrms-wm-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; overflow: hidden;
}
.bhrms-wm-icon img { width: 28px; height: 28px; object-fit: contain; }
.bhrms-nav-link {
  font-family: var(--font-nav, 'Poppins'), sans-serif;
  font-weight: 500; font-size: .88rem; color: rgba(255,255,255,.82);
  text-decoration: none; position: relative; padding-bottom: 2px;
  transition: color .2s;
}
.bhrms-nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--gold); transform: scaleX(0);
  transition: transform .3s ease;
}
.bhrms-nav-link:hover,
.bhrms-nav-link.active { color: #fff; }
.bhrms-nav-link:hover::after,
.bhrms-nav-link.active::after { transform: scaleX(1); }
.bhrms-cta-call {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--navy) !important;
  font-family: var(--font-nav, 'Poppins'), sans-serif;
  font-weight: 700; font-size: .82rem; padding: .5rem 1.1rem;
  border-radius: 50px; text-decoration: none;
  display: flex; align-items: center; gap: .4rem;
  box-shadow: 0 4px 15px rgba(212,160,23,.4);
  transition: all .3s;
}
.bhrms-cta-call:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,160,23,.55); }

/* Mobile nav overlay */
.bhrms-mob-nav {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,31,68,.98); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 1.8rem;
}
.bhrms-mob-link {
  font-family: var(--font-heading, 'Playfair Display'), serif;
  font-size: 1.8rem; font-weight: 700; color: #fff;
  text-decoration: none; transition: color .2s;
}
.bhrms-mob-link:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--navy); font-family: var(--font-nav, 'Poppins'), sans-serif;
  font-weight: 700; font-size: .95rem; padding: .82rem 1.9rem;
  border-radius: 50px; text-decoration: none;
  display: inline-flex; align-items: center; gap: .6rem;
  box-shadow: 0 8px 25px rgba(212,160,23,.45); transition: all .3s;
  border: none; cursor: pointer;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(212,160,23,.55); }
.btn-wa {
  background: var(--wa); color: #fff;
  font-family: var(--font-nav, 'Poppins'), sans-serif;
  font-weight: 700; font-size: .95rem; padding: .82rem 1.9rem;
  border-radius: 50px; text-decoration: none;
  display: inline-flex; align-items: center; gap: .6rem;
  box-shadow: 0 8px 25px rgba(37,211,102,.35); transition: all .3s;
}
.btn-wa:hover { transform: translateY(-3px); background: var(--wa-dk); }
.btn-navy {
  background: var(--navy); color: #fff;
  font-family: var(--font-nav, 'Poppins'), sans-serif;
  font-weight: 700; font-size: .95rem; padding: .82rem 1.9rem;
  border-radius: 50px; text-decoration: none;
  display: inline-flex; align-items: center; gap: .6rem; transition: all .3s;
}
.btn-navy:hover { transform: translateY(-2px); background: var(--navy-800); }
.btn-burg-outline {
  border: 2px solid var(--burg); color: var(--burg);
  font-family: var(--font-nav, 'Poppins'), sans-serif;
  font-weight: 700; font-size: .95rem; padding: .78rem 1.9rem;
  border-radius: 50px; text-decoration: none;
  display: inline-flex; align-items: center; gap: .6rem;
  transition: all .3s; background: transparent;
}
.btn-burg-outline:hover { background: var(--burg); color: #fff; }

/* ═══════════════════════════════════════════════
   SECTION HELPERS
═══════════════════════════════════════════════ */
.bhrms-section { padding: 5rem 5%; }
.eyebrow {
  font-family: var(--font-nav, 'Poppins'), sans-serif;
  font-size: .72rem; font-weight: 700; color: var(--navy-mid);
  text-transform: uppercase; letter-spacing: .14em;
  display: block; margin-bottom: .6rem;
}
.eyebrow.gold  { color: var(--gold); }
.eyebrow.burg  { color: var(--burg); }
.sec-title {
  font-family: var(--font-heading, 'Playfair Display'), serif;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 800;
  color: var(--navy); line-height: 1.2;
}
.sec-title em  { font-style: italic; color: var(--navy-mid); }
.sec-title .g  { color: var(--gold); }
.sec-title .b  { color: var(--burg); }
.sec-sub {
  font-family: var(--font-body, 'Inter'), sans-serif;
  font-size: 1.02rem; color: var(--muted);
  max-width: 620px; line-height: 1.75; margin-top: .7rem;
}

/* ═══════════════════════════════════════════════
   GLASS CARD
═══════════════════════════════════════════════ */
.glass-card {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 16px;
  box-shadow: 0 6px 28px rgba(10,31,68,.07);
  transition: all .35s cubic-bezier(.175,.885,.32,1.275);
}
.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(10,31,68,.13);
  border-color: rgba(212,160,23,.3);
}

/* ═══════════════════════════════════════════════
   HERO (front-page only)
═══════════════════════════════════════════════ */
.bhrms-hero { position: relative; height: 100vh; min-height: 660px; overflow: hidden; }
.bhrms-hero-slide {
  position: absolute; inset: 0; background-size: cover;
  background-position: center; opacity: 0;
  transition: opacity 1.4s ease-in-out;
}
.bhrms-hero-slide.active { opacity: 1; }
.bhrms-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,rgba(10,31,68,.93) 0%,rgba(10,31,68,.76) 45%,rgba(30,86,160,.42) 100%);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(212,160,23,.15); border: 1px solid rgba(212,160,23,.4);
  color: var(--gold-l); font-family: var(--font-nav, 'Poppins'), sans-serif;
  font-size: .78rem; font-weight: 600; padding: .38rem 1rem;
  border-radius: 50px; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.cred-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(10px); border-radius: 20px; padding: 2rem;
}
.no-ai-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; color: var(--navy);
  font-family: var(--font-nav, 'Poppins'), sans-serif;
  font-size: .72rem; font-weight: 700;
  padding: .4rem 1.1rem; border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.35); cursor: pointer; transition: all .3s;
}
.hero-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }
.hero-arr {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; cursor: pointer; transition: all .3s;
}
.hero-arr:hover { background: rgba(212,160,23,.4); }

/* ═══════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════ */
.stats-bar { background: linear-gradient(135deg, var(--navy), #0D2657); padding: 2.5rem 5%; }
.stat-n {
  font-family: var(--font-heading, 'Playfair Display'), serif;
  font-size: 2.4rem; font-weight: 700; color: var(--gold);
  display: block; line-height: 1; margin-bottom: .3rem;
}
.stat-l {
  font-family: var(--font-nav, 'Poppins'), sans-serif;
  font-size: .82rem; font-weight: 500; color: rgba(255,255,255,.65);
  text-transform: uppercase; letter-spacing: .05em;
}
.stat-div { width: 1px; height: 48px; background: rgba(255,255,255,.1); align-self: center; }

/* ═══════════════════════════════════════════════
   PAIN CARDS
═══════════════════════════════════════════════ */
.pain-card {
  border-left: 3px solid var(--burg); background: #fff;
  border-radius: 16px; padding: 1.8rem;
  transition: transform .25s, box-shadow .25s;
}
.pain-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -12px rgba(139,26,58,.14); }
.pain-icon { font-size: 2rem; color: var(--burg); margin-bottom: 1rem; display: block; }

/* ═══════════════════════════════════════════════
   SERVICE CARDS
═══════════════════════════════════════════════ */
.svc-card {
  border-top: 3px solid var(--navy-mid); background: #fff;
  border-radius: 16px; padding: 2rem;
  transition: transform .25s, box-shadow .25s;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -12px rgba(30,86,160,.16); }
.svc-icon-sq {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(30,86,160,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--navy-mid); flex-shrink: 0;
}
.urdu-tag {
  font-size: .85rem; font-weight: 600; color: var(--burg);
  text-align: right; margin-top: .8rem; direction: rtl;
  font-family: var(--font-nav, 'Poppins'), sans-serif;
}

/* ═══════════════════════════════════════════════
   HOW IT WORKS — STEPS
═══════════════════════════════════════════════ */
.step-num {
  width: 52px; height: 52px; background: var(--navy-mid); color: #fff;
  font-family: var(--font-heading, 'Playfair Display'), serif;
  font-weight: 800; font-size: 1.4rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; box-shadow: 0 4px 14px rgba(30,86,160,.35);
}
.step-dash {
  flex: 1; height: 2px;
  border-top: 2px dashed rgba(30,86,160,.25);
  align-self: flex-start; margin-top: 26px;
}

/* ═══════════════════════════════════════════════
   PROMISE CARDS
═══════════════════════════════════════════════ */
.promise-card {
  background: var(--off); border-radius: 16px; padding: 1.8rem;
  text-align: center; transition: box-shadow .3s;
}
.promise-card:hover { box-shadow: 0 10px 30px rgba(10,31,68,.08); }
.promise-icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; font-size: 1.5rem;
}

/* ═══════════════════════════════════════════════
   WHATSAPP TESTIMONIALS
═══════════════════════════════════════════════ */
.wa-chat { background: #E5DDD5; border-radius: 24px; padding: 1.5rem; max-width: 540px; margin: 0 auto; }
.wa-header {
  display: flex; align-items: center; gap: 12px; padding: 12px 16px;
  background: var(--navy); border-radius: 16px 16px 0 0;
  margin: -1.5rem -1.5rem 1.2rem;
}
.wa-bubble {
  background: #DCF8C6; border-radius: 18px 18px 4px 18px;
  padding: 14px 18px; max-width: 88%; margin-left: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.wa-meta {
  display: flex; align-items: center; gap: 6px; margin-top: 6px;
  justify-content: flex-end; font-size: .68rem; color: #67A96B;
}
.wa-name {
  background: var(--navy); color: #5BA4E0;
  font-size: .7rem; font-weight: 700; padding: 3px 12px;
  border-radius: 100px; display: inline-block; margin-bottom: 8px;
}

/* ═══════════════════════════════════════════════
   DUAL CTA CARDS
═══════════════════════════════════════════════ */
.dual-card-job { background: linear-gradient(135deg, var(--navy), #1A2E48); border-radius: 24px; padding: 2.5rem; }
.dual-card-emp { background: linear-gradient(135deg, var(--burg), #6B1530); border-radius: 24px; padding: 2.5rem; }

/* ═══════════════════════════════════════════════
   FEE CARDS
═══════════════════════════════════════════════ */
.fee-card {
  background: #fff; border-radius: 20px; padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(10,31,68,.07); text-align: center;
  border: 1px solid rgba(10,31,68,.07);
}
.fee-card.featured { border-color: var(--burg); box-shadow: 0 8px 30px rgba(139,26,58,.12); }

/* ═══════════════════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════════════════ */
.faq-wrap { border: 1px solid rgba(10,31,68,.1); border-radius: 16px; overflow: hidden; margin-bottom: .8rem; }
.faq-q-btn {
  width: 100%; text-align: left; padding: 1.2rem 1.5rem;
  font-family: var(--font-nav, 'Poppins'), sans-serif;
  font-weight: 600; font-size: .97rem; color: var(--navy);
  background: #F8F9FB; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; transition: background .2s;
}
.faq-q-btn:hover { background: #EEF2F9; }
.faq-ans {
  font-family: var(--font-body, 'Inter'), sans-serif;
  font-size: .93rem; color: var(--muted); line-height: 1.8;
  padding: 0 1.5rem; max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-ans.open { max-height: 400px; padding: 1.2rem 1.5rem; }
.faq-icon { color: var(--gold); flex-shrink: 0; transition: transform .3s; }
.faq-icon.open { transform: rotate(45deg); }

/* ═══════════════════════════════════════════════
   LEAD MAGNET
═══════════════════════════════════════════════ */
.lead-box {
  background: linear-gradient(135deg, rgba(30,86,160,.06), rgba(139,26,58,.05));
  border: 1px solid rgba(30,86,160,.12); border-radius: 24px; padding: 2.5rem;
}
.lead-input {
  border: 1px solid rgba(10,31,68,.15); border-radius: 50px;
  padding: .8rem 1.4rem; font-family: var(--font-body, 'Inter'), sans-serif;
  font-size: .92rem; width: 100%; outline: none; transition: border-color .25s;
}
.lead-input:focus { border-color: var(--navy-mid); }

/* ═══════════════════════════════════════════════
   BLOG CARDS
═══════════════════════════════════════════════ */
.blog-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(10,31,68,.08); transition: all .3s ease;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(10,31,68,.1); }
.blog-img-wrap { overflow: hidden; height: 196px; flex-shrink: 0; }
.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.04); }
.read-badge {
  display: inline-flex; align-items: center; gap: .3rem;
  background: rgba(212,160,23,.1); color: #92650A;
  font-size: .72rem; font-weight: 700; padding: .22rem .6rem;
  border-radius: 50px; font-family: var(--font-nav, 'Poppins'), sans-serif;
}
.cat-tag {
  display: inline-block; background: rgba(30,86,160,.1); color: var(--navy-mid);
  font-size: .7rem; font-weight: 700; padding: .18rem .55rem;
  border-radius: 4px; font-family: var(--font-nav, 'Poppins'), sans-serif;
  text-transform: uppercase; letter-spacing: .04em;
}

/* ═══════════════════════════════════════════════
   SINGLE POST
═══════════════════════════════════════════════ */
.reading-progress {
  position: fixed; top: 60px; left: 0; z-index: 999; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--burg));
  transition: width .1s linear; width: 0%;
}
.post-hero { position: relative; height: 460px; overflow: hidden; margin-top: 60px; }
.post-hero img { width: 100%; height: 100%; object-fit: cover; }
.post-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,31,68,.3) 0%, rgba(10,31,68,.88) 100%);
}
.post-hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.5rem 5%; }
.article-body { max-width: 680px; }
.article-body h2 {
  font-family: var(--font-heading, 'Playfair Display'), serif;
  font-weight: 800; font-size: 1.55rem; color: var(--navy);
  margin: 2.5rem 0 1rem; line-height: 1.3;
}
.article-body h3 {
  font-family: var(--font-nav, 'Poppins'), sans-serif;
  font-weight: 700; font-size: 1.1rem; color: var(--navy); margin: 2rem 0 .7rem;
}
.article-body p { font-size: 1rem; color: #3a3a3a; line-height: 1.85; margin-bottom: 1.2rem; }
.article-body ul, .article-body ol { margin: 1rem 0 1.4rem 1.5rem; }
.article-body li { font-size: 1rem; color: #3a3a3a; line-height: 1.8; margin-bottom: .4rem; }
.article-body a { color: var(--navy-mid); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--gold); }
.pullquote {
  border-left: 4px solid var(--gold);
  background: linear-gradient(135deg, rgba(212,160,23,.06), rgba(30,86,160,.04));
  border-radius: 0 12px 12px 0; padding: 1.5rem 1.8rem; margin: 2rem 0;
  font-family: var(--font-heading, 'Playfair Display'), serif;
  font-size: 1.2rem; font-style: italic; color: var(--navy); line-height: 1.55;
}
.callout {
  background: rgba(139,26,58,.04); border: 1px solid rgba(139,26,58,.15);
  border-radius: 14px; padding: 1.4rem 1.6rem; margin: 2rem 0;
}
.callout-title {
  font-family: var(--font-nav, 'Poppins'), sans-serif;
  font-weight: 700; color: var(--burg); font-size: .88rem;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: .5rem;
}
.post-tag {
  display: inline-block; background: var(--off); border: 1px solid rgba(10,31,68,.12);
  color: var(--muted); font-family: var(--font-nav, 'Poppins'), sans-serif;
  font-size: .75rem; font-weight: 600; padding: .3rem .8rem;
  border-radius: 50px; text-decoration: none; transition: all .25s; margin: .2rem;
}
.post-tag:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.author-card {
  background: #fff; border-radius: 20px; padding: 1.8rem;
  border: 1px solid rgba(10,31,68,.08);
  display: flex; gap: 1.2rem; align-items: flex-start; margin: 2.5rem 0;
}
.related-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(10,31,68,.08); transition: all .3s;
}
.related-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(10,31,68,.1); }
.related-img { height: 150px; overflow: hidden; }
.related-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.related-card:hover .related-img img { transform: scale(1.06); }
.share-bar {
  display: flex; align-items: center; gap: .75rem; padding: 1.2rem 1.5rem;
  background: #fff; border-radius: 14px; border: 1px solid rgba(10,31,68,.08);
  margin: 2rem 0; flex-wrap: wrap;
}
.share-ico {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; text-decoration: none; transition: all .25s;
}

/* ═══════════════════════════════════════════════
   PAGE TEMPLATE
═══════════════════════════════════════════════ */
.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #0D2657 60%, var(--navy-mid) 100%);
  padding: 7rem 5% 3.5rem; position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; top: -40%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,160,23,.07) 0%, transparent 70%);
}
.page-content h2 {
  font-family: var(--font-heading, 'Playfair Display'), serif;
  font-weight: 800; font-size: 1.55rem; color: var(--navy); margin: 2.5rem 0 1rem;
}
.page-content h3 {
  font-family: var(--font-nav, 'Poppins'), sans-serif;
  font-weight: 700; font-size: 1.05rem; color: var(--navy); margin: 1.8rem 0 .6rem;
}
.page-content p { font-size: .98rem; color: #3a3a3a; line-height: 1.85; margin-bottom: 1.1rem; }
.page-content ul, .page-content ol { margin: 1rem 0 1.4rem 1.5rem; }
.page-content li { font-size: .97rem; color: #3a3a3a; line-height: 1.8; margin-bottom: .3rem; }
.page-content a { color: var(--navy-mid); }

/* ═══════════════════════════════════════════════
   404 PAGE
═══════════════════════════════════════════════ */
.error-404-wrap {
  min-height: 80vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 5rem 5%;
}

/* ═══════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #0D2657 60%, var(--navy-mid) 100%);
  position: relative; overflow: hidden; padding: 5rem 5%;
}
.cta-band::before {
  content: ''; position: absolute; top: -50%; right: -5%;
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(212,160,23,.08) 0%, transparent 70%);
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.bhrms-footer { background: var(--charcoal); }
.ft-heading {
  font-family: var(--font-nav, 'Poppins'), sans-serif;
  font-weight: 700; font-size: .82rem; color: var(--gold);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.1rem;
}
.ft-link {
  display: block; font-family: var(--font-body, 'Inter'), sans-serif;
  font-size: .86rem; color: rgba(255,255,255,.55);
  text-decoration: none; padding: .28rem 0; transition: color .2s;
}
.ft-link:hover { color: var(--gold); }
.social-ico {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px; display: inline-flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,.55);
  font-size: .88rem; text-decoration: none; transition: all .3s;
}
.social-ico:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: translateY(-3px); }
.ntn-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(212,160,23,.08); border: 1px solid rgba(212,160,23,.18);
  color: rgba(212,160,23,.75); font-size: .7rem;
  font-family: var(--font-nav, 'Poppins'), sans-serif;
  padding: .28rem .65rem; border-radius: 4px; margin-top: .7rem;
}

/* ═══════════════════════════════════════════════
   FLOATING WHATSAPP
═══════════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 998;
  width: 56px; height: 56px; background: var(--wa); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem; text-decoration: none;
  animation: waPulse 2.5s infinite; transition: transform .2s;
}
.wa-float:hover { background: var(--wa-dk); transform: scale(1.1); }
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ═══════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════ */
@keyframes fuUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════
   SIDEBAR (blog)
═══════════════════════════════════════════════ */
.sidebar-card {
  background: #fff; border-radius: 16px; padding: 1.5rem;
  border: 1px solid rgba(10,31,68,.08); margin-bottom: 1.5rem;
}
.sidebar-title {
  font-family: var(--font-nav, 'Poppins'), sans-serif;
  font-weight: 700; font-size: .9rem; color: var(--navy);
  margin-bottom: 1rem; padding-bottom: .6rem; border-bottom: 2px solid var(--gold);
}

/* ═══════════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════════ */
.bg-off    { background: var(--off); }
.bg-white  { background: #fff; }
.bg-navy   { background: var(--navy); }
.bg-silver { background: var(--silver); }
.bg-ebf    { background: var(--ebf); }
[x-cloak]  { display: none !important; }
