/* ===========================================
   Pages-specific styles
   =========================================== */

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: visible; /* was hidden — was blocking animated-bg */
  padding: 5rem 0 3rem;
  background: transparent; /* let animated-bg show through */
}
.page-hero .container { text-align: center; }
.page-hero h1 { font-size: 2.5rem; margin-bottom: 1rem; font-weight: 700; line-height: 1.15; }
@media (min-width: 768px) { .page-hero h1 { font-size: 3.5rem; } }
@media (min-width: 1024px) { .page-hero h1 { font-size: 3.75rem; } }
.page-hero .hero-desc { max-width: 48rem; }

/* Decorative gold accent curves — match React AnimatedBackground blobs */
.page-hero-accent-1 {
  position: absolute;
  top: -2rem; left: 55%;
  width: 22rem; height: 22rem;
  border-radius: 50%;
  border: 2px solid rgba(217,154,6,0.25);
  clip-path: inset(0 0 50% 0);
  pointer-events: none;
  z-index: 0;
}
.page-hero-accent-2 {
  position: absolute;
  bottom: -3rem; right: 55%;
  width: 18rem; height: 18rem;
  border-radius: 50%;
  border: 2px solid rgba(217,154,6,0.2);
  clip-path: inset(50% 0 0 0);
  pointer-events: none;
  z-index: 0;
}

/* Page hero highlight (green text + gold underline) */
.page-hero-highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.page-hero-underline {
  position: absolute;
  bottom: -0.5rem;
  right: 0;
  width: 100%;
}

/* Icon box large */
.icon-box-lg {
  width: 4rem; height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

/* Tech items */
.tech-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem;
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

/* Person cards */
.person-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}
.person-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); transform: translateY(-4px); }
.person-card .avatar {
  width: 5rem; height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2.5rem;
}
.person-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.25rem; }
.person-card .role { font-size: 0.875rem; color: var(--muted-foreground); }
.person-card .email { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.75rem; }
.person-card .email:hover { color: var(--primary); }

.person-card-featured {
  background: var(--card);
  border: 2px solid rgba(22,107,74,0.2);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  max-width: 28rem;
  margin: 0 auto 4rem;
}
.person-card-featured .avatar {
  width: 8rem; height: 8rem;
  border-radius: 50%;
  background: rgba(22,107,74,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 4rem;
}
.person-card-featured .badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

/* Info cards grid */
.info-cards { display: grid; gap: 2rem; }
@media (min-width: 768px) { .info-cards { grid-template-columns: repeat(2, 1fr); } }

.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
}
.info-card .icon-box { margin-bottom: 1.5rem; }
.info-card h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.info-card p, .info-card ul { color: var(--muted-foreground); line-height: 1.8; }
.info-card ul li { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.75rem; }
.info-card ul li::before { content: "•"; color: var(--primary); font-weight: 700; margin-top: 0.125rem; flex-shrink: 0; }

/* Report items */
.report-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: all 0.3s;
  margin-bottom: 1rem;
}
.report-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.06); transform: translateY(-2px); }
.report-item .info { display: flex; align-items: flex-start; gap: 1rem; }
.report-item .icon-box {
  flex-shrink: 0;
  width: 3.5rem; height: 3.5rem;
  background: rgba(22, 107, 74, 0.15);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.report-item h3 { font-weight: 700; margin-bottom: 0.25rem; }
.report-item .meta { font-size: 0.875rem; color: var(--muted-foreground); }
.report-item .type-tag { font-size: 0.75rem; background: var(--secondary); padding: 0.25rem 0.5rem; border-radius: 0.25rem; }

/* Progress bars */
.progress-bar { height: 0.75rem; background: var(--secondary); border-radius: 9999px; overflow: hidden; margin-top: 0.5rem; }
.progress-bar .fill { height: 100%; background: var(--primary); border-radius: 9999px; transition: width 0.5s; }

/* Rating stars */
.stars { display: flex; gap: 0.25rem; }
.stars svg { width: 2rem !important; height: 2rem !important; }
.star { color: var(--accent); font-size: 2rem; }

/* Satisfaction stats grid */
.satisfaction-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-bottom: 4rem; }
@media (min-width: 1024px) { .satisfaction-stats-grid { grid-template-columns: repeat(4, 1fr); } }

/* News card */
.news-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s;
}
.news-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); transform: translateY(-4px); }
.news-card .thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, rgba(22,107,74,0.15), rgba(217,154,6,0.1)); display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.news-card .content { padding: 1.25rem; }
.news-card h3 { font-weight: 700; margin-bottom: 0.5rem; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-card p { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 1rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-card .meta { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--muted-foreground); padding-top: 0.75rem; border-top: 1px solid var(--border); }
.news-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .news-grid { grid-template-columns: repeat(3, 1fr); } }

/* Contact form */
.contact-grid { display: grid; gap: 2rem; max-width: 60rem; margin: 0 auto; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 3fr 2fr; } }

.form-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 2rem 3rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.5rem; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-family: var(--font-arabic);
  font-size: 0.875rem;
  background: var(--background);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); outline: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Service page */
.service-hero-stats { display: flex; gap: 2rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }
.service-stat { text-align: center; }
.service-stat .value { font-size: 2rem; font-weight: 700; color: var(--primary); }
.service-stat .label { font-size: 0.875rem; color: var(--muted-foreground); }

.features-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  transition: all 0.2s;
}
.feature-item:hover { border-color: rgba(22,107,74,0.3); background: rgba(22,107,74,0.02); }

/* Membership cards */
.membership-grid { display: grid; gap: 1.5rem; max-width: 60rem; margin: 0 auto; }
@media (min-width: 768px) { .membership-grid { grid-template-columns: repeat(2, 1fr); } }

.membership-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
}
.membership-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); transform: translateY(-4px); }
.membership-card.popular { border-color: var(--primary); }
.membership-card .popular-badge {
  position: absolute;
  top: -0.875rem; right: 1.5rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
}
.membership-card .price { font-size: 1.875rem; font-weight: 700; color: var(--primary); }
.membership-card .price-label { font-size: 0.875rem; color: var(--muted-foreground); }

/* Privacy sections */
.privacy-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.2s;
}
.privacy-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.privacy-card .header { display: flex; align-items: flex-start; gap: 1rem; }
.privacy-card .icon-box { flex-shrink: 0; margin-top: 0.25rem; }
.privacy-card h2 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.75rem; }
.privacy-card p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.8; white-space: pre-line; }

/* Project section */
.project-block { margin-bottom: 5rem; }
.project-block:last-child { margin-bottom: 0; }
.project-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .project-grid { grid-template-columns: 1fr 1fr; } }

.highlights-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(229,231,235,0.6);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(22,107,74,0.05);
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255,255,255,0.5);
  border-radius: 0.75rem;
  border: 1px solid rgba(229,231,235,0.3);
  margin-bottom: 0.75rem;
}

/* Compliance box */
.compliance-box {
  background: linear-gradient(135deg, rgba(22,107,74,0.05), rgba(22,107,74,0.1));
  border: 1px solid rgba(22,107,74,0.2);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
@media (max-width: 768px) { .compliance-box { flex-direction: column; } }
.compliance-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.compliance-tag { background: rgba(22,107,74,0.1); color: var(--primary); font-size: 0.875rem; padding: 0.5rem 1rem; border-radius: 9999px; }

/* Partners grid for partners page */
.strategic-partners-title { text-align: center; font-size: 1.25rem; font-weight: 700; margin-bottom: 2rem; }

/* Page pagination */
.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; }
.pagination button {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  border: none;
  font-family: var(--font-arabic);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--muted);
  color: var(--muted-foreground);
}
.pagination button.active { background: var(--primary); color: #fff; }

/* Category filter */
.category-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 0;
}
.category-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  border: none;
  font-family: var(--font-arabic);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--muted);
  color: var(--muted-foreground);
}
.category-btn.active { background: var(--primary); color: #fff; }
.category-btn:hover { background: rgba(22,107,74,0.1); color: var(--primary); }

/* =====================
   About page styles
   ===================== */

/* Vision & Mission grid */
.about-vm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 60rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .about-vm-grid { grid-template-columns: 1fr 1fr; } }

.about-vision-card {
  background: rgba(22, 107, 74, 0.05);
  border: 1px solid rgba(22, 107, 74, 0.2);
  border-radius: 1.5rem;
  padding: 2rem 2.5rem;
}
.about-vision-card h2,
.about-mission-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.about-vision-card p,
.about-mission-card p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.8;
}

.about-mission-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(22, 107, 74, 0.15);
  border-radius: 1.5rem;
  padding: 2rem 2.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.about-icon-box-lg {
  width: 4rem;
  height: 4rem;
  background: rgba(22, 107, 74, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* Strategic Goals grid */
.about-goals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 640px) { .about-goals-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .about-goals-grid { grid-template-columns: repeat(3, 1fr); } }

.about-goal-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s;
}
.about-goal-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}
.about-goal-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.about-goal-card p {
  color: var(--muted-foreground);
}
.about-goal-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(22, 107, 74, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

/* Capabilities grid */
.about-capabilities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 1024px) { .about-capabilities-grid { grid-template-columns: 1fr 1fr; } }

.about-cap-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.about-cap-title-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(22, 107, 74, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.about-tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .about-tech-grid { grid-template-columns: 1fr 1fr; } }

.about-tech-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  font-weight: 500;
}
.about-tech-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(22, 107, 74, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.about-team-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.about-team-card h4 {
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.about-team-card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}
.about-team-check {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Service detail page - 2 column hero */
.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .service-hero-grid { grid-template-columns: 3fr 2fr; } }

.service-logo-card {
  position: relative;
  width: 20rem;
  height: 20rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-radius: 1.5rem;
  box-shadow: 0 20px 50px rgba(22,107,74,0.1);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  margin: 0 auto;
}
.service-logo-card .corner-tl { position: absolute; top: 0; right: 0; width: 6rem; height: 6rem; background: linear-gradient(to bottom left, rgba(22,107,74,0.1), transparent); border-top-right-radius: 1.5rem; }
.service-logo-card .corner-br { position: absolute; bottom: 0; left: 0; width: 6rem; height: 6rem; background: linear-gradient(to top right, rgba(212,160,23,0.1), transparent); border-bottom-left-radius: 1.5rem; }
.service-logo-card img { position: relative; z-index: 1; max-width: 14rem; height: auto; }

.service-floating-stat {
  position: absolute;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  z-index: 2;
}
.service-floating-stat .value { font-size: 1.5rem; font-weight: 700; }
.service-floating-stat .label { font-size: 0.75rem; color: var(--muted-foreground); }
.service-floating-stat.stat-1 { top: -1.5rem; right: -1.5rem; }
.service-floating-stat.stat-1 .value { color: var(--primary); }
.service-floating-stat.stat-2 { bottom: -1rem; left: -2rem; }
.service-floating-stat.stat-2 .value { color: #D4A017; }
.service-floating-stat.stat-3 { top: 50%; left: -3rem; background: var(--primary); color: #fff; border: none; }
.service-floating-stat.stat-3 .value { color: #fff; }
.service-floating-stat.stat-3 .label { color: rgba(255,255,255,0.8); }

@media (max-width: 1023px) {
  .service-logo-visual { display: none; }
  .service-mobile-stats { display: grid !important; }
}
@media (min-width: 1024px) {
  .service-mobile-stats { display: none !important; }
}

.service-mobile-stats {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.service-mobile-stat {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--border);
}
.service-mobile-stat .value { font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.service-mobile-stat .label { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.25rem; }

/* Service features 2-col */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) { .service-detail-grid { grid-template-columns: 1fr 1fr; } }

.service-features-card {
  position: relative;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(229,231,235,0.6);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(22,107,74,0.05);
}
.service-features-card .corner-tl { position: absolute; top: 0; right: 0; width: 6rem; height: 6rem; background: linear-gradient(to bottom left, rgba(22,107,74,0.1), transparent); border-top-right-radius: 1.5rem; }
.service-features-card .corner-br { position: absolute; bottom: 0; left: 0; width: 6rem; height: 6rem; background: linear-gradient(to top right, rgba(212,160,23,0.1), transparent); border-bottom-left-radius: 1.5rem; }

.service-feature-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255,255,255,0.5);
  border-radius: 0.75rem;
  border: 1px solid rgba(229,231,235,0.3);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.service-feature-row svg { color: var(--primary); flex-shrink: 0; }

.service-benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(229,231,235,0.6);
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  margin-bottom: 1rem;
}
.service-benefit-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(22,107,74,0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-benefit-icon svg { color: var(--primary); }

/* Responsive tweaks */
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr !important; }
}

/* =====================
   Utility classes — replaces inline styles
   ===================== */

/* Page hero container */
.page-hero-container { position: relative; z-index: 10; text-align: center; }

/* Mobile nav */
.mobile-nav-panel {
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
  background: var(--background);
}
.mobile-nav-link {
  display: block;
  padding: 0.75rem 0;
  font-weight: 500;
}

/* Gov banner inner layout */
.gov-banner-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.gov-banner-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.gov-banner-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.gov-banner-svg { flex-shrink: 0; }

/* Hero desc centered */
.hero-desc-centered { margin: 0 auto; }

/* Page background variants */
.bg-white { background: var(--background); }
.bg-white-solid { background: #ffffff; }
.section-bg-light { background: rgba(241, 243, 245, 0.3); }
.section-bg-green-subtle { background: rgba(22, 107, 74, 0.05); }
.section-bg-white-z1 { background: #ffffff; position: relative; z-index: 1; }

/* Page hero bottom fade */
.page-hero-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6rem;
  background: linear-gradient(to top, #ffffff, transparent);
  pointer-events: none;
  z-index: 1;
}
.page-hero-fade-bg {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6rem;
  background: linear-gradient(to top, var(--background), transparent);
  pointer-events: none;
  z-index: 1;
}

/* Float card values */
.float-value-primary { color: var(--primary); }
.float-value-gold { color: var(--dga-gold); }

/* Section header inline tag */
.section-tag-pill {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(22, 107, 74, 0.1);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

/* Container relative z10 centered */
.container-hero { position: relative; z-index: 10; }
.container-centered { text-align: center; }

/* Services / Products section bg */
.section-padding-bg { background: var(--background); }

/* Stats section */
.stats-section-header { text-align: center; margin-bottom: 3rem; }

/* Partners section heading */
.partners-section-heading {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

/* CTA section bg wrapper */
.cta-section-wrap { background: var(--background); }

/* Footer bottom text */
.footer-bottom-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* Info card icon box large */
.icon-box-info {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-box-info-green { background: rgba(22, 107, 74, 0.1); }
.icon-box-info-gold  { background: rgba(217, 154, 6, 0.1); }
.icon-box-info-green-15 { background: rgba(22, 107, 74, 0.15); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; }

/* Icon box medium */
.icon-box-md {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-box-md-green { background: rgba(22, 107, 74, 0.1); color: var(--primary); }

/* Person card avatar */
.avatar-secondary { background: var(--secondary); }
.avatar-primary-light { background: rgba(22, 107, 74, 0.1); }

/* Strategy pillar card */
.pillar-card {
  padding: 1.5rem;
  background: var(--secondary);
  border-radius: 0.75rem;
}
.pillar-card-icon { margin-bottom: 1rem; }
.pillar-card h3 { margin-bottom: 0.5rem; }
.pillar-card p { font-size: 0.875rem; color: var(--muted-foreground); }

/* Strategy goals grid */
.strategy-goals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) { .strategy-goals-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .strategy-goals-grid { grid-template-columns: 1fr; } }

/* Strategy pillars inner grid */
.strategy-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) { .strategy-pillars-grid { grid-template-columns: 1fr; } }

/* Reports stats grid */
.reports-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) { .reports-stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* Simple stat card (reports page) */
.simple-stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
}
.simple-stat-card .value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.simple-stat-card .label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Reports heading */
.reports-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

/* Executive management grid */
.exec-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
}
@media (max-width: 768px) { .exec-grid-3 { grid-template-columns: 1fr; } }

/* Person card avatar circle */
.avatar-circle {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.avatar-sm { width: 5rem; height: 5rem; }
.avatar-lg { width: 6rem; height: 6rem; }

/* Board person card featured gold variant */
.person-card-featured-gold {
  border-color: rgba(217, 154, 6, 0.3);
  max-width: 24rem;
  margin-bottom: 4rem;
}
.badge-gold-accent { background: var(--accent); color: var(--foreground); }

/* Board grid */
.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* Regulations icons grid */
.regulations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) { .regulations-grid { grid-template-columns: 1fr; } }

/* Supervision band */
.supervision-band {
  padding: 3rem 0;
  background: rgba(22, 107, 74, 0.05);
}
.supervision-band .container { text-align: center; }
.supervision-text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}
.supervision-text strong { color: var(--primary); }

/* Info card vision variant */
.info-card-green {
  background: linear-gradient(135deg, rgba(22, 107, 74, 0.05), rgba(22, 107, 74, 0.1));
  border-color: rgba(22, 107, 74, 0.2);
}
.info-card-gold {
  background: linear-gradient(135deg, rgba(217, 154, 6, 0.05), rgba(217, 154, 6, 0.1));
  border-color: rgba(217, 154, 6, 0.2);
}
.info-card-text-lg { font-size: 1.125rem; }

/* Strategy section heading */
.strategy-section-heading {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

/* Section pillar header flex */
.pillar-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.pillar-header-text h2 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.pillar-header-text p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}

/* Contact section bg */
.contact-section {
  padding: 3rem 0 4rem;
  background: #ffffff;
  position: relative;
  z-index: 1;
}

/* Contact info cards grid */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (max-width: 768px) { .contact-info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .contact-info-grid { grid-template-columns: 1fr; } }

/* Contact info card */
.contact-info-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(229, 231, 235, 0.6);
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.contact-info-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}
.contact-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.contact-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(22, 107, 74, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-title {
  font-weight: 700;
  font-size: 0.875rem;
  margin: 0;
}
.contact-card-value {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
.contact-card-note {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin: 0;
}
.contact-card-value-ltr { direction: ltr; }

/* Map card */
.map-card {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
}

/* Form heading */
.form-heading { text-align: center; font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.form-subheading { text-align: center; color: var(--muted-foreground); margin-bottom: 2rem; }

/* Form submit button */
.btn-full { width: 100%; justify-content: center; }

/* Form ltr input */
.input-ltr { text-align: right; direction: ltr; }

/* Service logo visual wrapper */
.service-logo-visual-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Service content right aligned */
.service-content-right { text-align: right; }

/* Service CTA margin */
.service-cta-wrap { margin-top: 2rem; }
.service-benefit-text { font-weight: 500; }

/* Feature card title */
.feature-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}
.feature-card-title-icon {
  width: 2rem;
  height: 2rem;
  background: rgba(22, 107, 74, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Benefits title */
.benefits-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* Partners page: section wrapper */
.partners-section-content { text-align: center; margin-bottom: 3rem; }
.partners-section-tag { color: var(--primary); font-weight: 500; display: block; margin-bottom: 1rem; }
.partners-section-title { font-size: 2rem; font-weight: 700; color: #1a1a1a; margin-bottom: 1rem; }
.partners-section-desc { font-size: 1.125rem; color: var(--muted-foreground); max-width: 42rem; margin: 0 auto; }
.partners-strategic-heading {
  text-align: center;
  margin-bottom: 2rem;
}
.partners-strategic-heading h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-block;
  border-bottom: 2px solid var(--dga-gold);
  padding-bottom: 4px;
}

/* Partners main section bg */
.partners-main-section {
  background: #ffffff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Projects section wrapper */
.projects-section { display: flex; flex-direction: column; gap: 5rem; }

/* Project icon + tag row */
.project-header-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.project-icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(22, 107, 74, 0.1);
}
.project-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
  background: rgba(22, 107, 74, 0.1);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
}

/* Project headings */
.project-title { font-size: 1.875rem; font-weight: 700; margin-bottom: 0.5rem; }
.project-subtitle { color: var(--primary); font-weight: 500; margin-bottom: 1rem; }
.project-desc { color: var(--muted-foreground); line-height: 1.8; margin-bottom: 2rem; }

/* Project stats row */
.project-stats-row { display: flex; gap: 1rem; margin-bottom: 2rem; }
.project-stat-flex { flex: 1; }

/* Project button */
.btn-project { gap: 0.5rem; }

/* Highlights card */
.highlights-card-inner { position: relative; background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(8px); border: 1px solid rgba(229, 231, 235, 0.6); border-radius: 1.5rem; padding: 2rem; box-shadow: 0 10px 40px rgba(22, 107, 74, 0.05); }
.highlights-card-corner-tl { position: absolute; top: 0; right: 0; width: 6rem; height: 6rem; background: linear-gradient(to bottom left, rgba(22, 107, 74, 0.1), transparent); border-top-right-radius: 1.5rem; }
.highlights-card-corner-br { position: absolute; bottom: 0; left: 0; width: 6rem; height: 6rem; background: linear-gradient(to top right, rgba(212, 160, 23, 0.1), transparent); border-bottom-left-radius: 1.5rem; }

/* Highlights title */
.highlights-title {
  position: relative;
  z-index: 1;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.highlights-title-icon {
  width: 2rem;
  height: 2rem;
  background: rgba(22, 107, 74, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.highlights-features { position: relative; z-index: 1; display: grid; gap: 0.75rem; }

/* Project second column order */
.project-col-order-1 { order: 1; }
.project-col-order-2 { order: 2; }

/* Projects filter section */
.projects-filter-section {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
}

/* Projects stats summary */
.projects-summary-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 28rem;
  margin: 2.5rem auto 0;
}

/* page-hero min-height variants */
.page-hero-sm { min-height: 50vh; }

/* General assembly icon box */
.info-card-icon-md {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(22, 107, 74, 0.15);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Photo gallery section */
.gallery-filter-section {
  padding: 1.5rem 0;
  background: #ffffff;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
}
.gallery-content-section {
  padding: 3rem 0 4rem;
  background: #ffffff;
  position: relative;
  z-index: 1;
}
.category-filter-no-pad { padding: 0; }

/* Gallery grid & cards */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.gallery-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s, box-shadow 0.25s, opacity 0.28s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
  text-decoration: none;
  color: inherit;
}
/* Padding-top trick: forces a fixed 4:3 ratio regardless of image size */
.gallery-thumb {
  position: relative;
  width: 100%;
  padding-top: 68%;
  background: #eef0f2;
  overflow: hidden;
}
.gallery-thumb img,
.gallery-thumb .gallery-thumb-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.gallery-thumb img {
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}
.gallery-card:hover .gallery-thumb img {
  transform: scale(1.06);
}
.gallery-thumb-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 107, 74, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}
.gallery-card:hover .gallery-overlay {
  opacity: 1;
}
.gallery-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(22, 107, 74, 0.88);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  border-radius: 9999px;
  letter-spacing: 0.01em;
}
.gallery-caption {
  padding: 0.9rem 1.1rem 1rem;
}
.gallery-caption h3 {
  font-size: 0.92rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.45;
}
.gallery-empty {
  text-align: center;
  padding: 3rem;
  color: #6b7280;
  grid-column: 1 / -1;
}

/* Gallery detail image grid */
.gallery-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
/* Same padding-top trick for detail images */
.gallery-detail-img-wrap {
  position: relative;
  width: 100%;
  padding-top: 68%;
  overflow: hidden;
  border-radius: 0.75rem;
  background: #eef0f2;
}
.gallery-detail-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.gallery-detail-img-wrap:hover img {
  transform: scale(1.05);
}
.gallery-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}
.gallery-back-link:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .gallery-grid,
  .gallery-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .gallery-grid,
  .gallery-detail-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }
}

/* Beneficiary satisfaction */
.satisfaction-btn-full {
  width: 100%;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.satisfaction-btn-outline {
  width: 100%;
  justify-content: center;
  border: 1px solid var(--border);
}
.satisfaction-rating-text {
  justify-content: center;
  margin-bottom: 1rem;
}

/* Rating row */
.rating-row {
  margin-bottom: 1rem;
}
.rating-row-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.rating-row-value { color: var(--primary); font-weight: bold; }

/* Beneficiary satisfaction stat centered */
.beneficiary-stat-card {
  text-align: center;
  border-radius: 1rem;
  padding: 1.5rem;
}
.beneficiary-stat-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: rgba(22, 107, 74, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
}
.beneficiary-stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.beneficiary-stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Index: stats section tag pill */
.index-stats-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(22, 107, 74, 0.1);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

/* Service page min-height hero */
.page-hero-service { min-height: 55vh; }

/* Privacy page max-width */
.privacy-content { max-width: 48rem; }

/* =====================
   Memberships page
   ===================== */

/* Mem hero */
.mem-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 5rem 0 4rem;
}
.mem-hero .blob-1 {
  position: absolute; top: 2.5rem; left: 10%;
  width: 18rem; height: 18rem;
  background: rgba(22,107,74,0.05); border-radius: 50%; filter: blur(3rem);
}
.mem-hero .blob-2 {
  position: absolute; bottom: 2.5rem; right: 10%;
  width: 24rem; height: 24rem;
  background: rgba(217,154,6,0.05); border-radius: 50%; filter: blur(3rem);
}
.mem-hero .fade-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; height: 6rem;
  background: linear-gradient(to top, var(--background), transparent);
}
.mem-hero .container { position: relative; z-index: 10; text-align: center; }
.mem-hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.8); backdrop-filter: blur(4px);
  color: #166b4a; border: 1px solid rgba(22,107,74,0.1);
  border-radius: 9999px; padding: 0.625rem 1.25rem;
  font-size: 0.875rem; font-weight: 500; margin-bottom: 2rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.mem-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700; color: var(--foreground);
  line-height: 1.2; margin-bottom: 1.5rem;
}
.mem-hero h1 .hl {
  color: #166b4a; position: relative; display: inline-block;
}
.mem-hero h1 .hl svg {
  position: absolute; bottom: -0.5rem; right: 0; width: 100%;
}
.mem-hero p {
  font-size: 1.125rem; color: var(--muted-foreground);
  max-width: 42rem; margin: 0 auto 2.5rem; line-height: 1.7;
}
.mem-hero-btns {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
}
.btn-outline-green {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 2rem; border-radius: 0.75rem;
  border: 1px solid rgba(22,107,74,0.2); background: transparent;
  color: #166b4a; font-size: 1rem; font-weight: 500;
  text-decoration: none; cursor: pointer; transition: background 0.2s;
}
.btn-outline-green:hover { background: rgba(22,107,74,0.05); }

/* Section labels */
.sec-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(22,107,74,0.05); color: #166b4a;
  border-radius: 9999px; padding: 0.5rem 1rem;
  font-size: 0.875rem; font-weight: 500; margin-bottom: 1rem;
}
.sec-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700; margin-bottom: 1rem;
}
.sec-sub { color: var(--muted-foreground); max-width: 32rem; margin: 0 auto; }

/* Membership cards */
.mem-cards-wrap { max-width: 56rem; margin: 0 auto; }
.mem-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
@media (max-width: 680px) { .mem-row { grid-template-columns: 1fr; } }

.mem-card {
  position: relative; background: #ffffff;
  border: 2px solid var(--border); border-radius: 1.25rem;
  padding: 2rem; box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s, transform 0.3s;
}
.mem-card:hover { box-shadow: 0 12px 30px rgba(0,0,0,0.08); transform: translateY(-3px); }
.mem-card.featured { border-color: #166b4a; box-shadow: 0 0 0 1px rgba(22,107,74,0.1); }
.mem-card.gold-border { border-color: rgba(217,154,6,0.3); }
.mem-card.green-light { background: linear-gradient(135deg, #fff, rgba(22,107,74,0.02)); border-color: rgba(22,107,74,0.2); }

.mem-badge-top {
  position: absolute; top: -0.875rem; right: 1.5rem;
  padding: 0.375rem 1rem; border-radius: 9999px;
  font-size: 0.75rem; font-weight: 700;
}
.badge-green { background: #166b4a; color: #fff; box-shadow: 0 2px 8px rgba(22,107,74,0.2); }
.badge-gold  { background: #d99a06; color: #fff; }

.mem-card-head { display: flex; align-items: flex-start; gap: 1.25rem; }
.mem-icon {
  width: 4rem; height: 4rem; border-radius: 1rem; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.mem-icon.green { background: rgba(22,107,74,0.1); color: #166b4a; }
.mem-icon.gold  { background: rgba(217,154,6,0.1);  color: #d99a06; }
.mem-icon svg   { width: 2rem; height: 2rem; }

.mem-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.mem-card .card-desc { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.5; }

.mem-rights { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.625rem; }
.mem-right {
  display: flex; align-items: center; gap: 0.625rem;
  font-size: 0.875rem; color: rgba(33,37,41,0.85);
}
.mem-right svg { width: 1rem; height: 1rem; flex-shrink: 0; color: #166b4a; }
.mem-right.gold-check svg { color: #d99a06; }

.mem-card-footer {
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.mem-price { font-size: 1.75rem; font-weight: 700; color: #166b4a; }
.mem-price-label { font-size: 0.875rem; color: var(--muted-foreground); margin-right: 0.25rem; }
.mem-card-footer .btn-primary-sm {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1.25rem; border-radius: 0.75rem;
  background: #166b4a; color: #fff; font-size: 0.875rem; font-weight: 500;
  border: none; cursor: pointer; text-decoration: none;
  transition: opacity 0.2s; white-space: nowrap;
}
.mem-card-footer .btn-primary-sm:hover { opacity: 0.9; }
.honorary-note { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }
.honorary-note strong { color: #d99a06; font-weight: 600; }

.notice-bar { margin-top: 2.5rem; text-align: center; }
.notice-chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(217,154,6,0.08); color: var(--foreground);
  border: 1px solid rgba(217,154,6,0.2); border-radius: 0.75rem;
  padding: 0.75rem 1.25rem; font-size: 0.875rem;
}
.notice-chip svg { color: #d99a06; width: 1rem; height: 1rem; }

/* Partner tiers */
.partner-section { background: linear-gradient(to bottom, #fff, rgba(22,107,74,0.01)); }

.partner-featured {
  position: relative; overflow: hidden;
  border: 2px solid rgba(22,107,74,0.3); border-radius: 1.25rem;
  background: #fff; box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
}
.partner-featured-bar {
  height: 6px;
  background: linear-gradient(to left, #166b4a, rgba(22,107,74,0.4));
  border-radius: 1.25rem 1.25rem 0 0;
}
.partner-featured-top-badge {
  position: absolute; top: 1rem; left: 1rem;
  display: inline-flex; align-items: center; gap: 0.375rem;
  background: #166b4a; color: #fff;
  border-radius: 9999px; padding: 0.375rem 0.75rem;
  font-size: 0.75rem; font-weight: 700;
}
.partner-featured-inner {
  padding: 2rem 2.5rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: 2rem;
}
.partner-featured-icon {
  width: 5rem; height: 5rem; border-radius: 1rem; flex-shrink: 0;
  background: linear-gradient(135deg, #166b4a, rgba(22,107,74,0.6));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(22,107,74,0.2);
}
.partner-featured-icon svg { width: 2.5rem; height: 2.5rem; color: #fff; }
.partner-featured-body { flex: 1; min-width: 16rem; }
.partner-featured-body h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.partner-featured-body p  { color: var(--muted-foreground); margin-bottom: 1rem; }
.partner-benefits-wrap { display: flex; flex-wrap: wrap; gap: 0.625rem; }
.partner-benefit-chip {
  display: inline-flex; align-items: center; gap: 0.375rem;
  background: rgba(22,107,74,0.05); color: #166b4a;
  border-radius: 0.5rem; padding: 0.375rem 0.75rem; font-size: 0.8125rem;
}
.partner-benefit-chip svg { width: 0.875rem; height: 0.875rem; }
.partner-featured-cta { flex-shrink: 0; text-align: center; }
.partner-featured-cta .price { font-size: 2rem; font-weight: 700; color: #166b4a; }
.partner-featured-cta .price-sub { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 1rem; }

.partner-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
@media (max-width: 900px) { .partner-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px) { .partner-grid { grid-template-columns: 1fr; } }

.partner-card {
  position: relative; background: #fff;
  border: 1px solid var(--border); border-radius: 1.25rem;
  padding: 1.5rem; display: flex; flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
  overflow: hidden;
}
.partner-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); transform: translateY(-3px); }
.partner-card-bar { position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.bar-green   { background: linear-gradient(to left, #166b4a, rgba(22,107,74,0.5)); }
.bar-gold    { background: linear-gradient(to left, #d99a06, rgba(217,154,6,0.5)); }
.bar-gray    { background: linear-gradient(to left, #6b7280, rgba(107,114,128,0.5)); }
.bar-bronze  { background: linear-gradient(to left, #b87333, rgba(184,115,51,0.5)); }
.bar-red     { background: linear-gradient(to left, rgba(22,107,74,0.8), rgba(22,107,74,0.4)); }

.partner-card-head { display: flex; align-items: center; gap: 1rem; margin-top: 0.5rem; margin-bottom: 1rem; }
.partner-card-icon {
  width: 3rem; height: 3rem; border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.icon-green  { background: linear-gradient(135deg, #166b4a, rgba(22,107,74,0.6)); }
.icon-gold   { background: linear-gradient(135deg, #d99a06, rgba(217,154,6,0.6)); }
.icon-gray   { background: linear-gradient(135deg, #6b7280, rgba(107,114,128,0.6)); }
.icon-bronze { background: linear-gradient(135deg, #b87333, rgba(184,115,51,0.6)); }
.icon-red    { background: linear-gradient(135deg, rgba(22,107,74,0.8), rgba(22,107,74,0.4)); }
.partner-card-icon svg { width: 1.5rem; height: 1.5rem; }
.partner-card-head h3 { font-size: 1rem; font-weight: 700; }
.partner-card-head .p-price { font-size: 0.875rem; font-weight: 600; color: #166b4a; }

.partner-card p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; margin-bottom: 1rem; }
.partner-card ul { list-style: none; padding: 0; margin: 0 0 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.partner-card li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: rgba(33,37,41,0.85); }
.partner-card li svg { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 2px; color: #166b4a; }
.btn-outline-card {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.625rem 1rem; border-radius: 0.75rem;
  border: 1px solid rgba(22,107,74,0.2); background: transparent;
  color: #166b4a; font-size: 0.875rem; font-weight: 500;
  cursor: pointer; transition: background 0.2s; text-decoration: none;
}
.btn-outline-card:hover { background: rgba(22,107,74,0.05); }

/* Conditions */
.cond-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 1.25rem; padding: 2rem; box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  max-width: 48rem; margin: 0 auto;
}
.cond-list { display: flex; flex-direction: column; gap: 1rem; }
.cond-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.cond-num {
  width: 1.75rem; height: 1.75rem; border-radius: 50%; flex-shrink: 0;
  background: rgba(22,107,74,0.1); color: #166b4a;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8125rem; font-weight: 700; margin-top: 2px;
}
.cond-item span { line-height: 1.6; color: rgba(33,37,41,0.9); }
.cond-footer {
  margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.cond-footer p { font-size: 0.875rem; color: var(--muted-foreground); }
.btn-dl {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1.25rem; border-radius: 0.75rem;
  border: 1px solid rgba(22,107,74,0.2); background: transparent;
  color: #166b4a; font-size: 0.875rem; font-weight: 500;
  cursor: pointer; transition: background 0.2s; text-decoration: none;
}
.btn-dl:hover { background: rgba(22,107,74,0.05); }
.btn-dl svg { width: 1rem; height: 1rem; }

/* Timeline */
.timeline-section { padding: 5rem 0; background: #ffffff; position: relative; z-index: 1; }
.timeline-desktop {
  position: relative; max-width: 72rem; margin: 0 auto;
  display: flex; align-items: flex-start; justify-content: space-between;
}
.timeline-line {
  position: absolute; top: 2.5rem; left: 3rem; right: 3rem; height: 4px;
  background: linear-gradient(to left, #166b4a, rgba(22,107,74,0.2));
  border-radius: 9999px;
}
.timeline-step {
  position: relative; display: flex; flex-direction: column;
  align-items: center; text-align: center; z-index: 10; flex: 1;
}
.timeline-step-num {
  position: absolute; top: -0.5rem;
  font-size: 0.625rem; font-weight: 700; color: #166b4a;
  background: #fff; padding: 0 0.375rem; border-radius: 9999px;
}
.timeline-step-box {
  width: 5rem; height: 5rem; border-radius: 1rem;
  background: #fff; border: 2px solid rgba(22,107,74,0.3);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: border-color 0.2s, box-shadow 0.2s; margin-bottom: 1rem;
}
.timeline-step-box:hover { border-color: #166b4a; box-shadow: 0 4px 16px rgba(22,107,74,0.1); }
.timeline-step-box svg { width: 2rem; height: 2rem; color: #166b4a; }
.timeline-step-label { font-size: 0.8125rem; font-weight: 700; margin-bottom: 0.25rem; }
.timeline-step-desc  { font-size: 0.6875rem; color: var(--muted-foreground); max-width: 6rem; line-height: 1.4; }

@media (max-width: 768px) {
  .timeline-desktop { display: none; }
  .timeline-mobile  { display: flex !important; }
}
.timeline-mobile { display: none; flex-direction: column; gap: 0; max-width: 24rem; margin: 0 auto; }
.tm-item { display: flex; align-items: flex-start; gap: 1rem; }
.tm-left { display: flex; flex-direction: column; align-items: center; }
.tm-box {
  width: 3rem; height: 3rem; border-radius: 0.75rem;
  background: #fff; border: 2px solid rgba(22,107,74,0.3);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.tm-box svg { width: 1.25rem; height: 1.25rem; color: #166b4a; }
.tm-num {
  position: absolute; top: -0.5rem; right: -0.5rem;
  width: 1.25rem; height: 1.25rem; border-radius: 50%;
  background: #166b4a; color: #fff; font-size: 0.625rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.tm-connector { width: 2px; height: 2.5rem; background: linear-gradient(to bottom, rgba(22,107,74,0.4), rgba(22,107,74,0.1)); margin: 0.25rem 0; }
.tm-right { padding-top: 0.5rem; padding-bottom: 1.5rem; }
.tm-right .label { font-size: 0.875rem; font-weight: 700; }
.tm-right .desc  { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 2px; }

/* FAQ grid */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; max-width: 56rem; margin: 0 auto; }
@media (max-width: 680px) { .faq-grid { grid-template-columns: 1fr; } }

.faq-item {
  background: #fff; border: 1px solid var(--border);
  border-radius: 1.25rem; box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  overflow: hidden; transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.faq-trigger {
  width: 100%; display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 1.25rem 1.5rem; cursor: pointer; background: none; border: none;
  text-align: right; direction: rtl;
}
.faq-num {
  display: flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; border-radius: 0.625rem;
  background: rgba(22,107,74,0.1); color: #166b4a;
  font-size: 0.875rem; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.faq-trigger h4 { font-size: 0.875rem; font-weight: 600; line-height: 1.5; color: #1a1a1a; flex: 1; text-align: right; }
.faq-chevron { width: 1.25rem; height: 1.25rem; color: #6b7280; transition: transform 0.25s; flex-shrink: 0; margin-top: 4px; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-body { max-height: 200px; }
.faq-body-inner { padding: 0 1.5rem 1.25rem 1.5rem; padding-right: 4rem; font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; }

/* Dot pattern background */
.dot-bg {
  background-color: #ffffff;
  background-image: radial-gradient(circle, rgba(22,107,74,0.06) 2px, transparent 2px);
  background-size: 32px 32px;
  position: relative; z-index: 1;
}

/* CTA section (memberships) */
.cta-section { background: #ffffff; position: relative; z-index: 1; padding: 4rem 0 5rem; }
.cta-card {
  max-width: 48rem; margin: 0 auto; text-align: center;
  background: #fff; border: 1px solid var(--border);
  border-radius: 1.5rem; padding: 2.5rem 2rem;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.cta-card h2 { font-size: clamp(1.4rem, 3vw, 1.875rem); font-weight: 700; color: #1a1a1a; margin-bottom: 0.75rem; line-height: 1.3; }
.cta-card p { font-size: 0.9375rem; color: var(--muted-foreground); margin-bottom: 2rem; line-height: 1.7; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.btn-cta-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem; border-radius: 0.75rem;
  background: #166b4a; color: #fff; font-size: 1rem; font-weight: 600;
  text-decoration: none; transition: opacity 0.2s;
  box-shadow: 0 4px 12px rgba(22,107,74,0.25);
}
.btn-cta-primary:hover { opacity: 0.9; }
.btn-cta-outline-green {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem; border-radius: 0.75rem;
  border: 1px solid rgba(22,107,74,0.2); background: transparent;
  color: #166b4a; font-size: 1rem; font-weight: 500;
  text-decoration: none; transition: background 0.2s;
}
.btn-cta-outline-green:hover { background: rgba(22,107,74,0.05); }

/* =====================
   News page
   ===================== */

.featured-section {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.5);
}
.featured-card {
  border: 1px solid rgba(22,107,74,0.2);
  border-radius: 1.25rem; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  background: linear-gradient(to left, rgba(22,107,74,0.05), transparent);
}
@media (max-width: 768px) { .featured-card { grid-template-columns: 1fr; } }
.featured-thumb {
  min-height: 250px;
  background: linear-gradient(135deg, rgba(22,107,74,0.2), rgba(210,175,110,0.1));
  display: flex; align-items: center; justify-content: center; font-size: 3.5rem;
}
.featured-body { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.featured-badge {
  display: inline-block; background: #166b4a; color: #fff;
  font-size: 0.8125rem; font-weight: 600;
  padding: 0.25rem 0.875rem; border-radius: 9999px;
  margin-bottom: 0.875rem; width: fit-content;
}
.featured-body h2 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; color: #1a1a1a; line-height: 1.6; margin-bottom: 0.75rem; }
.featured-body p { font-size: 0.9375rem; color: var(--muted-foreground); line-height: 1.7; margin-bottom: 1rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.featured-meta { display: flex; gap: 1.25rem; font-size: 0.8125rem; color: var(--muted-foreground); margin-bottom: 1rem; }
.featured-meta span { display: flex; align-items: center; gap: 0.25rem; }
.featured-meta svg { width: 14px; height: 14px; }
.btn-read-more {
  display: inline-flex; align-items: center; gap: 0.375rem;
  color: #166b4a; font-weight: 600; font-size: 0.9375rem;
  background: none; border: none; cursor: pointer; padding: 0; text-decoration: none;
}
.btn-read-more:hover { text-decoration: underline; }
.btn-read-more svg { width: 16px; height: 16px; }

/* Category filter bar (news) */
.filter-section { padding: 1.5rem 0; background: rgba(255,255,255,0.8); }
.news-section { padding: 3rem 0 5rem; background: #ffffff; }

/* News card overrides for news page (more specific styles) */
.news-card { background: rgba(255,255,255,0.85); border: 1px solid rgba(0,0,0,0.08); border-radius: 1rem; overflow: hidden; transition: box-shadow 0.25s, transform 0.25s; display: flex; flex-direction: column; }
.news-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); transform: translateY(-4px); }
.news-thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, rgba(22,107,74,0.15), rgba(210,175,110,0.1)); display: flex; align-items: center; justify-content: center; font-size: 2.25rem; position: relative; transition: transform 0.3s; }
.news-card:hover .news-thumb { transform: scale(1.03); }
.news-cat-badge { position: absolute; top: 0.75rem; right: 0.75rem; background: rgba(255,255,255,0.92); color: #1a1a1a; font-size: 0.75rem; font-weight: 500; padding: 0.25rem 0.625rem; border-radius: 9999px; }
.news-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.news-body h3 { font-size: 0.9375rem; font-weight: 700; color: #1a1a1a; line-height: 1.55; margin-bottom: 0.625rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color 0.2s; }
.news-card:hover .news-body h3 { color: #166b4a; }
.news-body p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.65; margin-bottom: 1rem; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.75rem; color: var(--muted-foreground); padding-top: 0.75rem; border-top: 1px solid rgba(0,0,0,0.07); }
.news-meta span { display: flex; align-items: center; gap: 0.25rem; }
.news-meta svg { width: 12px; height: 12px; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 1024px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .news-grid { grid-template-columns: 1fr; } }

/* =====================
   Impact page
   ===================== */

.impact-hero {
  position: relative; padding: 5rem 0 4rem; overflow: hidden; text-align: center;
}
.impact-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, #166b4a 1px, transparent 1px);
  background-size: 24px 24px; opacity: 0.03;
}
.impact-hero .blob-1 { position: absolute; top: 5rem; right: 2.5rem; width: 18rem; height: 18rem; background: rgba(22,107,74,0.05); border-radius: 50%; filter: blur(3rem); }
.impact-hero .blob-2 { position: absolute; bottom: 2.5rem; left: 2.5rem; width: 24rem; height: 24rem; background: rgba(217,154,6,0.05); border-radius: 50%; filter: blur(3rem); }
.impact-hero .container { position: relative; z-index: 10; }
.impact-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(22,107,74,0.1); color: #166b4a; border-radius: 9999px; padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 500; margin-bottom: 1.5rem; }
.impact-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; color: var(--foreground); line-height: 1.3; margin-bottom: 1.5rem; }
.impact-hero h1 .highlight { color: #166b4a; }
.impact-hero .hero-desc { font-size: 1.125rem; color: var(--muted-foreground); max-width: 40rem; margin: 0 auto 2.5rem; line-height: 1.7; }
.impact-hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.btn-outline-primary { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.75rem; border-radius: 0.75rem; border: 1px solid rgba(22,107,74,0.3); background: transparent; color: var(--foreground); font-size: 1rem; font-weight: 500; text-decoration: none; cursor: pointer; transition: background 0.2s; }
.btn-outline-primary:hover { background: rgba(22,107,74,0.05); }

/* Impact stats */
.impact-stats { padding: 4rem 0; background: rgba(241,243,245,0.3); }
.impact-stats .section-label { display: block; color: #166b4a; font-size: 0.875rem; font-weight: 500; margin-bottom: 1rem; text-align: center; }
.impact-stats h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700; text-align: center; margin-bottom: 0.75rem; }
.impact-stats .sub { text-align: center; color: var(--muted-foreground); max-width: 32rem; margin: 0 auto 3rem; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 640px) { .stats-grid { grid-template-columns: 1fr; } }
.stat-card { background: rgba(255,255,255,0.8); border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem; text-align: center; transition: box-shadow 0.3s, border-color 0.3s; }
.stat-card:hover { box-shadow: 0 10px 30px rgba(22,107,74,0.08); border-color: rgba(22,107,74,0.2); }
.stat-icon { display: inline-flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; border-radius: 0.75rem; background: rgba(22,107,74,0.1); color: #166b4a; margin-bottom: 1rem; }
.stat-value { font-size: 2.25rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.25rem; }
.stat-label { font-size: 0.875rem; color: var(--muted-foreground); }

/* Opportunities */
.opportunities-section { padding: 4rem 0 5rem; }
.opportunities-section .section-label { display: block; color: #166b4a; font-size: 0.875rem; font-weight: 500; text-align: center; margin-bottom: 0.5rem; }
.opportunities-section h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700; text-align: center; margin-bottom: 0.75rem; }
.opportunities-section .sub { text-align: center; color: var(--muted-foreground); max-width: 28rem; margin: 0 auto 2.5rem; }
.cat-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 2.5rem; }
.cat-btn { padding: 0.4rem 1rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 500; border: none; cursor: pointer; transition: all 0.2s; background: var(--muted); color: var(--muted-foreground); }
.cat-btn:hover { background: rgba(22,107,74,0.1); color: #166b4a; }
.cat-btn.active { background: #166b4a; color: #ffffff; box-shadow: 0 2px 8px rgba(22,107,74,0.3); }
.opp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 1024px) { .opp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .opp-grid { grid-template-columns: 1fr; } }
.opp-card { background: rgba(255,255,255,0.8); border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem; display: flex; flex-direction: column; transition: box-shadow 0.3s, border-color 0.3s; }
.opp-card:hover { box-shadow: 0 12px 30px rgba(22,107,74,0.07); border-color: rgba(22,107,74,0.2); }
.opp-cat-badge { display: inline-flex; align-self: flex-start; align-items: center; background: rgba(22,107,74,0.1); color: #166b4a; font-size: 0.75rem; font-weight: 500; border-radius: 9999px; padding: 0.25rem 0.75rem; margin-bottom: 1rem; }
.opp-title { font-size: 1rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.5rem; transition: color 0.2s; }
.opp-card:hover .opp-title { color: #166b4a; }
.opp-desc { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; flex: 1; margin-bottom: 1.25rem; }
.opp-progress-row { display: flex; justify-content: space-between; font-size: 0.875rem; margin-bottom: 0.5rem; }
.opp-progress-row .raised { font-weight: 600; color: var(--foreground); }
.opp-progress-row .goal   { color: var(--muted-foreground); }
.progress-bar-wrap { height: 0.625rem; background: var(--muted); border-radius: 9999px; overflow: hidden; margin-bottom: 0.375rem; }
.progress-bar-fill { height: 100%; background: #166b4a; border-radius: 9999px; transition: width 0.6s ease; }
.progress-pct { font-size: 0.75rem; font-weight: 500; color: var(--muted-foreground); }
.progress-pct.done { color: #166b4a; }
.opp-meta { display: flex; align-items: center; gap: 1rem; font-size: 0.75rem; color: var(--muted-foreground); border-top: 1px solid var(--border); padding-top: 1rem; margin-top: 0.75rem; margin-bottom: 1.25rem; }
.opp-meta span { display: flex; align-items: center; gap: 0.375rem; }
.donation-section { margin-bottom: 1rem; }
.donation-label { font-size: 0.75rem; font-weight: 600; color: var(--foreground); margin-bottom: 0.5rem; }
.amount-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; margin-bottom: 0.75rem; }
.amount-btn { padding: 0.375rem 0; border-radius: 0.5rem; font-size: 0.75rem; font-weight: 500; border: 1px solid var(--border); background: rgba(241,243,245,0.5); color: var(--foreground); cursor: pointer; transition: all 0.2s; }
.amount-btn:hover { border-color: rgba(22,107,74,0.4); }
.amount-btn.selected { background: #166b4a; color: #ffffff; border-color: #166b4a; box-shadow: 0 1px 4px rgba(22,107,74,0.3); }
.custom-amount-wrap { position: relative; }
.custom-amount { width: 100%; padding: 0.5rem 0.75rem; padding-left: 2.5rem; font-size: 0.875rem; border-radius: 0.5rem; border: 1px solid var(--border); background: var(--background); color: var(--foreground); box-sizing: border-box; }
.custom-amount::placeholder { color: var(--muted-foreground); }
.custom-amount:focus { outline: none; border-color: rgba(22,107,74,0.5); box-shadow: 0 0 0 2px rgba(22,107,74,0.15); }
.currency-label { position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%); font-size: 0.75rem; color: var(--muted-foreground); }
.opp-actions { display: flex; flex-direction: column; gap: 0.5rem; }
.opp-btn-row { display: flex; gap: 0.75rem; }
.btn-donate { flex: 1; padding: 0.6rem 1rem; border-radius: 0.75rem; font-size: 0.875rem; font-weight: 500; border: none; background: #166b4a; color: #ffffff; cursor: pointer; transition: opacity 0.2s; }
.btn-donate:hover { opacity: 0.9; }
.btn-donate:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-details { flex: 1; padding: 0.6rem 1rem; border-radius: 0.75rem; font-size: 0.875rem; font-weight: 500; border: 1px solid rgba(22,107,74,0.3); background: transparent; color: var(--foreground); cursor: pointer; transition: background 0.2s; }
.btn-details:hover { background: rgba(22,107,74,0.05); }
.btn-complete { flex: 1; padding: 0.6rem 1rem; border-radius: 0.75rem; font-size: 0.875rem; font-weight: 500; border: none; background: var(--muted); color: var(--muted-foreground); cursor: not-allowed; }
.payment-icons { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 0.25rem; }
.payment-icons img { height: 1.25rem; opacity: 0.7; }

/* Modal */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1000; align-items: center; justify-content: center; padding: 1rem; }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--background); border-radius: 1rem; max-width: 42rem; width: 100%; max-height: 85vh; overflow-y: auto; position: relative; }
.modal-header { background: rgba(22,107,74,0.05); padding: 1.5rem; border-bottom: 1px solid var(--border); border-radius: 1rem 1rem 0 0; }
.modal-close { position: absolute; top: 1rem; left: 1rem; width: 2rem; height: 2rem; border-radius: 50%; border: none; background: var(--muted); color: var(--foreground); cursor: pointer; font-size: 1.125rem; display: flex; align-items: center; justify-content: center; }
.modal-body { padding: 1.5rem; }
.tabs-list { display: grid; grid-template-columns: repeat(4,1fr); gap: 0.25rem; background: rgba(241,243,245,0.5); border-radius: 0.75rem; padding: 0.25rem; margin-bottom: 1.5rem; }
.tab-btn { padding: 0.5rem; border-radius: 0.5rem; border: none; background: transparent; font-size: 0.8rem; font-weight: 500; cursor: pointer; color: var(--muted-foreground); transition: all 0.2s; }
.tab-btn.active { background: var(--background); color: var(--foreground); box-shadow: 0 1px 4px rgba(0,0,0,0.08); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.timeline { position: relative; padding-right: 1.5rem; }
.timeline::before { content: ""; position: absolute; right: 0.5rem; top: 0.5rem; bottom: 0.5rem; width: 2px; background: rgba(22,107,74,0.2); border-radius: 9999px; }
.timeline-item { position: relative; margin-bottom: 1rem; }
.timeline-dot { position: absolute; right: -1.375rem; top: 0.375rem; width: 0.75rem; height: 0.75rem; border-radius: 50%; background: #166b4a; border: 2px solid var(--background); }
.timeline-phase { font-size: 0.875rem; font-weight: 500; color: var(--foreground); }
.timeline-date  { font-size: 0.75rem;  color: var(--muted-foreground); }
.budget-item { display: flex; justify-content: space-between; align-items: center; padding: 0.75rem; background: rgba(241,243,245,0.3); border-radius: 0.75rem; margin-bottom: 0.5rem; }
.budget-item.total { background: rgba(22,107,74,0.1); border: 1px solid rgba(22,107,74,0.2); }
.budget-item .name { font-size: 0.875rem; font-weight: 500; color: var(--foreground); }
.budget-item .amount { font-size: 0.875rem; font-weight: 600; color: #166b4a; }
.no-results { text-align: center; padding: 3rem 0; color: var(--muted-foreground); display: none; }

/* Shared: section bg for pages with animated canvas */
.section-white-z1 { background-color: #ffffff; position: relative; z-index: 1; }
.section-white-solid { background: #ffffff; }


/* =====================================================================
   News / Blog Page
   ===================================================================== */

/* Hide the default Odoo full-width cover banner on the blog list page */
.website_blog #o_wblog_blog_top { display: none !important; }

/* Neutralise Odoo's wrapper padding so the news grid can control its own layout */
.website_blog #o_wblog_index_content { background: #fff !important; padding: 0 !important; }
.website_blog #o_wblog_index_content > .container { max-width: 100% !important; padding: 0 !important; }
.website_blog #o_wblog_index_content > .container > .row { display: block !important; margin: 0 !important; }
.website_blog #o_wblog_posts_loop_container { padding: 0 !important; max-width: 100% !important; width: 100% !important; }

/* Blog filter bar */
.modeem-blog-filter { padding: 1.5rem 0 0; background: #fff; }

/* ── Featured Card ─────────────────────────────────────────────── */
.featured-section { padding: 2.5rem 0; background: #fff; }

.featured-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  align-items: stretch;
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s, transform 0.25s;
}
.featured-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}

.featured-thumb {
  position: relative;
  min-height: 260px;
  background: #eef0f2;
  overflow: hidden;
}
.featured-thumb-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-body { padding: 2.25rem 2.25rem 2.25rem 0; }

.featured-badge {
  display: inline-block;
  background: rgba(22,107,74,0.1);
  color: #166b4a;
  font-size: 0.73rem;
  font-weight: 600;
  padding: 0.25rem 0.8rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.featured-body h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.45;
  margin-bottom: 0.75rem;
}

.featured-body p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 1.5rem;
}
.featured-meta span { display: inline-flex; align-items: center; gap: 0.35rem; }
.featured-meta svg { width: 14px; height: 14px; flex-shrink: 0; }

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #166b4a;
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 2px solid rgba(22,107,74,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.btn-read-more:hover { border-color: #166b4a; }
.btn-read-more svg { width: 16px; height: 16px; }

/* ── News Grid ─────────────────────────────────────────────────── */
.news-section { padding: 2.5rem 0 5rem; background: #fff; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1.5rem 0;
}

.news-empty {
  text-align: center;
  padding: 3rem;
  color: #6b7280;
  font-size: 1rem;
}

.news-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.22s, box-shadow 0.22s;
}
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  text-decoration: none;
  color: inherit;
}

/* Padding-top trick for fixed 3:2 thumbnail ratio */
.news-thumb {
  position: relative;
  width: 100%;
  padding-top: 60%;
  background: #eef0f2;
  overflow: hidden;
}
.news-thumb-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-cat-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(22,107,74,0.88);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  border-radius: 9999px;
  z-index: 1;
}

.news-body { padding: 1rem 1.25rem 1.25rem; }

.news-body h3 {
  font-size: 0.92rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-body p {
  font-size: 0.83rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 0.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: #9ca3af;
  border-top: 1px solid #f3f4f6;
  padding-top: 0.75rem;
  margin-top: 0.5rem;
}
.news-meta span { display: inline-flex; align-items: center; gap: 0.3rem; }
.news-meta svg { width: 12px; height: 12px; flex-shrink: 0; }

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .featured-card { grid-template-columns: 1fr; }
  .featured-thumb { min-height: 220px; }
  .featured-body { padding: 1.5rem; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .news-grid { grid-template-columns: 1fr; gap: 1rem; }
  .news-section { padding: 1.5rem 0 3rem; }
}
