/* =============================================
   Karier Maju — Blog Karier & Pengembangan Diri
   Navy-Amber Professional | Corporate Modern
   ============================================= */

:root {
  --navy: #283593;
  --navy-dark: #1a237e;
  --navy-light: #3949ab;
  --amber: #ffab00;
  --amber-dark: #ff8f00;
  --amber-light: #ffc107;
  --bg: #f5f7ff;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #e8eaf0;
  --gray-200: #c5cae9;
  --gray-400: #7986cb;
  --gray-600: #5c6bc0;
  --gray-700: #455a64;
  --gray-800: #263238;
  --text: #1a1f36;
  --text-muted: #546e7a;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 2px 12px rgba(40,53,147,0.10);
  --shadow-md: 0 4px 24px rgba(40,53,147,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--amber-dark); }
img { max-width: 100%; display: block; }

/* ---- DEMO BAR ---- */
.demo-bar {
  background: var(--navy-dark);
  color: #c5cae9;
  text-align: center;
  padding: 7px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}
.demo-bar a {
  color: var(--amber);
  font-weight: 600;
  margin: 0 4px;
}
.demo-bar a:hover { color: var(--amber-light); }

/* ---- HEADER / NAV ---- */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(26,35,126,0.25);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 36px; height: 36px;
  background: var(--amber);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.nav-logo span { color: var(--amber); }

/* Checkbox hack for mobile menu */
#nav-toggle { display: none; }

.nav-label {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-label span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

nav ul li a {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all 0.2s;
  display: block;
}
nav ul li a:hover,
nav ul li a.active {
  background: rgba(255,255,255,0.12);
  color: var(--amber);
}

.nav-cta a {
  background: var(--amber) !important;
  color: var(--navy-dark) !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
}
.nav-cta a:hover {
  background: var(--amber-dark) !important;
  color: var(--white) !important;
}

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  padding: 72px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  background: rgba(255,171,0,0.08);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: rgba(255,171,0,0.05);
  border-radius: 50%;
}

.hero-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,171,0,0.18);
  border: 1px solid rgba(255,171,0,0.35);
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.hero h1 em {
  color: var(--amber);
  font-style: normal;
}

.hero p {
  color: rgba(255,255,255,0.78);
  font-size: 1.08rem;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--amber);
  color: var(--navy-dark);
}
.btn-primary:hover { background: var(--amber-dark); color: var(--navy-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); color: var(--white); }

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 12px 16px;
  border-right: 1px solid var(--gray-100);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---- MAIN LAYOUT ---- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  padding: 48px 0;
}

/* ---- SECTION HEADERS ---- */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gray-100);
}
.section-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 22px;
  background: var(--amber);
  border-radius: 2px;
}
.section-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

/* ---- FEATURED CARD (large) ---- */
.featured-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.featured-thumb {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.featured-thumb svg { opacity: 0.9; }
.featured-body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ---- POST CARDS GRID ---- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.post-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.post-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.thumb-career { background: linear-gradient(135deg, #283593, #3949ab); }
.thumb-tips { background: linear-gradient(135deg, #1565c0, #1976d2); }
.thumb-motivasi { background: linear-gradient(135deg, #6a1b9a, #8e24aa); }
.thumb-skills { background: linear-gradient(135deg, #00695c, #00897b); }
.thumb-interview { background: linear-gradient(135deg, #bf360c, #e64a19); }
.thumb-salary { background: linear-gradient(135deg, #37474f, #546e7a); }
.thumb-remote { background: linear-gradient(135deg, #0d47a1, #1565c0); }
.thumb-leadership { background: linear-gradient(135deg, #4a148c, #6a1b9a); }

.post-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }

.post-cat {
  display: inline-block;
  background: rgba(40,53,147,0.1);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.post-cat.cat-tips { background: rgba(255,171,0,0.15); color: var(--amber-dark); }
.post-cat.cat-motivasi { background: rgba(106,27,154,0.1); color: #6a1b9a; }
.post-cat.cat-skills { background: rgba(0,105,92,0.1); color: #00695c; }
.post-cat.cat-interview { background: rgba(191,54,12,0.1); color: #bf360c; }

.post-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 8px;
  flex: 1;
}
.post-title a { color: inherit; }
.post-title a:hover { color: var(--navy); }

.post-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: auto;
}
.post-meta-date { display: flex; align-items: center; gap: 4px; }

/* ---- SIDEBAR ---- */
.sidebar { display: flex; flex-direction: column; gap: 24px; }

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow);
}

.widget-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Subscribe widget */
.subscribe-widget { background: var(--navy); }
.subscribe-widget .widget-title { color: var(--white); border-color: rgba(255,255,255,0.15); }
.subscribe-widget p { color: rgba(255,255,255,0.75); font-size: 0.875rem; margin-bottom: 14px; }
.subscribe-form input {
  width: 100%;
  padding: 10px 14px;
  border: none;
  border-radius: var(--radius);
  font-size: 0.88rem;
  margin-bottom: 10px;
  font-family: inherit;
  outline: none;
}
.subscribe-form button {
  width: 100%;
  padding: 10px;
  background: var(--amber);
  color: var(--navy-dark);
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.subscribe-form button:hover { background: var(--amber-dark); }

/* Categories widget */
.cat-list { list-style: none; }
.cat-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.875rem;
}
.cat-list li:last-child { border-bottom: none; }
.cat-list a { color: var(--text); font-weight: 500; }
.cat-list a:hover { color: var(--navy); }
.cat-count {
  background: var(--gray-100);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
}

/* Popular posts widget */
.popular-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
}
.popular-item:last-child { border-bottom: none; }
.popular-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gray-200);
  line-height: 1;
  min-width: 28px;
}
.popular-info { flex: 1; }
.popular-title { font-size: 0.875rem; font-weight: 600; color: var(--text); line-height: 1.4; margin-bottom: 4px; }
.popular-title a { color: inherit; }
.popular-title a:hover { color: var(--navy); }
.popular-meta { font-size: 0.75rem; color: var(--text-muted); }

/* Tags widget */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  background: var(--bg);
  border: 1px solid var(--gray-200);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  transition: all 0.2s;
}
.tag:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ---- ARTIKEL LIST PAGE ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 48px 20px 40px;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.5rem,4vw,2.2rem); font-weight: 800; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1rem; }

.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 0 20px;
}
.filter-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 12px 0;
}
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 600;
  border: 2px solid var(--gray-100);
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  background: var(--white);
  text-decoration: none;
  transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.article-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 40px 0;
}

/* ---- DETAIL PAGE ---- */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  padding: 40px 0;
}

.article-header { margin-bottom: 28px; }
.article-cat { margin-bottom: 12px; }
.article-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.3;
  margin-bottom: 16px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-bottom: 20px;
  border-bottom: 2px solid var(--gray-100);
  margin-bottom: 28px;
}
.author-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.article-hero-img {
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-body { font-size: 1rem; color: var(--text); line-height: 1.85; }
.article-body h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin: 32px 0 14px;
}
.article-body p { margin-bottom: 18px; }
.article-body ul { padding-left: 22px; margin-bottom: 18px; }
.article-body ul li { margin-bottom: 8px; }

.quote-block {
  border-left: 4px solid var(--amber);
  background: rgba(255,171,0,0.07);
  padding: 18px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--navy-dark);
  font-size: 1.05rem;
  font-weight: 600;
}

.tips-box {
  background: var(--bg);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin: 24px 0;
}
.tips-box h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.tips-box ol { padding-left: 20px; }
.tips-box ol li { margin-bottom: 8px; font-size: 0.925rem; }

.article-tags { margin: 32px 0; }
.article-tags h4 { font-size: 0.85rem; font-weight: 700; color: var(--text-muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }

.share-bar {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.share-bar span { font-weight: 700; font-size: 0.9rem; color: var(--navy-dark); }
.share-btn {
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: 0.83rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.share-btn:hover { opacity: 0.85; }
.share-wa { background: #25d366; color: white; }
.share-ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: white; }
.share-li { background: #0077b5; color: white; }

.related-articles { margin-top: 40px; }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.related-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.related-card:hover { transform: translateY(-2px); }
.related-thumb {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.related-body { padding: 14px 16px; }
.related-title { font-size: 0.875rem; font-weight: 700; color: var(--text); line-height: 1.4; }
.related-title a { color: inherit; }
.related-title a:hover { color: var(--navy); }

/* ---- TENTANG PAGE ---- */
.about-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  padding: 48px 0;
}

.author-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
}
.author-cover {
  height: 120px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
}
.author-avatar-wrap {
  margin-top: -48px;
  padding: 0 24px 24px;
}
.author-avatar-lg {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--amber);
  margin: 0 auto 14px;
  border: 4px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.author-name { font-size: 1.15rem; font-weight: 800; color: var(--navy-dark); margin-bottom: 4px; }
.author-role { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 14px; }
.social-links { display: flex; justify-content: center; gap: 8px; }
.social-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s;
}
.social-btn:hover { transform: scale(1.1); }
.s-li { background: #0077b5; color: white; }
.s-ig { background: linear-gradient(45deg,#f09433,#cc2366); color: white; }
.s-tw { background: #1da1f2; color: white; }
.s-yt { background: #ff0000; color: white; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}
.stat-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}
.stat-card .num { font-size: 1.4rem; font-weight: 800; color: var(--navy); }
.stat-card .label { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

.about-content h2 { font-size: 1.3rem; font-weight: 800; color: var(--navy-dark); margin: 0 0 14px; }
.about-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 18px; font-size: 0.95rem; }
.about-content h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin: 24px 0 12px; }

.mission-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 20px 0; }
.mission-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  text-align: center;
}
.mission-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(40,53,147,0.1);
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mission-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--navy-dark); margin-bottom: 6px; }
.mission-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
}
.team-cover { height: 80px; }
.t1 { background: linear-gradient(135deg, #283593, #3949ab); }
.t2 { background: linear-gradient(135deg, #1a237e, #283593); }
.t3 { background: linear-gradient(135deg, #0d47a1, #1565c0); }
.team-info { padding: 32px 14px 16px; margin-top: -28px; }
.team-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  margin: 0 auto 10px;
  border: 3px solid var(--white);
  display: flex; align-items: center; justify-content: center;
}
.team-name { font-size: 0.9rem; font-weight: 700; color: var(--navy-dark); }
.team-role { font-size: 0.78rem; color: var(--text-muted); }

/* ---- KONTAK PAGE ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  padding: 48px 0;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.contact-card h2 { font-size: 1.3rem; font-weight: 800; color: var(--navy-dark); margin-bottom: 8px; }
.contact-card > p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 24px; }

.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--navy-dark); margin-bottom: 6px; }
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s;
}
.form-control:focus { border-color: var(--navy); background: var(--white); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }

.form-submit {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
  width: 100%;
}
.form-submit:hover { background: var(--navy-dark); }

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.contact-info-card h3 { font-size: 1rem; font-weight: 800; color: var(--navy-dark); margin-bottom: 16px; }
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.875rem;
}
.info-item:last-child { border-bottom: none; }
.info-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(40,53,147,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-label { font-weight: 700; color: var(--navy-dark); margin-bottom: 2px; }
.info-value { color: var(--text-muted); }

.collab-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--white);
  margin-bottom: 20px;
}
.collab-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 10px; color: var(--amber); }
.collab-card p { font-size: 0.875rem; opacity: 0.85; line-height: 1.7; margin-bottom: 16px; }
.collab-types { display: flex; flex-wrap: wrap; gap: 8px; }
.collab-type {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ---- FOOTER ---- */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 48px 20px 0;
  margin-top: 60px;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 18px; }
.footer-title { font-size: 0.9rem; font-weight: 800; color: var(--white); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-links a:hover { color: var(--amber); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---- PAGINATION ---- */
.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  padding: 20px 0 40px;
}
.page-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid var(--gray-100);
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s;
}
.page-btn.active, .page-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 12px 0;
}
.breadcrumb-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--navy); }
.breadcrumb span { color: var(--gray-200); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .main-grid { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-thumb { min-height: 200px; }
  .detail-layout { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .about-layout .author-card { max-width: 360px; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-list-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-cards { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .post-grid { grid-template-columns: 1fr; }
  .article-list-grid { grid-template-columns: 1fr; }
  .stats-inner { justify-content: center; }
  .stat-item { flex: none; min-width: 45%; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .mission-cards { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .nav-label { display: flex; }
  nav ul {
    display: none;
    position: absolute;
    top: 62px; left: 0; right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 12px;
    gap: 4px;
    box-shadow: var(--shadow-md);
  }
  #nav-toggle:checked ~ nav ul { display: flex; }
  nav ul li a { padding: 10px 14px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  header { position: relative; }
  .nav-container { flex-wrap: wrap; height: auto; padding: 14px 20px; }
}
