/* Base Styles */
:root {
  --primary: #33ce5f;
  --primary-light: #0a7729;
  --primary-dark: #3a0040;
  --accent: #b8ec1b;
  --accent-hover: #bfeb3a;
  --white: #ffffff;
  --black: #000000;
  --gray-50: #f8f8f8;
  --gray-100: #f5f5f5;
  --gray-200: #eeeeee;
  --gray-300: #e0e0e0;
  --gray-400: #bdbdbd;
  --gray-500: #9e9e9e;
  --gray-600: #757575;
  --gray-700: #616161;
  --gray-800: #424242;
  --gray-900: #212121;
  --transition-fast: 0.3s;
  --transition-medium: 0.5s;
  --transition-slow: 0.8s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: var(--gray-900);
  overflow-x: hidden;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

section {
  position: relative;
  padding: 45px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.25rem;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
}

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 20px;
}

.section-header-flex h2 {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.section-header-flex p {
  font-size: 1.25rem;
  color: var(--gray-600);
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
}

.btn i {
  margin-left: 8px;
  transition: transform var(--transition-fast);
}

.btn:hover i {
  transform: translateX(4px);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-light);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--primary);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--primary);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
}

.btn-block {
  display: block;
  width: 100%;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-fast);
}

.site-header.scrolled {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar {
  padding: 8px 0;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all var(--transition-fast);
}

.site-header.scrolled .top-bar {
  background-color: var(--gray-100);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icon {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
}

.social-icon:hover {
  color: var(--white);
}

.site-header.scrolled .social-icon {
  color: var(--gray-600);
}

.site-header.scrolled .social-icon:hover {
  color: var(--primary);
}

.top-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.contact-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
}

.contact-link:hover {
  color: var(--white);
}

.site-header.scrolled .contact-link {
  color: var(--gray-600);
}

.site-header.scrolled .contact-link:hover {
  color: var(--primary);
}
/* 
.search-container {
  display: flex;
  align-items: center;
}

.search-input {
  width: 0;
  padding: 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background-color: transparent;
  color: var(--white);
  font-size: 0.875rem;
  transition: all var(--transition-fast);
  outline: none;
} */

/* .search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.search-input.active {
  width: 160px;
  padding: 4px 0;
} */

/* .site-header.scrolled .search-input {
  border-bottom-color: var(--gray-300);
  color: var(--gray-700);
}

.site-header.scrolled .search-input::placeholder {
  color: var(--gray-500);
}

.search-toggle,
.search-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.search-toggle:hover,
.search-close:hover {
  color: var(--white);
}

.site-header.scrolled .search-toggle,
.site-header.scrolled .search-close {
  color: var(--gray-600);
}

.site-header.scrolled .search-toggle:hover,
.site-header.scrolled .search-close:hover {
  color: var(--primary);
}

.search-close {
  display: none;
} */

.donate-button {
  background-color: #33ce5f;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 4px 24px;
  border-radius: 9999px;
  transition: background-color var(--transition-fast);
}

.donate-button:hover {
  background-color: #0a7729;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-circle {
  width: 60px;
  height: 56px;
  border-radius: 50%;
  border: 4px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
  transition: all var(--transition-fast);
}

.logo-circle img {
  width: 55px;
  height: auto;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.site-header.scrolled .logo-circle {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--white);
}

.logo-text {
  margin-left: 12px;
}

.logo-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition-fast);
}

.logo-subtitle {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
}

.site-header.scrolled .logo-title {
  color: var(--primary);
}

.site-header.scrolled .logo-subtitle {
  color: var(--gray-600);
}

.desktop-nav {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: block;
  }

  .desktop-nav ul {
    display: flex;
    gap: 32px;
  }

  .desktop-nav a {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition-fast);
  }

  .desktop-nav a:hover {
    color: var(--white);
  }

  .site-header.scrolled .desktop-nav a {
    color: var(--gray-700);
  }

  .site-header.scrolled .desktop-nav a:hover {
    color: var(--primary);
  }
}

/* Mobile Menu */
.mobile-menu-button {
  display: block;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.75rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.site-header.scrolled .mobile-menu-button {
  color: var(--gray-700);
}

@media (min-width: 1024px) {
  .mobile-menu-button {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 300px;
  height: 100vh;
  background-color: var(--primary);
  z-index: 1001;
  transition: right var(--transition-medium);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-container {
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mobile-logo {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.mobile-logo .logo-circle {
  width: 50px;
  height: 50px;
  border-color: var(--accent);
  background-color: var(--accent);
  color: var(--primary);
}

.mobile-logo .mobile-menu-logo-title {
  color: var(--white);
  font-size: 14px;
  font-weight: bold;
}

.mobile-logo .mobile-menu-logo-subtitle {
  color: var(--white);
  font-size: 10px;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  transition: color var(--transition-fast);
}

.mobile-nav a:hover {
  color: var(--accent);
}

.mobile-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-footer a {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--white);
  transition: color var(--transition-fast);
}

.mobile-footer a:hover {
  color: var(--accent);
}

.mobile-donate {
  display: inline-block;
  background-color: var(--accent);
  color: var(--primary) !important;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 9999px;
  text-align: center;
  transition: background-color var(--transition-fast);
}

.mobile-donate:hover {
  background-color: var(--white);
  color: var(--primary) !important;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  /* background: linear-gradient(
    to bottom right,
    var(--primary-dark),
    var(--primary),
    var(--primary-light)
  ); */
  color: var(--white);
  padding: 120px 0 80px;
  overflow-x: hidden;
}

.hero-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: url("/assets/images/wa-skyline-02.jpg"); */
  /* background-repeat: repeat; */
  /* opacity: 0.2; */
}

.hero-blob-1 {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background-color: rgba(190, 255, 0, 0.3);
  filter: blur(100px);
}

.hero-blob-2 {
  position: absolute;
  left: -10%;
  top: 60%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background-color: rgba(255, 0, 255, 0.2);
  filter: blur(120px);
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  /* background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("/assets/images/gallery2.jpg"); */
}

@media (min-width: 768px) {
  .hero-container {
    grid-template-columns: 7fr 5fr;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero h1 span {
  color: #33ce5f;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .hero p {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 4rem;
  }
}

.hero-image {
  position: relative;
  display: none;
}

@media (min-width: 768px) {
  .hero-image {
    display: block;
  }
}

.hero-image-circle {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  border: 30px solid rgba(190, 255, 0, 0.3);
}

.hero-image-container {
  position: absolute;
  top: 15%;
  right: 5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden;
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 2.5rem;
  animation: bounce 2s infinite;
  z-index: 1;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* Mission Section */
.mission {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("/assets/images/gallery9.jpg");
  background-size: cover;
  background-position: center -20%;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.bg-circle-1 {
  top: 30%;
  left: -300px;
  width: 600px;
  height: 600px;
  background-color: var(--gray-100);
}

.bg-circle-2 {
  bottom: 10%;
  right: -300px;
  width: 600px;
  height: 600px;
  background-color: var(--gray-50);
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.mission-content h2 {
  font-size: 2.5rem;
  margin-bottom: 32px;
  color: var(--white);
}

.mission-content p {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--white);
}

/* Impact Section */
.impact {
  background-color: var(--primary);
  color: var(--white);
}

.bg-circle-3 {
  top: 20%;
  left: -200px;
  width: 400px;
  height: 400px;
  background-color: rgba(122, 0, 128, 0.5);
}

.bg-circle-4 {
  bottom: 10%;
  right: -200px;
  width: 400px;
  height: 400px;
  background-color: rgba(58, 0, 64, 0.5);
}

/* .stats-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
} */

/* .section-header p {
 
} */

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
  margin-top: 3rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--accent); /* or white */
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
}

@media (min-width: 768px) {
  .stats-container {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* 
.stat-item {
  text-align: center;
}

.stat-icon {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.stat-icon i {
  font-size: 2rem;
  color: var(--accent);
}

.stat-number {
  position: absolute;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  display: block;
}

.stat-label {
  font-size: 1.25rem;
  font-weight: 500;
} */

/* Programs Section */
.programs {
  background-color: var(--white);
}

.programs-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.programs-header {
  text-align: center;
  margin-bottom: 32px;
  color: #333;
  font-size: 1.25rem;
}

/* .section-header {
  text-align: center;
  margin-bottom: 60px;
} */

/* .section-header p {
  font-size: 1.25rem;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
} */

.bg-circle-5 {
  top: 10%;
  right: -200px;
  width: 400px;
  height: 400px;
  background-color: var(--gray-100);
}

.bg-circle-6 {
  bottom: 10%;
  left: -200px;
  width: 400px;
  height: 400px;
  background-color: var(--gray-50);
}

.programs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .programs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.program-card {
  position: relative;
  padding: 32px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-fast);
}

.program-card:hover {
  transform: translateY(-10px);
}

.program-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.program-card.purple {
  background-color: var(--primary);
  color: var(--white);
}

.program-card.green {
  background-color: var(--accent);
  color: var(--gray-800);
}

.program-card .program-icon {
  display: flex;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 2.5rem;
  align-items: center;
  justify-content: center;
}

.program-card .program-title {
  display: flex;
  align-items: center;
  justify-content: center;
}

.program-card.green .program-icon {
  color: var(--primary);
}

.program-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.program-card p {
  font-size: 1.125rem;
  margin-bottom: 24px;
}

.program-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
}

.program-link i {
  margin-left: 8px;
  transition: transform var(--transition-fast);
}

.program-link:hover i {
  transform: translateX(4px);
}

.program-card.purple .program-link:hover {
  text-decoration: underline;
}

.program-card.green .program-link:hover {
  text-decoration: underline;
}

/* Cultural Showcase */
.cultural-showcase {
  background-color: var(--primary);
  color: var(--white);
}

.bg-circle-7 {
  top: 20%;
  left: -200px;
  width: 400px;
  height: 400px;
  background-color: rgba(122, 0, 128, 0.5);
}

.bg-circle-8 {
  bottom: 10%;
  right: -200px;
  width: 400px;
  height: 400px;
  background-color: rgba(58, 0, 64, 0.5);
}

.tabs {
  max-width: 1000px;
  margin: 0 auto;
}

.tabs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 48px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .tabs-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tab-button {
  padding: 12px;
  background-color: #0a7729;
  border: none;
  color: var(--white);
  font-weight: 500;
  cursor: pointer;
  transition: background-color var(--transition-fast);
  /* --primary: #33ce5f;
  --primary-light:  */
}

.tab-button:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.tab-button:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.tab-button.active {
  background-color: var(--accent);
  color: var(--white);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .tab-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.tab-text h3 {
  font-size: 1.875rem;
  margin-bottom: 16px;
}

.tab-text p {
  font-size: 1.125rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.image-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

/* Events Section */
.events {
  background-color: var(--white);
}

.bg-circle-9 {
  top: 10%;
  left: -200px;
  width: 400px;
  height: 400px;
  background-color: var(--gray-100);
}

.bg-circle-10 {
  bottom: 10%;
  right: -200px;
  width: 400px;
  height: 400px;
  background-color: var(--gray-50);
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.event-card {
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-fast);
}

.event-card:hover {
  transform: translateY(-10px);
}

.event-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.event-card:hover .event-image img {
  transform: scale(1.1);
}

.event-date {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--accent);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 4px 16px;
  border-radius: 9999px;
}

.event-details {
  padding: 24px;
}

.event-details h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.event-time {
  color: var(--primary);
  margin-bottom: 16px;
}

.event-description {
  color: var(--gray-600);
  margin-bottom: 24px;
}

/* Testimonials */
.testimonials {
  background-color: var(--gray-50);
}

.bg-circle-11 {
  top: 10%;
  right: -200px;
  width: 400px;
  height: 400px;
  background-color: var(--white);
}

.bg-circle-12 {
  bottom: 10%;
  left: -200px;
  width: 400px;
  height: 400px;
  background-color: var(--white);
}

.testimonial-tabs {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-nav-item {
  padding: 12px;
  background-color: var(--white);
  border: none;
  color: var(--gray-700);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonial-nav-item:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.testimonial-nav-item:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.testimonial-nav-item.active {
  background-color: var(--primary);
  color: var(--white);
}

.testimonial-content {
  display: none;
}

.testimonial-content.active {
  display: block;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .testimonial-card {
    grid-template-columns: 2fr 3fr;
  }
}

.testimonial-image {
  height: 300px;
}

@media (min-width: 768px) {
  .testimonial-image {
    height: auto;
  }
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-mark {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.testimonial-text p {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 32px;
}

.testimonial-author h4 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.testimonial-author p {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0;
  font-style: normal;
}

/* Donation Section */
.donation {
  background-color: var(--primary);
  color: var(--white);
}

.bg-circle-13 {
  top: 20%;
  left: -200px;
  width: 400px;
  height: 400px;
  background-color: rgba(122, 0, 128, 0.5);
}

.bg-circle-14 {
  bottom: 10%;
  right: -200px;
  width: 400px;
  height: 400px;
  background-color: rgba(58, 0, 64, 0.5);
}

.donation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .donation-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.donation-info h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.donation-info p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.donation-benefits {
  margin-bottom: 32px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--accent);
  color: var(--primary);
  margin-right: 16px;
}

.benefit-item span {
  font-size: 1.125rem;
}

.donation-image {
  margin-top: 32px;
  border-radius: 16px;
  overflow: hidden;
}

/* Donation Tabs */
.donation-form-container {
  display: flex;
  align-items: center;
}

.donation-tabs {
  display: flex;
  width: 100%;
  margin-bottom: 16px;
}

.donation-tab-btn {
  flex: 1;
  text-align: center;
  padding: 8px 16px;
  border: 1px solid var(--gray-300);
  background: transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color var(--transition-fast),
    color var(--transition-fast);
  font-weight: 500;
}

.donation-tab-btn:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.donation-tab-btn:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.donation-tab-btn.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.donation-tab-content {
  display: none;
  margin-bottom: 24px;
}

.donation-tab-content.active {
  display: block;
}

.donation-tab-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 16px 0;
}

.tab-logo {
  width: 70px;
  margin-bottom: 12px;
}

.qr-code {
  width: 300px;
  height: auto;
  margin-top: 10px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
}

/* Old Donation Form */
.donation-form {
  background-color: var(--white);
  border-radius: 16px;
  padding: 32px;
  color: var(--gray-900);
  width: 100%;
}

.donation-form h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.amount-options,
.frequency-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.amount-option input,
.frequency-option input {
  display: none;
}

.amount-option label,
.frequency-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 9999px;
  border: 2px solid var(--gray-200);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.amount-option input:checked + label,
.frequency-option input:checked + label {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.input-with-icon {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-500);
}

input[type="text"],
input[type="email"],
input[type="number"] {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus {
  outline: none;
  border-color: var(--primary);
}

.input-with-icon input {
  padding-left: 32px;
}

/* Member Portal */
.member-portal {
  background-color: var(--white);
}

.bg-circle-15 {
  top: 10%;
  left: -200px;
  width: 400px;
  height: 400px;
  background-color: var(--gray-100);
}

.bg-circle-16 {
  bottom: 10%;
  right: -200px;
  width: 400px;
  height: 400px;
  background-color: var(--gray-50);
}

.portal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .portal-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.portal-image {
  position: relative;
}

.image-accent {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 100%;
  height: 100%;
  background-color: var(--accent);
  border-radius: 16px;
}

.image-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.portal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.portal-content h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.portal-content p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--gray-700);
  margin-bottom: 24px;
}

.portal-benefits {
  margin-bottom: 32px;
}

.portal-benefits li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}

.portal-benefits .benefit-icon {
  background-color: var(--primary);
  color: var(--white);
}

.portal-benefits li span {
  font-size: 1.125rem;
}

.portal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-outlinee {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outlinee:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* Language Selector */
.language-selector {
  background-color: var(--gray-50);
  padding: 48px 0;
}

.language-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.language-label {
  font-size: 1.125rem;
  font-weight: 500;
}

.language-options {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.language-option {
  background: none;
  border: none;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.language-option:hover {
  color: var(--primary);
}

.language-option.active {
  color: var(--primary);
  font-weight: 600;
}

/* Newsletter */
.newsletter {
  position: relative;
  background-color: var(--primary);
  color: var(--white);
  overflow: hidden;
}

.newsletter-blob-1 {
  position: absolute;
  top: -40%;
  right: -40%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background-color: rgba(191, 255, 0, 0.8);
}

.newsletter-blob-2 {
  position: absolute;
  bottom: -40%;
  left: -40%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background-color: rgb(191, 255, 0, 0.8);
}

.newsletter-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.newsletter p {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 40px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 640px) {
  .newsletter-form {
    flex-direction: row;
  }
}

.newsletter-form input {
  flex: 1;
  padding: 16px 24px;
  border-radius: 9999px;
  border: none;
  background-color: rgba(255, 255, 255, 0.479);
  color: black;
  font-size: 1.125rem;
}

.newsletter-form input::placeholder {
  color: gray;
}

.newsletter-form input:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--accent);
}

.newsletter-form .btn {
  padding: 16px 32px;
}

/* Footer */
.site-footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 10px 0 5px;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  /* margin-bottom: 48px; */
  align-items: start;
  margin: 0 auto 48px auto;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
  }
}

/* Logo block */
.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 0.75rem;
  padding-top: 20px;
}

.footer-logo img {
  width: 160px;
  height: auto;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.footer-logo-subtitle {
  font-size: 0.875rem;
  color: white;
}

@media (min-width: 1024px) {
  /* .footer-links,
  .footer-contact,
  .footer-newsletter {
    align-self: end; /* Brings these grid items down *
  } */
  .footer-links {
    margin-top: 130px;
  }

  .footer-contact {
    margin-top: 130px;
  }

  .footer-newsletter {
    margin-top: 130px;
  }
}

/* About section */
.footer-about p {
  color: white;
  margin: 1rem 0;
  line-height: 1.6;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: all 0.3s ease;
}

.footer-social .social-icon:hover {
  background-color: var(--accent);
  color: var(--primary);
}

/* Links */
.footer-links {
  margin-left: 20px;
}

.footer-links h3,
.footer-contact h3,
.footer-newsletter h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: white;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent);
}

/* Contact section */
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact i {
  color: var(--accent);
  margin-top: 3px;
}

.footer-contact span,
.footer-contact a {
  color: white;
  font-size: 0.95rem;
}

.footer-contact a:hover {
  color: var(--accent);
}

/* Newsletter */
.footer-newsletter p {
  color: white;
  margin-bottom: 16px;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-form input {
  padding: 12px 16px;
  border-radius: 9999px;
  border: none;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 0.95rem;
}

.footer-form input::placeholder {
  color: gray;
}

.footer-form input:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--accent);
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: white;
}

/* Animation Classes */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards;
}

.animate-fade-in {
  opacity: 0;
  animation: fadeIn 0.8s forwards;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.5s, transform 0.5s;
}

.animate-slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-slide-left {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.5s, transform 0.5s;
}

.animate-slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Animation Delays */
.animate-fade-up:nth-child(1) {
  animation-delay: 0.2s;
}

.animate-fade-up:nth-child(2) {
  animation-delay: 0.4s;
}

.animate-fade-up:nth-child(3) {
  animation-delay: 0.6s;
}

/* Wit Logo */
.wit-logo {
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
}

.wit-logo:hover {
  color: #eaf205; /* Change color on hover */
}
