:root {
  --brand: #16a34a;
  --brand-50: #ecfdf3;
  --brand-100: #d1fae0;
  --brand-200: #a7f3c1;
  --brand-400: #4ade80;
  --brand-500: #22c55e;
  --brand-700: #15803d;
  --navy: #07111f;
  --navy-700: #102440;
  --ink: #101827;
  --muted: #526173;
  --soft: #f0fdf4;
  --surface: #fff;
  --surface-alt: #f8fafc;
  --success-soft: #ecfdf5;
  --danger: #ef4444;
  --danger-soft: #fff1f2;
  --danger-border: #fecdd3;
  --whatsapp: #22c55e;
  --whatsapp-dark: #16a34a;
  --border: rgba(203, 213, 225, 0.75);
  --border-soft: #e2e8f0;
  --radius-sm: 0.65rem;
  --radius-md: 0.85rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --shadow-soft: 0 10px 30px -12px rgba(22, 163, 74, 0.18);
  --shadow-card: 0 20px 50px -20px rgba(7, 17, 31, 0.25);
}



* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.15;
}

strong {
  color: var(--ink);
}

.container {
  width: min(100% - 2rem, 72rem);
  margin-inline: auto;
}

.narrow {
  width: min(100% - 2rem, 48rem);
}

.section {
  padding: 5rem 0;
}

.section-soft {
  position: relative;
  overflow: hidden;
  background: var(--soft);
}

.section-soft > .container,
.hero > .container {
  position: relative;
  z-index: 1;
}

.center,
.center-row {
  text-align: center;
  justify-content: center;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 4.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mobile-menu-toggle,
.mobile-menu-button,
.mobile-nav {
  display: none;
}

.mobile-menu-button {
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 1rem;
  height: 2px;
  margin: 3px 0;
  border-radius: 999px;
  background: var(--ink);
}

.mobile-nav {
  overflow: hidden;
  max-height: 0;
  border-top: 1px solid var(--border-soft);
  background: var(--surface);
  transition: max-height 0.25s ease;
}

.mobile-nav .container {
  display: grid;
  gap: 0.25rem;
  padding-block: 0.9rem;
}

.mobile-nav a:not(.btn) {
  border-radius: var(--radius-md);
  padding: 0.65rem 0.75rem;
  color: var(--ink);
  font-weight: 700;
}

.mobile-nav a:not(.btn):hover {
  background: var(--brand-50);
  color: var(--brand-700);
}

.site-header:has(.mobile-menu-toggle:checked) .mobile-nav {
  max-height: 80vh;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  color: var(--ink);
}

.brand-logo {
  display: block;
  width: auto;
  height: 2.35rem;
  max-width: min(15rem, 42vw);
  object-fit: contain;
}

.footer-brand {
  color: #fff;
  font-size: 1.05rem;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-md);
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu a {
  display: block;
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.7rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  transition: background 0.2s ease, color 0.2s ease;
}

.menu a:hover {
  background: var(--brand-50);
  color: var(--brand-700);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.latest-posts-menu {
  position: relative;
}

.latest-posts-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--muted);
  padding: 0.5rem 0.7rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 650;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.latest-posts-trigger:hover,
.latest-posts-menu:focus-within .latest-posts-trigger,
.latest-posts-menu:hover .latest-posts-trigger {
  background: var(--brand-50);
  color: var(--brand-700);
}

.latest-posts-trigger svg {
  width: 0.9rem;
  height: 0.9rem;
}

.latest-posts-panel {
  position: absolute;
  top: calc(100% + 0.8rem);
  right: 0;
  z-index: 60;
  width: min(24rem, calc(100vw - 2rem));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 1rem;
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.35rem);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.latest-posts-menu:hover .latest-posts-panel,
.latest-posts-menu:focus-within .latest-posts-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.latest-posts-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.7rem;
}

.latest-posts-head strong {
  font-size: 0.95rem;
}

.latest-posts-head a {
  color: var(--brand-700);
  font-size: 0.82rem;
  font-weight: 800;
}

.latest-posts-list {
  display: grid;
  gap: 0.35rem;
}

.latest-posts-list a,
.mobile-latest-posts a {
  display: grid;
  gap: 0.15rem;
  border-radius: var(--radius-md);
  padding: 0.65rem 0.7rem;
}

.latest-posts-list a:hover,
.mobile-latest-posts a:hover {
  background: var(--brand-50);
}

.latest-posts-list span,
.mobile-latest-posts span {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.35;
}

.latest-posts-list small,
.mobile-latest-posts small {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.mobile-latest-posts {
  display: grid;
  gap: 0.25rem;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  margin: 0.45rem 0;
  padding: 0.7rem 0;
}

.mobile-latest-posts > strong {
  padding: 0 0.75rem;
  color: var(--brand-700);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.75rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  padding: 0.75rem 1.1rem;
  font-weight: 750;
  line-height: 1.2;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.hero .btn-whatsapp,
.center .btn-whatsapp.large,
.urdu-cta,
.header-cta,
.sticky-whatsapp {
  animation: pulse-soft 2.4s ease-out infinite;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--brand-700);
}

.btn-ghost {
  border-color: var(--brand-200);
  background: var(--surface);
  color: var(--brand-700);
}

.large {
  padding: 0.95rem 1.45rem;
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  border: 1px solid var(--brand-100);
  border-radius: 999px;
  background: var(--brand-50);
  color: var(--brand-700);
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.eyebrow.dark {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: #bbf7d0;
}

.dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--whatsapp);
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero .btn-whatsapp,
  .center .btn-whatsapp.large,
  .urdu-cta,
  .header-cta,
  .sticky-whatsapp,
  .typing-dots span,
  .auto-chat.is-replied .bubble.received {
    animation: none;
  }

  .how-timeline::before {
    animation: none;
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover,
  .how-timeline li:hover,
  details:hover,
  .card:hover {
    transform: none;
  }
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 5.5rem;
}

.hero::before,
.section-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(22, 163, 74, 0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(22, 163, 74, 0.055) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.hero-grid,
.split-grid,
.single-hero-grid,
.article-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.split-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-copy,
.section-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.hero h1 {
  max-width: 18ch;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 900;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--brand), var(--brand-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p,
.section-copy p,
.section-heading p,
.center > p {
  max-width: 40rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.75;
}

.section-copy h2,
.section-heading h1,
.section-heading h2,
.center h1,
.center h2 {
  max-width: 22ch;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 850;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.hero-contact {
  display: grid;
  gap: 0.65rem;
  width: min(100%, 34rem);
}

.hero-contact span,
.hero-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 0.7rem 0.85rem;
  font-weight: 750;
  box-shadow: 0 8px 22px -18px rgba(7, 17, 31, 0.4);
  word-break: break-word;
}

.chat-preview {
  position: relative;
  width: min(100%, 28rem);
  justify-self: end;
  font-family: "Inter", "Plus Jakarta Sans", system-ui, sans-serif;
}

.chat-preview::before {
  content: "";
  position: absolute;
  inset: -1.5rem;
  z-index: -1;
  border-radius: 2.5rem;
  background: linear-gradient(135deg, rgba(167, 243, 193, 0.45), rgba(209, 250, 224, 0.28), transparent);
  filter: blur(28px);
}

.chat-card {
  position: relative;
  overflow: hidden;
  border: 9px solid #111b21;
  border-bottom-width: 12px;
  border-radius: 2rem;
  background: #efe7db;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 28px 70px -26px rgba(7, 17, 31, 0.5);
}

.chat-card::before {
  content: "";
  position: absolute;
  top: 0.28rem;
  left: 50%;
  z-index: 3;
  width: 4.8rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #111b21;
  transform: translateX(-50%);
}

.chat-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.28rem;
  z-index: 3;
  width: 5.5rem;
  height: 0.22rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  transform: translateX(-50%);
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #008069;
  color: #fff;
  padding: 0.7rem 1rem 0.22rem;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
}

.phone-status span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.64rem;
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3.35rem;
  background: #008069;
  color: #fff;
  padding: 0.55rem 0.85rem 0.8rem;
}

.chat-head strong {
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.15;
}

.chat-head > div {
  min-width: 0;
}

.chat-head small {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  line-height: 1.15;
}

.chat-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  line-height: 1;
}

.chat-back {
  display: grid;
  place-items: center;
  width: 1.2rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1;
}

.chat-avatar {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

.chat-avatar::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.08rem;
  width: 0.55rem;
  height: 0.55rem;
  border: 2px solid #008069;
  border-radius: 999px;
  background: #25d366;
}

.chat-body {
  display: grid;
  gap: 0.55rem;
  min-height: 18.6rem;
  align-content: start;
  background-color: #efe7db;
  background-image:
    radial-gradient(circle at 18px 18px, rgba(7, 94, 84, 0.055) 1.4px, transparent 1.6px),
    radial-gradient(circle at 46px 42px, rgba(7, 94, 84, 0.04) 1.2px, transparent 1.4px);
  background-size: 64px 64px;
  padding: 0.85rem 0.75rem;
}

.chat-date {
  justify-self: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #667781;
  padding: 0.18rem 0.62rem;
  font-size: 0.72rem;
  font-weight: 750;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.bubble {
  position: relative;
  max-width: 88%;
  border-radius: 0.5rem;
  padding: 0.45rem 0.62rem 0.3rem;
  color: #111b21;
  font-size: 0.88rem;
  line-height: 1.42;
  box-shadow: 0 1px 1px rgba(15, 23, 42, 0.12);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.bubble.sent {
  justify-self: end;
  border-top-right-radius: 0;
  background: #d9fdd3;
}

.bubble.received {
  justify-self: start;
  border-top-left-radius: 0;
  background: #fff;
}

.bubble.sent::before,
.bubble.received::before {
  content: "";
  position: absolute;
  top: 0;
  border-style: solid;
}

.bubble.sent::before {
  right: -0.45rem;
  border-width: 0 0 0.55rem 0.55rem;
  border-color: transparent transparent transparent #d9fdd3;
}

.bubble.received::before {
  left: -0.45rem;
  border-width: 0 0.55rem 0.55rem 0;
  border-color: transparent #fff transparent transparent;
}

.msg-meta {
  float: right;
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  margin: 0.28rem 0 0 0.55rem;
  color: #667781;
  font-size: 0.66rem;
  line-height: 1;
  white-space: nowrap;
}

.bubble.sent .msg-meta {
  color: #667781;
}

.bubble.sent .msg-meta svg {
  color: #53bdeb;
  font-size: 0.68rem;
}

.auto-chat.is-typing .bubble.sent::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-left: 0.1rem;
  background: currentColor;
  vertical-align: -0.12em;
  animation: cursor-blink 0.85s steps(1) infinite;
}

.auto-chat.is-waiting .bubble.received,
.auto-chat.is-waiting .typing-dots {
  opacity: 0;
  transform: translateY(0.4rem);
}

.auto-chat.is-replied .bubble.received {
  animation: message-in 0.22s ease-out both;
  opacity: 1;
  transform: translateY(0);
}

.typing-dots {
  display: inline-flex;
  width: fit-content;
  gap: 0.35rem;
  border-radius: 0 0.5rem 0.5rem;
  background: var(--surface);
  padding: 0.6rem 0.85rem;
  box-shadow: 0 1px 1px rgba(15, 23, 42, 0.12);
}

.typing-dots span {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: #94a3b8;
  animation: typing 1.4s ease-in-out infinite;
}

.typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

.chat-input {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: #efe7db;
  padding: 0.55rem 0.65rem 0.7rem;
}

.chat-field {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.2rem;
  flex: 1;
  border-radius: 999px;
  background: #fff;
  color: #667781;
  padding: 0.5rem 0.75rem;
  font-size: 0.86rem;
}

.chat-field svg {
  color: #8696a0;
  font-size: 1rem;
}

.chat-attach {
  display: grid;
  place-items: center;
  width: 1.65rem;
  height: 1.65rem;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #667781;
  font-size: 0.92rem;
  line-height: 1;
}

.chat-mic {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: #00a884;
  color: #fff;
  font-size: 1.05rem;
  font-style: normal;
}

@keyframes pulse-soft {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45); }
  50% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
}

@keyframes typing {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@keyframes cursor-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes message-in {
  0% {
    opacity: 0;
    transform: translateY(0.45rem) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes timeline {
  0% { transform: scaleY(0); }
  100% { transform: scaleY(1); }
}
.visual-grid,
.cards-three,
.post-grid,
.contact-cards {
  display: grid;
  gap: 1.25rem;
}

.visual-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-title {
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mini-title.danger { color: var(--danger); }
.mini-title.success { color: var(--brand-700); }

.mini-card {
  margin-bottom: 0.65rem;
  border-radius: var(--radius-md);
  padding: 0.7rem;
  font-weight: 750;
}

.mini-card.danger {
  border: 1px solid var(--danger-border);
  background: var(--danger-soft);
}

.rotate-pos { transform: rotate(2deg); }
.rotate-neg { transform: rotate(-2deg); }

.feature-card,
.method-card,
.post-card {
  padding: 1.4rem;
}

.feature-card h3,
.method-card h3 {
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.check-list,
.number-list,
.timeline,
.contact-list,
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 0.65rem;
}

.check-list.columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: var(--surface-alt);
  padding: 0.6rem 0.7rem;
  font-weight: 700;
}

.check-list svg {
  flex: 0 0 auto;
  color: var(--brand-700);
}

.urdu-section {
  color: var(--ink);
  padding: 4.75rem 0;
}

.urdu-inner {
  max-width: 58rem;
  margin-inline: auto;
}

.urdu-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.05rem;
  overflow: hidden;
  border: 1px solid var(--brand-100);
  border-radius: calc(var(--radius-xl) + 0.65rem);
  background: rgba(255, 255, 255, 0.84);
  padding: clamp(2rem, 5vw, 3.2rem);
  text-align: right;
  box-shadow: var(--shadow-card);
}

.urdu-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(34, 197, 94, 0.14), transparent 36%),
    radial-gradient(circle at 12% 84%, rgba(22, 163, 74, 0.12), transparent 34%);
}

.urdu-card::after {
  content: "WhatsApp پر صرف اپنا اصل مسئلہ لکھیں";
  position: absolute;
  left: 1.35rem;
  bottom: 1.1rem;
  pointer-events: none;
  color: rgba(21, 128, 61, 0.12);
  font-family: "Alvi Nastaleeq", "Noto Nastaliq Urdu", "Noto Naskh Arabic", serif;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1;
}

.urdu-card > * {
  position: relative;
}

.urdu-kicker {
  border: 1px solid var(--brand-100);
  border-radius: 999px;
  background: var(--brand-50);
  color: var(--brand-700);
  padding: 0.3rem 0.85rem 0.45rem;
  font-family: "Alvi Nastaleeq", "Noto Nastaliq Urdu", "Noto Naskh Arabic", serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.6;
}

.urdu-section h2 {
  font-family: "Alvi Nastaleeq", "Noto Nastaliq Urdu", "Noto Naskh Arabic", serif;
  font-size: clamp(1.8rem, 4vw, 2.35rem);
  line-height: 1.75;
  text-align: center;
}

.urdu-section p {
  max-width: 45rem;
  color: var(--muted);
  font-family: "Alvi Nastaleeq", "Noto Nastaliq Urdu", "Noto Naskh Arabic", serif;
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  line-height: 2.2;
  text-align: right;
}

.urdu-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 0.2rem;
}

.urdu-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--brand-100);
  border-radius: 999px;
  background: var(--surface);
  color: var(--brand-700);
  padding: 0.45rem 0.8rem 0.55rem;
  font-family: "Alvi Nastaleeq", "Noto Nastaliq Urdu", "Noto Naskh Arabic", serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
}

.urdu-points svg {
  flex: 0 0 auto;
}

.urdu-signature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  max-width: 42rem;
  border: 1px solid var(--brand-100);
  border-radius: var(--radius-lg);
  background: rgba(236, 253, 243, 0.78);
  padding: 0.75rem 0.95rem;
  color: var(--muted);
  font-family: "Alvi Nastaleeq", "Noto Nastaliq Urdu", "Noto Naskh Arabic", serif;
  font-size: 1.15rem;
  line-height: 1.8;
}

.urdu-signature strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.8rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  padding: 0.25rem 0.65rem 0.4rem;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 0.88rem;
  line-height: 1.2;
}

.urdu-cta {
  align-self: center;
  margin-inline: auto;
  padding: 1.15rem 2.25rem;
  font-size: 1.2rem;
  box-shadow: 0 20px 45px -18px rgba(22, 163, 74, 0.55);
}

.promo-sidebar {
  position: fixed;
  right: 1.1rem;
  top: 50%;
  z-index: 70;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.55rem;
  width: 12rem;
  overflow: hidden;
  border: 1px solid rgba(134, 239, 172, 0.32);
  border-radius: calc(var(--radius-lg) + 0.15rem);
  background:
    linear-gradient(180deg, rgba(6, 22, 22, 0.98), rgba(8, 40, 28, 0.98)),
    var(--navy);
  padding: 0.82rem;
  color: #d1fae0;
  box-shadow: 0 18px 42px -24px rgba(7, 17, 31, 0.72);
  opacity: 0;
  pointer-events: none;
  transform: translate(1rem, -50%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.promo-sidebar.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
}

.promo-sidebar::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 8%, rgba(34, 197, 94, 0.2), transparent 36%),
    linear-gradient(135deg, transparent 52%, rgba(255, 255, 255, 0.07));
}

.promo-sidebar::after {
  content: "";
  position: absolute;
  inset-block: 0.8rem;
  right: 0;
  width: 0.22rem;
  border-radius: 999px 0 0 999px;
  background: linear-gradient(to bottom, #86efac, var(--brand));
}

.promo-sidebar > * {
  position: relative;
}

.promo-sidebar h3 {
  margin: 0;
  color: #fff;
  font-family: "Noto Nastaliq Urdu", "Alvi Nastaleeq", "Noto Naskh Arabic", serif;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.9;
  text-align: center;
}

.promo-sidebar p {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.075);
  padding: 0.55rem 0.62rem 0.68rem;
  color: #e5f8ee;
  font-family: "Noto Nastaliq Urdu", "Alvi Nastaleeq", "Noto Naskh Arabic", serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 2;
  text-align: center;
}

.promo-sidebar svg {
  flex: 0 0 auto;
  margin-top: 0.32rem;
  color: #86efac;
}

.promo-cta {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  font-family: "Noto Nastaliq Urdu", "Alvi Nastaleeq", "Noto Naskh Arabic", serif;
  min-height: 2.35rem;
  padding: 0.48rem 0.68rem 0.62rem;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 16px 34px -18px rgba(134, 239, 172, 0.9);
}

.number-list,
.timeline {
  display: grid;
  gap: 0.85rem;
  counter-reset: steps;
}

.number-list li,
.timeline li {
  counter-increment: steps;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: var(--surface-alt);
  padding: 0.8rem;
}

.number-list li::before,
.timeline li::before {
  content: counter(steps, decimal-leading-zero);
  display: inline-block;
  margin-right: 0.5rem;
  color: var(--brand);
  font-weight: 900;
}

.number-list span,
.timeline span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
}

.timeline-card {
  position: relative;
  padding-left: 1.8rem;
}

.how-timeline {
  position: relative;
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0 0 0 1.8rem;
  list-style: none;
  counter-reset: how;
}

.how-timeline::before {
  content: "";
  position: absolute;
  left: 0.65rem;
  top: 0.5rem;
  bottom: 1.5rem;
  width: 1px;
  transform: scaleY(0);
  transform-origin: top;
  background: linear-gradient(to bottom, var(--brand-500), var(--brand-200));
  animation: timeline 1.4s ease-out forwards;
}

.how-timeline li {
  position: relative;
  counter-increment: how;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.how-timeline li:hover {
  transform: translateY(-2px);
  border-color: var(--brand-200);
  box-shadow: var(--shadow-card);
}

.how-timeline li::before {
  content: counter(how);
  position: absolute;
  left: -2.45rem;
  top: 1rem;
  display: grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.how-timeline strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
}

.how-timeline span {
  display: block;
  margin-top: 0.1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.payment-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.payment-toggle span {
  border: 1px solid var(--brand-200);
  border-radius: var(--radius-md);
  background: var(--brand-50);
  color: var(--brand-700);
  padding: 0.8rem;
  font-weight: 800;
}

.section-heading {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
}

.section-heading .eyebrow {
  margin-inline: auto;
}

.section-heading h1,
.section-heading h2 {
  margin: 1rem auto 0;
}

.section-heading p {
  margin: 1rem auto 0;
}

.cards-three,
.post-grid,
.contact-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.5rem;
}

.method-card small,
.method-card p,
.post-meta {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
}

.receipt-footer {
  margin-top: 1.1rem;
  border-radius: var(--radius-md);
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 0.9rem;
}

.receipt-footer div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.receipt-footer div:first-child {
  color: #cbd5e1;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.receipt-footer strong {
  color: #fff;
  font-size: 0.9rem;
}

.receipt-footer em {
  color: #86efac;
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 800;
}
.dark-section {
  background: var(--navy);
  color: #fff;
}

.dark-section h2,
.dark-section h3,
.dark-section strong {
  color: #fff;
}

.dark-section p {
  color: #cbd5e1;
}

.dark-card,
.trust-panel {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.dark-card .check-list li,
.trust-list li {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.trust-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  backdrop-filter: blur(12px);
}

.trust-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.trust-head h3 {
  color: #fff;
  font-size: 0.95rem;
}

.trust-head span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.15);
  color: #6ee7b7;
  padding: 0.25rem 0.55rem;
  font-size: 0.8rem;
  font-weight: 800;
}

.trust-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-radius: var(--radius-md);
  padding: 0.75rem;
}

.trust-list i {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  border-radius: var(--radius-sm);
  background: rgba(52, 211, 153, 0.16);
  color: #bbf7d0;
  font-style: normal;
}

.trust-list span {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 650;
}

.trust-list b {
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.18);
  color: #6ee7b7;
}

.no-promise {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.25rem;
  border: 1px solid rgba(251, 113, 133, 0.2);
  border-radius: var(--radius-md);
  background: rgba(251, 113, 133, 0.1);
  color: #ffe4e6;
  padding: 0.75rem;
  font-size: 0.95rem;
}
.faq-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
}

details {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

details[open] {
  border-color: var(--brand-200);
  box-shadow: var(--shadow-card);
}

details:hover {
  transform: translateY(-1px);
  border-color: var(--brand-200);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
  font-size: 1.05rem;
  line-height: 1.4;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 1.65rem;
  height: 1.65rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--brand-50);
  color: var(--brand-700);
  font-size: 1.1rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
  background: var(--brand);
  color: #fff;
}

details p {
  margin-top: 0.75rem;
  padding-right: 2.65rem;
  color: var(--muted);
  line-height: 1.75;
}

.faq-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 48rem;
  margin: 2rem auto 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--soft);
  padding: 0.9rem 1rem;
  color: var(--muted);
}

.faq-note svg {
  flex: 0 0 auto;
  color: var(--brand);
}

#contact {
  padding-block: 4.5rem;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--brand-100);
  border-radius: calc(var(--radius-xl) + 0.5rem);
  background: rgba(255, 255, 255, 0.74);
  padding: clamp(2rem, 5vw, 3.25rem);
  box-shadow: var(--shadow-card);
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(34, 197, 94, 0.16), transparent 32%),
    radial-gradient(circle at 82% 82%, rgba(22, 163, 74, 0.12), transparent 34%);
}

.contact-panel > * {
  position: relative;
}

.contact-panel .eyebrow {
  margin-inline: auto;
}

.contact-panel h2 {
  margin: 1rem auto 0;
}

.contact-panel p {
  max-width: 44rem;
  margin: 0.85rem auto 0;
}

.contact-panel .btn {
  margin-top: 1.35rem;
}

.contact-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.15rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.contact-proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.contact-proof svg {
  color: var(--brand-700);
}

.contact-cards .card {
  display: grid;
  gap: 0.4rem;
  padding: 1rem;
  color: var(--ink);
  text-align: left;
  word-break: break-word;
}

.cta-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.cta-chips span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  padding: 0.45rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 750;
}

.cta-chips svg {
  color: var(--brand);
}

.contact-cards svg {
  color: var(--brand);
  font-size: 1.25rem;
}

.contact-cards span {
  color: var(--muted);
  font-weight: 650;
}

@media (max-width: 640px) {
  details p {
    padding-right: 0;
  }
}
.site-footer {
  background: var(--navy);
  color: #cbd5e1;
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-copy {
  max-width: 22rem;
  margin: 1rem 0;
  color: #94a3b8;
  font-size: 0.95rem;
}

.footer-logo-mark {
  display: block;
  width: auto;
  height: 2.25rem;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.footer-title {
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 1rem;
  margin-top: 1rem;
}

.footer-links a,
.contact-list a {
  color: #cbd5e1;
}

.footer-links a:hover,
.contact-list a:hover {
  color: #fff;
}

.contact-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.contact-list li,
.contact-list a {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  min-width: 0;
  word-break: break-word;
}

.contact-list svg {
  flex: 0 0 auto;
  margin-top: 0.25rem;
  color: #86efac;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  color: #64748b;
  font-size: 0.85rem;
}

.footer-policy-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer-policy-links a {
  color: #94a3b8;
  font-weight: 750;
}

.footer-policy-links a:hover {
  color: #fff;
}

.sticky-whatsapp {
  display: none;
}
.post-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr));
  align-items: stretch;
  gap: 1.5rem;
  margin-top: 2rem;
}

.post-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: 100%;
  border-color: rgba(203, 213, 225, 0.85);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(236, 253, 245, 0.65), rgba(255, 255, 255, 0) 42%),
    var(--surface);
  padding: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.post-card:hover {
  border-color: rgba(22, 163, 74, 0.32);
  box-shadow: 0 24px 55px -28px rgba(7, 17, 31, 0.35);
  transform: translateY(-3px);
}

.post-card-body {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}

.post-card h2 {
  margin-top: 0.85rem;
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.25;
}

.post-card h2 a {
  color: inherit;
  transition: color 0.2s ease;
}

.post-card h2 a:hover,
.read-link:hover {
  color: var(--brand-700);
}

.post-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.4;
  text-transform: none;
}

.post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.post-meta svg {
  color: var(--brand-700);
}

.post-excerpt {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.post-excerpt p {
  margin: 0;
}

.read-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1.15rem;
  color: var(--brand-700);
  font-weight: 850;
  line-height: 1.3;
  transition: color 0.2s ease, gap 0.2s ease;
}

.read-link:hover {
  gap: 0.55rem;
}

.post-thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--brand-50);
}

.post-thumb img,
.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pagination {
  margin-top: 2rem;
  text-align: center;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  margin: 0 0.15rem;
  border-radius: var(--radius-sm);
  padding: 0 0.7rem;
  color: var(--muted);
  font-weight: 750;
  transition: background 0.2s ease, color 0.2s ease;
}

.pagination a.page-numbers:hover {
  background: var(--brand-50);
  color: var(--brand-700);
}

.pagination .page-numbers.current {
  background: var(--brand);
  color: #fff;
}

.pagination .page-numbers.dots {
  background: none;
}
.single-hero {
  padding: 4rem 0;
}

.single-hero-grid {
  grid-template-columns: 1fr 18rem;
}

.back-link {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--brand-700);
  font-weight: 850;
}

.single-hero h1 {
  max-width: 20ch;
  margin-top: 1rem;
  font-size: clamp(2.35rem, 6vw, 3.75rem);
  font-weight: 900;
}

.single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
  color: var(--muted);
  font-weight: 750;
}

.single-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.guide-card,
.contact-mini {
  padding: 1.2rem;
}

.guide-card h2,
.contact-mini h2 {
  font-size: 1.25rem;
}

.guide-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0;
  padding-left: 1.1rem;
  font-weight: 750;
}

.article-grid {
  grid-template-columns: minmax(0, 1fr) 18rem;
  align-items: start;
}

.article-content {
  max-width: 46rem;
}

.article-content > * + * {
  margin-top: 1.25rem;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4 {
  color: var(--ink);
  font-weight: 850;
  line-height: 1.25;
}

.article-content h1 {
  font-size: clamp(1.9rem, 4vw, 2.5rem);
}

.article-content h2 {
  margin-top: 2rem;
  font-size: clamp(1.5rem, 3vw, 1.8rem);
}

.article-content h3 {
  margin-top: 1.75rem;
  font-size: 1.3rem;
}

.article-content h4 {
  margin-top: 1.5rem;
  font-size: 1.1rem;
}

.page-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  color: var(--muted);
}

.page-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 0.55rem;
  color: var(--brand-700);
  font-weight: 750;
  transition: background 0.2s ease;
}

.page-links a:hover {
  background: var(--brand-50);
}

.article-content p,
.article-content li {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.article-content a:not(.btn) {
  color: var(--brand-700);
  font-weight: 750;
}

.article-content ul,
.article-content ol {
  padding-left: 1.4rem;
}

.article-content li + li {
  margin-top: 0.4rem;
}

.article-content img {
  border-radius: var(--radius-lg);
}

.article-content blockquote {
  margin: 0;
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--brand-50);
  padding: 1rem 1.25rem;
  color: var(--ink);
  font-weight: 600;
}

.article-content blockquote p {
  color: var(--ink);
}

.article-content code {
  border-radius: var(--radius-sm);
  background: var(--surface-alt);
  padding: 0.15rem 0.4rem;
  font-size: 0.92em;
}

.article-content pre {
  overflow-x: auto;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: var(--surface-alt);
  padding: 1rem 1.15rem;
}

.article-content pre code {
  padding: 0;
  background: none;
}

.article-content hr {
  border: none;
  border-top: 1px solid var(--border-soft);
}

.article-content table {
  display: block;
  overflow-x: auto;
  width: 100%;
  border-collapse: collapse;
}

.article-content th,
.article-content td {
  border: 1px solid var(--border-soft);
  padding: 0.6rem 0.75rem;
  text-align: left;
}

.article-content th {
  background: var(--surface-alt);
  color: var(--ink);
  font-weight: 800;
}

.featured-image {
  overflow: hidden;
  margin: 0 0 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.article-cta {
  margin-top: 2.25rem;
  border: 1px solid var(--brand-100);
  border-radius: var(--radius-xl);
  background: var(--brand-50);
  padding: 1.4rem;
}

.article-cta p {
  margin: 0.6rem 0 1rem;
}

.article-sidebar {
  position: sticky;
  top: 6rem;
}

.contact-mini {
  display: grid;
  gap: 0.55rem;
}

.contact-mini p,
.contact-mini a {
  color: var(--muted);
  font-weight: 700;
  word-break: break-word;
}

.empty-state {
  padding: 2rem;
  text-align: center;
}
@media (max-width: 1100px) {
  .primary-nav {
    display: none;
  }

  .header-cta {
    display: inline-flex;
  }

  .mobile-menu-button {
    display: grid;
  }

  .mobile-menu-toggle {
    display: block;
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .mobile-nav {
    display: block;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .split-grid,
  .single-hero-grid,
  .article-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards-three,
  .post-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.25rem, 72rem);
  }

  .section,
  .hero {
    padding: 3.5rem 0;
  }

  .header-inner {
    min-height: 4rem;
  }

  .header-cta {
    display: none;
  }

  .chat-preview {
    justify-self: center;
    width: min(100%, 24rem);
  }

  .button-row,
  .btn {
    width: 100%;
  }

  .visual-grid,
  .check-list.columns,
  .payment-toggle {
    grid-template-columns: 1fr;
  }

  .rotate-pos,
  .rotate-neg {
    transform: none;
  }

  .urdu-card {
    padding: 1.6rem 1rem;
  }

  .urdu-card::after {
    display: none;
  }

  .urdu-points {
    width: 100%;
  }

  .urdu-points span {
    justify-content: center;
    width: 100%;
  }

  .urdu-signature {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .promo-sidebar {
    top: auto;
    right: 0.75rem;
    bottom: 4.8rem;
    left: 0.75rem;
    width: auto;
    padding: 0.7rem;
    transform: translateY(0.75rem);
  }

  .promo-sidebar.is-visible {
    transform: translateY(0);
  }

  .promo-sidebar p {
    display: none;
  }

  .promo-sidebar h3 {
    font-size: 1.05rem;
    line-height: 1.65;
  }

  .promo-sidebar .promo-cta {
    margin-top: 0;
    min-height: 2.25rem;
  }

  .hero h1,
  .single-hero h1 {
    font-size: 2.35rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-whatsapp {
    position: fixed;
    z-index: 80;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border-radius: 999px;
    background: var(--whatsapp);
    color: #fff;
    padding: 0.85rem 1rem;
    font-weight: 850;
    box-shadow: var(--shadow-card);
  }

  .site-footer {
    padding-bottom: 5.5rem;
  }
}