
/* ============================================
   BIG SHIP CBO - Complete Website Styles
   ============================================ */

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

:root {
  --primary-green: #22c55e;
  --primary-green-dark: #16a34a;
  --dark-green: #064e3b;
  --darker-green: #065f46;
  --heading-red: #be123c;
  --heading-red-dark: #9f1239;
  --text-dark: #374151;
  --text-light: #6b7280;
  --text-white: #ffffff;
  --bg-white: #ffffff;
  --bg-light: #f9fafb;
  --bg-green-light: #dcfce7;
  --border-light: #e5e7eb;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--bg-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

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

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-green);
}

.logo .logo-text {
  line-height: 1;
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.logo span {
  color: var(--primary-green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--primary-green);
}

.nav-links > li > a i {
  font-size: 0.7rem;
  transition: transform 0.3s;
}

.nav-links > li:hover > a i {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}

.nav-links > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.dropdown a:hover {
  background: var(--bg-green-light);
  color: var(--primary-green-dark);
}

.donate-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--heading-red);
  color: white;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.donate-btn:hover {
  background: var(--heading-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(190, 18, 60, 0.3);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark-green);
  cursor: pointer;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url('mangrove 2.jpg') center/cover;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.3);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--primary-green);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--heading-red);
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  margin-bottom: 32px;
  opacity: 0.95;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-green);
  color: white;
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--primary-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
  cursor: pointer;
}

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

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
  background: var(--bg-white);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ============================================
   SECTION HEADERS (Green background)
   ============================================ */

.section-header {
  background: var(--primary-green);
  padding: 100px 0 80px;
  text-align: center;
  color: white;
}

.section-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--heading-red);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-dark);
}

/* ============================================
   PROGRAMS SECTION
   ============================================ */

.programs-section {
  background: var(--bg-white);
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 16px;
}

.section-title h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--heading-red);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 50px;
  font-size: 1rem;
}

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

.program-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

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

.program-icon {
  width: 70px;
  height: 70px;
  background: var(--bg-green-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--primary-green-dark);
}

.program-card h3 {
  font-size: 1.3rem;
  color: var(--heading-red);
  margin-bottom: 12px;
}

.program-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================
   IMPACT / TESTIMONIALS
   ============================================ */

.impact-section {
  background: var(--dark-green);
  padding: 80px 0;
  color: white;
}

.impact-section .section-title h2 {
  color: var(--heading-red);
}

.impact-section .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 45px;
  height: 45px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.author-info span {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background: var(--primary-green);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--heading-red);
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--primary-green-dark);
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

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

.footer {
  background: var(--dark-green);
  color: white;
  padding: 60px 0 20px;
}

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

.footer-brand p {
  opacity: 0.8;
  margin: 16px 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-green);
  transform: translateY(-3px);
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: white;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-green);
}

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

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  opacity: 0.8;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  opacity: 1;
  color: var(--primary-green);
  padding-left: 4px;
}

.footer-contact p {
  opacity: 0.8;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.newsletter-form {
  display: flex;
  margin-top: 16px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: var(--radius) 0 0 var(--radius);
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 0.9rem;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter-form button {
  padding: 12px 18px;
  background: var(--primary-green);
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: white;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--primary-green-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  opacity: 0.6;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  opacity: 0.6;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  opacity: 1;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.about-content {
  padding: 60px 0;
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-text h3 {
  font-size: 1.5rem;
  color: var(--heading-red);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--primary-green);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  width: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 40px;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 40px;
}

.timeline-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--primary-green);
  border-radius: 50%;
  top: 4px;
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -8px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -8px;
}

.timeline-content {
  background: var(--bg-white);
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
}

.timeline-content h4 {
  color: var(--heading-red);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.timeline-content p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Vision & Mission */
.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 40px auto;
}

.vm-card {
  text-align: center;
  padding: 40px;
}

.vm-card h3 {
  font-size: 1.8rem;
  color: var(--heading-red);
  margin-bottom: 16px;
}

.vm-card p {
  color: var(--text-light);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Core Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto;
}

.value-card {
  text-align: center;
  padding: 30px 20px;
}

.value-card h4 {
  color: var(--heading-red);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto;
}

.team-card {
  text-align: center;
  padding: 30px;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

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

.team-avatar {
  width: 80px;
  height: 80px;
  background: var(--primary-green);

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.team-card h4 {
  color: var(--heading-red);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.team-card .role {
  color: var(--primary-green);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.team-card p {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.6;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}


/* Impact Stats */
.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
}

.impact-stat h3 {
  font-size: 2.5rem;
  color: var(--heading-red);
  margin-bottom: 8px;
}

.impact-stat p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Impact Areas */
.impact-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto;
}

.impact-area-card {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  text-align: center;
}

.impact-area-card h4 {
  color: var(--heading-red);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.impact-area-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.learn-more-btn {
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary-green);
  color: white;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.learn-more-btn:hover {
  background: var(--primary-green-dark);
}

/* Learn more collapsible content */
.learn-more-content {
  margin-top: 12px;
}


/* ============================================
   PROGRAMS PAGE
   ============================================ */

.programs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto;
}

.program-detail-card {
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
}

.program-detail-card h3 {
  color: var(--heading-red);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.program-detail-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.program-detail-card a {
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.9rem;
}

.program-detail-card a:hover {
  color: var(--primary-green-dark);
}

/* ============================================
   GALLERY PAGE
   ============================================ */

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid var(--border-light);
  background: white;
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  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: rgba(0,0,0,0.4);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay span {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ============================================
   BLOG PAGE
   ============================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

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

.blog-image {
  height: 200px;
  overflow: hidden;
}

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

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 24px;
}

.blog-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg-green-light);
  color: var(--primary-green-dark);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.blog-content h3 {
  font-size: 1.1rem;
  color: var(--heading-red);
  margin-bottom: 10px;
}

.blog-content p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

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

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

.read-more:hover {
  color: var(--primary-green-dark);
}

/* Newsletter Section */
.newsletter-section {
  background: var(--dark-green);
  padding: 60px 0;
  text-align: center;
  color: white;
}

.newsletter-section h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.newsletter-section p {
  opacity: 0.8;
  margin-bottom: 24px;
}

.newsletter-form-large {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 0;
}

.newsletter-form-large input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 1rem;
}

.newsletter-form-large button {
  padding: 14px 28px;
  background: var(--primary-green);
  color: white;
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form-large button:hover {
  background: var(--primary-green-dark);
}

/* ============================================
   EVENTS PAGE
   ============================================ */

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.event-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
}

.event-image {
  height: 200px;
  position: relative;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  background: var(--primary-green);
  color: white;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.event-content {
  padding: 24px;
}

.event-content h3 {
  font-size: 1.1rem;
  color: var(--heading-red);
  margin-bottom: 12px;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.event-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.event-content p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.registration-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.registration-info span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.register-btn {
  display: inline-block;
  padding: 10px 24px;
  background: var(--primary-green);
  color: white;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.register-btn:hover {
  background: var(--primary-green-dark);
}

/* ============================================
   FUN RUN PAGE
   ============================================ */

.funrun-hero {
  background: var(--dark-green);
  padding: 120px 0 80px;
  text-align: center;
  color: white;
}

.funrun-hero .event-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #d4a017;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 20px;
}

.funrun-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 12px;
}

.funrun-hero .subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 8px;
}

.funrun-hero .location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0.8;
  margin-bottom: 30px;
}

.funrun-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #d4a017;
  color: white;
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-gold:hover {
  background: #b8941f;
  transform: translateY(-2px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
  cursor: pointer;
}

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

.funrun-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 800px;
  margin: 60px auto;
  text-align: center;
}

.funrun-stat h3 {
  font-size: 2.5rem;
  color: var(--heading-red);
  margin-bottom: 8px;
}

.funrun-stat p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  max-width: 1000px;
  margin: 40px auto;
}

.contact-info h3 {
  font-size: 1.5rem;
  color: var(--heading-red);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item i {
  width: 40px;
  height: 40px;
  background: var(--bg-green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.contact-item p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.contact-form {
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
}

.contact-form h3 {
  font-size: 1.5rem;
  color: var(--heading-red);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

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

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-green);
  color: white;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.submit-btn:hover {
  background: var(--primary-green-dark);
  transform: translateY(-2px);
}

/* ============================================
   DONATE PAGE
   ============================================ */

.donate-hero {
  background: var(--dark-green);
  padding: 120px 0 80px;
  text-align: center;
  color: white;
}

.donate-hero .badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255,255,255,0.15);
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}

.donate-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--heading-red);
  margin-bottom: 16px;
}

.donate-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.donate-content {
  padding: 60px 0;
}

.donate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.donate-reasons h3 {
  font-size: 1.5rem;
  color: var(--heading-red);
  margin-bottom: 24px;
}

.reason-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.reason-item i {
  width: 40px;
  height: 40px;
  background: var(--bg-green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  font-size: 1rem;
  flex-shrink: 0;
}

.reason-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.reason-item p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.donate-options h3 {
  font-size: 1.5rem;
  color: var(--heading-red);
  margin-bottom: 24px;
}

.donate-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.amount-btn {
  padding: 16px;
  border: 2px solid var(--border-light);
  border-radius: var(--radius);
  background: white;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.amount-btn:hover,
.amount-btn.active {
  border-color: var(--primary-green);
  background: var(--bg-green-light);
  color: var(--primary-green-dark);
}

.donate-form .form-group {
  margin-bottom: 16px;
}

.donate-form input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  font-size: 1rem;
}

.bank-details {
  background: var(--bg-light);
  padding: 24px;
  border-radius: var(--radius-lg);
  margin-top: 24px;
}

.bank-details h4 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.bank-details p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

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

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

.fade-in {
  animation: fadeInUp 0.8s ease forwards;
}

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

@media (max-width: 1024px) {
  .programs-grid,
  .blog-grid,
  .events-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    gap: 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links > li {
    width: 100%;
  }

  .nav-links > li > a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 20px;
    display: none;
  }

  .nav-links > li:hover .dropdown,
  .nav-links > li.active .dropdown {
    display: block;
  }

  .mobile-menu-btn {
    display: block;
  }

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

  .programs-grid,
  .blog-grid,
  .events-grid,
  .gallery-grid,
  .team-grid,
  .impact-areas-grid,
  .programs-list {
    grid-template-columns: 1fr;
  }

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

  .testimonials-grid,
  .vision-mission-grid,
  .values-grid,
  .contact-grid,
  .donate-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    width: 100%;
    left: 0;
    padding-left: 50px;
    padding-right: 0;
    text-align: left;
  }

  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 12px;
    right: auto;
  }

  .impact-stats,
  .funrun-stats {
    grid-template-columns: 1fr;
  }

  .donate-amounts {
    grid-template-columns: 1fr;
  }

  .hero-buttons,
  .funrun-buttons {
    flex-direction: column;
    align-items: center;
  }
}

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

  .section-padding {
    padding: 50px 0;
  }

  .section-header {
    padding: 80px 0 60px;
  }
}
