/* ================================================
   Unnatishil Mahila Mandal Nanded - Website Styles
   ================================================ */

/* CSS Variables */
:root {
  --primary: #FF6B00;
  --primary-dark: #E55D00;
  --secondary: #1A2A4A;
  --accent: #2E7D32;
  --white: #FFFFFF;
  --light-bg: #F5F5F5;
  --grey: #666666;
  --light-grey: #E8E8E8;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--secondary);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--secondary);
}

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

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

ul {
  list-style: none;
}

/* Typography */
.font-marathi {
  font-family: 'Noto Sans Devanagari', 'Noto Sans', sans-serif;
}

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-logo {
  width: 45px;
  height: 45px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 20px;
}

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

.navbar-brand-text .org-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.2;
}

.navbar-brand-text .org-name-en {
  font-size: 12px;
  color: var(--grey);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-nav a {
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--secondary);
  border-radius: 6px;
  transition: var(--transition);
}

.navbar-nav a:hover,
.navbar-nav a.active {
  background: rgba(255, 107, 0, 0.1);
  color: var(--primary);
}

.navbar-cta .btn-donate {
  background: var(--primary);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
}

.navbar-cta .btn-donate:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

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

/* Mobile Styles */
@media (max-width: 992px) {
  .navbar-toggle {
    display: flex;
  }

  .navbar-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow);
    display: none;
  }

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

  .navbar-nav a {
    width: 100%;
    text-align: center;
  }

  .navbar-cta {
    display: none;
  }

  .navbar-cta.mobile-active {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  .navbar-cta.mobile-active .btn-donate {
    display: block;
  }
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(26, 42, 74, 0.85), rgba(26, 42, 74, 0.9)),
              url('../images/malegaon-event.jpeg');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 80px 20px;
}

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

.hero h1 {
  font-size: 48px;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

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

.hero-btn {
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

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

.hero-btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
}

.hero-btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.hero-btn-outline:hover {
  background: var(--white);
  color: var(--secondary);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .hero {
    min-height: 450px;
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

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

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

/* ================================================
   STATS BAR
   ================================================ */
.stats-bar {
  background: var(--primary);
  padding: 24px 20px;
}

.stats-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
}

.stat-item span {
  font-size: 20px;
}

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

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

/* ================================================
   SECTION STYLES
   ================================================ */
.section {
  padding: 60px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--grey);
  max-width: 600px;
  margin: 0 auto;
}

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

/* ================================================
   ABOUT PREVIEW
   ================================================ */
.about-preview {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-content h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.about-content p {
  color: var(--grey);
  margin-bottom: 20px;
}

.about-content .read-more {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.about-content .read-more:hover {
  gap: 10px;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.placeholder-img {
  width: 100%;
  height: 300px;
  background: var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 14px;
}

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

  .about-image {
    order: -1;
  }
}

/* ================================================
   ACTIVITIES GRID
   ================================================ */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

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

.activity-card-image {
  height: 180px;
  overflow: hidden;
}

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

.activity-card-content {
  padding: 20px;
}

.activity-card-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.activity-card-content p {
  color: var(--grey);
  font-size: 14px;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.activity-card-content .btn-read {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.activity-card-content .btn-read:hover {
  gap: 10px;
}

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

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

/* ================================================
   AFFILIATIONS STRIP
   ================================================ */
.affiliations {
  background: var(--light-bg);
  padding: 30px 20px;
  text-align: center;
}

.affiliations p {
  color: var(--grey);
  font-size: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.affiliations strong {
  color: var(--secondary);
}

/* ================================================
   PAGE BANNER
   ================================================ */
.page-banner {
  background: var(--secondary);
  padding: 60px 20px;
  text-align: center;
}

.page-banner h1 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

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

.breadcrumb span {
  color: var(--white);
}

@media (max-width: 768px) {
  .page-banner {
    padding: 40px 20px;
  }

  .page-banner h1 {
    font-size: 28px;
  }
}

/* ================================================
   ABOUT PAGE
   ================================================ */
.about-intro {
  background: var(--white);
}

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

.about-intro-content p {
  color: var(--grey);
  font-size: 17px;
  line-height: 1.8;
}

/* Vision & Mission Cards */
.vision-mission {
  padding: 60px 20px;
  background: var(--light-bg);
}

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

.vm-card {
  padding: 30px;
  border-radius: 12px;
  transition: var(--transition);
}

.vm-card.vision {
  background: var(--primary);
  color: var(--white);
}

.vm-card.mission {
  background: var(--secondary);
  color: var(--white);
}

.vm-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: inherit;
}

.vm-card p {
  font-size: 15px;
  opacity: 0.95;
  line-height: 1.7;
}

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

/* Timeline */
.timeline {
  padding: 60px 20px;
  background: var(--white);
}

.timeline h2 {
  text-align: center;
  margin-bottom: 50px;
}

.timeline-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

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

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

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

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

.timeline-item::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border: 4px solid var(--white);
  border-radius: 50%;
  top: 0;
  box-shadow: var(--shadow);
}

.timeline-item:nth-child(odd)::before {
  right: -10px;
}

.timeline-item:nth-child(even)::before {
  left: -10px;
}

.timeline-year {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.timeline-content h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.timeline-content p {
  color: var(--grey);
  font-size: 14px;
}

@media (max-width: 768px) {
  .timeline-container::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 50px !important;
    margin-left: 0 !important;
    text-align: left !important;
  }

  .timeline-item::before {
    left: 10px !important;
    right: auto !important;
  }
}

/* ================================================
   PROJECTS PAGE
   ================================================ */
.projects-section {
  padding: 60px 20px;
  background: var(--white);
}

.project-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.project-card:nth-child(even) .project-image {
  order: 2;
}

.project-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.project-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.project-content {
  padding: 10px;
}

.project-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.project-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--grey);
}

.project-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-meta .year {
  color: var(--primary);
  font-weight: 600;
}

.project-content p {
  color: var(--grey);
  line-height: 1.7;
}

.upcoming-project {
  margin-top: 40px;
  padding: 30px;
  border: 2px dashed var(--accent);
  border-radius: 12px;
  position: relative;
}

.upcoming-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--accent);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.upcoming-project h3 {
  color: var(--accent);
}

@media (max-width: 992px) {
  .project-card {
    grid-template-columns: 1fr;
  }

  .project-card:nth-child(even) .project-image {
    order: 0;
  }
}

/* ================================================
   ACTIVITIES PAGE
   ================================================ */
.activities-section {
  padding: 60px 20px;
  background: var(--white);
}

.activities-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--grey);
}

.activity-full-card {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--light-grey);
}

.activity-full-card:last-child {
  border-bottom: none;
}

.activity-full-card .activity-card-image {
  height: 350px;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.activity-full-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.activity-full-card .activity-date {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
}

.activity-full-card p {
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 16px;
}

.activity-full-card .attendees {
  background: var(--light-bg);
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
}

.activity-full-card .attendees strong {
  color: var(--secondary);
}

/* ================================================
   TEAM PAGE
   ================================================ */
.team-section {
  padding: 60px 20px;
  background: var(--white);
}

.team-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
  color: var(--grey);
}

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

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

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

.team-card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

.team-card-content {
  padding: 20px;
  text-align: center;
}

.team-card-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.team-role {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.team-card-content p {
  color: var(--grey);
  font-size: 14px;
  line-height: 1.6;
}

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

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

/* ================================================
   MEDIA PAGE
   ================================================ */
.media-section {
  padding: 60px 20px;
  background: var(--white);
}

/* Newspaper Coverage */
.newspaper-section {
  margin-bottom: 60px;
}

.newspaper-section h2 {
  margin-bottom: 30px;
}

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

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

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

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

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

.newspaper-card-content {
  padding: 20px;
}

.newspaper-name {
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 4px;
}

.newspaper-date {
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 12px;
}

.newspaper-card-content h4 {
  font-size: 15px;
  line-height: 1.5;
}

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

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

/* Accordion */
.accordion-section {
  margin-bottom: 60px;
}

.accordion-section h2 {
  margin-bottom: 30px;
}

.accordion-item {
  border: 1px solid var(--light-grey);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 18px 20px;
  background: var(--light-bg);
  border: none;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  color: var(--secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.accordion-header:hover {
  background: #e0e0e0;
}

.accordion-header::after {
  content: '+';
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
}

.accordion-item.active .accordion-header::after {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-body {
  padding: 20px;
  color: var(--grey);
  line-height: 1.8;
}

/* Gallery */
.gallery-section h2 {
  margin-bottom: 30px;
}

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

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

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

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

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-section {
  padding: 60px 20px;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 40px;
}

.contact-details h2 {
  margin-bottom: 24px;
}

.contact-info {
  margin-bottom: 30px;
}

.contact-info h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--grey);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-info .icon {
  color: var(--primary);
  font-size: 18px;
  min-width: 24px;
}

.helpline-box {
  background: var(--primary);
  color: var(--white);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.helpline-box h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.helpline-box p {
  font-size: 20px;
  font-weight: 700;
}

.contact-form {
  background: var(--light-bg);
  padding: 30px;
  border-radius: 12px;
}

.contact-form h3 {
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 14px;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

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

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.form-submit:hover {
  background: var(--primary-dark);
}

.map-container {
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  height: 300px;
  background: var(--light-grey);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
}

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

/* Donation Section */
.donation-section {
  background: var(--secondary);
  padding: 60px 20px;
  text-align: center;
  color: var(--white);
}

.donation-section h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.donation-section p {
  opacity: 0.9;
  margin-bottom: 24px;
}

.donation-section .btn-donate {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 14px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
}

.donation-section .btn-donate:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.donation-note {
  margin-top: 16px;
  font-size: 13px;
  opacity: 0.8;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--secondary);
  color: var(--white);
  padding: 50px 20px 30px;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 16px;
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer .icon {
  color: var(--primary);
  min-width: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

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

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

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

.footer-bottom {
  max-width: var(--max-width);
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer p {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* ================================================
   WHATSAPP BUTTON
   ================================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

@media (max-width: 576px) {
  .whatsapp-btn {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-btn svg {
    width: 24px;
    height: 24px;
  }
}

/* ================================================
   UTILITY CLASSES
   ================================================ */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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