/*
Theme Name: Latest Job Notification
Theme URI: https://www.latestjobnotification.com
Author: LatestJobNotification Team
Author URI: https://www.latestjobnotification.com
Description: AI-powered government job portal theme for India's fastest Sarkari Naukri website. Features job listings, sarkari result alerts, AI tools section, state-wise jobs, exam calendar sidebar, ticker, and full SEO schema support.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ljn-theme
Tags: government-jobs, job-portal, news, blog, two-columns, custom-menu, featured-images, sticky-post, threaded-comments, translation-ready
*/

/* ─────────────────────────────────────────
   CSS CUSTOM PROPERTIES
───────────────────────────────────────── */
:root {
  --navy:          #0B1F3A;
  --navy-mid:      #162E52;
  --navy-light:    #1E3F6F;
  --saffron:       #F97316;
  --saffron-light: #FED7AA;
  --teal:          #0D9488;
  --teal-light:    #CCFBF1;
  --gold:          #EAB308;
  --gold-light:    #FEF9C3;
  --green:         #16A34A;
  --green-light:   #DCFCE7;
  --sky:           #0EA5E9;
  --sky-light:     #E0F2FE;
  --red:           #DC2626;
  --red-light:     #FEE2E2;
  --purple:        #7c3aed;
  --gray-50:       #F8FAFC;
  --gray-100:      #F1F5F9;
  --gray-200:      #E2E8F0;
  --gray-400:      #94A3B8;
  --gray-600:      #475569;
  --gray-800:      #1E293B;
  --white:         #FFFFFF;
  --radius:        10px;
  --radius-lg:     16px;
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow:        0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:     0 8px 32px rgba(0,0,0,0.14);
  --container:     1280px;
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--gray-50);
  color: var(--gray-800);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--saffron); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ─────────────────────────────────────────
   TOPBAR
───────────────────────────────────────── */
.ljn-topbar {
  background: var(--navy);
  color: var(--white);
  font-size: 12.5px;
  padding: 6px 0;
  border-bottom: 2px solid var(--saffron);
}
.ljn-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar-left { display: flex; gap: 18px; align-items: center; }
.topbar-left a { color: #CBD5E1; transition: color .2s; }
.topbar-left a:hover { color: var(--saffron); }

.live-tag {
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: .5px;
  animation: liveBlink 1.4s ease-in-out infinite;
}
@keyframes liveBlink { 0%,100%{opacity:1} 50%{opacity:.6} }

.topbar-right { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.topbar-right a { color: #CBD5E1; font-size: 12px; transition: color .2s; }
.topbar-right a:hover { color: white; }
.btn-telegram { background: #2CA5E0; color: white !important; padding: 3px 11px; border-radius: 4px; font-weight: 700 !important; }
.btn-whatsapp { background: #25D366; color: white !important; padding: 3px 11px; border-radius: 4px; font-weight: 700 !important; }

/* ─────────────────────────────────────────
   HEADER
───────────────────────────────────────── */
.ljn-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 200;
}
.ljn-header .container {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 64px;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon {
  width: 42px; height: 42px;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: white; letter-spacing: -1px;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text strong { font-size: 14.5px; font-weight: 800; color: var(--navy); }
.logo-text span { font-size: 10.5px; color: var(--saffron); font-weight: 600; }

/* Navigation */
.ljn-nav { flex: 1; overflow-x: auto; }
.ljn-nav ul { display: flex; gap: 2px; list-style: none; }
.ljn-nav ul li a {
  display: block;
  white-space: nowrap;
  padding: 8px 13px;
  border-radius: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-600);
  transition: all .18s;
}
.ljn-nav ul li a:hover,
.ljn-nav ul li.current-menu-item > a { background: var(--navy); color: white; }

.ljn-nav ul li.menu-ai > a { color: var(--teal); }
.ljn-nav ul li.menu-ai > a::after {
  content: 'AI';
  background: var(--teal);
  color: white;
  font-size: 8px;
  font-weight: 800;
  padding: 1px 4px;
  border-radius: 3px;
  margin-left: 5px;
  vertical-align: middle;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--gray-200);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 18px;
  color: var(--navy);
  margin-left: auto;
}

/* ─────────────────────────────────────────
   BREADCRUMB
───────────────────────────────────────── */
.ljn-breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  font-size: 12px;
  color: var(--gray-400);
  padding: 8px 0;
}
.ljn-breadcrumb .container { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.ljn-breadcrumb a { color: var(--gray-400); }
.ljn-breadcrumb a:hover { color: var(--saffron); }
.ljn-breadcrumb span.sep { color: var(--gray-400); }

/* ─────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────── */
.ljn-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1a4a7a 100%);
  color: white;
  padding: 52px 0 44px;
  position: relative;
  overflow: hidden;
}
.ljn-hero::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(249,115,22,0.08); pointer-events: none;
}
.ljn-hero::after {
  content: '';
  position: absolute; bottom: -100px; left: 30%;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(13,148,136,0.07); pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.4);
  border-radius: 20px; padding: 4px 14px;
  font-size: 12px; color: var(--saffron-light); font-weight: 600;
  margin-bottom: 16px;
}
.ljn-hero h1 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800; line-height: 1.2;
  margin-bottom: 14px; letter-spacing: -0.5px;
}
.ljn-hero h1 span { color: var(--saffron); }
.hero-subtitle { font-size: 15px; color: #94A3B8; margin-bottom: 28px; max-width: 520px; }

/* Search */
.hero-search {
  background: white; border-radius: 12px;
  padding: 6px 6px 6px 16px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-lg); margin-bottom: 22px;
}
.hero-search input {
  flex: 1; border: none; outline: none;
  font-size: 14.5px; color: var(--gray-800);
  font-family: inherit; background: transparent;
}
.hero-search input::placeholder { color: var(--gray-400); }
.hero-search select {
  border: none; outline: none; font-size: 13px;
  color: var(--gray-600); background: transparent;
  padding: 0 8px; cursor: pointer;
}
.hero-search-btn {
  background: var(--saffron); color: white;
  border: none; border-radius: 8px;
  padding: 10px 22px; font-size: 14px; font-weight: 700;
  transition: background .18s; white-space: nowrap;
}
.hero-search-btn:hover { background: #ea6c0a; }

.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #CBD5E1; border-radius: 20px;
  padding: 4px 13px; font-size: 12px; cursor: pointer;
  transition: all .18s;
}
.hero-tag:hover { background: rgba(249,115,22,0.2); border-color: var(--saffron); color: var(--saffron-light); }

/* Hero stats */
.hero-stats {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 22px;
  display: flex; flex-direction: column; gap: 14px;
}
.stat-item { display: flex; flex-direction: column; }
.stat-num { font-size: 26px; font-weight: 800; color: white; line-height: 1; }
.stat-num span { color: var(--saffron); }
.stat-label { font-size: 12px; color: #94A3B8; margin-top: 2px; }
.stat-divider { height: 1px; background: rgba(255,255,255,0.08); }

/* ─────────────────────────────────────────
   TICKER
───────────────────────────────────────── */
.ljn-ticker {
  background: var(--saffron); color: white;
  padding: 8px 0; overflow: hidden;
  display: flex; align-items: center;
}
.ticker-label {
  display: inline-block; background: var(--navy);
  padding: 0 14px; font-weight: 700; font-size: 12px;
  letter-spacing: .5px; white-space: nowrap; flex-shrink: 0;
  line-height: 28px;
}
.ticker-wrapper { overflow: hidden; flex: 1; }
.ticker-inner {
  display: inline-flex; animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
}
.ticker-inner span { padding: 0 30px; font-size: 13px; font-weight: 600; }
.ticker-inner span::before { content: '🔔 '; }
@keyframes tickerScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ─────────────────────────────────────────
   CONTENT LAYOUT
───────────────────────────────────────── */
.ljn-content-wrap {
  max-width: var(--container);
  margin: 0 auto; padding: 32px 20px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px; align-items: start;
}
.ljn-main {}
.ljn-sidebar {}

/* ─────────────────────────────────────────
   SECTION HEADINGS
───────────────────────────────────────── */
.section-head {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 16px;
}
.section-title {
  font-size: 17px; font-weight: 800; color: var(--navy);
  display: flex; align-items: center; gap: 8px;
}
.section-title::before {
  content: ''; display: block; width: 4px; height: 20px;
  background: var(--saffron); border-radius: 3px;
}
.see-all {
  font-size: 12.5px; color: var(--saffron); font-weight: 700;
  border: 1.5px solid var(--saffron); border-radius: 6px;
  padding: 3px 11px; transition: all .18s;
}
.see-all:hover { background: var(--saffron); color: white; }

/* ─────────────────────────────────────────
   CATEGORY TABS
───────────────────────────────────────── */
.cat-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 18px; }
.cat-tab {
  padding: 5px 14px; border-radius: 20px; font-size: 12.5px;
  font-weight: 600; border: 1.5px solid var(--gray-200);
  color: var(--gray-600); cursor: pointer; transition: all .18s;
  background: white;
}
.cat-tab:hover, .cat-tab.active { background: var(--navy); color: white; border-color: var(--navy); }

/* ─────────────────────────────────────────
   AI TOOLS BANNER
───────────────────────────────────────── */
.ai-tools-banner {
  background: linear-gradient(135deg, #0f2744 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg); padding: 24px;
  margin-bottom: 24px;
  border: 1px solid rgba(249,115,22,0.25);
}
.ai-tools-banner-title {
  color: white; font-size: 15px; font-weight: 800;
  margin-bottom: 4px; display: flex; align-items: center; gap: 8px;
}
.ai-label { font-size: 10px; background: var(--teal); color: white; padding: 2px 6px; border-radius: 4px; font-weight: 700; }
.ai-tools-banner-sub { color: #94A3B8; font-size: 12.5px; margin-bottom: 16px; }
.ai-tool-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ai-tool-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 14px;
  cursor: pointer; transition: all .18s; display: block;
}
.ai-tool-card:hover { background: rgba(249,115,22,0.12); border-color: rgba(249,115,22,0.4); color: inherit; }
.ai-tool-icon { font-size: 22px; margin-bottom: 6px; }
.ai-tool-name { color: white; font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.ai-tool-desc { color: #94A3B8; font-size: 11.5px; line-height: 1.4; }
.ai-tool-free {
  display: inline-block; margin-top: 4px; font-size: 10px;
  background: rgba(22,163,74,0.25); color: #86efac;
  padding: 1px 6px; border-radius: 3px; font-weight: 700;
}

/* ─────────────────────────────────────────
   JOB CARDS
───────────────────────────────────────── */
.job-card {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--gray-200); padding: 16px 18px;
  margin-bottom: 10px; display: flex; gap: 14px;
  transition: all .18s; position: relative;
}
.job-card:hover { border-color: var(--saffron); box-shadow: var(--shadow); transform: translateY(-1px); }
.job-card.featured { border-left: 3px solid var(--saffron); }

.job-logo {
  width: 46px; height: 46px; border-radius: 8px;
  background: var(--navy); display: flex; align-items: center;
  justify-content: center; font-size: 11px; font-weight: 800;
  color: white; flex-shrink: 0; letter-spacing: -0.5px;
  text-align: center;
}
.job-logo.railway  { background: #1d4ed8; }
.job-logo.banking  { background: #065f46; }
.job-logo.upsc     { background: #7c2d12; }
.job-logo.ssc      { background: #4c1d95; }
.job-logo.state    { background: #0c4a6e; }
.job-logo.defence  { background: #374151; }
.job-logo.medical  { background: #065f46; }

.job-info { flex: 1; min-width: 0; }
.job-org  { font-size: 11.5px; color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: .4px; }
.job-title { font-size: 14.5px; font-weight: 700; color: var(--navy); margin: 2px 0 6px; }
.job-meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }

.job-pill {
  font-size: 11.5px; font-weight: 600;
  padding: 2px 9px; border-radius: 4px;
  display: inline-flex; align-items: center; gap: 3px;
}
.pill-vacancies { background: var(--sky-light);   color: #0369a1; }
.pill-date      { background: var(--gold-light);  color: #854d0e; }
.pill-edu       { background: var(--green-light); color: #166534; }
.pill-new       { background: var(--red-light);   color: var(--red); animation: liveBlink 1.2s infinite; }
.pill-state     { background: var(--gray-100);    color: var(--gray-600); }
.pill-result    { background: var(--teal-light);  color: #0f766e; }

.job-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; flex-shrink: 0; }
.apply-btn {
  background: var(--saffron); color: white; border-radius: 7px;
  padding: 7px 18px; font-size: 12.5px; font-weight: 700;
  border: none; transition: background .18s; white-space: nowrap;
}
.apply-btn:hover { background: #ea6c0a; color: white; }
.apply-btn.result-btn { background: var(--teal); }
.apply-btn.result-btn:hover { background: #0f766e; }
.job-deadline { font-size: 11.5px; color: var(--red); font-weight: 600; }

/* ─────────────────────────────────────────
   RESULT CARDS
───────────────────────────────────────── */
.result-card {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--gray-200); padding: 14px 16px;
  margin-bottom: 8px; display: flex;
  justify-content: space-between; align-items: center;
  gap: 12px; cursor: pointer; transition: all .18s;
}
.result-card:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.result-org   { font-size: 11px; color: var(--gray-400); font-weight: 600; letter-spacing: .3px; text-transform: uppercase; }
.result-title { font-size: 13.5px; font-weight: 700; color: var(--navy); margin: 2px 0; }
.result-meta  { display: flex; gap: 8px; font-size: 11.5px; color: var(--gray-600); flex-wrap: wrap; }
.result-status {
  flex-shrink: 0; font-size: 11.5px; font-weight: 700;
  padding: 3px 10px; border-radius: 5px;
}
.status-out  { background: var(--green-light); color: var(--green); }
.status-wait { background: var(--gold-light);  color: #92400e; }
.status-soon { background: var(--sky-light);   color: #0369a1; }

/* ─────────────────────────────────────────
   STANDARD BLOG POSTS (for non-front-page)
───────────────────────────────────────── */
article.post {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  margin-bottom: 20px; overflow: hidden;
  transition: box-shadow .18s;
}
article.post:hover { box-shadow: var(--shadow); }
.post-thumbnail img { width: 100%; height: 200px; object-fit: cover; }
.post-body { padding: 20px; }
.post-category-badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  background: var(--saffron); color: white;
  padding: 2px 9px; border-radius: 4px; margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: .3px;
}
.post-title { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 8px; line-height: 1.35; }
.post-title a:hover { color: var(--saffron); }
.post-excerpt { font-size: 13.5px; color: var(--gray-600); margin-bottom: 14px; line-height: 1.6; }
.post-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.post-date   { font-size: 12px; color: var(--gray-400); display: flex; align-items: center; gap: 4px; }
.read-more-btn {
  font-size: 12.5px; font-weight: 700; color: var(--saffron);
  border: 1.5px solid var(--saffron); border-radius: 6px;
  padding: 4px 12px; transition: all .18s;
}
.read-more-btn:hover { background: var(--saffron); color: white; }

/* Single post */
.entry-header { margin-bottom: 24px; }
.entry-title  { font-size: clamp(20px, 3vw, 28px); font-weight: 800; color: var(--navy); line-height: 1.3; margin-bottom: 12px; }
.entry-meta   { display: flex; gap: 16px; font-size: 13px; color: var(--gray-400); flex-wrap: wrap; }
.entry-content { font-size: 15px; line-height: 1.8; color: var(--gray-800); }
.entry-content h2 { font-size: 20px; font-weight: 800; color: var(--navy); margin: 28px 0 12px; }
.entry-content h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin: 22px 0 10px; }
.entry-content p  { margin-bottom: 16px; }
.entry-content ul,
.entry-content ol { margin: 0 0 16px 24px; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 6px; }
.entry-content table { width: 100%; border-collapse: collapse; margin-bottom: 20px; font-size: 14px; }
.entry-content th { background: var(--navy); color: white; padding: 10px 14px; text-align: left; }
.entry-content td { padding: 9px 14px; border-bottom: 1px solid var(--gray-200); }
.entry-content tr:nth-child(even) td { background: var(--gray-50); }
.entry-content a { color: var(--saffron); text-decoration: underline; }
.entry-content blockquote {
  border-left: 4px solid var(--saffron); padding: 12px 18px;
  background: var(--gray-50); margin: 20px 0; border-radius: 0 8px 8px 0;
  font-style: italic; color: var(--gray-600);
}

/* ─────────────────────────────────────────
   FULL-WIDTH SECTIONS
───────────────────────────────────────── */
.ljn-full-section {
  max-width: var(--container); margin: 0 auto;
  padding: 0 20px 36px;
}

/* Categories grid */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.cat-card {
  background: white; border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 18px 16px;
  display: flex; align-items: center; gap: 14px;
  cursor: pointer; transition: all .18s;
}
.cat-card:hover { border-color: var(--saffron); box-shadow: var(--shadow); transform: translateY(-2px); color: inherit; }
.cat-icon-box {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.cat-card-name { font-size: 13.5px; font-weight: 700; color: var(--navy); }
.cat-card-num  { font-size: 12px; color: var(--gray-400); font-weight: 600; }

/* State grid */
.state-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 8px; }
.state-btn {
  background: white; border: 1px solid var(--gray-200);
  border-radius: 8px; padding: 11px 8px;
  text-align: center; cursor: pointer; transition: all .18s;
  display: block;
}
.state-btn:hover { border-color: var(--saffron); background: #fff8f4; color: inherit; }
.state-flag { font-size: 20px; display: block; margin-bottom: 4px; }
.state-name  { font-size: 11.5px; font-weight: 700; color: var(--navy); }
.state-count { font-size: 10.5px; color: var(--gray-400); }

/* Why grid */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 16px; }
.why-card {
  background: white; border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 22px; text-align: center;
}
.why-icon  { font-size: 32px; margin-bottom: 10px; }
.why-title { font-size: 14px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.why-desc  { font-size: 12.5px; color: var(--gray-600); line-height: 1.55; }

/* ─────────────────────────────────────────
   FAQ ACCORDION
───────────────────────────────────────── */
.faq-item {
  background: white; border: 1px solid var(--gray-200);
  border-radius: var(--radius); margin-bottom: 8px; overflow: hidden;
}
.faq-question {
  padding: 15px 18px; font-size: 14px; font-weight: 700;
  color: var(--navy); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  user-select: none; transition: background .18s;
}
.faq-question:hover { background: var(--gray-50); }
.faq-question .faq-icon { font-size: 12px; color: var(--gray-400); transition: transform .3s; }
.faq-question.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  padding: 0 18px; font-size: 13.5px; color: var(--gray-600);
  line-height: 1.65; max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-answer.open { max-height: 400px; padding: 0 18px 16px; }

/* ─────────────────────────────────────────
   SIDEBAR
───────────────────────────────────────── */
.sidebar-card {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--gray-200); padding: 18px;
  margin-bottom: 20px;
}
.sidebar-title {
  font-size: 14px; font-weight: 800; color: var(--navy);
  margin-bottom: 14px; display: flex; align-items: center; gap: 7px;
}
.sidebar-title::before {
  content: ''; display: block; width: 3px; height: 16px;
  background: var(--saffron); border-radius: 3px;
}

/* Notify widget */
.notify-widget {
  background: linear-gradient(135deg, var(--teal) 0%, #0f766e 100%);
  border-radius: var(--radius); padding: 20px; margin-bottom: 20px;
  color: white; text-align: center;
}
.notify-icon  { font-size: 32px; margin-bottom: 8px; }
.notify-title { font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.notify-sub   { font-size: 12px; color: #99f6e4; margin-bottom: 14px; }
.notify-email-input {
  width: 100%; border: none; outline: none;
  border-radius: 7px; padding: 9px 14px;
  font-size: 13px; font-family: inherit;
  margin-bottom: 8px; color: var(--gray-800);
}
.notify-submit {
  width: 100%; background: white; color: var(--teal);
  border: none; border-radius: 7px; padding: 10px;
  font-size: 13px; font-weight: 800; transition: opacity .18s;
}
.notify-submit:hover { opacity: .9; }
.notify-channels { margin-top: 10px; display: flex; gap: 8px; justify-content: center; }
.notify-channels a {
  background: rgba(255,255,255,0.15); color: white;
  padding: 5px 12px; border-radius: 6px;
  font-size: 12px; font-weight: 700;
}

/* Quick links */
.quick-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid var(--gray-100);
  font-size: 13px; font-weight: 600; color: var(--navy);
  cursor: pointer; transition: color .18s;
}
.quick-link:last-child { border-bottom: none; }
.quick-link:hover { color: var(--saffron); }
.quick-link-count {
  font-size: 11px; background: var(--sky-light); color: #0369a1;
  padding: 1px 7px; border-radius: 10px; font-weight: 700;
}

/* Exam calendar */
.cal-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 9px 0; border-bottom: 1px solid var(--gray-100);
}
.cal-item:last-child { border-bottom: none; }
.cal-date {
  flex-shrink: 0; width: 42px; text-align: center;
  background: var(--navy); color: white;
  border-radius: 7px; padding: 4px 6px;
}
.cal-day   { font-size: 18px; font-weight: 800; line-height: 1; }
.cal-month { font-size: 9px; font-weight: 600; letter-spacing: .5px; opacity: .7; }
.cal-exam  { font-size: 12.5px; font-weight: 700; color: var(--navy); }
.cal-detail { font-size: 11.5px; color: var(--gray-600); }

/* AI Resume CTA sidebar */
.sidebar-ai-cta {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 1px solid #86efac; border-radius: var(--radius); padding: 18px;
  margin-bottom: 20px;
}
.sidebar-ai-cta .sidebar-title { color: #166534; }
.sidebar-ai-cta p { font-size: 12.5px; color: #166534; margin-bottom: 14px; line-height: 1.5; }
.sidebar-ai-cta a {
  display: block; background: var(--green); color: white;
  text-align: center; padding: 10px; border-radius: 8px;
  font-size: 13px; font-weight: 800;
}
.sidebar-ai-cta a:hover { background: #15803d; color: white; }

/* WP native widget styling */
.widget { margin-bottom: 20px; }
.widget-title {
  font-size: 14px; font-weight: 800; color: var(--navy);
  margin-bottom: 14px; padding-bottom: 8px;
  border-bottom: 2px solid var(--saffron);
}
.widget ul li { padding: 6px 0; border-bottom: 1px solid var(--gray-100); font-size: 13px; }
.widget ul li:last-child { border-bottom: none; }
.widget ul li a { color: var(--navy); }
.widget ul li a:hover { color: var(--saffron); }

/* ─────────────────────────────────────────
   PAGINATION
───────────────────────────────────────── */
.ljn-pagination { display: flex; gap: 6px; justify-content: center; padding: 20px 0 10px; flex-wrap: wrap; }
.ljn-pagination .page-numbers {
  width: 36px; height: 36px; display: flex; align-items: center;
  justify-content: center; border-radius: 7px;
  border: 1.5px solid var(--gray-200); font-size: 13.5px;
  font-weight: 700; color: var(--navy); transition: all .18s;
}
.ljn-pagination .page-numbers.current { background: var(--navy); color: white; border-color: var(--navy); }
.ljn-pagination .page-numbers:hover { border-color: var(--saffron); color: var(--saffron); }

/* ─────────────────────────────────────────
   COMMENTS
───────────────────────────────────────── */
.comments-area { background: white; border-radius: var(--radius); border: 1px solid var(--gray-200); padding: 24px; margin-top: 20px; }
.comments-title { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 20px; }
.comment-form input,
.comment-form textarea { width: 100%; border: 1px solid var(--gray-200); border-radius: 7px; padding: 9px 14px; font-size: 14px; font-family: inherit; outline: none; margin-bottom: 12px; }
.comment-form input:focus,
.comment-form textarea:focus { border-color: var(--saffron); }
.comment-form .submit {
  background: var(--saffron); color: white; border: none;
  border-radius: 7px; padding: 10px 24px; font-size: 14px;
  font-weight: 700; cursor: pointer; transition: background .18s;
}
.comment-form .submit:hover { background: #ea6c0a; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.ljn-footer { background: var(--navy); color: #94A3B8; padding: 44px 0 24px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px; margin-bottom: 32px;
}
.footer-about { font-size: 13px; color: #64748B; line-height: 1.65; margin-top: 10px; }
.footer-social { display: flex; gap: 8px; margin-top: 14px; }
.footer-social a {
  background: rgba(255,255,255,0.08);
  color: #94A3B8; padding: 6px 12px;
  border-radius: 6px; font-size: 12px; transition: all .18s;
}
.footer-social a:hover { background: var(--saffron); color: white; }
.footer-col h4 { color: white; font-size: 13px; font-weight: 700; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 12.5px; color: #64748B; transition: color .18s; }
.footer-col ul li a:hover { color: var(--saffron); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px; display: flex;
  justify-content: space-between; flex-wrap: wrap;
  gap: 10px; font-size: 12px;
}
.footer-bottom a { color: #64748B; transition: color .18s; }
.footer-bottom a:hover { color: white; }
.footer-logo strong { color: white !important; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .ljn-content-wrap { grid-template-columns: 1fr 280px; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .ljn-content-wrap { grid-template-columns: 1fr; }
  .ljn-sidebar { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ljn-nav { display: none; }
  .menu-toggle { display: block; }
  .ljn-nav.nav-open { display: block; position: absolute; top: 64px; left: 0; right: 0; background: white; padding: 10px 20px; box-shadow: var(--shadow-lg); z-index: 300; }
  .ljn-nav.nav-open ul { flex-direction: column; }
}
@media (max-width: 600px) {
  .topbar-left { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .ai-tool-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   UTILITY
───────────────────────────────────────── */
.text-saffron { color: var(--saffron); }
.bg-navy      { background: var(--navy); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

/* WP alignment classes */
.alignleft  { float: left; margin: 0 20px 16px 0; }
.alignright { float: right; margin: 0 0 16px 20px; }
.aligncenter { display: block; margin: 0 auto 16px; }
.wp-caption-text { font-size: 12px; color: var(--gray-400); text-align: center; margin-top: 4px; }
