/* Trust NGO - Static Website Styles */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables - Design System */
:root {
  /* Core Brand Colors */
  --background: hsl(180, 20%, 99%);
  --foreground: hsl(200, 25%, 15%);
  
  /* Cards & Surfaces */
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(200, 25%, 15%);
  
  /* Primary: Teal - Trust, Health, Hope */
  --primary: hsl(174, 58%, 38%);
  --primary-foreground: hsl(0, 0%, 100%);
  
  /* Secondary */
  --secondary: hsl(200, 20%, 96%);
  --secondary-foreground: hsl(200, 25%, 25%);
  
  /* Muted */
  --muted: hsl(180, 15%, 95%);
  --muted-foreground: hsl(200, 15%, 45%);
  
  /* Accent: Warm Coral */
  --accent: hsl(15, 85%, 60%);
  --accent-foreground: hsl(0, 0%, 100%);
  
  /* Success */
  --success: hsl(145, 60%, 42%);
  
  /* Destructive */
  --destructive: hsl(0, 84%, 60%);
  
  /* Border */
  --border: hsl(180, 15%, 88%);
  
  /* Custom */
  --hero-gradient: linear-gradient(135deg, hsla(174, 58%, 38%, 0.95), hsla(200, 60%, 35%, 0.9));
  --card-shadow: 0 4px 20px -4px hsla(200, 25%, 15%, 0.08);
  --card-shadow-hover: 0 12px 40px -8px hsla(200, 25%, 15%, 0.15);
  
  --radius: 0.75rem;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* Section Padding */
.section-padding {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section-padding { padding: 6rem 0; }
}

@media (min-width: 1024px) {
  .section-padding { padding: 8rem 0; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: hsla(174, 58%, 32%, 1);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

.btn-accent:hover {
  background-color: hsla(15, 85%, 50%, 1);
}

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

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

.btn-outline-light {
  background-color: transparent;
  border: 1px solid hsla(0, 0%, 100%, 0.5);
  color: var(--primary-foreground);
}

.btn-outline-light:hover {
  background-color: hsla(0, 0%, 100%, 0.1);
}

.btn-ghost {
  background-color: transparent;
  color: var(--foreground);
}

.btn-ghost:hover {
  background-color: var(--muted);
}

.btn-ghost-light {
  background-color: transparent;
  color: var(--primary-foreground);
}

.btn-ghost-light:hover {
  background-color: hsla(0, 0%, 100%, 0.1);
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-full {
  width: 100%;
}

/* Card */
.card {
  background-color: var(--card);
  border-radius: 1rem;
  border: 1px solid hsla(180, 15%, 88%, 0.5);
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

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

/* Badge */
.badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background-color: hsla(174, 58%, 38%, 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
}

/* Form Elements */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-family: inherit;
  background-color: var(--background);
  color: var(--foreground);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(174, 58%, 38%, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* Grid */
.grid {
  display: grid;
  gap: 1.5rem;
}

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

@media (max-width: 1023px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Flex */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.flex-wrap { flex-wrap: wrap; }

/* Text */
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }

.text-muted { color: var(--muted-foreground); }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-white { color: white; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

.leading-relaxed { line-height: 1.7; }
.leading-tight { line-height: 1.2; }

/* Backgrounds */
.bg-muted { background-color: hsla(180, 15%, 95%, 0.5); }
.bg-primary { background-color: var(--primary); }
.bg-card { background-color: var(--card); }
.bg-foreground { background-color: var(--foreground); }

/* Spacing */
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

/* Border Radius */
.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: 0.75rem; }
.rounded-xl { border-radius: 1rem; }
.rounded-2xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: hsla(0, 0%, 100%, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px hsla(0, 0%, 0%, 0.1);
  padding: 0.75rem 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.navbar-logo-text {
  display: flex;
  flex-direction: column;
}

.navbar-logo-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.2;
  color: white;
  transition: color 0.3s ease;
}

.navbar.scrolled .navbar-logo-title {
  color: var(--foreground);
}

.navbar-logo-subtitle {
  font-size: 0.7rem;
  color: hsla(0, 0%, 100%, 0.8);
  transition: color 0.3s ease;
}

.navbar.scrolled .navbar-logo-subtitle {
  color: var(--muted-foreground);
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .navbar-links { display: flex; }
}

.navbar-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsla(0, 0%, 100%, 0.9);
  transition: color 0.2s ease;
  position: relative;
}

.navbar.scrolled .navbar-link {
  color: hsla(200, 25%, 15%, 0.8);
}

.navbar-link:hover,
.navbar-link.active {
  color: var(--primary);
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.2s ease;
}

.navbar-link:hover::after,
.navbar-link.active::after {
  width: 100%;
}

.navbar-cta {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .navbar-cta { display: flex; }
}

.navbar-mobile-toggle {
  display: flex;
  padding: 0.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  color: white;
  transition: color 0.3s ease;
}

.navbar.scrolled .navbar-mobile-toggle {
  color: var(--foreground);
}

@media (min-width: 1024px) {
  .navbar-mobile-toggle { display: none; }
}

.navbar-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 1rem;
  right: 1rem;
  background-color: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px hsla(0, 0%, 0%, 0.15);
  padding: 1rem;
  margin-top: 0.5rem;
}

.navbar-mobile.open {
  display: block;
}

@media (min-width: 1024px) {
  .navbar-mobile { display: none !important; }
}

.navbar-mobile-link {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  transition: background-color 0.2s ease;
}

.navbar-mobile-link:hover,
.navbar-mobile-link.active {
  background-color: hsla(174, 58%, 38%, 0.1);
  color: var(--primary);
}

.navbar-mobile-cta {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.navbar-mobile-cta .btn {
  flex: 1;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-gradient);
}

.hero-content {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: hsla(0, 0%, 100%, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  animation: fadeUp 0.6s ease forwards;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  max-width: 800px;
  animation: fadeUp 0.6s ease 0.1s forwards;
  opacity: 0;
}

@media (min-width: 768px) {
  .hero-title { font-size: 3.5rem; }
}

@media (min-width: 1024px) {
  .hero-title { font-size: 4rem; }
}

.hero-title .highlight {
  color: var(--accent);
}

.hero-description {
  font-size: 1.125rem;
  color: hsla(0, 0%, 100%, 0.9);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 600px;
  animation: fadeUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

@media (min-width: 768px) {
  .hero-description { font-size: 1.25rem; }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 500px;
  animation: fadeUp 0.6s ease 0.4s forwards;
  opacity: 0;
}

@media (min-width: 768px) {
  .hero-stats { gap: 2.5rem; }
}

.hero-stat {
  text-align: center;
}

@media (min-width: 768px) {
  .hero-stat { text-align: left; }
}

.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

@media (min-width: 768px) {
  .hero-stat-number { font-size: 1.875rem; }
}

.hero-stat-label {
  font-size: 0.75rem;
  color: hsla(0, 0%, 100%, 0.7);
}

@media (min-width: 768px) {
  .hero-stat-label { font-size: 0.875rem; }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: hsla(0, 0%, 100%, 0.6);
  animation: bounce 2s infinite;
}

.hero-scroll-text {
  font-size: 0.75rem;
}

.hero-scroll-indicator {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid hsla(0, 0%, 100%, 0.4);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.hero-scroll-dot {
  width: 0.375rem;
  height: 0.75rem;
  background-color: hsla(0, 0%, 100%, 0.6);
  border-radius: 9999px;
}

/* ==========================================
   SECTION HEADER
   ========================================== */
.section-header {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

@media (min-width: 768px) {
  .section-header { margin-bottom: 4rem; }
}

.section-header .badge {
  margin-bottom: 1rem;
}

.section-header-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section-header-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .section-header-title { font-size: 3rem; }
}

.section-header-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ==========================================
   MISSION SECTION
   ========================================== */
.mission-card {
  padding: 2rem;
}

.mission-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background-color: hsla(174, 58%, 38%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.mission-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.mission-description {
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats-section {
  background-color: var(--primary);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .stats-section { padding: 5rem 0; }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

@media (min-width: 768px) {
  .stat-number { font-size: 3rem; }
}

.stat-label {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.8);
  margin-top: 0.5rem;
}

/* ==========================================
   SERVICE CARDS
   ========================================== */
.service-card {
  padding: 1.5rem;
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background-color: hsla(174, 58%, 38%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.service-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ==========================================
   GALLERY
   ========================================== */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 4/3;
  cursor: pointer;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(200, 25%, 15%, 0.8), hsla(200, 25%, 15%, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-info {
  transform: translateY(0);
}

.gallery-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: hsla(174, 58%, 38%, 0.8);
  color: white;
  font-size: 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.5rem;
}

.gallery-caption {
  color: white;
  font-weight: 500;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-decoration-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 16rem;
  height: 16rem;
  background-color: hsla(0, 0%, 100%, 0.05);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cta-decoration-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background-color: hsla(0, 0%, 100%, 0.05);
  border-radius: 50%;
  transform: translate(33%, 33%);
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .cta-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .cta-title { font-size: 3rem; }
}

.cta-description {
  font-size: 1.125rem;
  color: hsla(0, 0%, 100%, 0.8);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

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

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background-color: var(--foreground);
  color: white;
  padding: 4rem 0 2rem;
}

@media (min-width: 768px) {
  .footer { padding: 6rem 0 2rem; }
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer-brand {
  max-width: 300px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.2;
}

.footer-brand-subtitle {
  font-size: 0.75rem;
  opacity: 0.8;
}

.footer-brand-description {
  font-size: 0.875rem;
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: hsla(0, 0%, 100%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.footer-social-link:hover {
  background-color: var(--primary);
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.875rem;
  opacity: 0.8;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-link:hover {
  opacity: 1;
  color: var(--primary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-bottom {
  border-top: 1px solid hsla(0, 0%, 100%, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  opacity: 0.6;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-link {
  font-size: 0.875rem;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.footer-legal-link:hover {
  opacity: 1;
}

/* ==========================================
   PAGE HEADERS
   ========================================== */
.page-header {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-color: hsla(180, 15%, 95%, 0.3);
}

@media (min-width: 768px) {
  .page-header {
    padding-top: 10rem;
    padding-bottom: 6rem;
  }
}

.page-header-content {
  max-width: 800px;
}

.page-header-content.centered {
  margin: 0 auto;
  text-align: center;
}

.page-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .page-title { font-size: 3rem; }
}

.page-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ==========================================
   ABOUT PAGE
   ========================================== */
.about-hero {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-hero { grid-template-columns: 1fr 1fr; }
}

.about-image-container {
  position: relative;
}

.about-image {
  border-radius: 1rem;
  box-shadow: 0 20px 60px hsla(0, 0%, 0%, 0.15);
}

.about-year-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background-color: var(--primary);
  color: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px hsla(0, 0%, 0%, 0.2);
}

.about-year-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  font-weight: 700;
}

.about-year-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Goal Section */
.goal-section {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.goal-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .goal-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .goal-title { font-size: 3rem; }
}

.goal-description {
  font-size: 1.125rem;
  color: hsla(0, 0%, 100%, 0.9);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.goal-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 639px) {
  .goal-stats { grid-template-columns: 1fr; }
}

.goal-stat {
  text-align: center;
}

.goal-stat-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.75rem;
  color: white;
}

.goal-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
}

.goal-stat-label {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.8);
}

/* Problem Section */
.problem-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
}

.problem-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.problem-text {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ==========================================
   SERVICES PAGE
   ========================================== */
.how-we-work-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .how-we-work-grid { grid-template-columns: repeat(4, 1fr); }
}

.step-item {
  text-align: center;
}

.step-number {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.step-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ==========================================
   AWARENESS PAGE
   ========================================== */
.awareness-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .awareness-grid { grid-template-columns: repeat(2, 1fr); }
}

.awareness-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.awareness-title svg {
  width: 1.75rem;
  height: 1.75rem;
}

.awareness-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.awareness-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted-foreground);
}

.awareness-list-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.awareness-list-dot.danger { background-color: var(--destructive); }
.awareness-list-dot.success { background-color: var(--success); }

.legal-info {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem;
}

.legal-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  color: var(--primary);
}

.legal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.legal-text {
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* TB Info Cards */
.tb-cards {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .tb-cards { grid-template-columns: repeat(3, 1fr); }
}

.tb-card {
  padding: 1.5rem;
}

.tb-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.tb-card-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.tb-curable {
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
}

.tb-curable-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.tb-curable-text {
  color: hsla(0, 0%, 100%, 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Health Cards */
.health-cards {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .health-cards { grid-template-columns: repeat(2, 1fr); }
}

.health-card {
  padding: 2rem;
}

.health-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.health-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.health-card-icon.accent {
  background-color: hsla(15, 85%, 60%, 0.1);
  color: var(--accent);
}

.health-card-icon.primary {
  background-color: hsla(174, 58%, 38%, 0.1);
  color: var(--primary);
}

.health-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
}

.health-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.health-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted-foreground);
}

.health-list-item svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--success);
  margin-top: 0.125rem;
}

/* ==========================================
   VOLUNTEER/DONATE PAGE
   ========================================== */
.forms-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .forms-grid { grid-template-columns: repeat(2, 1fr); }
}

.form-card {
  padding: 2rem;
}

.form-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-icon.primary {
  background-color: hsla(174, 58%, 38%, 0.1);
  color: var(--primary);
}

.form-icon.accent {
  background-color: hsla(15, 85%, 60%, 0.1);
  color: var(--accent);
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
}

.form-subtitle {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: repeat(2, 1fr); }
}

.amount-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.amount-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--background);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.amount-btn:hover,
.amount-btn.active {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

.form-note {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-align: center;
  margin-top: 1rem;
}

/* Why Support Section */
.support-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .support-grid { grid-template-columns: 1fr 1fr; }
}

.support-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.support-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.support-list-item svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  color: var(--success);
  margin-top: 0.125rem;
}

.support-image {
  border-radius: 1rem;
  box-shadow: 0 20px 60px hsla(0, 0%, 0%, 0.15);
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 2fr; }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background-color: hsla(174, 58%, 38%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.contact-info-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.contact-info-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-form-card {
  padding: 2rem;
}

.contact-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.map-container {
  border-radius: 1rem;
  overflow: hidden;
  height: 400px;
  background-color: var(--muted);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.animate-fade-up {
  animation: fadeUp 0.6s ease forwards;
}

.animate-fade-in {
  animation: fadeIn 0.5s ease forwards;
}

/* Stagger delays */
.stagger-1 { animation-delay: 0.1s; opacity: 0; }
.stagger-2 { animation-delay: 0.2s; opacity: 0; }
.stagger-3 { animation-delay: 0.3s; opacity: 0; }
.stagger-4 { animation-delay: 0.4s; opacity: 0; }

/* ==========================================
   TOAST NOTIFICATION
   ========================================== */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  box-shadow: 0 10px 40px hsla(0, 0%, 0%, 0.15);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.toast-message {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ==========================================
   UTILITIES
   ========================================== */
.hidden { display: none; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.w-full { width: 100%; }
.max-w-2xl { max-width: 600px; }
.max-w-3xl { max-width: 800px; }
.max-w-4xl { max-width: 900px; }
.mx-auto { margin-left: auto; margin-right: auto; }
