/* ===== CSS Custom Properties ===== */
:root {
  --primary: #1a365d;
  --primary-light: #2b6cb0;
  --primary-dark: #0f2440;
  --secondary: #d69e2e;
  --secondary-light: #ecc94b;
  --secondary-dark: #b7791f;
  --accent: #e53e3e;
  --bg-light: #f7fafc;
  --bg-white: #ffffff;
  --text-dark: #1a202c;
  --text-body: #4a5568;
  --text-light: #718096;
  --text-white: #ffffff;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --max-width: 1200px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  line-height: 1.7;
  background: var(--bg-white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--secondary);
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-title p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--secondary);
  color: var(--primary-dark);
}
.btn-primary:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 2px solid var(--text-white);
}
.btn-secondary:hover {
  background: var(--text-white);
  color: var(--primary);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-donate {
  background: var(--accent);
  color: var(--text-white);
  font-size: 1.1rem;
  padding: 16px 40px;
}
.btn-donate:hover {
  background: #c53030;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(26, 54, 93, 0.97);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  padding: 8px 18px;
  border-radius: var(--radius-xl);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-white);
  background: rgba(255,255,255,0.12);
}

.nav-links .btn-donate {
  margin-left: 12px;
  padding: 10px 24px;
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: white;
  margin: 6px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(214,158,46,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(43,108,176,0.2) 0%, transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(214,158,46,0.1) 0%, transparent 50%);
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(214,158,46,0.2);
  color: var(--secondary-light);
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(214,158,46,0.3);
}

.hero h1 {
  color: var(--text-white);
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 6vw, 4rem);
}

.hero h1 span {
  color: var(--secondary);
}

.hero-description {
  color: rgba(255,255,255,0.8);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-12px); }
  60% { transform: translateX(-50%) translateY(-6px); }
}

/* Floating shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  z-index: 1;
}

.hero-shape-1 {
  width: 400px;
  height: 400px;
  background: var(--secondary);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero-shape-2 {
  width: 250px;
  height: 250px;
  background: var(--primary-light);
  bottom: -50px;
  left: -50px;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-shape-3 {
  width: 150px;
  height: 150px;
  background: var(--secondary);
  top: 40%;
  left: 10%;
  animation: float 6s ease-in-out infinite 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

/* ===== Page Hero (smaller for sub-pages) ===== */
.page-hero {
  position: relative;
  padding: 180px 0 100px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(214,158,46,0.1) 0%, transparent 60%);
}

.page-hero h1 {
  color: var(--text-white);
  position: relative;
  z-index: 2;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 16px auto 0;
}

/* ===== Impact / Stats Section ===== */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-light); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.stat-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.stat-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--text-white);
  font-size: 1.5rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ===== Featured Project ===== */
.project-hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0;
}

.project-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 36, 64, 0.88) 0%, rgba(26, 54, 93, 0.82) 100%);
}

.project-hero-section .container {
  position: relative;
  z-index: 2;
}

.project-hero-content {
  max-width: 720px;
}

.project-hero-content h2 {
  color: var(--text-white);
  margin-bottom: 24px;
}

.project-hero-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.project-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.project-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.project-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 4rem;
}

.project-text h2 {
  margin-bottom: 20px;
}

.project-text p {
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.project-features {
  margin: 24px 0;
}

.project-hero-content .project-features li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.project-hero-content .project-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

.project-features li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-body);
}

.project-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

/* ===== Goals Section ===== */
.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.goal-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.goal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: var(--transition);
  z-index: 2;
}

.goal-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.goal-card:hover::before {
  height: 6px;
}

.goal-card:hover .goal-card-image img {
  transform: scale(1.05);
}

.goal-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.goal-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.goal-card-body {
  padding: 32px 28px;
}

.goal-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(26,54,93,0.08), rgba(43,108,176,0.12));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--primary);
}

.goal-card h3 {
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-weight: 700;
}

.goal-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.goal-card ul li {
  padding: 5px 0 5px 22px;
  position: relative;
  color: var(--text-body);
  font-size: 0.92rem;
}

.goal-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
}

/* ===== Get Involved / CTA Section ===== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(214,158,46,0.12) 0%, transparent 60%);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--text-white);
  margin-bottom: 20px;
}

.cta-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-note {
  margin-top: 30px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

/* ===== About Page ===== */
.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 24px;
  color: var(--text-body);
}

.about-content p:first-of-type::first-letter {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  float: left;
  margin: 0 12px 0 0;
  line-height: 1;
  color: var(--primary);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.about-value {
  text-align: center;
  padding: 30px 20px;
}

.about-value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--text-white);
  font-size: 1.6rem;
}

.about-value h4 {
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-weight: 700;
}

.about-value p {
  font-size: 0.92rem;
  color: var(--text-light);
}

.about-quote {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 40px;
  margin: 40px 0;
  text-align: center;
  border-left: 4px solid var(--secondary);
}

.about-quote blockquote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary);
  font-style: italic;
  line-height: 1.6;
}

.about-image {
  margin: 36px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 20px;
  color: var(--text-body);
}

.about-text p:first-of-type::first-letter {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  float: left;
  margin: 0 12px 0 0;
  line-height: 1;
  color: var(--primary);
}

.about-image-col {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image-col img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

/* ===== Contact Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 20px;
  font-family: var(--font-body);
}

.contact-info p {
  color: var(--text-body);
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.contact-details {
  margin-top: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-text h4 {
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 600;
}

.contact-item-text p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.contact-item-text a {
  color: var(--primary-light);
}
.contact-item-text a:hover {
  color: var(--secondary);
}

/* ===== Forms ===== */
.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--bg-white);
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(43,108,176,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-checkbox input[type="checkbox"] {
  width: auto;
  accent-color: var(--primary);
}

.form-checkbox label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 0.92rem;
}

.contact-form {
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.contact-form h3 {
  margin-bottom: 24px;
  font-family: var(--font-body);
}

/* ===== Footer ===== */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand h3 {
  color: var(--text-white);
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-501c3 {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(214,158,46,0.15);
  border: 1px solid rgba(214,158,46,0.25);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--secondary-light);
}

.footer h4 {
  color: var(--text-white);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--secondary-light);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}

.footer-social a:hover {
  background: var(--secondary);
  color: var(--primary-dark);
}

.footer-bottom {
  margin-top: 50px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.85rem;
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== Success Message ===== */
.success-message {
  display: none;
  background: #c6f6d5;
  color: #276749;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  margin-top: 16px;
  font-weight: 500;
}

.success-message.show {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .project-content { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .about-two-col { grid-template-columns: 1fr; gap: 30px; }
  .about-image-col img { max-height: 400px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--primary-dark);
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 30px;
    transition: var(--transition);
    box-shadow: var(--shadow-xl);
  }

  .nav-links.active { right: 0; }

  .nav-links a {
    padding: 14px 20px;
    font-size: 1.05rem;
    width: 100%;
    text-align: left;
  }

  .nav-toggle { display: block; }

  .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .goals-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  
  .hero-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card { padding: 30px 20px; }
  .contact-form { padding: 24px; }
  .about-quote { padding: 24px; }
}
