/* ============================================
   NURSES IN CHARGE - Global Nonprofit
   Color Palette Extracted from Logo
   ============================================ */

:root {
  /* Primary - Logo's soft blue */
  --primary:          #8DC6E8;
  --primary-dark:     #4A9CC7;
  --primary-deeper:   #2B7AAD;

  /* Accent - Warm compassion tones */
  --accent:           #E8636A;
  --accent-dark:      #C94550;
  --accent-light:     #F2959A;

  /* Highlight - CTA / urgency */
  --highlight:        #E84855;
  --highlight-light:  #FF6B6B;

  /* Neutrals */
  --charcoal:         #1E2A3A;
  --charcoal-light:   #2D3E50;
  --cream:            #F7F9FC;
  --white:            #FFFFFF;
  --gray-light:       #E8EDF2;
  --gray:             #A0AEC0;
  --gray-dark:        #5A6B7F;

  /* Gradients */
  --gradient-hero:    linear-gradient(135deg, #1E2A3A 0%, #2B7AAD 100%);
  --gradient-cta:     linear-gradient(135deg, #E84855 0%, #C94550 100%);
  --gradient-blue:    linear-gradient(135deg, #8DC6E8 0%, #4A9CC7 100%);

  /* Shadows */
  --shadow-sm:        0 2px 8px rgba(30, 42, 58, 0.08);
  --shadow-md:        0 4px 20px rgba(30, 42, 58, 0.12);
  --shadow-lg:        0 8px 40px rgba(30, 42, 58, 0.16);
  --shadow-glow:      0 4px 30px rgba(141, 198, 232, 0.3);

  /* Typography */
  --font-heading:     'Merriweather', 'Georgia', serif;
  --font-body:        'Inter', 'Segoe UI', sans-serif;

  /* Spacing */
  --section-padding:  6rem 0;
  --container-width:  1200px;

  /* Transitions */
  --transition:       all 0.3s ease;
  --transition-slow:  all 0.6s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p {
  color: var(--gray-dark);
  font-size: 1.05rem;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--gray-dark);
  max-width: 700px;
  margin: 0 auto 3rem;
}

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

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: var(--font-body);
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: var(--gradient-cta);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232, 72, 85, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 72, 85, 0.45);
}

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

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-highlight {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(74, 156, 199, 0.35);
}

.btn-highlight:hover {
  background: var(--primary-deeper);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 0.6rem 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  height: 45px;
  width: auto;
}

.nav-logo-text {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  transition: var(--transition);
}

.navbar.scrolled .nav-logo-text {
  color: var(--charcoal);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  position: relative;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.navbar.scrolled .nav-links a {
  color: var(--charcoal);
}

.nav-donate {
  background: var(--gradient-cta) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

.nav-donate::after { display: none !important; }

.nav-donate:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(232, 72, 85, 0.4);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

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

.navbar.scrolled .nav-toggle span {
  background: var(--charcoal);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141,198,232,0.15) 0%, transparent 70%);
  animation: pulse-glow 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,72,85,0.08) 0%, transparent 70%);
  animation: pulse-glow 10s ease-in-out infinite reverse;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(141, 198, 232, 0.15);
  border: 1px solid rgba(141, 198, 232, 0.3);
  border-radius: 50px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero h1 span {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero .btn-group {
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat h3 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.hero-stat p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-container {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-container img {
  width: 300px;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(141, 198, 232, 0.3));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.hero-logo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(141, 198, 232, 0.15);
  animation: ring-pulse 4s ease-in-out infinite;
}

.hero-logo-ring:nth-child(2) {
  width: 350px;
  height: 350px;
  animation-delay: 0s;
}

.hero-logo-ring:nth-child(3) {
  width: 420px;
  height: 420px;
  animation-delay: 1s;
}

.hero-logo-ring:nth-child(4) {
  width: 490px;
  height: 490px;
  animation-delay: 2s;
}

@keyframes ring-pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.03); }
}

/* ============================================
   TICKER / MARQUEE
   ============================================ */

.ticker-section {
  background: var(--primary-dark);
  padding: 1rem 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  animation: ticker 30s linear infinite;
  width: max-content;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 2.5rem;
  white-space: nowrap;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

.ticker-item .ticker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   PROBLEM SECTION
   ============================================ */

.problem-section {
  padding: var(--section-padding);
  background: var(--cream);
}

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

.problem-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-light);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-blue);
  transform: scaleX(0);
  transition: var(--transition);
}

.problem-card:hover::before {
  transform: scaleX(1);
}

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

.problem-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(141, 198, 232, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.problem-card h3 {
  margin-bottom: 1rem;
}

.problem-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.problem-card .problem-type {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

/* ============================================
   MISSION / GUIDE SECTION
   ============================================ */

.mission-section {
  padding: var(--section-padding);
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.mission-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at right, rgba(141,198,232,0.08), transparent 70%);
}

.mission-section .section-label {
  color: var(--primary);
}

.mission-section .section-title {
  color: var(--white);
}

.mission-section .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.mission-text h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.mission-text p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.mission-values {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.mission-value {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mission-value-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(141, 198, 232, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.mission-value-text {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

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

.mission-stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.mission-stat-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
}

.mission-stat-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.mission-stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.mission-stat-label {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ============================================
   PROGRAMS / WHAT WE DO
   ============================================ */

.programs-section {
  padding: var(--section-padding);
  background: var(--white);
}

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

.program-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 2.5rem;
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
}

.program-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.program-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.program-card h3 {
  margin-bottom: 0.75rem;
}

.program-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.program-link {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.program-link:hover {
  gap: 0.75rem;
}

/* ============================================
   WHO WE SERVE
   ============================================ */

.serve-section {
  padding: var(--section-padding);
  background: var(--cream);
}

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

.serve-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.serve-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.serve-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.serve-card h4 {
  font-size: 1rem;
  color: var(--charcoal);
}

/* ============================================
   THE PLAN
   ============================================ */

.plan-section {
  padding: var(--section-padding);
  background: var(--white);
}

.plan-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.plan-steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--gray-light);
  z-index: 0;
}

.plan-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.plan-step-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gradient-blue);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-glow);
}

.plan-step h3 {
  margin-bottom: 0.75rem;
}

.plan-step p {
  font-size: 0.95rem;
  max-width: 280px;
  margin: 0 auto;
}

/* ============================================
   IMPACT / STORIES
   ============================================ */

.impact-section {
  padding: var(--section-padding);
  background: var(--cream);
}

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

.impact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 4px solid var(--primary);
}

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

.impact-card .impact-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.impact-card .impact-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.impact-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.impact-author-info h4 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.impact-author-info p {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ============================================
   DONATION SECTION
   ============================================ */

.donate-section {
  padding: var(--section-padding);
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.donate-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 72, 85, 0.15) 0%, transparent 70%);
}

.donate-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.donate-content .section-label {
  color: var(--accent-light);
}

.donate-content h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.donate-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}

.donate-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.donate-option {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.donate-option:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--primary);
  transform: translateY(-4px);
}

.donate-option.featured {
  border-color: var(--highlight);
  background: rgba(232, 72, 85, 0.1);
}

.donate-option-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.donate-option h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.donate-option p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-bottom: 0;
}

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

/* ============================================
   AWARENESS / SHARE CTA
   ============================================ */

.awareness-section {
  padding: var(--section-padding);
  background: var(--white);
}

.awareness-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.awareness-text h2 {
  margin-bottom: 1.5rem;
}

.awareness-text p {
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

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

.awareness-channel {
  background: var(--cream);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.awareness-channel:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.awareness-channel-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.awareness-channel h4 {
  margin-bottom: 0.5rem;
}

.awareness-channel p {
  font-size: 0.85rem;
  color: var(--gray);
}

/* ============================================
   ARTICLES SECTION
   ============================================ */

.articles-section {
  padding: var(--section-padding);
  background: var(--cream);
}

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

.article-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.article-thumb {
  height: 200px;
  background: var(--gradient-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.article-body {
  padding: 1.75rem;
}

.article-tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: rgba(141, 198, 232, 0.12);
  color: var(--primary-dark);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.article-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.article-card h3 a:hover {
  color: var(--primary-dark);
}

.article-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--gray);
}

.article-read-more {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

/* ============================================
   FINAL CTA
   ============================================ */

.final-cta {
  padding: 5rem 0;
  background: var(--primary-dark);
  text-align: center;
}

.final-cta h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

.final-cta p {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--charcoal);
  padding: 4rem 0 2rem;
}

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

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.7;
}

.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

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

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary-dark);
  color: var(--white);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   COUNTER ANIMATION
   ============================================ */

.count-up {
  display: inline-block;
}

/* ============================================
   ARTICLE PAGE STYLES
   ============================================ */

.article-page-header {
  background: var(--gradient-hero);
  padding: 8rem 0 4rem;
  text-align: center;
}

.article-page-header .article-tag {
  background: rgba(141, 198, 232, 0.2);
  color: var(--primary);
}

.article-page-header h1 {
  color: var(--white);
  max-width: 800px;
  margin: 1rem auto 1.5rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.article-page-header .article-meta {
  justify-content: center;
  gap: 2rem;
  color: rgba(255,255,255,0.6);
}

.article-page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.article-page-content h2 {
  margin: 2.5rem 0 1rem;
  font-size: 1.6rem;
}

.article-page-content h3 {
  margin: 2rem 0 0.75rem;
  font-size: 1.3rem;
}

.article-page-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.9;
}

.article-page-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: var(--cream);
  border-radius: 0 12px 12px 0;
  font-style: italic;
}

.article-page-content blockquote p {
  color: var(--charcoal);
  margin-bottom: 0;
}

.article-page-content ul,
.article-page-content ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.article-page-content li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
  color: var(--gray-dark);
  list-style: disc;
}

.article-page-content ol li {
  list-style: decimal;
}

.article-cta-box {
  background: var(--gradient-hero);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  margin: 3rem 0;
}

.article-cta-box h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.article-cta-box p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}

.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 2rem;
}

.article-back-link:hover {
  gap: 0.75rem;
  color: var(--primary-deeper);
}

/* ============================================
   GALA PAGE
   ============================================ */

.gala-hero {
  background: linear-gradient(135deg, #1E2A3A 0%, #1a1a2e 40%, #2B7AAD 100%);
  padding: 10rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gala-hero-decor {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 72, 85, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.gala-hero-decor-2 {
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141, 198, 232, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.gala-hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
}

.gala-date-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.gala-hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.gala-hero h1 span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gala-hero-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.gala-hero-details {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.gala-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
}

.gala-detail-icon {
  font-size: 1.5rem;
}

.gala-detail strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
}

.gala-detail span {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}

/* Gala About / Features */

.gala-about {
  padding: var(--section-padding);
  background: var(--white);
}

.gala-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.gala-feature {
  background: var(--cream);
  border-radius: 16px;
  padding: 2.5rem;
  transition: var(--transition);
  border: 1px solid transparent;
}

.gala-feature:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.gala-feature-icon {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
}

.gala-feature h3 {
  margin-bottom: 0.75rem;
}

.gala-feature p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Gala Mission / Why This Matters */

.gala-mission {
  padding: var(--section-padding);
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.gala-mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.gala-mission-text h2 {
  margin-bottom: 1.5rem;
}

.gala-mission-text p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.gala-mission-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.gala-mission-stat {
  text-align: center;
}

.gala-mission-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
}

.gala-mission-stat-label {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 0.25rem;
}

.gala-mission-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gala-mission-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition);
}

.gala-mission-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(5px);
}

.gala-mission-card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.gala-mission-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.gala-mission-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Gala Schedule / Timeline */

.gala-schedule {
  padding: var(--section-padding);
  background: var(--cream);
}

.gala-timeline {
  max-width: 700px;
  margin: 3rem auto 0;
  position: relative;
  text-align: left;
}

.gala-timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-light);
}

.gala-timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.gala-timeline-item:last-child {
  margin-bottom: 0;
}

.gala-timeline-time {
  min-width: 80px;
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 0.95rem;
  padding-top: 0.25rem;
  text-align: right;
  position: relative;
}

.gala-timeline-time::after {
  content: '';
  position: absolute;
  right: -1.075rem;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-dark);
  border: 3px solid var(--cream);
  z-index: 1;
}

.gala-timeline-content {
  flex: 1;
  background: var(--white);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gala-timeline-content:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.gala-timeline-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.gala-timeline-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Gala Tickets */

.gala-tickets {
  padding: var(--section-padding);
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.gala-ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.gala-ticket-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
}

.gala-ticket-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
}

.gala-ticket-card.featured {
  border-color: var(--highlight);
  background: rgba(232, 72, 85, 0.08);
}

.gala-ticket-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-cta);
  color: var(--white);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.gala-ticket-tier {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.gala-ticket-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
  margin-bottom: 0.25rem;
}

.gala-ticket-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.gala-ticket-features {
  text-align: left;
  margin-bottom: 2rem;
}

.gala-ticket-features li {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  list-style: none;
  padding-left: 1.5rem;
  position: relative;
}

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

/* Gala Sponsorship */

.gala-sponsorship {
  padding: var(--section-padding);
  background: var(--white);
}

.gala-sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.gala-sponsor-card {
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
}

.gala-sponsor-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.gala-sponsor-card.featured {
  border-color: var(--highlight);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.gala-sponsor-level {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.gala-sponsor-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--charcoal);
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
}

.gala-sponsor-card .gala-ticket-features li {
  color: var(--gray-dark);
  border-bottom-color: var(--gray-light);
}

.gala-sponsor-card .gala-ticket-features li::before {
  color: var(--primary-dark);
}

/* Gala FAQ */

.gala-faq {
  padding: var(--section-padding);
  background: var(--cream);
}

.gala-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.gala-faq-item {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gala-faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.gala-faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.gala-faq-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .hero .btn-group { justify-content: center; }
  .hero-stats { justify-content: center; }
  .mission-content { grid-template-columns: 1fr; }
  .awareness-content { grid-template-columns: 1fr; }
  .gala-mission-content { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 4rem 0;
  }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border-radius: 0 0 16px 16px;
  }

  .nav-links.active a {
    color: var(--charcoal);
    padding: 0.75rem 0;
  }

  .problem-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .plan-steps { grid-template-columns: 1fr; gap: 3rem; }
  .plan-steps::before { display: none; }
  .impact-grid { grid-template-columns: 1fr; }
  .donate-options { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .awareness-channels { grid-template-columns: 1fr; }
  .mission-stats { grid-template-columns: repeat(2, 1fr); }
  .gala-features-grid { grid-template-columns: 1fr; }
  .gala-ticket-grid { grid-template-columns: 1fr; max-width: 400px; }
  .gala-sponsor-grid { grid-template-columns: 1fr; max-width: 400px; }
  .gala-faq-grid { grid-template-columns: 1fr; }
  .gala-hero-details { flex-direction: column; align-items: center; }
  .gala-mission-stats { flex-direction: column; align-items: center; gap: 1.5rem; }
  .gala-timeline::before { left: 70px; }
  .footer-grid { grid-template-columns: 1fr; }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .btn { width: 100%; max-width: 300px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .mission-stats { grid-template-columns: 1fr; }
  .donate-buttons { flex-direction: column; align-items: center; }
}
