/* ===========================================
   Urdu Church — Theme Styles
   Based on the "Royal Modern" mockup
   =========================================== */

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

:root {
  --blue: #1e3a8a;
  --purple: #6d28d9;
  --red: #b91c1c;
  --gold: #fbbf24;
  --amber: #f59e0b;
  --green: #16a34a;
  --ink: #0f172a;
  --muted: #64748b;
  --bg: #fafaff;
  --surface: #ffffff;
  --border: rgba(15, 23, 42, 0.08);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.urdu, [lang="ur"] { font-family: 'Noto Nastaliq Urdu', serif; line-height: 2; direction: rtl; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.screen-reader-text { position: absolute; left: -9999px; }

/* NAV */
.uc-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.uc-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}
.uc-nav-inner {
  max-width: 1400px; margin: 0 auto; padding: 18px 48px;
  display: flex; justify-content: space-between; align-items: center;
}
.uc-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; color: inherit; }
.uc-logo-mark {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--purple), var(--red));
  display: grid; place-items: center; color: white; font-weight: 900; font-size: 22px;
  box-shadow: 0 4px 16px rgba(109, 40, 217, 0.3);
}
.uc-logo-mark svg { display: block; width: 26px; height: 26px; }
.uc-logo-text { font-weight: 800; font-size: 22px; letter-spacing: 0.5px; }
.uc-logo-text span { color: var(--purple); }
/* v1.0.3 — bundled header logo image (assets/img/header-logo.png).
   Renders only when the user hasn't uploaded a custom site logo via
   Appearance → Customize → Site Identity. The intrinsic file is
   735×244 (3:1) so we cap height — width auto-adjusts.
   v1.0.4 — bumped header height 64 → 80px per Pastor Naeem
   2026-05-04 ("a lit bit more"). Footer mirror of the same logo
   sits at 56px so it doesn't dominate the footer column. */
.uc-logo--default { gap: 0; }
.uc-logo-image { display: block; height: 80px; width: auto; max-width: 100%; }
.uc-logo-image--footer { height: 56px; margin-bottom: 4px; }
@media (max-width: 720px) {
  .uc-logo-image { height: 56px; }
  .uc-logo-image--footer { height: 48px; }
}
.uc-nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.uc-nav-links a { color: var(--ink); text-decoration: none; font-weight: 500; font-size: 15px; transition: color 0.2s; }
.uc-nav-links a:hover { color: var(--purple); }
.uc-nav-cta,
.uc-nav-links li.menu-item-download a,
.uc-nav-links li.uc-cta a,
.uc-nav-links li:last-child a[href*="download"],
.uc-nav-links li:last-child a[href*="#download"] {
  background: linear-gradient(135deg, var(--blue), var(--purple), var(--red)) !important;
  color: #ffffff !important;
  padding: 10px 22px !important;
  border-radius: 30px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  font-size: 14px !important;
  box-shadow: 0 4px 16px rgba(185, 28, 28, 0.3) !important;
  transition: transform 0.2s !important;
  display: inline-block !important;
}
.uc-nav-cta:hover,
.uc-nav-links li.menu-item-download a:hover,
.uc-nav-links li.uc-cta a:hover,
.uc-nav-links li:last-child a[href*="download"]:hover,
.uc-nav-links li:last-child a[href*="#download"]:hover {
  transform: translateY(-2px);
  color: #ffffff !important;
  opacity: 0.95;
}
.uc-nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  font-size: 36px; line-height: 1; color: var(--ink);
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  border-radius: 10px; transition: background 0.2s;
}
.uc-nav-toggle:hover { background: rgba(109,40,217,0.08); color: var(--purple); }

/* HERO */
.uc-hero {
  min-height: 100vh; padding: 140px 48px 80px;
  background:
    radial-gradient(ellipse at top left, rgba(30, 58, 138, 0.22), transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(185, 28, 28, 0.18), transparent 55%),
    radial-gradient(ellipse at center, rgba(109, 40, 217, 0.14), transparent 60%),
    linear-gradient(180deg, #f0f0ff 0%, #e8e6ff 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.uc-hero::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 800px; height: 800px; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(251, 191, 36, 0.08), transparent 60%);
  pointer-events: none;
}
.uc-hero-inner { max-width: 1100px; text-align: center; position: relative; z-index: 1; }
.uc-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; padding: 8px 16px; border-radius: 30px;
  font-size: 13px; font-weight: 600; color: var(--purple);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  margin-bottom: 32px; border: 1px solid rgba(109, 40, 217, 0.15);
}
.uc-hero-badge::before { content: '✦'; color: var(--gold); }
.uc-hero-title-en {
  font-size: clamp(48px, 8vw, 96px); font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--purple) 50%, var(--red));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: -2px; line-height: 1; margin-bottom: 20px;
}
.uc-hero-title-urdu {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: clamp(56px, 10vw, 120px); font-weight: 700;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 24px;
}
.uc-hero-sub {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 22px; color: var(--muted);
  line-height: 2.2; max-width: 700px; margin: 0 auto 40px;
}
.uc-hero-sub-en { font-size: 17px; color: var(--muted); margin-bottom: 44px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.uc-hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Hero App Store + Google Play strip — sits right below the primary CTA. */
.uc-hero-stores {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}
.uc-hero-stores-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  opacity: 0.9;
}
.uc-hero-stores-urdu {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: 18px;
  line-height: 2;
  color: var(--ink);
}
.uc-hero-stores-en {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.uc-hero-stores .uc-store-buttons {
  /* Tighter than the full CTA-section version so the hero stays balanced. */
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 640px) {
  .uc-hero-stores { margin-top: 18px; }
  .uc-hero-stores-en { letter-spacing: 2px; }
}
.uc-btn { padding: 16px 32px; border-radius: 12px; font-weight: 700; font-size: 16px; text-decoration: none; transition: all 0.2s; display: inline-flex; align-items: center; gap: 10px; cursor: pointer; border: 0; font-family: inherit; }
.uc-btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--purple), var(--red));
  color: white;
  box-shadow: 0 8px 24px rgba(109, 40, 217, 0.4);
}
.uc-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(109, 40, 217, 0.5); color: #fff; }
.uc-btn-outline {
  background: white; color: var(--ink); border: 2px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.uc-btn-outline:hover { border-color: var(--purple); color: var(--ink); }
.uc-hero-stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 70px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.uc-stat {
  text-align: center;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  padding: 18px 10px 16px;
  transition: all 0.25s ease;
}
.uc-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(109, 40, 217, 0.12);
  border-color: rgba(109, 40, 217, 0.2);
}
.uc-stat-icon { font-size: 26px; margin-bottom: 6px; line-height: 1; }
.uc-stat-num {
  font-size: 26px; font-weight: 900;
  background: linear-gradient(135deg, var(--purple), var(--red));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1.1;
}
.uc-stat-label { font-size: 11px; color: var(--ink); font-weight: 700; letter-spacing: 0.5px; margin-top: 4px; line-height: 1.3; }
@media (max-width: 980px) {
  .uc-hero-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
@media (max-width: 520px) {
  .uc-hero-stats { grid-template-columns: repeat(2, 1fr); }
  .uc-stat-num { font-size: 22px; }
}

/* SECTION */
.uc-section { padding: 100px 48px; max-width: 1400px; margin: 0 auto; }
.uc-section-head { text-align: center; margin-bottom: 64px; }
.uc-section-eyebrow { color: var(--purple); font-weight: 700; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px; }
.uc-section-title { font-size: clamp(34px, 5vw, 56px); font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; line-height: 1.1; }
.uc-section-title-urdu { font-family: 'Noto Nastaliq Urdu', serif; font-size: clamp(30px, 4vw, 48px); font-weight: 700; margin-bottom: 20px; line-height: 1.7; color: var(--purple); }
.uc-section-desc { color: var(--muted); font-size: 17px; max-width: 640px; margin: 0 auto; }

/* FEATURE GRID */
.uc-feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 48px;
}
.uc-feature-card {
  background: white; border-radius: 20px; padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
  text-align: center;
}
.uc-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.12);
}
.uc-feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center; font-size: 26px;
  margin: 0 auto 20px; color: white;
}
.uc-feature-card.f1 .uc-feature-icon { background: #2563eb; }
.uc-feature-card.f2 .uc-feature-icon { background: #7c3aed; }
.uc-feature-card.f3 .uc-feature-icon { background: #d946ef; }
.uc-feature-card.f4 .uc-feature-icon { background: #22c55e; }
.uc-feature-card.f5 .uc-feature-icon { background: #0ea5e9; }
.uc-feature-card.f6 .uc-feature-icon { background: #92400e; }
.uc-feature-card.f7 .uc-feature-icon { background: #ec4899; }
.uc-feature-card.f8 .uc-feature-icon { background: #047857; }
.uc-feature-urdu { font-family: 'Noto Nastaliq Urdu', serif; font-size: 26px; font-weight: 700; margin-bottom: 6px; line-height: 1.6; }
.uc-feature-en { font-size: 14px; color: var(--muted); font-weight: 600; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.uc-feature-desc { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* DAILY VERSE BAR */
.uc-verse-band {
  margin: 80px 48px; padding: 60px 40px;
  background: linear-gradient(135deg, var(--blue), var(--purple) 60%, var(--red));
  border-radius: 32px; text-align: center; color: white;
  position: relative; overflow: hidden;
  max-width: 1340px; margin-left: auto; margin-right: auto;
}
.uc-verse-band::before { content: '✦'; position: absolute; top: 20px; left: 30px; font-size: 24px; color: var(--gold); opacity: 0.6; }
.uc-verse-band::after { content: '✦'; position: absolute; bottom: 20px; right: 30px; font-size: 24px; color: var(--gold); opacity: 0.6; }
.uc-verse-eyebrow { color: var(--gold); font-weight: 700; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; }
.uc-verse-text {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: clamp(26px, 3.5vw, 40px); line-height: 2.2; font-weight: 600;
  max-width: 900px; margin: 0 auto 24px;
}
.uc-verse-ref { font-family: 'Noto Nastaliq Urdu', serif; font-size: 22px; color: var(--gold); font-weight: 700; }

/* APP DOWNLOAD CTA */
.uc-cta-section {
  text-align: center; padding: 120px 48px;
  background: radial-gradient(ellipse at top, rgba(109, 40, 217, 0.1), transparent 60%), var(--bg);
}
.uc-app-buttons { display: flex; gap: 16px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.uc-app-btn {
  background: var(--ink); color: white; padding: 14px 28px; border-radius: 12px;
  display: inline-flex; align-items: center; gap: 12px; text-decoration: none;
  font-weight: 600; transition: all 0.2s;
}
.uc-app-btn:hover { transform: translateY(-3px); background: var(--blue); color: white; }
.uc-app-btn-icon { font-size: 24px; }
.uc-app-btn-sub { display: block; font-size: 11px; opacity: 0.7; text-transform: uppercase; }
.uc-app-btn-name { display: block; font-size: 16px; }

/* BOOKS SECTION */
.uc-books-section { padding: 100px 48px; background: linear-gradient(180deg, var(--bg) 0%, #eff0ff 100%); }
.uc-books-wrap { max-width: 1400px; margin: 0 auto; }
.uc-books-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
@media (max-width: 1024px) { .uc-books-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .uc-books-grid { grid-template-columns: 1fr; } }
.uc-book-card { background: white; border-radius: 20px; overflow: hidden; border: 1px solid var(--border); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: flex; flex-direction: column; }
.uc-book-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.uc-book-cover { aspect-ratio: 3/4; position: relative; overflow: hidden; display: grid; place-items: center; text-align: center; padding: 20px; color: white; }
.uc-book-cover::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.2)); }
.uc-bc-1 { background: linear-gradient(135deg, #1e3a8a, #7c3aed); }
.uc-bc-2 { background: linear-gradient(135deg, #7c2d12, #b91c1c); }
.uc-bc-3 { background: linear-gradient(135deg, #065f46, #047857); }
.uc-bc-4 { background: linear-gradient(135deg, #581c87, #c026d3); }
.uc-bc-5 { background: linear-gradient(135deg, #78350f, #d97706); }
.uc-bc-6 { background: linear-gradient(135deg, #0c4a6e, #0891b2); }
.uc-bc-7 { background: linear-gradient(135deg, #134e4a, #0d9488); }
.uc-bc-8 { background: linear-gradient(135deg, #450a0a, #991b1b); }
.uc-book-cover-inner { position: relative; z-index: 1; }
.uc-book-cover-ornament { font-size: 28px; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.uc-book-cover-title-urdu { font-family: 'Noto Nastaliq Urdu', serif; font-size: 28px; font-weight: 700; line-height: 1.6; margin-bottom: 8px; }
.uc-book-cover-title-en { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; opacity: 0.9; }
.uc-book-cover-author { position: absolute; bottom: 18px; left: 20px; right: 20px; font-size: 11px; letter-spacing: 1px; z-index: 1; font-weight: 600; color: rgba(255,255,255,0.85); text-transform: uppercase; }
.uc-book-badge { position: absolute; top: 12px; left: 12px; z-index: 2; padding: 5px 10px; border-radius: 6px; font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.uc-book-badge.free { background: var(--gold); color: var(--ink); }
.uc-book-badge.paid { background: rgba(255,255,255,0.95); color: var(--ink); }
.uc-book-info { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.uc-book-category { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; color: var(--purple); margin-bottom: 8px; }
.uc-book-title { font-size: 16px; font-weight: 700; line-height: 1.3; margin-bottom: 4px; }
.uc-book-title-urdu { font-family: 'Noto Nastaliq Urdu', serif; font-size: 16px; line-height: 1.8; color: var(--muted); margin-bottom: 10px; }
.uc-book-stars { color: var(--amber); font-size: 14px; margin-bottom: 12px; }
.uc-book-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.uc-book-price { font-weight: 800; font-size: 16px; color: var(--ink); }
.uc-book-price.free { color: var(--green); }
.uc-book-action { background: var(--ink); color: white; padding: 8px 14px; border-radius: 8px; text-decoration: none; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; transition: background 0.2s; }
.uc-book-action:hover { background: var(--purple); color: white; }
.uc-book-action.free { background: var(--green); }
.uc-book-action.free:hover { background: #16a34a; }

/* REVIEWS SECTION */
.uc-reviews-section { padding: 100px 48px; background: white; }
.uc-reviews-wrap { max-width: 1400px; margin: 0 auto; }
.uc-reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
@media (max-width: 1024px) { .uc-reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .uc-reviews-grid { grid-template-columns: 1fr; } }
.uc-review-card { background: linear-gradient(180deg, #fafaff 0%, white 100%); border-radius: 24px; padding: 36px 30px; border: 1px solid var(--border); position: relative; transition: all 0.3s; }
.uc-review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.uc-review-quote { position: absolute; top: 20px; right: 28px; font-size: 80px; line-height: 0.5; color: var(--purple); opacity: 0.15; font-family: 'Inter', serif; font-weight: 900; }
.uc-review-stars { color: var(--amber); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.uc-review-text { font-size: 16px; line-height: 1.7; color: var(--ink); margin-bottom: 20px; position: relative; z-index: 1; }
.uc-review-text-urdu { font-family: 'Noto Nastaliq Urdu', serif; font-size: 17px; line-height: 2.1; color: var(--ink); margin-bottom: 20px; direction: rtl; }
.uc-review-author { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--border); }
.uc-review-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--purple), var(--red)); color: white; display: grid; place-items: center; font-weight: 800; font-size: 18px; flex-shrink: 0; }
.uc-review-author-info { flex: 1; }
.uc-review-name { font-weight: 700; font-size: 15px; }
.uc-review-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* FOOTER */
.uc-footer { background: var(--ink); color: white; padding: 80px 48px 32px; }
.uc-footer-inner { max-width: 1400px; margin: 0 auto; }
.uc-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.uc-footer-about p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.8; margin-top: 16px; max-width: 360px; }
.uc-footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; color: var(--gold); }
.uc-footer-col ul { list-style: none; }
.uc-footer-col li { margin-bottom: 10px; }
.uc-footer-col a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.uc-footer-col a:hover { color: white; }
.uc-footer-bottom { padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; color: rgba(255,255,255,0.5); font-size: 13px; flex-wrap: wrap; gap: 12px; }

/* === PAGE HERO BANNER === */
.uc-page-hero {
  padding: 150px 48px 80px;
  background:
    radial-gradient(ellipse at top left, rgba(30, 58, 138, 0.15), transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(185, 28, 28, 0.12), transparent 55%),
    radial-gradient(ellipse at center, rgba(251, 191, 36, 0.1), transparent 70%),
    linear-gradient(180deg, #fafaff 0%, #f0f0ff 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.uc-page-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(109,40,217,0.05), transparent 50%);
  pointer-events: none;
}
.uc-page-hero-inner {
  max-width: 900px; margin: 0 auto; position: relative; z-index: 1;
}
.uc-page-hero-star-top,
.uc-page-hero-star-bottom { font-size: 22px; color: var(--gold); opacity: 0.8; margin: 0 0 20px; }
.uc-page-hero-star-bottom { margin: 28px 0 0; }
.uc-page-hero-title-urdu {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: clamp(44px, 7vw, 80px); font-weight: 700;
  line-height: 1.5; color: var(--ink);
  margin: 0 0 16px;
}
.uc-page-hero-divider {
  width: 100px; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--red));
  border-radius: 2px; margin: 0 auto 16px;
}
.uc-page-hero-title-en {
  font-size: clamp(22px, 3vw, 32px); font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--purple) 50%, var(--red));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px; line-height: 1.1; margin: 0 0 24px;
}
.uc-page-hero-tagline-urdu {
  font-family: 'Noto Nastaliq Urdu', serif;
  font-size: clamp(17px, 2vw, 22px); color: var(--muted);
  line-height: 2; max-width: 720px; margin: 0 auto 10px;
}
.uc-page-hero-tagline-en {
  font-size: 15px; color: var(--muted);
  line-height: 1.7; max-width: 640px; margin: 0 auto;
}

/* === PAGE BODY === */
.uc-page-body {
  padding: 80px 48px 0;
  max-width: 860px;
  margin: 0 auto;
}
.uc-article { text-align: center; }
.uc-article-featured { margin: 0 0 40px; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.uc-article-featured img { width: 100%; display: block; }
.uc-article-content {
  font-size: 17px; line-height: 1.9; color: var(--ink);
  text-align: center;
}
.uc-article-content h2 {
  font-size: clamp(24px, 3vw, 32px); font-weight: 800;
  margin: 48px 0 16px; letter-spacing: -0.3px;
  background: linear-gradient(135deg, var(--blue), var(--purple), var(--red));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.uc-article-content h3 {
  font-size: clamp(19px, 2.5vw, 24px); font-weight: 700;
  margin: 32px 0 12px; color: var(--purple);
}
.uc-article-content p {
  margin: 0 auto 20px; max-width: 720px;
}
.uc-article-content ul, .uc-article-content ol {
  text-align: left;
  max-width: 640px; margin: 0 auto 22px;
  padding-left: 24px;
}
.uc-article-content ul li, .uc-article-content ol li { margin-bottom: 10px; }
.uc-article-content ul li::marker { color: var(--purple); }
.uc-article-content blockquote {
  border-left: 4px solid var(--purple);
  padding: 16px 22px; margin: 28px auto; max-width: 700px;
  background: var(--bg); border-radius: 0 12px 12px 0;
  font-style: italic; color: var(--muted);
  text-align: left;
}
.uc-article-content a { color: var(--purple); text-decoration: underline; text-underline-offset: 2px; }
.uc-article-content a:hover { color: var(--red); }
.uc-article-content img { border-radius: 12px; margin: 24px auto; max-width: 100%; }
.uc-article-content hr {
  border: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 48px auto;
  width: 60%;
}
/* Urdu paragraphs and inline Urdu automatically look nicer */
.uc-article-content p:lang(ur),
.uc-article-content h2:lang(ur),
.uc-article-content h3:lang(ur) {
  font-family: 'Noto Nastaliq Urdu', serif;
  direction: rtl;
  line-height: 2;
}
/* Nastaliq for characters — if a paragraph looks Urdu, be careful; we keep generic for safety */

/* === REAL APP STORE BUTTONS (replaces emoji) === */
.uc-store-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.uc-store-btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 11px 24px; min-width: 200px;
  background: #0a0a0a; color: #ffffff;
  border: 1.5px solid #0a0a0a; border-radius: 12px;
  text-decoration: none; font-family: 'Inter', system-ui, sans-serif;
  transition: all 0.2s;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.uc-store-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,0.25); color: #ffffff; background: #1a1a1a; }
.uc-store-btn.is-dark { background: #ffffff; color: #0a0a0a; border-color: #ffffff; }
.uc-store-btn.is-dark:hover { background: #fafaff; color: #0a0a0a; }
.uc-store-logo { width: 28px; height: 28px; flex-shrink: 0; }
.uc-store-btn-apple .uc-store-logo { color: #ffffff; }
.uc-store-btn-apple.is-dark .uc-store-logo { color: #0a0a0a; }
.uc-store-btn-text { display: flex; flex-direction: column; text-align: left; line-height: 1.1; }
.uc-store-btn-sub { font-size: 10px; font-weight: 500; opacity: 0.85; letter-spacing: 0.3px; text-transform: uppercase; }
.uc-store-btn-name { font-size: 17px; font-weight: 700; margin-top: 2px; letter-spacing: -0.3px; }

/* === OLD GENERIC PAGE STYLES (kept for blog/index fallback) === */
.uc-page { padding: 140px 48px 80px; max-width: 900px; margin: 0 auto; }
.uc-page-title { font-size: clamp(34px, 5vw, 56px); font-weight: 800; margin-bottom: 24px; letter-spacing: -1px; text-align: center; }
.uc-page-content { font-size: 17px; line-height: 1.8; color: var(--ink); }
.uc-page-content h2 { font-size: 28px; margin: 36px 0 14px; font-weight: 800; }
.uc-page-content h3 { font-size: 22px; margin: 28px 0 12px; font-weight: 700; }
.uc-page-content p { margin-bottom: 18px; }
.uc-page-content ul, .uc-page-content ol { margin: 0 0 18px 22px; }
.uc-page-content blockquote { border-left: 4px solid var(--purple); padding: 12px 22px; margin: 24px 0; background: var(--bg); border-radius: 0 12px 12px 0; font-style: italic; color: var(--muted); }
.uc-page-content a { color: var(--purple); }
.uc-page-content img { border-radius: 12px; margin: 20px 0; }

/* 404 */
.uc-404 { text-align: center; padding: 180px 48px 80px; }
.uc-404-num { font-size: 140px; font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--purple), var(--red));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1; margin-bottom: 12px;
}
.uc-404-title { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.uc-404-desc { color: var(--muted); margin-bottom: 32px; }

/* === SERMON ARCHIVE — colorful cards === */
.uc-sermon-archive { padding: 80px 48px 0; }
.uc-sermon-archive-inner { max-width: 1280px; margin: 0 auto; }
.uc-sermon-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.uc-sermon-card {
  background: white; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.uc-sermon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.14);
  border-color: var(--cat-color);
  color: inherit;
}
.uc-sermon-card-header {
  padding: 28px 22px 22px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.uc-sermon-card-header::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 60%);
  pointer-events: none;
}
.uc-sermon-icon { font-size: 36px; margin-bottom: 8px; line-height: 1; position: relative; z-index: 1; text-shadow: 0 2px 6px rgba(0,0,0,0.15); }
.uc-sermon-category-urdu { font-family: 'Noto Nastaliq Urdu', serif; font-size: 24px; font-weight: 700; line-height: 1.6; position: relative; z-index: 1; text-shadow: 0 2px 6px rgba(0,0,0,0.2); }
.uc-sermon-category-en { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; opacity: 0.95; margin-top: 4px; position: relative; z-index: 1; }
.uc-sermon-card-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; text-align: center; }
.uc-sermon-card-urdu { font-family: 'Noto Nastaliq Urdu', serif; font-size: 22px; font-weight: 700; line-height: 1.7; color: var(--ink); margin-bottom: 6px; }
.uc-sermon-card-en { font-size: 14px; color: var(--muted); font-weight: 600; margin-bottom: 12px; }
.uc-sermon-card-ref { font-family: 'Noto Nastaliq Urdu', serif; font-size: 14px; font-weight: 700; line-height: 1.6; margin-bottom: 14px; }
.uc-sermon-card-cta { font-size: 13px; font-weight: 700; color: var(--purple); margin-top: auto; padding-top: 12px; border-top: 1px dashed var(--border); }

/* === BOOKS ARCHIVE === */
.uc-books-archive { padding: 80px 48px 0; }
.uc-books-archive-inner { max-width: 1280px; margin: 0 auto; }

/* Author intro on Books page */
.uc-author-intro {
  background: linear-gradient(135deg, #0a0a0a 0%, #6d28d9 50%, #b91c1c 100%);
  border-radius: 24px;
  padding: 48px 40px;
  margin-bottom: 48px;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(109, 40, 217, 0.3);
}
.uc-author-intro::before,
.uc-author-intro::after {
  content: '✦'; position: absolute; color: var(--gold); font-size: 24px; opacity: 0.55;
}
.uc-author-intro::before { top: 20px; left: 26px; }
.uc-author-intro::after  { bottom: 20px; right: 26px; }
.uc-author-intro-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.uc-author-intro-icon { font-size: 28px; color: var(--gold); margin-bottom: 14px; }
.uc-author-intro-title {
  font-size: clamp(24px, 3.2vw, 32px); font-weight: 800;
  color: #ffffff; line-height: 1.3;
  margin-bottom: 18px; letter-spacing: -0.3px;
}
.uc-author-name {
  background: linear-gradient(135deg, var(--gold), #fcd34d);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.uc-author-intro-desc {
  font-size: 16px; line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 auto 10px; max-width: 700px;
}
.uc-author-intro-desc strong { color: var(--gold); font-weight: 700; }
.uc-books-empty {
  text-align: center; padding: 80px 32px;
  background: linear-gradient(180deg, var(--bg) 0%, #eff0ff 100%);
  border-radius: 24px; max-width: 700px; margin: 0 auto;
}
.uc-books-empty-icon { font-size: 64px; margin-bottom: 20px; }
.uc-books-empty h3 { font-family: 'Noto Nastaliq Urdu', serif; font-size: 26px; font-weight: 700; line-height: 1.7; margin-bottom: 14px; color: var(--purple); }
.uc-books-empty p { color: var(--muted); font-size: 15px; line-height: 1.7; max-width: 520px; margin: 0 auto; }

/* === Q&A ARCHIVE === */
.uc-qa-archive { padding: 80px 48px 0; }
.uc-qa-archive-inner { max-width: 1100px; margin: 0 auto; }
.uc-qa-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.uc-qa-card {
  background: white; border-radius: 18px; padding: 24px 22px;
  border: 1px solid var(--border);
  text-decoration: none; color: inherit;
  display: flex; gap: 16px; align-items: flex-start;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.uc-qa-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.1);
  border-color: var(--qa-color);
  color: inherit;
}
.uc-qa-card-mark {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  color: white; font-weight: 900; font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.uc-qa-card-body { flex: 1; }
.uc-qa-card-question { font-size: 17px; font-weight: 700; line-height: 1.4; margin-bottom: 8px; color: var(--ink); }
.uc-qa-card-answer { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.uc-qa-card-cta { font-size: 13px; font-weight: 700; }
.uc-qa-empty {
  text-align: center; padding: 80px 32px;
  background: linear-gradient(180deg, var(--bg) 0%, #eff0ff 100%);
  border-radius: 24px; max-width: 700px; margin: 0 auto;
}
.uc-qa-empty-icon { font-size: 64px; margin-bottom: 20px; }
.uc-qa-empty h3 { font-family: 'Noto Nastaliq Urdu', serif; font-size: 26px; font-weight: 700; line-height: 1.7; margin-bottom: 14px; color: var(--purple); }
.uc-qa-empty p { color: var(--muted); font-size: 15px; line-height: 1.7; max-width: 520px; margin: 0 auto; }

/* === CONTENT PROTECTION (light) ===
   Allows normal reading + short quote selection.
   Blocks: bulk select-all, drag-to-grab. JS handles the rest. */
.uc-article-content,
.uc-page-body article,
.uc-sermon-archive article,
.uc-books-archive article,
.uc-qa-archive article,
.uc-verse-band {
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

/* === FOOTER SOCIAL ICONS === */
.uc-footer-social { display: flex; gap: 12px; margin-top: 18px; }
.uc-social-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  transition: all 0.2s;
}
.uc-social-icon svg { width: 20px; height: 20px; }
.uc-social-icon:hover { background: var(--gold); color: var(--ink); transform: translateY(-3px); }
.uc-footer-handle { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 12px; font-weight: 600; letter-spacing: 0.3px; }

/* APP CTA BAND (used on archives + singles to drive app installs) */
.uc-app-cta-band {
  margin: 80px auto;
  max-width: 1200px;
  padding: 0 48px;
}
.uc-app-cta-inner {
  position: relative;
  background: linear-gradient(135deg, #0a0a0a 0%, #6d28d9 50%, #b91c1c 100%);
  border-radius: 28px;
  padding: 60px 48px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(109, 40, 217, 0.35);
}
.uc-app-cta-inner::before,
.uc-app-cta-inner::after {
  content: '✦'; position: absolute; color: var(--gold); font-size: 26px; opacity: 0.55;
}
.uc-app-cta-inner::before { top: 22px; left: 30px; }
.uc-app-cta-inner::after { bottom: 22px; right: 30px; }
.uc-app-cta-content { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.uc-app-cta-star { font-size: 28px; color: var(--gold); margin-bottom: 14px; }
.uc-app-cta-title-urdu { font-family: 'Noto Nastaliq Urdu', serif; font-size: clamp(26px, 4vw, 38px); font-weight: 700; line-height: 1.7; margin-bottom: 8px; }
.uc-app-cta-title-en { font-size: 15px; color: var(--gold); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.uc-app-cta-desc { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.85); margin-bottom: 30px; }
.uc-app-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.uc-app-cta-btn {
  background: rgba(255,255,255,0.95); color: var(--ink); padding: 13px 26px; border-radius: 12px;
  display: inline-flex; align-items: center; gap: 12px; text-decoration: none;
  font-weight: 700; transition: all 0.2s;
}
.uc-app-cta-btn:hover { transform: translateY(-3px); background: #fff; color: var(--purple); }

/* "X more in the app" archive teaser badge */
.uc-archive-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--purple), var(--red));
  color: #fff; padding: 10px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 700;
  margin: 0 auto 32px; box-shadow: 0 6px 20px rgba(109,40,217,0.3);
}
.uc-archive-badge::before { content: '⬇'; font-size: 16px; }

/* RESPONSIVE */
@media (max-width: 980px) {
  .uc-nav-links { display: none; }
  .uc-nav-toggle { display: inline-flex; }
  .uc-logo-mark { width: 56px; height: 56px; border-radius: 14px; }
  .uc-logo-mark svg { width: 28px; height: 28px; }
  .uc-logo-text { font-size: 24px; }
  .uc-nav-links.is-open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: white; padding: 24px; gap: 18px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  }
  .uc-nav-links.is-open a { font-size: 17px; padding: 8px 0; }
  .uc-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .uc-nav-inner { padding: 14px 22px; }
  .uc-hero { padding: 120px 22px 60px; }
  .uc-section { padding: 70px 22px; }
  .uc-verse-band { margin: 60px 22px; padding: 40px 22px; }
  .uc-books-section, .uc-reviews-section, .uc-cta-section, .uc-footer { padding-left: 22px; padding-right: 22px; }
  .uc-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .uc-hero-stats { gap: 24px; }
  .uc-stat-num { font-size: 32px; }
  .uc-page { padding: 110px 22px 60px; }
}
