@import url('https://fonts.googleapis.com/css2?family=Noto+Nastaliq+Urdu:wght@400;600;700&family=Playfair+Display:wght@600;700;900&family=Lato:wght@300;400;700&family=Merriweather:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --primary: #1a3d2b;
  --primary-light: #2a5c40;
  --accent: #c8892a;
  --accent-light: #e0a84a;
  --bg: #f3ece0;
  --bg-alt: #ede4d2;
  --white: #ffffff;
  --dark: #0d1a12;
  --text: #2c2c2c;
  --text-muted: #6b6b6b;
  --border: #d9cdb8;
  --card-bg: #fdfaf5;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  text-align: right;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color .25s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.urdu {
  font-family: 'Noto Nastaliq Urdu', serif;
  line-height: 2;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== PAGE LOADER ===== */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .4s, visibility .4s;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.loader-ring {
  width: 52px;
  height: 52px;
  border: 4px solid rgba(200,137,42,.3);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
.loader-logo {
  font-family: 'Playfair Display', serif;
  color: var(--accent);
  font-size: 22px;
  letter-spacing: 2px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--dark);
  height: var(--header-h);
  border-bottom: 2px solid var(--accent);
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.site-logo {
  font-family: 'Playfair Display', serif;
  color: var(--accent);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.site-logo span {
  display: block;
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  letter-spacing: 0;
  margin-top: 2px;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-nav a {
  color: rgba(255,255,255,.8);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .3s;
}
.header-nav a:hover::after { width: 100%; }
.header-nav a:hover { color: var(--accent); }

.burger-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 600;
}
.burger-btn span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: all .35s;
}
.burger-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.active span:nth-child(2) { opacity: 0; }
.burger-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BURGER MENU ===== */
.burger-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 480;
  opacity: 0;
  visibility: hidden;
  transition: all .35s;
}
.burger-overlay.open { opacity: 1; visibility: visible; }

.burger-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  height: 100vh;
  background: var(--dark);
  z-index: 490;
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  padding: 88px 0 40px;
  border-right: 2px solid var(--accent);
}
.burger-menu.open { transform: translateX(0); }
.burger-menu-inner { padding: 0 32px; }
.burger-menu-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}
.burger-articles { border-top: 1px solid rgba(255,255,255,.1); }
.burger-articles li { border-bottom: 1px solid rgba(255,255,255,.07); }
.burger-articles a {
  display: block;
  padding: 14px 0;
  color: rgba(255,255,255,.75);
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 15px;
  line-height: 2;
  transition: color .25s, padding-right .25s;
}
.burger-articles a:hover {
  color: var(--accent);
  padding-right: 8px;
}
.burger-pages {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.burger-pages a {
  color: rgba(255,255,255,.5);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color .25s;
}
.burger-pages a:hover { color: var(--accent); }

/* ===== HERO ===== */
.hero {
  background: var(--primary);
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.hero-text {
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Noto Nastaliq Urdu', serif;
  color: #ffffff;
  font-size: 38px;
  line-height: 2.1;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-desc {
  font-family: 'Noto Nastaliq Urdu', serif;
  color: rgba(255,255,255,.7);
  font-size: 17px;
  line-height: 2;
  margin-bottom: 36px;
}
.hero-meta {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  letter-spacing: .5px;
}
.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.75) saturate(.9);
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(26,61,43,.0), rgba(26,61,43,.6));
  z-index: 1;
}

/* ===== SECTION TITLES ===== */
.section-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}
.section-title {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 26px;
  color: var(--primary);
  font-weight: 700;
  line-height: 2;
}
.section-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to left, var(--accent), transparent);
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
}

/* ===== ARTICLES GRID ===== */
.articles-section { padding: 72px 0; }
.articles-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 28px;
}
.article-card {
  background: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,61,43,.15);
}
.article-card.featured {
  grid-row: span 2;
}
.card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform .4s;
}
.article-card.featured .card-img { aspect-ratio: 3/2; }
.article-card:hover .card-img { transform: scale(1.04); }
.card-img-wrap { overflow: hidden; }
.card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 12px;
}
.card-title {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 19px;
  color: var(--primary);
  font-weight: 700;
  line-height: 2;
  margin-bottom: 12px;
}
.article-card.featured .card-title { font-size: 24px; }
.card-excerpt {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 2;
  flex: 1;
  margin-bottom: 20px;
}
.card-meta {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.card-meta span { display: flex; align-items: center; gap: 5px; }

/* ===== INFO BAND ===== */
.info-band {
  background: var(--primary);
  padding: 56px 0;
  color: white;
}
.info-band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.info-item { text-align: center; }
.info-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--accent);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}
.info-label {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 15px;
  color: rgba(255,255,255,.65);
  line-height: 2;
}

/* ===== ABOUT STRIP ===== */
.about-strip {
  padding: 72px 0;
  background: var(--bg-alt);
}
.about-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-strip-img img {
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(26,61,43,.2);
}
.about-strip-text .section-head { margin-bottom: 20px; }
.about-strip-text p {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 16px;
  color: var(--text);
  line-height: 2.2;
  margin-bottom: 16px;
}
.btn-outline {
  display: inline-block;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 11px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
  transition: all .25s;
}
.btn-outline:hover { background: var(--primary); color: white; }

/* ===== ARTICLE PAGE ===== */
.article-page { padding: 60px 0 80px; }
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.article-header { margin-bottom: 32px; }
.article-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 3px;
  margin-bottom: 18px;
}
.article-title {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 34px;
  color: var(--primary);
  font-weight: 700;
  line-height: 2;
  margin-bottom: 16px;
}
.article-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 32px;
}
.article-hero-img {
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 36px;
}
.article-body h2 {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 24px;
  color: var(--primary);
  margin: 36px 0 14px;
  line-height: 2;
  padding-right: 14px;
  border-right: 4px solid var(--accent);
}
.article-body h3 {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 19px;
  color: var(--primary-light);
  margin: 24px 0 10px;
  line-height: 2;
}
.article-body p {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 17px;
  color: var(--text);
  line-height: 2.4;
  margin-bottom: 18px;
}
.article-body ul {
  margin: 16px 0 24px;
  padding-right: 20px;
}
.article-body ul li {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 16px;
  color: var(--text);
  line-height: 2.2;
  margin-bottom: 8px;
  list-style: disc;
}
.article-body .highlight-box {
  background: var(--primary);
  color: white;
  padding: 24px 28px;
  border-radius: 6px;
  margin: 32px 0;
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 16px;
  line-height: 2.2;
}
.article-body .highlight-box strong { color: var(--accent); }
.article-body img {
  border-radius: 6px;
  margin: 24px 0;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.article-sources {
  background: var(--bg-alt);
  border-radius: 6px;
  padding: 24px 28px;
  margin-top: 40px;
  border: 1px solid var(--border);
}
.article-sources h4 {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 700;
}
.article-sources ul { padding-right: 16px; }
.article-sources ul li {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 6px;
  list-style: disc;
}
.article-sources ul li a { color: var(--accent); }

/* ===== SIDEBAR ===== */
.sidebar-widget {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 28px;
}
.widget-title {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
}
.sidebar-links li { border-bottom: 1px solid var(--border); }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a {
  display: block;
  padding: 10px 0;
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 14px;
  color: var(--text);
  line-height: 2;
  transition: color .2s;
}
.sidebar-links a:hover { color: var(--accent); }
.sidebar-fact {
  background: var(--primary);
  color: white;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 28px;
  text-align: center;
}
.fact-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--accent);
  font-weight: 700;
}
.fact-text {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  line-height: 2;
  margin-top: 8px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 16px 0;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: var(--border); }

/* ===== STATIC PAGES ===== */
.static-page { padding: 60px 0 80px; }
.static-title {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 34px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 2;
}
.static-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
}
.static-body h2 {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 22px;
  color: var(--primary);
  margin: 32px 0 12px;
  line-height: 2;
}
.static-body p, .static-body li {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 16px;
  color: var(--text);
  line-height: 2.3;
  margin-bottom: 14px;
}
.static-body ul { padding-right: 20px; }
.static-body ul li { list-style: disc; margin-bottom: 8px; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-form label {
  display: block;
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 6px;
  margin-top: 18px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  font-size: 15px;
  color: var(--text);
  transition: border-color .25s;
  font-family: 'Noto Nastaliq Urdu', serif;
  direction: rtl;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.btn-submit {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 13px 36px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 20px;
  font-family: 'Noto Nastaliq Urdu', serif;
  transition: background .25s;
}
.btn-submit:hover { background: var(--primary-light); }
.contact-info { padding-top: 8px; }
.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
}
.contact-info-val {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 16px;
  color: var(--text);
  line-height: 1.8;
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  z-index: 800;
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  border-top: 2px solid var(--accent);
}
#cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-text {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 14px;
  color: rgba(255,255,255,.8);
  line-height: 2;
  flex: 1;
  min-width: 260px;
}
.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
.btn-cookie {
  padding: 9px 24px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  font-family: 'Lato', sans-serif;
  transition: all .25s;
}
.btn-cookie.accept { background: var(--accent); color: var(--dark); }
.btn-cookie.accept:hover { background: var(--accent-light); }
.btn-cookie.reject { background: transparent; color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.2); }
.btn-cookie.reject:hover { border-color: rgba(255,255,255,.5); color: white; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  padding: 60px 0 0;
  border-top: 2px solid var(--accent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .site-logo { margin-bottom: 16px; }
.footer-brand p {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 2;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 2;
  transition: color .2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.35);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  transition: color .2s;
}
.footer-bottom-links a:hover { color: var(--accent); }

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: var(--primary);
  padding: 72px 0;
  color: white;
}
.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-hero h1 {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 40px;
  line-height: 2;
  margin-bottom: 20px;
  color: white;
}
.about-hero p {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 17px;
  color: rgba(255,255,255,.75);
  line-height: 2.2;
}
.about-hero img {
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  opacity: .85;
}
.about-section { padding: 72px 0; }
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}
.value-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
}
.value-icon {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-icon svg { width: 24px; height: 24px; fill: var(--accent); }
.value-title {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 17px;
  color: var(--primary);
  font-weight: 700;
  line-height: 2;
  margin-bottom: 10px;
}
.value-desc {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 2;
}

/* ===== PAGE BANNER ===== */
.page-banner {
  background: var(--primary);
  padding: 48px 0;
  margin-bottom: 48px;
}
.page-banner h1 {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 32px;
  color: white;
  font-weight: 700;
  line-height: 2;
}
.page-banner p {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 16px;
  color: rgba(255,255,255,.65);
  line-height: 2;
  margin-top: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .articles-grid { grid-template-columns: 1fr; }
  .article-card.featured { grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .info-band-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .article-layout { grid-template-columns: 1fr; }
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-strip-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .hero-title { font-size: 28px; }
  .hero-text { padding: 48px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .info-band-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .article-title { font-size: 26px; }
  .static-title { font-size: 26px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .card-body { padding: 16px; }
}
