/* ═══════════════════════════════════════════════════════════════
   AWAAM PAKISTAN — EDITORIAL REDESIGN
   Bold editorial + grassroots aesthetic
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   1. CSS VARIABLES & RESET
   ═══════════════════════════════════════════ */
:root {
  --green-900: #042f1e;
  --green-800: #064e32;
  --green-700: #0A6847;
  --green-600: #0d7d55;
  --green-500: #12a672;
  --green-400: #34d399;
  --green-100: #d1fae5;
  --gold-500: #d4a017;
  --gold-400: #f0c040;
  --gold-300: #fde68a;
  --cream: #faf7f2;
  --cream-dark: #f0ebe3;
  --ink: #1a1a1a;
  --ink-light: #4a4a4a;
  --ink-muted: #7a7a7a;
  --white: #ffffff;

  --font-display: 'Libre Baskerville', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --font-urdu: 'Gulzar', serif;
}

html { scroll-behavior: smooth; }

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

html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body) !important;
  color: var(--ink);
  background: var(--cream) !important;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

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

/* ═══════════════════════════════════════════
   2. GRAIN TEXTURE OVERLAY
   ═══════════════════════════════════════════ */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ═══════════════════════════════════════════
   3. ANIMATION & UTILITY CLASSES
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes heroGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-5%, 3%) scale(1.1); }
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ═══════════════════════════════════════════
   4. NAVIGATION
   ═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10000;
  padding: 1.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  padding: 0.8rem 3rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 40px;
  width: auto;
}
.navbar:not(.scrolled) .nav-logo-img {
  filter: brightness(0) invert(1);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink-light);
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.3s;
  text-decoration: none;
}
.navbar:not(.scrolled) .nav-links a {
  color: rgba(255,255,255,0.7);
}
.navbar:not(.scrolled) .nav-links a:hover {
  color: var(--white);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-700);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.navbar:not(.scrolled) .nav-links a::after {
  background: var(--white);
}
.nav-links a:hover { color: var(--green-700); }
.nav-links a:hover::after { width: 100%; }
.navbar:not(.scrolled) .nav-links a:hover { color: var(--white); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.btn-lang {
  font-family: var(--font-urdu);
  font-size: 0.95rem;
  color: var(--ink-muted);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-lang:hover { background: var(--cream-dark); color: var(--ink); }
.navbar:not(.scrolled) .btn-lang { color: rgba(255,255,255,0.7); }
.navbar:not(.scrolled) .btn-lang:hover { background: rgba(255,255,255,0.1); color: var(--white); }

.btn-join {
  background: var(--green-700);
  color: var(--white);
  padding: 0.65rem 1.5rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-join:hover {
  background: var(--green-800);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(10, 104, 71, 0.3);
}

.btn-logout {
  background: #dc2626;
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: var(--font-body);
  text-decoration: none;
  transition: all 0.3s;
}
.btn-logout:hover {
  background: #b91c1c;
}

.btn-login {
  color: var(--ink-muted);
  padding: 0.4rem 0.75rem;
  font-weight: 500;
  font-size: 0.9rem;
  font-family: var(--font-body);
  text-decoration: none;
  transition: color 0.3s;
}
.btn-login:hover { color: var(--ink); }
.navbar:not(.scrolled) .btn-login { color: rgba(255,255,255,0.7); }
.navbar:not(.scrolled) .btn-login:hover { color: var(--white); }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border: none;
  background: none;
}
.nav-toggle span {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: var(--ink);
  transition: all 0.3s;
  display: block;
}
.navbar:not(.scrolled) .nav-toggle span {
  background: var(--white);
}

/* Mobile menu open state */
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: var(--cream);
  padding: 6rem 2rem 2rem;
  flex-direction: column;
  overflow-y: auto;
}
.nav-mobile-menu.open {
  display: flex;
}
.nav-mobile-menu a {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-mobile-menu a:hover {
  color: var(--green-700);
}
.nav-mobile-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.nav-mobile-actions .btn-join {
  text-align: center;
  justify-content: center;
}
.nav-mobile-lang {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.nav-mobile-lang a {
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
}
.nav-mobile-lang a.active {
  background: var(--green-700);
  color: var(--white);
}

/* ═══════════════════════════════════════════
   5. HOMEPAGE HERO
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--green-900);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(10, 104, 71, 0.4) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--cream), transparent);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
  padding: 8rem 4rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text { color: var(--white); }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-400);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--green-400);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-400);
  display: inline-block;
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-400);
  opacity: 0.4;
}
.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}
.btn-hero-primary {
  background: var(--gold-500);
  color: var(--green-900);
  padding: 1rem 2.25rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-hero-primary:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.3);
}
.btn-hero-secondary {
  color: var(--white);
  padding: 1rem 1.5rem;
  font-weight: 500;
  font-size: 1rem;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
  text-decoration: none;
}
.btn-hero-secondary:hover { color: var(--gold-400); }
.btn-hero-secondary svg { transition: transform 0.3s; }
.btn-hero-secondary:hover svg { transform: translateX(4px); }

/* Hero visual side */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1.2s 0.6s forwards;
}
.hero-image-stack {
  position: relative;
  width: 100%;
  max-width: 500px;
}
.hero-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.hero-stat-card {
  position: absolute;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  color: var(--white);
}
.hero-stat-card.top-right {
  top: -20px;
  right: -40px;
  animation: float 4s ease-in-out infinite;
}
.hero-stat-card.bottom-left {
  bottom: 40px;
  left: -50px;
  animation: float 4s 1s ease-in-out infinite;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-400);
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* ═══════════════════════════════════════════
   6. SECTION HEADERS & LABELS
   ═══════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-label::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--green-700);
}
.section-label.centered {
  justify-content: center;
}
.section-header-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.section-header-subtitle {
  font-size: 1.05rem;
  color: var(--ink-muted);
  margin-top: 0.75rem;
}

/* Dark section header variants */
.section-dark .section-label { color: var(--green-400); }
.section-dark .section-label::before { background: var(--green-400); }
.section-dark .section-header-title { color: var(--white); }
.section-dark .section-header-subtitle { color: rgba(255,255,255,0.5); }

/* ═══════════════════════════════════════════
   7. INTRO / ABOUT SECTION
   ═══════════════════════════════════════════ */
.intro {
  padding: 8rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}
.intro-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.2;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2rem;
}
.intro-heading em {
  font-style: italic;
  color: var(--green-700);
}
.intro-text {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--ink-light);
}
.intro-text p + p { margin-top: 1.25rem; }
.intro-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: relative;
}
.intro-images::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--green-400);
  border-radius: 16px;
  opacity: 0.3;
  z-index: -1;
}
.intro-img {
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.intro-img:hover { transform: scale(1.03); }
.intro-img:nth-child(1) { height: 280px; }
.intro-img:nth-child(2) { height: 280px; margin-top: 2rem; }
.intro-img:nth-child(3) { height: 240px; margin-top: -1rem; }
.intro-img:nth-child(4) { height: 240px; margin-top: 1rem; }

/* ═══════════════════════════════════════════
   8. LEADERS SECTION
   ═══════════════════════════════════════════ */
.leaders {
  background: var(--green-900);
  padding: 7rem 4rem;
  position: relative;
  overflow: hidden;
}
.leaders::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--green-500), transparent);
}
.leaders-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.leaders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.leader-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.leader-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold-400), var(--green-400));
  opacity: 0;
  transition: opacity 0.4s;
}
.leader-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.leader-card:hover::before { opacity: 1; }
.leader-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
  background: var(--green-800);
}
.leader-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.leader-info .role {
  font-size: 0.85rem;
  color: var(--gold-400);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}
.play-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  transition: color 0.3s;
}
.play-btn:hover { color: var(--white); }
.play-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ═══════════════════════════════════════════
   9. PRINCIPLES SECTION
   ═══════════════════════════════════════════ */
.principles {
  padding: 8rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.principle-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.principle-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--green-700), var(--green-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.principle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.principle-card:hover::before { transform: scaleX(1); }
.principle-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-100);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.3s;
}
.principle-card:hover .principle-number { color: var(--green-400); }
.principle-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}
.principle-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

/* ═══════════════════════════════════════════
   10. POSITIONS / POLICIES SECTION
   ═══════════════════════════════════════════ */
.positions {
  background: var(--cream-dark);
  padding: 8rem 4rem;
  position: relative;
}
.positions::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.1), transparent);
}
.positions-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.positions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.position-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(0,0,0,0.04);
}
.position-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.08);
}
.position-card-img {
  height: 220px;
  background: linear-gradient(135deg, var(--green-800), var(--green-900));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.position-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}
.position-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.position-icon {
  font-size: 3.5rem;
  z-index: 1;
}
.position-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  z-index: 2;
}
.position-card-body {
  padding: 1.75rem;
}
.position-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.75rem;
  color: var(--ink);
}
.position-card-body p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
}
.read-more {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--green-700);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: gap 0.3s;
}
.read-more:hover { gap: 0.75rem; }
.read-more svg { flex-shrink: 0; }

.view-all-link {
  text-align: center;
  margin-top: 3rem;
}
.view-all-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--green-700);
  font-size: 1rem;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.3s;
  text-decoration: none;
}
.view-all-link a:hover { border-color: var(--green-700); }

/* ═══════════════════════════════════════════
   11. NEWS & EVENTS CARDS
   ═══════════════════════════════════════════ */
.news-events-section {
  padding: 8rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}
.news-events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.news-card, .event-card {
  display: flex;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: inherit;
}
.news-card:hover, .event-card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.news-card-img, .event-card-img {
  width: 140px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--green-700);
}
.news-card-img img, .event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.news-card:hover .news-card-img img,
.event-card:hover .event-card-img img {
  transform: scale(1.05);
}
.news-card-body, .event-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.card-date {
  font-size: 0.75rem;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  transition: color 0.3s;
}
.news-card:hover .card-title,
.event-card:hover .card-title { color: var(--green-700); }
.card-excerpt {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--ink-muted);
}
.card-location {
  font-size: 0.8rem;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* News/Events list page cards (larger) */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.news-grid-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: inherit;
  display: block;
}
.news-grid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.news-grid-card-img {
  height: 220px;
  overflow: hidden;
  background: var(--cream-dark);
}
.news-grid-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.news-grid-card:hover .news-grid-card-img img {
  transform: scale(1.05);
}
.news-grid-card-body {
  padding: 1.5rem;
}
.news-grid-card-body .card-date {
  margin-bottom: 0.5rem;
}
.news-grid-card-body .card-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.news-grid-card:hover .card-title { color: var(--green-700); }
.news-grid-card-body .card-excerpt {
  margin-bottom: 1rem;
}

/* Featured news card (large, first item) */
.news-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  border-radius: 20px;
}
.news-featured .news-grid-card-img {
  height: 100%;
  min-height: 350px;
  border-radius: 20px 0 0 20px;
}
.news-featured .news-grid-card-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-featured .card-title {
  font-size: 1.5rem;
}

/* ═══════════════════════════════════════════
   12. FAQ SECTION
   ═══════════════════════════════════════════ */
.faq {
  padding: 8rem 4rem;
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s;
  cursor: pointer;
  border: none;
  background: none;
}
.faq-question:hover { color: var(--green-700); }
.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  color: var(--green-700);
}
.faq-item.active .faq-toggle {
  background: var(--green-700);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--ink-light);
}

/* ═══════════════════════════════════════════
   13. CTA SECTION
   ═══════════════════════════════════════════ */
.cta-section {
  background: var(--green-900);
  padding: 7rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--green-700), transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0.3;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.cta-inner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
}
.btn-cta {
  background: var(--gold-500);
  color: var(--green-900);
  padding: 1.1rem 2.75rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1.05rem;
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}
.btn-cta:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.3);
}

/* ═══════════════════════════════════════════
   14. FOOTER
   ═══════════════════════════════════════════ */
.ap-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.5);
  padding: 3rem 4rem;
}
.ap-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.ap-footer-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.ap-footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.ap-footer-links a:hover { color: var(--white); }
.ap-footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ap-footer-social a {
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
  display: flex;
  text-decoration: none;
}
.ap-footer-social a:hover { color: var(--white); }
.ap-footer-social svg {
  width: 18px;
  height: 18px;
}
.ap-footer-credit {
  font-size: 0.8rem;
}
.ap-footer-credit a {
  color: var(--green-400);
  font-weight: 500;
  transition: color 0.3s;
  text-decoration: none;
}
.ap-footer-credit a:hover { color: var(--gold-400); }

/* ═══════════════════════════════════════════
   15. STANDARD PAGE HERO (inner pages)
   ═══════════════════════════════════════════ */
.page-hero {
  background: var(--green-900);
  padding: 10rem 4rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(10, 104, 71, 0.3), transparent 70%);
  transform: translate(-50%, -50%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--cream), transparent);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.page-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
/* With background image */
.page-hero.has-bg-image {
  background-size: cover;
  background-position: center;
}
.page-hero.has-bg-image::before {
  background: rgba(4, 47, 30, 0.85);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: none;
}

/* ═══════════════════════════════════════════
   16. ARTICLE / CONTENT LAYOUT
   ═══════════════════════════════════════════ */
.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem;
}
.article-content h1,
.article-content h2,
.article-content h3 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 1rem;
}
.article-content h1 { font-size: 2.2rem; margin-bottom: 1.5rem; }
.article-content h2 { font-size: 1.6rem; margin-top: 3rem; }
.article-content h3 { font-size: 1.25rem; margin-top: 2rem; }
.article-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--ink-light);
  margin-bottom: 1.5rem;
}
.article-content ul, .article-content ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}
.article-content li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-light);
  margin-bottom: 0.5rem;
}
.article-content blockquote {
  border-left: 4px solid var(--gold-500);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: var(--cream-dark);
  border-radius: 0 12px 12px 0;
  font-style: italic;
}
.article-content blockquote p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 0;
}
.article-content img {
  border-radius: 12px;
  margin: 2rem 0;
}
.article-content a {
  color: var(--green-700);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}
.article-content a:hover { color: var(--green-500); }

/* Article meta */
.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* ═══════════════════════════════════════════
   17. FORM STYLES
   ═══════════════════════════════════════════ */
.ap-form-group {
  margin-bottom: 1.25rem;
}
.ap-form-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  display: block;
  margin-bottom: 0.5rem;
}
.ap-form-input,
.ap-form-select,
.ap-form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-family: var(--font-body);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  transition: all 0.3s;
}
.ap-form-input:focus,
.ap-form-select:focus,
.ap-form-textarea:focus {
  outline: none;
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(10, 104, 71, 0.1);
}
.ap-form-input::placeholder,
.ap-form-textarea::placeholder {
  color: var(--ink-muted);
}
.ap-form-textarea {
  min-height: 120px;
  resize: vertical;
}
.ap-form-error {
  font-size: 0.8rem;
  color: #dc2626;
  margin-top: 0.3rem;
}

/* Style all existing form inputs to match */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="date"],
select,
textarea {
  font-family: var(--font-body);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 0.85rem 1rem;
  transition: all 0.3s;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(10, 104, 71, 0.1);
}

/* ═══════════════════════════════════════════
   18. BUTTONS (Global)
   ═══════════════════════════════════════════ */
.btn-primary-new {
  background: var(--gold-500);
  color: var(--green-900);
  padding: 1rem 2.25rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
}
.btn-primary-new:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.3);
}

.btn-green {
  background: var(--green-700);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
}
.btn-green:hover {
  background: var(--green-800);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(10, 104, 71, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--green-700);
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-body);
  border: 2px solid var(--green-700);
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--green-700);
  color: var(--white);
}

/* ═══════════════════════════════════════════
   19. GALLERY
   ═══════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding: 4rem;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* ═══════════════════════════════════════════
   20. PAGINATION
   ═══════════════════════════════════════════ */
.ap-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 3rem 0;
}
.ap-pagination a,
.ap-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}
.ap-pagination a {
  color: var(--ink-muted);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
}
.ap-pagination a:hover {
  background: var(--cream-dark);
  color: var(--ink);
}
.ap-pagination .active {
  background: var(--green-700);
  color: var(--white);
  border: none;
}
.ap-pagination .prev,
.ap-pagination .next {
  width: auto;
  padding: 0 1.25rem;
  gap: 0.4rem;
}

/* ═══════════════════════════════════════════
   21. CONTENT SECTIONS (generic)
   ═══════════════════════════════════════════ */
.content-section {
  padding: 5rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}
.content-section-alt {
  padding: 5rem 4rem;
  background: var(--cream-dark);
}
.content-section-alt-inner {
  max-width: 1400px;
  margin: 0 auto;
}

/* Content cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* Generic card */
.ap-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.ap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.ap-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}
.ap-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-muted);
}

/* ═══════════════════════════════════════════
   22. WHATSAPP & SCROLL BUTTONS
   ═══════════════════════════════════════════ */
.ap-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 998;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #22c55e;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.4);
  transition: all 0.3s;
  text-decoration: none;
}
.ap-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(34, 197, 94, 0.5);
}
.ap-whatsapp svg { width: 24px; height: 24px; }

.ap-scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.ap-scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.ap-scroll-top:hover {
  background: var(--green-800);
  transform: translateY(-2px);
}
.ap-scroll-top svg { width: 20px; height: 20px; }

/* ═══════════════════════════════════════════
   23. VERIFICATION / MEMBER CARD
   ═══════════════════════════════════════════ */
.verify-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.member-card-display {
  background: linear-gradient(135deg, var(--green-800), var(--green-900));
  border-radius: 16px;
  padding: 2rem;
  color: var(--white);
}

/* ═══════════════════════════════════════════
   24. LOGIN PAGE
   ═══════════════════════════════════════════ */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  padding: 2rem;
}
.login-card {
  max-width: 420px;
  width: 100%;
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.login-card h1 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  margin-bottom: 2rem;
}
.login-card .logo-icon {
  width: 56px;
  height: 56px;
  background: var(--green-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  font-family: var(--font-urdu);
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

/* ═══════════════════════════════════════════
   25. RESPONSIVE — 1024px
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .navbar { padding: 1rem 1.5rem; }
  .navbar.scrolled { padding: 0.8rem 1.5rem; }

  .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .leaders-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .positions-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .news-featured { grid-template-columns: 1fr; }
  .news-featured .news-grid-card-img { border-radius: 20px 20px 0 0; min-height: 250px; }
}

/* ═══════════════════════════════════════════
   26. RESPONSIVE — 768px
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .navbar { padding: 1rem 1.5rem; }
  .navbar.scrolled { padding: 0.8rem 1.5rem; }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 7rem 1.5rem 5rem;
    text-align: center;
    gap: 3rem;
  }
  .hero-subtitle { margin: 0 auto 2.5rem; }
  .hero-actions { justify-content: center; flex-wrap: wrap; }
  .hero-visual { order: -1; }
  .hero-image-stack { max-width: 320px; }
  .hero-stat-card.top-right { right: -10px; }
  .hero-stat-card.bottom-left { left: -10px; }
  .hero-eyebrow { justify-content: center; }

  .intro { padding: 5rem 1.5rem; }
  .intro-grid { grid-template-columns: 1fr; gap: 3rem; }

  .leaders { padding: 5rem 1.5rem; }
  .leader-card { flex-direction: column; text-align: center; padding: 2rem; }

  .principles { padding: 5rem 1.5rem; }
  .principles-grid { grid-template-columns: 1fr; }

  .positions { padding: 5rem 1.5rem; }
  .positions-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

  .faq { padding: 5rem 1.5rem; }

  .cta-section { padding: 5rem 1.5rem; }

  .ap-footer { padding: 2rem 1.5rem; }
  .ap-footer-inner { flex-direction: column; text-align: center; }

  .page-hero { padding: 8rem 1.5rem 4rem; }

  .article-content { padding: 3rem 1.5rem; }

  .news-events-grid { grid-template-columns: 1fr; gap: 3rem; }
  .news-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .cards-grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; padding: 3rem 1.5rem; }

  .content-section { padding: 3rem 1.5rem; }
  .content-section-alt { padding: 3rem 1.5rem; }

  .news-card, .event-card { flex-direction: column; }
  .news-card-img, .event-card-img { width: 100%; height: 180px; }
}

/* ═══════════════════════════════════════════
   27. RTL OVERRIDES
   ═══════════════════════════════════════════ */
html[dir="rtl"] {
  font-family: var(--font-urdu) !important;
}

html[dir="rtl"] body {
  font-family: var(--font-urdu) !important;
}

html[dir="rtl"] .nav-logo {
  direction: ltr;
}

html[dir="rtl"] .nav-links {
  flex-direction: row-reverse;
}

html[dir="rtl"] .nav-links a::after {
  left: auto;
  right: 0;
}

html[dir="rtl"] .nav-cta {
  flex-direction: row-reverse;
}

html[dir="rtl"] .section-label::before {
  order: 1;
}
html[dir="rtl"] .section-label {
  flex-direction: row-reverse;
}

html[dir="rtl"] .hero-eyebrow {
  flex-direction: row-reverse;
}
html[dir="rtl"] .hero-eyebrow::before {
  order: 1;
}

html[dir="rtl"] .hero-content {
  direction: rtl;
}

html[dir="rtl"] .hero-actions {
  flex-direction: row-reverse;
}

html[dir="rtl"] .btn-hero-secondary svg,
html[dir="rtl"] .read-more svg,
html[dir="rtl"] .view-all-link a svg {
  transform: scaleX(-1);
}
html[dir="rtl"] .btn-hero-secondary:hover svg {
  transform: scaleX(-1) translateX(4px);
}

html[dir="rtl"] .intro-grid {
  direction: rtl;
}

html[dir="rtl"] .intro-images::before {
  right: auto;
  left: -20px;
}

html[dir="rtl"] .leader-card::before {
  left: auto;
  right: 0;
}

html[dir="rtl"] .faq-question {
  text-align: right;
  flex-direction: row-reverse;
}

html[dir="rtl"] .article-content blockquote {
  border-left: none;
  border-right: 4px solid var(--gold-500);
  border-radius: 12px 0 0 12px;
}

html[dir="rtl"] .article-content ul,
html[dir="rtl"] .article-content ol {
  padding-left: 0;
  padding-right: 1.5rem;
}

html[dir="rtl"] .position-tag {
  left: auto;
  right: 1rem;
}

html[dir="rtl"] .ap-footer-inner {
  flex-direction: row-reverse;
}

/* RTL animations — mirror horizontal reveals */
html[dir="rtl"] .reveal-left {
  transform: translateX(60px);
}
html[dir="rtl"] .reveal-right {
  transform: translateX(-60px);
}
html[dir="rtl"] .reveal-left.visible,
html[dir="rtl"] .reveal-right.visible {
  transform: translateX(0);
}

/* Force Urdu font on specific elements in RTL */
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] p,
html[dir="rtl"] a,
html[dir="rtl"] span,
html[dir="rtl"] li,
html[dir="rtl"] button,
html[dir="rtl"] input,
html[dir="rtl"] select,
html[dir="rtl"] textarea,
html[dir="rtl"] label {
  font-family: var(--font-urdu) !important;
}

/* Keep display font for headings in RTL too */
html[dir="rtl"] .hero-title,
html[dir="rtl"] .intro-heading,
html[dir="rtl"] .section-header-title,
html[dir="rtl"] .principle-card h3,
html[dir="rtl"] .position-card-body h3,
html[dir="rtl"] .leader-info h3,
html[dir="rtl"] .cta-inner h2,
html[dir="rtl"] .page-hero h1,
html[dir="rtl"] .article-content h1,
html[dir="rtl"] .article-content h2,
html[dir="rtl"] .article-content h3,
html[dir="rtl"] .faq-question,
html[dir="rtl"] .card-title,
html[dir="rtl"] .login-card h1,
html[dir="rtl"] .ap-card h3 {
  font-family: var(--font-urdu) !important;
}

/* Force Latin fonts for specific elements in RTL */
html[dir="rtl"] a[href^="tel:"],
html[dir="rtl"] a[href^="mailto:"],
html[dir="rtl"] .force-latin,
html[dir="rtl"] input[type="tel"],
html[dir="rtl"] input[type="email"],
html[dir="rtl"] input[type="number"] {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif !important;
  direction: ltr;
  unicode-bidi: bidi-override;
}

/* ═══════════════════════════════════════════
   28. RECAPTCHA BADGE
   ═══════════════════════════════════════════ */
.grecaptcha-badge {
  bottom: 100px !important;
}
