: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);
}

/*
 * Urdu nastaliq text renders via Google-hosted "Noto Nastaliq Urdu" (loaded in
 * functions.php) instead of a bundled 9.5 MB TTF. The local Alvi Nastaleeq
 * @font-face was removed for performance; keep it out of the critical path.
 */

* {
  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;
}
