/* ============================================
   Aryauday Foundation - Modern NGO Website
   Blue theme, responsive, minimal
   ============================================ */

:root {
  --primary: #1e5a8e;
  --primary-dark: #154a73;
  --primary-darker: #0f3a5c;
  --primary-light: #2d7ab8;
  --accent: #3b82f6;
  --gradient-start: #1e5a8e;
  --gradient-end: #3b82f6;
  --pranv-blue: #0d3d66;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --shadow: 0 4px 20px rgba(30, 90, 142, 0.08);
  --shadow-hover: 0 8px 30px rgba(30, 90, 142, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========== Header (Sticky) ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-menu a {
  color: var(--text);
  font-weight: 500;
}

.nav-menu a:hover {
  color: var(--primary);
}

.btn-nav {
  padding: 0.5rem 1.25rem !important;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white !important;
  border-radius: 8px;
}

.btn-nav:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

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

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  box-shadow: 0 4px 14px rgba(30, 90, 142, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(30, 90, 142, 0.45);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: white;
  color: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-block {
  width: 100%;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + 2rem) 1.5rem 4rem;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d3d66 0%, #1e5a8e 35%, #2d7ab8 65%, #3b82f6 100%);
  z-index: -1;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255,255,255,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(255,255,255,0.9), transparent);
  pointer-events: none;
}

.hero-content {
  animation: fadeUp 0.8s ease-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.hero-mission {
  max-width: 560px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.7;
}

.btn-hero {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
}

.btn-hero:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  border-color: #fff !important;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-cta .btn {
  min-width: 160px;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Section reveal animation */
.section .section-title {
  opacity: 1;
}

.section:not(.reveal) .core-wing-card,
.section:not(.reveal) .achievement-card {
  opacity: 0;
  transform: translateY(20px);
}

.section.reveal .core-wing-card,
.section.reveal .achievement-card {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, box-shadow var(--transition);
}

.section.reveal .core-wing-card:nth-child(1) { transition-delay: 0.1s; }
.section.reveal .core-wing-card:nth-child(2) { transition-delay: 0.2s; }
.section.reveal .core-wing-card:nth-child(3) { transition-delay: 0.3s; }
.section.reveal .core-wing-card:nth-child(4) { transition-delay: 0.4s; }
.section.reveal .achievement-card:nth-child(1) { transition-delay: 0.1s; }
.section.reveal .achievement-card:nth-child(2) { transition-delay: 0.15s; }
.section.reveal .achievement-card:nth-child(3) { transition-delay: 0.2s; }
.section.reveal .achievement-card:nth-child(4) { transition-delay: 0.25s; }

/* ========== Leadership ========== */
.leadership {
  background: var(--bg-soft);
}

.leadership-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.leadership-image-wrapper {
  position: relative;
}

.leadership-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 4px solid var(--primary);
}

.leadership-image img {
  width: 100%;
  height: auto;
  display: block;
}

.leadership-text {
  padding: 1rem 0;
}

.leader-name {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}

.leader-title {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.leader-message {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1rem;
}

.leader-quote {
  margin: 1.25rem 0;
  padding: 1rem 1.5rem;
  background: var(--bg-soft);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.leader-quote blockquote {
  margin: 0;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
}

.leader-values {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--border);
}

/* ========== PRANV Section ========== */
.pranv {
  background: linear-gradient(135deg, #0a2d4d 0%, var(--pranv-blue) 50%, #0d3d66 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.pranv::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(30, 90, 142, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Banner behind PRANV title & intro – theme blue for readability */
.pranv-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 2rem 2.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.pranv-header {
  text-align: center;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.pranv-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pranv-acronym {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.1em;
  opacity: 0.95;
}

.pranv-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.pranv-description {
  font-size: 1.15rem;
  line-height: 1.75;
  color: #ffffff;
  font-weight: 500;
  margin: 0;
}

.pranv-achievements {
  position: relative;
  z-index: 1;
}

.achievements-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--pranv-blue);
  text-align: center;
  margin-bottom: 2rem;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.achievement-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.achievement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.achievement-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.achievement-icon svg {
  width: 100%;
  height: 100%;
}

.achievement-card h4 {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.achievement-card p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.achievement-stat {
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
}

.achievement-stat-number {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(13, 61, 102, 0.15);
}

.achievement-stat-number .stat-animate {
  display: inline-block;
  min-width: 1.2em;
  text-align: center;
}

.achievement-stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.achievement-stat-location {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ========== Sections ========== */
.section {
  padding: 5rem 0;
  scroll-margin-top: var(--header-height);
}

section[id] {
  scroll-margin-top: var(--header-height);
}

.section:nth-child(even) {
  background: var(--bg-soft);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 3rem;
}

/* ========== About ========== */
.about-intro {
  max-width: 720px;
  margin: 0 auto 1rem;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.75;
}

.about-belief {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.about-belief strong {
  color: var(--primary);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.about-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.about-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--primary);
}

.about-icon svg {
  width: 100%;
  height: 100%;
}

.about-card h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.about-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.focus-areas {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.focus-title {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.focus-list {
  list-style: none;
}

.focus-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.focus-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.5rem;
  border-radius: 50%;
  background: var(--primary);
}

/* ========== Core Wings ========== */
.core-wings {
  background: var(--bg-soft);
}

.core-wings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.core-wing-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.core-wing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.core-wing-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  color: var(--primary);
}

.core-wing-icon svg {
  width: 100%;
  height: 100%;
}

.core-wing-card h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.core-wing-card ul {
  list-style: none;
}

.core-wing-card li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.core-wing-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ========== Impact Strip ========== */
.impact-strip {
  padding: 3rem 0 !important;
  background: linear-gradient(135deg, var(--primary-dark), var(--pranv-blue)) !important;
  color: white;
  position: relative;
  overflow: hidden;
}

.impact-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="ig" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.06)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23ig)"/></svg>');
  pointer-events: none;
}

.impact-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.impact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.impact-number {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.impact-label {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.95;
  line-height: 1.3;
}

/* ========== Initiatives ========== */
.initiatives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.initiative-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.initiative-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.initiative-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.initiative-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.initiative-card:hover .initiative-image img {
  transform: scale(1.05);
}

.initiative-icon {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  color: var(--primary);
}

.initiative-icon svg {
  width: 26px;
  height: 26px;
}

.initiative-content {
  padding: 1.5rem;
}

.initiative-content h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.initiative-content ul {
  list-style: none;
}

.initiative-content li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.initiative-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ========== Get Involved ========== */
.involved-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.involved-form-card {
  grid-row: span 2;
}

.involved-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

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

.involved-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  color: var(--primary);
}

.involved-icon svg {
  width: 100%;
  height: 100%;
}

.involved-card h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.involved-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.involved-cards-right {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  align-content: start;
}

/* Forms */
.volunteer-form,
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.volunteer-form label,
.contact-form label {
  font-weight: 500;
  color: var(--text);
  font-size: 0.9rem;
}

.volunteer-form input,
.volunteer-form select,
.volunteer-form textarea,
.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition);
}

.volunteer-form input:focus,
.volunteer-form select:focus,
.volunteer-form textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

/* ========== Gallery ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Testimonials ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

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

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-card footer {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ========== Contact ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info h3,
.contact-form h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 0.75rem;
  color: var(--text);
}

.contact-info a {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  color: var(--primary);
  border-radius: 10px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.social-links svg {
  width: 20px;
  height: 20px;
}

.map-placeholder {
  margin-top: 1.5rem;
  height: 200px;
  background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
  border: 2px dashed var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-inner {
  text-align: center;
  color: var(--text-muted);
}

.map-inner span {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

/* ========== Footer ========== */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.9);
  padding: 3rem 0 1.5rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.85);
}

.footer a:hover {
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .logo {
  color: white;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.6;
}

.footer-links h4,
.footer-registration h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: white;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-registration p {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.5;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ========== Responsive ========== */
@media (max-width: 992px) {
  .leadership-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .leadership-image-wrapper {
    max-width: 300px;
    margin: 0 auto;
  }

  .involved-grid {
    grid-template-columns: 1fr;
  }

  .involved-form-card {
    grid-row: auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .impact-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hero {
    min-height: auto;
    padding-bottom: 3rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .initiatives-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand .logo {
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .impact-strip-grid {
    grid-template-columns: 1fr;
  }

  .achievements-grid {
    grid-template-columns: 1fr;
  }
}
