/* =================================
   Fort Wood Masjid - Professional Design System
   ================================= */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Modern Professional Color Palette */
  --primary-dark: #1a3a3a;
  --primary: #2d5f5f;
  --primary-light: #4a7a7a;
  --accent-sage: #8ba888;
  --accent-terracotta: #c17767;
  --accent-gold: #b8956a;
  
  /* Neutrals */
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  
  --white: #ffffff;
  --off-white: #fefefe;
  
  /* Semantic Colors */
  --success: #059669;
  --error: #dc2626;
  --warning: #f59e0b;
  --info: #3b82f6;
  
  /* Shadows and Elevation */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography System */
h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
}

h4 {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
}

p {
  margin-bottom: var(--space-lg);
  color: var(--gray-600);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.lead-text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--gray-700);
  font-weight: 400;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-lg);
  }
}

/* Header and Navigation */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--gray-200);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) var(--space-xl);
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.logo a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  transition: opacity var(--transition-smooth);
}

.logo a:hover {
  opacity: 0.8;
}

.logo img {
  height: 64px;
  width: auto;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-text h1 {
  font-size: 1.5rem;
  margin: 0;
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.logo-text .subtitle {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.logo h1 {
  font-size: 1.5rem;
  margin-bottom: 0;
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo .subtitle {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 0;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-xl);
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color var(--transition-base);
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-smooth);
}

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

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

.donate-btn {
  background: var(--primary);
  color: var(--white) !important;
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-lg);
  transition: all var(--transition-smooth);
  font-weight: 600;
}

.donate-btn::after {
  display: none;
}

.donate-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-dark);
  border-radius: 2px;
  transition: all var(--transition-smooth);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

/* Hero Section - Full Screen Video Background */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--primary-dark);
  color: var(--white);
  margin-top: 80px;
}

/* Hero Video Background */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Hero Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 58, 58, 0.65);
  z-index: 1;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-2xl);
  animation: fadeInUp 1s ease-out;
}

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

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: var(--space-2xl);
  line-height: 1.1;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  line-height: 1.5;
  margin-bottom: var(--space-4xl);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.hero .btn-primary {
  background: var(--white);
  color: var(--primary-dark);
  font-weight: 700;
  box-shadow: var(--shadow-xl);
}

.hero .btn-primary:hover {
  background: var(--gray-100);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.hero .btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  backdrop-filter: blur(10px);
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: var(--white);
}

/* Buttons */
.btn {
  padding: 0.875rem 2rem;
  border: none;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  text-align: center;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  transform: translateY(0);
}

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

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-large {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

/* Sections */
.project-info {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.project-info h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
  padding: var(--space-xl) 0;
}

.feature-card {
  background: var(--gray-50);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.feature-card h3 {
  color: var(--primary-dark);
  margin-bottom: var(--space-lg);
  font-size: 1.25rem;
}

.feature-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 0;
}

.feature-card ul {
  margin-top: var(--space-md);
  margin-left: var(--space-xl);
  color: var(--gray-700);
}

.feature-card li {
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

/* Vision Grid with Icons */
.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-2xl);
}

.vision-item {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  transition: all var(--transition-smooth);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.vision-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent-sage) 100%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.vision-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.vision-item:hover::before {
  opacity: 1;
}

.vision-item h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.vision-item h3::before {
  content: '';
  width: 48px;
  height: 48px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.9;
}

.vision-item:nth-child(1) h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d5f5f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E");
}

.vision-item:nth-child(2) h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d5f5f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/%3E%3Cpath d='M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z'/%3E%3C/svg%3E");
}

.vision-item:nth-child(3) h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d5f5f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3C/svg%3E");
}

.vision-item:nth-child(4) h3::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d5f5f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
}

.vision-item h3 {
  flex-direction: column;
}

.vision-item p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  margin-top: var(--space-md);
  transition: all var(--transition-base);
  font-size: 0.9375rem;
}

.learn-more:hover {
  gap: var(--space-sm);
  color: var(--primary-dark);
}

/* Property Details */
.property-details {
  padding: var(--space-4xl) 0;
  background: var(--gray-50);
}

.property-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.address-card {
  background: var(--white);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-2xl);
  border-left: 4px solid var(--primary);
}

.address-card h3 {
  color: var(--primary);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.address-card h3::before {
  content: '';
  width: 24px;
  height: 24px;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d5f5f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.property-features {
  background: var(--white);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.property-features h3 {
  margin-bottom: var(--space-lg);
}

.property-features ul {
  list-style: none;
  padding-left: 0;
}

.property-features li {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
  line-height: 1.6;
}

.property-features li:last-child {
  border-bottom: none;
}

.property-features li strong {
  color: var(--primary-dark);
  font-weight: 600;
}

.property-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.property-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-smooth);
  position: relative;
}

.property-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.1) 100%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.property-image:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2xl);
}

.property-image:hover::after {
  opacity: 1;
}

.property-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

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

/* Gallery Section */
.building-gallery {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.building-gallery h2 {
  text-align: center;
  margin-bottom: var(--space-md);
}

.section-intro {
  text-align: center;
  font-size: 1.125rem;
  margin-bottom: var(--space-3xl);
  color: var(--gray-600);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-2xl);
}

.gallery-item {
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
  border: 1px solid var(--gray-200);
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--primary);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

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

.gallery-item h3 {
  padding: var(--space-xl) var(--space-xl) var(--space-sm);
  margin-bottom: 0;
  color: var(--primary-dark);
  font-size: 1.25rem;
}

.gallery-item p {
  padding: 0 var(--space-xl) var(--space-xl);
  margin-bottom: 0;
  color: var(--gray-600);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Call to Action */
.call-to-action {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: var(--space-3xl) 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.call-to-action::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: var(--space-xl);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-content .btn-primary {
  background: var(--white);
  color: var(--primary-dark);
}

.cta-content .btn-primary:hover {
  background: var(--gray-100);
  transform: translateY(-2px) scale(1.02);
}

/* Page Headers */
.page-header {
  text-align: center;
  padding: var(--space-4xl) 0 var(--space-3xl);
  background: linear-gradient(135deg, var(--gray-50) 0%, #f0f4f4 100%);
  margin-top: 80px;
}

.page-header h1 {
  margin-bottom: var(--space-lg);
}

.page-header p {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto;
}

/* Content Sections */
.content-section {
  padding: var(--space-2xl) 0;
}

.content-section h2 {
  margin-bottom: var(--space-xl);
}

.content-section h3 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-lg);
}

.amenities-list {
  list-style: none;
  padding: 0;
  margin: var(--space-xl) 0;
}

.amenities-list li {
  padding: var(--space-md) 0 var(--space-md) var(--space-2xl);
  position: relative;
  color: var(--gray-700);
  line-height: 1.7;
}

.amenities-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.special-programs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.program {
  background: var(--gray-50);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-smooth);
}

.program:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.program h3 {
  color: var(--primary-dark);
  margin-bottom: var(--space-lg);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.program h3::before {
  content: '';
  width: 32px;
  height: 32px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.program p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gray-600);
}

/* Forms */
.contact-form,
.donation-form {
  background: var(--white);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.form-group {
  margin-bottom: var(--space-xl);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 600;
  color: var(--gray-800);
  font-size: 0.9375rem;
}

.form-group input:not([type="checkbox"]):not([type="radio"]),
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: all var(--transition-base);
  font-family: inherit;
  background: var(--white);
  color: var(--gray-800);
}

.form-group input:not([type="checkbox"]):not([type="radio"]):focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45, 95, 95, 0.1);
}

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

/* Donation Page Specific */
.donation-content,
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  padding: var(--space-3xl) 0;
}

.funding-goals {
  margin-top: var(--space-2xl);
}

.funding-item {
  background: var(--gray-50);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-xl);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-smooth);
}

.funding-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.funding-item h4 {
  color: var(--primary);
  margin-bottom: var(--space-lg);
  font-size: 1.125rem;
}

.funding-item ul {
  margin-left: var(--space-xl);
  color: var(--gray-700);
}

.funding-item li {
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.donation-note {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border: 2px solid #fed7aa;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-2xl);
}

.donation-note strong {
  color: var(--gray-800);
}

.donation-note p {
  margin-bottom: var(--space-md);
  color: var(--gray-700);
}

.donation-note ul {
  margin-left: var(--space-xl);
  margin-bottom: 0;
}

.tax-info {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border: 2px solid #bbf7d0;
  margin-top: var(--space-2xl);
}

.tax-info h3 {
  color: var(--success);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.tax-info h3::before {
  content: '';
  width: 28px;
  height: 28px;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3'/%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'/%3E%3C/svg%3E");
}

.tax-info p {
  color: var(--gray-700);
  margin-bottom: var(--space-md);
}

.amount-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.amount-btn {
  padding: var(--space-lg);
  border: 2px solid var(--gray-300);
  background: var(--white);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--gray-800);
}

.amount-btn:hover,
.amount-btn.selected {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.custom-amount {
  margin-top: var(--space-lg);
}

.custom-amount label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 600;
  color: var(--gray-800);
  font-size: 0.9375rem;
}

.custom-amount input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: all var(--transition-base);
  font-family: inherit;
  background: var(--white);
  color: var(--gray-800);
}

.custom-amount input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45, 95, 95, 0.1);
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  cursor: pointer;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  transition: background var(--transition-base);
}

.radio-group label:hover {
  background: var(--gray-50);
}

.radio-group input[type="radio"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  cursor: pointer;
  accent-color: var(--primary);
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  border: 2px solid var(--gray-400);
  border-radius: 50%;
  background: var(--white);
  position: relative;
  transition: all var(--transition-base);
}

.radio-group input[type="radio"]:hover {
  border-color: var(--primary);
}

.radio-group input[type="radio"]:checked {
  border-color: var(--primary);
  background: var(--white);
}

.radio-group input[type="radio"]:checked::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}

/* Checkbox Styling */
.form-group label:has(input[type="checkbox"]) {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  cursor: pointer;
  font-weight: 400;
}

.form-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  cursor: pointer;
  margin: 0;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  border: 2px solid var(--gray-400);
  border-radius: var(--radius-sm);
  background: var(--white);
  position: relative;
  transition: all var(--transition-base);
}

.form-group input[type="checkbox"]:hover {
  border-color: var(--primary);
}

.form-group input[type="checkbox"]:checked {
  border-color: var(--primary);
  background: var(--primary);
}

.form-group input[type="checkbox"]:checked::before {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}

/* Contact Methods */
.contact-methods {
  margin-top: var(--space-2xl);
}

.contact-method {
  background: var(--gray-50);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-smooth);
}

.contact-method:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.contact-method h3 {
  color: var(--primary);
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.contact-method h3::before {
  content: '';
  width: 24px;
  height: 24px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.contact-method a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-base);
}

.contact-method a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.giving-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.giving-option {
  background: var(--gray-50);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-smooth);
  text-align: center;
}

.giving-option:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.giving-option h3 {
  color: var(--primary-dark);
  margin-bottom: var(--space-lg);
  font-size: 1.25rem;
}

.giving-option p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* Blockquote */
blockquote {
  background: var(--gray-50);
  border-left: 4px solid var(--primary);
  padding: var(--space-xl) var(--space-2xl);
  margin: var(--space-2xl) 0;
  font-size: 1.125rem;
  font-style: italic;
  color: var(--gray-700);
  border-radius: var(--radius-md);
}

blockquote cite {
  display: block;
  margin-top: var(--space-md);
  font-size: 0.9375rem;
  color: var(--gray-600);
  font-style: normal;
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  margin-top: var(--space-2xl);
}

.faq-item {
  background: var(--white);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-smooth);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.faq-item h3 {
  color: var(--primary-dark);
  margin-bottom: var(--space-md);
  font-size: 1.125rem;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--gray-700);
}

.faq-item a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.faq-item a:hover {
  text-decoration: underline;
}

/* CTA Section */
.cta-section {
  background: var(--gray-50);
  padding: var(--space-2xl);
  border-radius: var(--radius-2xl);
  text-align: center;
  margin: var(--space-2xl) 0;
  border: 1px solid var(--gray-200);
}

.cta-section h2 {
  margin-bottom: var(--space-lg);
}

.cta-section p {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
}

.cta-buttons {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

/* Form Messages */
.form-message {
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  display: none;
  font-weight: 500;
}

.form-message.success {
  background: #dcfce7;
  color: #166534;
  border: 2px solid #bbf7d0;
  display: block;
}

.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 2px solid #fecaca;
  display: block;
}

.form-message.info {
  background: #dbeafe;
  color: #1e40af;
  border: 2px solid #bfdbfe;
  display: block;
}

.form-note {
  font-size: 0.875rem;
  color: var(--gray-600);
  text-align: center;
  margin-top: var(--space-lg);
}

/* Footer */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.9);
  padding: var(--space-4xl) 0 var(--space-xl);
  margin-top: var(--space-4xl);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-section h3,
.footer-section h4 {
  color: var(--white);
  margin-bottom: var(--space-lg);
  font-size: 1.125rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-md);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: var(--space-sm);
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  cursor: pointer;
  transition: color var(--transition-base);
  font-size: 0.9375rem;
}

.footer-section ul li a:hover {
  color: var(--white);
}

.footer-section h4 + p {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.footer-logo {
  margin-bottom: var(--space-lg);
}

.footer-logo img {
  height: 56px;
  width: auto;
  display: block;
  max-width: 100%;
  object-fit: contain;
}

/* Map Container */
.map-container {
  width: 100%;
  height: 450px;
  min-height: 350px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--transition-base);
}

.map-container:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius-xl);
}

@media (max-width: 768px) {
  .map-container {
    height: 350px;
    min-height: 300px;
  }
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.footer-links {
  display: flex;
  gap: var(--space-xl);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-links a:hover {
  color: var(--white);
}

/* Image Placeholders */
.image-placeholder {
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  border: 2px dashed var(--gray-400);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-2xl);
  transition: all var(--transition-smooth);
}

.image-placeholder:hover {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
}

.image-placeholder::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a3a3a3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpolyline points='21 15 16 10 5 21'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: 1;
}

.image-placeholder-text {
  position: relative;
  z-index: 2;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.5;
  max-width: 320px;
  margin: 0 auto;
}

.image-placeholder.large {
  min-height: 400px;
}

.image-placeholder.wide {
  min-height: 320px;
}

/* Icon Boxes for Features */
.icon-box {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  box-shadow: var(--shadow-md);
}

.icon-box svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-2xl);
  padding: var(--space-3xl) 0;
}

.stat-card {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-smooth);
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* Responsive Design - Mobile First */
@media (max-width: 1024px) {
  .nav-menu {
    gap: var(--space-md);
  }
  
  .nav-link {
    font-size: 0.875rem;
  }
  
  .donate-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  
  .hero,
  .property-content,
  .contact-content,
  .donation-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .hero {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
  }
  
  .hero-buttons {
    justify-content: center;
  }
}

/* Tablet-specific adjustments (769px - 900px) */
@media (max-width: 900px) and (min-width: 769px) {
  .nav-container {
    padding: var(--space-md) var(--space-lg);
  }
  
  .logo {
    flex-shrink: 0;
    gap: var(--space-sm);
  }
  
  .logo img {
    height: 52px;
  }
  
  .logo-text h1 {
    font-size: 1.125rem;
    white-space: nowrap;
  }
  
  .logo-text .subtitle {
    font-size: 0.75rem;
    white-space: nowrap;
  }
  
  .logo h1 {
    font-size: 1.25rem;
    white-space: nowrap;
  }
  
  .logo .subtitle {
    font-size: 0.75rem;
    white-space: nowrap;
  }
  
  .footer-logo img {
    height: 48px;
  }
  
  .nav-menu {
    gap: var(--space-sm);
    flex-wrap: nowrap;
  }
  
  .nav-link {
    font-size: 0.8125rem;
    padding-bottom: 2px;
    white-space: nowrap;
  }
  
  .donate-btn {
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  /* Mobile Navigation - Larger touch targets */
  .nav-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
  }
  
  /* Show hamburger menu */
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-2xl);
    padding: 5rem var(--space-xl) var(--space-2xl);
    transition: left var(--transition-smooth);
    z-index: 1000;
    overflow-y: auto;
    flex-direction: column;
    gap: 0;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid var(--gray-200);
  }
  
  .nav-link {
    font-size: 1rem;
    padding: var(--space-lg) 0;
    min-height: 48px;
    display: flex;
    align-items: center;
    width: 100%;
  }
  
  .nav-link::after {
    display: none;
  }
  
  .nav-link:hover,
  .nav-link.active {
    color: var(--primary);
    background: transparent;
  }
  
  .donate-btn {
    border-radius: var(--radius-md);
    justify-content: center;
    margin-top: var(--space-md);
  }

  /* Mobile Hero - Optimized */
  .hero {
    min-height: 100vh;
    height: 100vh;
    padding: 0;
    margin-top: 70px;
  }

  .hero-content {
    padding: var(--space-lg);
  }
  
  .hero-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    margin-bottom: var(--space-xl);
  }
  
  .hero-subtitle {
    font-size: clamp(0.95rem, 4vw, 1.125rem);
    margin-bottom: var(--space-2xl);
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: var(--space-sm);
  }

  .hero-buttons .btn {
    width: 100%;
    min-height: 48px;
    padding: var(--space-md) var(--space-lg);
  }
  
  /* Mobile Buttons - Better touch targets */
  .btn {
    min-height: 48px;
    padding: 1rem 1.5rem;
  }
  
  .btn-large {
    min-height: 56px;
    padding: 1.25rem 2rem;
  }

  /* Mobile Grids */
  .vision-grid,
  .gallery-grid,
  .special-programs,
  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .amount-buttons {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .amount-btn {
    min-height: 56px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
  
  /* Mobile Forms - Better touch targets */
  .form-group input:not([type="checkbox"]):not([type="radio"]),
  .form-group select,
  .form-group textarea {
    min-height: 48px;
    font-size: 1rem; /* Prevents zoom on iOS */
  }

  /* Mobile Page Header */
  .page-header {
    padding: var(--space-3xl) 0 var(--space-2xl);
    margin-top: 70px;
  }

  .page-header h1 {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .container {
    padding: 0 var(--space-lg);
  }
  
  /* Mobile Cards */
  .vision-item,
  .feature-card,
  .program,
  .gallery-item,
  .giving-option {
    padding: var(--space-xl);
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .giving-options {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-md);
  }
  
  /* Mobile Image Placeholders */
  .image-placeholder {
    min-height: 220px;
  }
  
  .image-placeholder.large {
    min-height: 300px;
  }
  
  /* Mobile Stats */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .amount-buttons {
    grid-template-columns: 1fr;
  }

  .vision-item,
  .contact-form,
  .donation-form {
    padding: var(--space-xl);
  }

  .gallery-item img {
    height: 200px;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
  }
  
  .btn-large {
    padding: 1rem 2rem;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .btn,
  .cta-section {
    display: none;
  }
  
  body {
    background: white;
  }
  
  .container {
    max-width: 100%;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus Styles */
*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
