:root {
  --ngo-primary: #244a9b;
  --ngo-primary-dark: #183976;
  --ngo-primary-soft: #eef1ff;
  --ngo-secondary: #c69214;
  --ngo-secondary-dark: #d79528;
  --ngo-dark: #152039;
  --ngo-heading: #17223b;
  --ngo-text: #596273;
  --ngo-muted: #7e8798;
  --ngo-light: #f8fafc;
  --ngo-white: #ffffff;
  --ngo-border: #e2e8f0;
  --ngo-success: #258c69;
  --ngo-shadow: 0 18px 50px rgba(26, 38, 74, 0.11);
  --ngo-shadow-sm: 0 10px 30px rgba(26, 38, 74, 0.08);
  --ngo-radius: 16px;
  --ngo-radius-lg: 24px;
}

/* -------------------------------------------------------
   Global
------------------------------------------------------- */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ngo-text);
  background: var(--ngo-white);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

body,
button,
input,
textarea,
select {
  font-family: "DM Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--ngo-heading);
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--ngo-text);
  margin-bottom: 1.25rem;
}

a {
  color: var(--ngo-primary);
  transition: all 0.25s ease;
}

a:hover {
  color: var(--ngo-primary-dark);
  text-decoration: none;
}

img {
  max-width: 100%;
}

.section-padding {
  padding: 100px 0;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--ngo-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-kicker-light {
  color: #bec8ff;
}

.section-title {
  margin-bottom: 22px;
  color: var(--ngo-heading);
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-lead {
  color: #39445a;
  font-size: 1.08rem;
  font-weight: 500;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 55px;
}

.section-heading p {
  max-width: 650px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
}

.section-heading-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  max-width: none;
  align-items: end;
  text-align: left;
}

.section-heading-split p {
  margin-right: 0;
  margin-left: 0;
}

/* -------------------------------------------------------
   Buttons
------------------------------------------------------- */

.ngo-primary-btn,
.hero-primary-btn,
.cta-primary-btn {
  display: inline-flex;
  min-height: 50px;
  padding: 12px 23px;
  border: 1px solid var(--ngo-primary);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ngo-white);
  background: var(--ngo-primary);
  box-shadow: 0 10px 25px rgba(60, 84, 200, 0.2);
  font-weight: 700;
}

.ngo-primary-btn:hover,
.hero-primary-btn:hover,
.cta-primary-btn:hover {
  border-color: var(--ngo-primary-dark);
  color: var(--ngo-white);
  background: var(--ngo-primary-dark);
  transform: translateY(-2px);
}

.ngo-light-btn {
  display: inline-flex;
  min-height: 50px;
  padding: 12px 23px;
  border: 1px solid var(--ngo-white);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ngo-primary-dark);
  background: var(--ngo-white);
  font-weight: 700;
}

.ngo-light-btn:hover {
  border-color: var(--ngo-secondary);
  color: var(--ngo-dark);
  background: var(--ngo-secondary);
}

/* -------------------------------------------------------
   Header
------------------------------------------------------- */

.site-header {
  position: relative;
  z-index: 1000;
}

.header-top {
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.9);
  background: var(--ngo-dark);
  font-size: 0.84rem;
}

.header-top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-contact,
.header-social {
  display: flex;
  align-items: center;
}

.header-contact {
  gap: 16px;
}

.header-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
}

.header-contact a:hover {
  color: var(--ngo-secondary);
}

.header-contact i {
  color: var(--ngo-secondary);
}

.contact-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.24);
}

.header-social {
  gap: 8px;
}

.social-label {
  margin-right: 5px;
  color: rgba(255, 255, 255, 0.68);
}

.header-social a {
  display: inline-flex;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--ngo-white);
}

.header-social a:hover {
  border-color: var(--ngo-secondary);
  color: var(--ngo-dark);
  background: var(--ngo-secondary);
  transform: translateY(-2px);
}

.header-main {
  position: relative;
  z-index: 999;
  border-bottom: 1px solid rgba(22, 35, 67, 0.06);
  background: var(--ngo-white);
  transition: all 0.25s ease;
}

.header-main.header-scrolled {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  box-shadow: 0 8px 30px rgba(21, 32, 57, 0.12);
  animation: headerSlideDown 0.3s ease;
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.ngo-navbar {
  min-height: 88px;
  padding: 10px 0;
}

.navbar-brand {
  padding: 0;
  margin-right: 45px;

  display: flex;
  align-items: center;
}

.site-logo {
  width: 130px;
  height: auto;

  display: block;

  object-fit: contain;

  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;

  transition: 0.3s;
}
.header-main.is-sticky .site-logo {
  width: 110px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  color: var(--ngo-heading);
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
}

.brand-text small {
  margin-top: 5px;
  color: var(--ngo-muted);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ngo-navbar .navbar-nav {
  gap: 3px;
}

.ngo-navbar .nav-link {
  position: relative;
  padding: 13px 13px !important;
  color: #384157;
  font-size: 0.91rem;
  font-weight: 600;
}

.ngo-navbar .nav-link::after {
  position: absolute;
  right: 14px;
  bottom: 6px;
  left: 14px;
  height: 2px;
  background: var(--ngo-primary);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transition: all 0.25s ease;
}

.ngo-navbar .nav-item.active .nav-link,
.ngo-navbar .nav-link:hover {
  color: var(--ngo-primary);
}

.ngo-navbar .nav-item.active .nav-link::after,
.ngo-navbar .nav-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta-item {
  margin-left: 12px;
}

.ngo-nav-button {
  display: inline-flex;
  min-height: 44px;
  padding: 9px 18px;
  border: 1px solid var(--ngo-primary);
  border-radius: 8px;
  align-items: center;
  gap: 8px;
  color: var(--ngo-white) !important;
  background: var(--ngo-primary);
  font-size: 0.87rem;
  font-weight: 700;
}

.ngo-nav-button:hover {
  border-color: var(--ngo-primary-dark);
  color: var(--ngo-white) !important;
  background: var(--ngo-primary-dark);
}

.navbar-toggler {
  width: 46px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--ngo-border);
  border-radius: 8px;
  color: var(--ngo-primary);
  background: var(--ngo-primary-soft);
}

.navbar-toggler:focus {
  outline: none;
}

.navbar-toggler-icon-custom {
  display: inline-flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

/* -------------------------------------------------------
   Hero
------------------------------------------------------- */

.hero-section {
  position: relative;
  min-height: 670px;
  padding: 120px 0 150px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-background {
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(13, 23, 48, 0.94) 0%,
    rgba(21, 35, 72, 0.85) 48%,
    rgba(21, 35, 72, 0.45) 100%
  );
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 820px;
}

.hero-kicker {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 30px;
  color: #f7cb7a;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero-content h1 {
  max-width: 820px;
  margin-bottom: 24px;
  color: var(--ngo-white);
  font-size: clamp(2.65rem, 5vw, 4.65rem);
  line-height: 1.1;
}

.hero-content p {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-primary-btn {
  border-color: var(--ngo-secondary);
  color: var(--ngo-dark);
  background: var(--ngo-secondary);
  box-shadow: 0 12px 30px rgba(241, 178, 74, 0.22);
}

.hero-primary-btn:hover {
  border-color: var(--ngo-secondary-dark);
  color: var(--ngo-dark);
  background: var(--ngo-secondary-dark);
}

.hero-outline-btn {
  display: inline-flex;
  min-height: 50px;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  color: var(--ngo-white);
  background: rgba(255, 255, 255, 0.07);
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.hero-outline-btn:hover {
  border-color: var(--ngo-white);
  color: var(--ngo-dark);
  background: var(--ngo-white);
}

.hero-highlight-wrapper {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 3;
}

.hero-highlight-card {
  display: grid;
  min-height: 105px;
  padding: 24px 30px;
  border-radius: 15px 15px 0 0;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  color: var(--ngo-white);
  background: var(--ngo-primary);
  box-shadow: var(--ngo-shadow);
}

.highlight-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--ngo-dark);
  background: var(--ngo-secondary);
  font-size: 1.25rem;
}

.hero-highlight-card strong,
.hero-highlight-card span {
  display: block;
}

.hero-highlight-card strong {
  margin-bottom: 3px;
  font-size: 1.05rem;
}

.hero-highlight-card span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
}

.hero-highlight-card > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ngo-white);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-highlight-card > a:hover {
  color: var(--ngo-secondary);
}

/* -------------------------------------------------------
   About
------------------------------------------------------- */

.about-section {
  background: var(--ngo-white);
}

.about-image-wrapper {
  position: relative;
  max-width: 570px;
  padding-right: 40px;
  padding-bottom: 42px;
}

.about-main-image {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 525px;
  border-radius: var(--ngo-radius-lg);
  box-shadow: var(--ngo-shadow);
  object-fit: cover;
}

.about-experience-card {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  width: 185px;
  padding: 24px;
  border: 8px solid var(--ngo-white);
  border-radius: 16px;
  color: var(--ngo-white);
  background: var(--ngo-primary);
  box-shadow: var(--ngo-shadow-sm);
}

.experience-number,
.experience-text {
  display: block;
}

.experience-number {
  margin-bottom: 4px;
  color: var(--ngo-secondary);
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
}

.experience-text {
  font-size: 0.82rem;
  line-height: 1.45;
}

.about-pattern {
  position: absolute;
  top: -20px;
  left: -25px;
  width: 130px;
  height: 130px;
  border-radius: 20px;
  opacity: 0.7;
  background-image: radial-gradient(
    var(--ngo-primary) 1.4px,
    transparent 1.4px
  );
  background-size: 13px 13px;
}

.about-feature-list {
  display: grid;
  margin: 30px 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px 20px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #39445a;
  font-size: 0.93rem;
  font-weight: 600;
}

.feature-check {
  display: inline-flex;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--ngo-primary);
  background: var(--ngo-primary-soft);
  font-size: 0.68rem;
}

/* -------------------------------------------------------
   Mission and Vision
------------------------------------------------------- */

.mission-section {
  background: var(--ngo-light);
}

.purpose-card {
  height: 100%;
  padding: 38px 32px;
  border: 1px solid var(--ngo-border);
  border-radius: var(--ngo-radius);
  background: var(--ngo-white);
  box-shadow: 0 7px 25px rgba(22, 35, 65, 0.04);
  transition: all 0.3s ease;
}

.purpose-card:hover {
  border-color: transparent;
  box-shadow: var(--ngo-shadow);
  transform: translateY(-7px);
}

.purpose-card-featured {
  color: var(--ngo-white);
  border-color: var(--ngo-primary);
  background: var(--ngo-primary);
}

.purpose-icon {
  display: inline-flex;
  width: 62px;
  height: 62px;
  margin-bottom: 27px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  color: var(--ngo-primary);
  background: var(--ngo-primary-soft);
  font-size: 1.45rem;
}

.purpose-card-featured .purpose-icon {
  color: var(--ngo-dark);
  background: var(--ngo-secondary);
}

.purpose-card h3 {
  margin-bottom: 17px;
  font-size: 1.45rem;
}

.purpose-card p {
  margin-bottom: 0;
}

.purpose-card-featured h3,
.purpose-card-featured p {
  color: var(--ngo-white);
}

.purpose-card-featured p {
  color: rgba(255, 255, 255, 0.8);
}

/* -------------------------------------------------------
   Featured Activity
------------------------------------------------------- */

.featured-activity-section {
  background: var(--ngo-white);
}

.featured-activity-card {
  border-radius: var(--ngo-radius-lg);
  overflow: hidden;
  background: var(--ngo-light);
  box-shadow: var(--ngo-shadow);
}

.featured-activity-image {
  position: relative;
  height: 100%;
  min-height: 580px;
}

.featured-activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.activity-badge {
  position: absolute;
  top: 25px;
  left: 25px;
  padding: 9px 15px;
  border-radius: 30px;
  color: var(--ngo-dark);
  background: var(--ngo-secondary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.featured-activity-content {
  height: 100%;
  padding: 65px 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-activity-content h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.activity-meta {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 24px;
  gap: 18px;
}

.activity-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4b566b;
  font-size: 0.86rem;
  font-weight: 600;
}

.activity-meta i {
  color: var(--ngo-primary);
}

.featured-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
  align-items: center;
  gap: 22px;
}

.activity-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ngo-primary);
  font-size: 0.9rem;
  font-weight: 700;
}

/* -------------------------------------------------------
   Activities
------------------------------------------------------- */

.activities-section {
  background: var(--ngo-light);
}

.activity-card {
  height: 100%;
  border: 1px solid var(--ngo-border);
  border-radius: var(--ngo-radius);
  overflow: hidden;
  background: var(--ngo-white);
  box-shadow: 0 7px 24px rgba(22, 35, 65, 0.05);
  transition: all 0.3s ease;
}

.activity-card:hover {
  border-color: transparent;
  box-shadow: var(--ngo-shadow);
  transform: translateY(-8px);
}

.activity-card-image {
  position: relative;
  height: 235px;
  overflow: hidden;
}

.activity-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.activity-card:hover .activity-card-image img {
  transform: scale(1.06);
}

.activity-card-icon {
  position: absolute;
  right: 22px;
  bottom: -25px;
  display: inline-flex;
  width: 56px;
  height: 56px;
  border: 5px solid var(--ngo-white);
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  color: var(--ngo-dark);
  background: var(--ngo-secondary);
  box-shadow: var(--ngo-shadow-sm);
  font-size: 1.15rem;
}

.activity-card-body {
  padding: 35px 28px 30px;
}

.activity-category {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--ngo-primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.activity-card-body h3 {
  min-height: 58px;
  margin-bottom: 15px;
  font-size: 1.35rem;
}

.activity-card-body p {
  min-height: 105px;
}

.activity-card-body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 700;
}

/* -------------------------------------------------------
   Impact
------------------------------------------------------- */

.impact-section {
  position: relative;
  color: var(--ngo-white);
  background: linear-gradient(
    135deg,
    rgba(21, 32, 57, 0.98),
    rgba(43, 62, 149, 0.95)
  );
  overflow: hidden;
}

.impact-section::before {
  position: absolute;
  top: -180px;
  right: -170px;
  width: 430px;
  height: 430px;
  border: 80px solid rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  content: "";
}

.impact-section .container {
  position: relative;
  z-index: 2;
}

.impact-section p {
  color: rgba(255, 255, 255, 0.74);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.impact-item {
  display: flex;
  min-height: 175px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  gap: 18px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.impact-icon {
  display: inline-flex;
  min-width: 50px;
  height: 50px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  color: var(--ngo-dark);
  background: var(--ngo-secondary);
  font-size: 1.05rem;
}

.impact-item h3 {
  margin-bottom: 10px;
  color: var(--ngo-white);
  font-family: "DM Sans", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
}

.impact-item p {
  margin-bottom: 0;
  font-size: 0.88rem;
  line-height: 1.65;
}

/* -------------------------------------------------------
   CTA
------------------------------------------------------- */

.community-cta-section {
  padding: 75px 0;
  background: var(--ngo-white);
}

.community-cta {
  display: flex;
  padding: 48px 55px;
  border-radius: var(--ngo-radius-lg);
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  color: var(--ngo-white);
  background: linear-gradient(
    110deg,
    var(--ngo-primary),
    var(--ngo-primary-dark)
  );
  box-shadow: var(--ngo-shadow);
}

.cta-content {
  max-width: 700px;
}

.cta-content > span {
  display: block;
  margin-bottom: 10px;
  color: var(--ngo-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-content h2 {
  margin-bottom: 12px;
  color: var(--ngo-white);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.cta-content p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.cta-actions {
  display: flex;
  min-width: 300px;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.cta-primary-btn {
  border-color: var(--ngo-secondary);
  color: var(--ngo-dark);
  background: var(--ngo-secondary);
}

.cta-primary-btn:hover {
  border-color: var(--ngo-secondary-dark);
  color: var(--ngo-dark);
  background: var(--ngo-secondary-dark);
}

.cta-outline-btn {
  display: inline-flex;
  min-height: 50px;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  color: var(--ngo-white);
  font-weight: 700;
}

.cta-outline-btn:hover {
  border-color: var(--ngo-white);
  color: var(--ngo-primary-dark);
  background: var(--ngo-white);
}

/* -------------------------------------------------------
   Footer
------------------------------------------------------- */

.footer {
  color: rgba(255, 255, 255, 0.72);
  background: #111a2d;
}

.footer-main {
  padding: 85px 0 65px;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 24px;
  align-items: center;
  gap: 13px;
}

.footer-brand img {
  width: 68px;
  height: 62px;
  border-radius: 8px;
  object-fit: contain;
}

.footer-brand span {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  color: var(--ngo-white);
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
}

.footer-brand small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.footer-social-links {
  display: flex;
  margin-top: 25px;
  gap: 9px;
}

.footer-social-links a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.04);
}

.footer-social-links a:hover {
  border-color: var(--ngo-secondary);
  color: var(--ngo-dark);
  background: var(--ngo-secondary);
  transform: translateY(-3px);
}

.footer-widget h2 {
  position: relative;
  margin-bottom: 26px;
  padding-bottom: 13px;
  color: var(--ngo-white);
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.footer-widget h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 37px;
  height: 2px;
  background: var(--ngo-secondary);
  content: "";
}

.footer-links,
.footer-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  position: relative;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
}

.footer-links a::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  border: 1px solid var(--ngo-secondary);
  border-radius: 50%;
  content: "";
}

.footer-links a:hover {
  padding-left: 21px;
  color: var(--ngo-white);
}

.footer-contact-list li {
  display: flex;
  margin-bottom: 21px;
  gap: 13px;
}

.footer-contact-icon {
  display: inline-flex;
  min-width: 36px;
  height: 36px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  color: var(--ngo-secondary);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
}

.footer-contact-list span {
  display: block;
  margin-bottom: 3px;
  color: var(--ngo-white);
  font-size: 0.76rem;
  font-weight: 700;
}

.footer-contact-list p,
.footer-contact-list a {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.84rem;
  line-height: 1.65;
}

.footer-contact-list a:hover {
  color: var(--ngo-secondary);
}

/* -------------------------------------------------------
   Copyright
------------------------------------------------------- */

.copyright-section {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.56);
  background: #0d1525;
  font-size: 0.82rem;
}

.copyright-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.copyright-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
}

.copyright-content p a {
  color: var(--ngo-secondary);
  font-weight: 700;
}

.copyright-links {
  display: flex;
  gap: 22px;
}

.copyright-links a {
  color: rgba(255, 255, 255, 0.6);
}

.copyright-links a:hover {
  color: var(--ngo-secondary);
}

/* -------------------------------------------------------
   Responsive Design
------------------------------------------------------- */

@media (max-width: 1199.98px) {
  .ngo-navbar .nav-link {
    padding-right: 9px !important;
    padding-left: 9px !important;
  }

  .featured-activity-content {
    padding: 50px 40px;
  }

  .community-cta {
    padding: 45px;
  }
}

@media (max-width: 991.98px) {
  .section-padding {
    padding: 80px 0;
  }

  .header-contact span:not(.contact-divider) {
    display: none;
  }

  .ngo-navbar {
    min-height: 80px;
  }

  .navbar-collapse {
    margin-top: 12px;
    padding: 18px;
    border: 1px solid var(--ngo-border);
    border-radius: 12px;
    background: var(--ngo-white);
    box-shadow: var(--ngo-shadow-sm);
  }

  .ngo-navbar .navbar-nav {
    align-items: stretch !important;
  }

  .ngo-navbar .nav-link {
    padding: 11px 10px !important;
    border-bottom: 1px solid var(--ngo-border);
  }

  .ngo-navbar .nav-link::after {
    display: none;
  }

  .nav-cta-item {
    margin-top: 12px;
    margin-left: 0;
  }

  .ngo-nav-button {
    width: 100%;
    justify-content: center;
  }

  .hero-section {
    min-height: 650px;
    padding-top: 100px;
  }

  .hero-overlay {
    background: rgba(13, 23, 48, 0.82);
  }

  .hero-highlight-card {
    grid-template-columns: auto 1fr;
  }

  .hero-highlight-card > a {
    grid-column: 2;
  }

  .about-image-wrapper {
    margin: 0 auto;
  }

  .featured-activity-image {
    min-height: 480px;
  }

  .section-heading-split {
    display: block;
  }

  .section-heading-split > div:first-child {
    margin-bottom: 15px;
  }

  .impact-grid {
    margin-top: 40px;
  }

  .community-cta {
    display: block;
  }

  .cta-actions {
    margin-top: 28px;
    min-width: 0;
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 65px 0;
  }

  .header-top-content {
    justify-content: center;
  }

  .header-contact {
    display: none;
  }

  .social-label {
    display: none;
  }

  .site-logo {
    width: 58px;
    height: 52px;
  }

  .brand-text strong {
    font-size: 1rem;
  }

  .brand-text small {
    font-size: 0.58rem;
  }

  .hero-section {
    min-height: 700px;
    padding: 90px 0 185px;
    text-align: center;
  }

  .hero-content {
    margin: auto;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-highlight-card {
    padding: 20px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .highlight-icon {
    margin: auto;
  }

  .hero-highlight-card > a {
    grid-column: auto;
    justify-content: center;
  }

  .about-image-wrapper {
    padding-right: 15px;
    padding-bottom: 32px;
  }

  .about-main-image {
    min-height: 390px;
  }

  .about-experience-card {
    width: 155px;
    padding: 18px;
  }

  .about-feature-list {
    grid-template-columns: 1fr;
  }

  .featured-activity-image {
    min-height: 400px;
  }

  .featured-activity-content {
    padding: 42px 28px;
  }

  .activity-card-body h3,
  .activity-card-body p {
    min-height: auto;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .impact-item {
    min-height: auto;
  }

  .community-cta {
    padding: 36px 28px;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

  .copyright-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  body {
    font-size: 15px;
  }

  .container {
    padding-right: 18px;
    padding-left: 18px;
  }

  .navbar-brand {
    margin-right: 5px;
  }

  .brand-text small {
    max-width: 145px;
  }

  .hero-section {
    min-height: 740px;
    padding-top: 70px;
  }

  .hero-content h1 {
    font-size: 2.35rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-highlight-card {
    border-radius: 12px 12px 0 0;
  }

  .about-main-image {
    min-height: 330px;
  }

  .about-pattern {
    display: none;
  }

  .purpose-card {
    padding: 30px 25px;
  }

  .featured-activity-image {
    min-height: 340px;
  }

  .featured-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .community-cta {
    padding: 32px 22px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .footer-main {
    padding: 65px 0 45px;
  }
}

/* =======================================================
   BUSOGA YAIFFE PROFESSIONAL RESPONSIVE SLIDER
======================================================= */

.by-slider {
  position: relative;
  width: 100%;
  background: #111a2d;
  overflow: hidden;
}

.by-slider-carousel {
  position: relative;
  width: 100%;
}

.by-slider-carousel,
.by-slider-carousel .owl-stage-outer,
.by-slider-carousel .owl-stage,
.by-slider-carousel .owl-item,
.by-slide {
  height: clamp(540px, 48vw, 760px);
}

.by-slide {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111a2d;
  overflow: hidden;
}

.by-slide-background {
  position: absolute;
  inset: -30px;
  z-index: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(20px);
  opacity: 0.52;
  transform: scale(1.1);
}

.by-slide-background::after {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 35, 0.18);
  content: "";
}

.by-slide-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: brightness(1.08) contrast(1.04) saturate(1.07);
  transform: scale(1);
  transition: transform 7s ease;
}

.by-slider-carousel .owl-item.active .by-slide-image {
  transform: scale(1.02);
}

.by-slide-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(8, 17, 39, 0.88) 0%,
    rgba(8, 17, 39, 0.68) 25%,
    rgba(8, 17, 39, 0.36) 43%,
    rgba(8, 17, 39, 0.12) 62%,
    rgba(8, 17, 39, 0.02) 78%,
    transparent 100%
  );
}

.by-slide-caption {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.by-slide-caption .container {
  width: 100%;
}

.by-slide-caption-inner {
  width: 100%;
  max-width: 640px;
  padding: 45px 0 90px;
  pointer-events: auto;
}

.by-slide-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  align-items: center;
  color: #f1b24a;
  background: rgba(15, 26, 58, 0.42);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.by-slide-caption h1,
.by-slide-caption h2 {
  max-width: 640px;
  margin: 0 0 19px;
  color: #ffffff;
  font-size: clamp(2.25rem, 4.4vw, 4.15rem);
  line-height: 1.09;
  text-shadow:
    0 3px 8px rgba(0, 0, 0, 0.35),
    0 12px 35px rgba(0, 0, 0, 0.25);
}

.by-slide-caption p {
  max-width: 580px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
  line-height: 1.75;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.5);
}

.by-slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.by-slider-primary,
.by-slider-secondary {
  display: inline-flex;
  min-height: 50px;
  padding: 12px 23px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.25s ease;
}

.by-slider-primary {
  border: 1px solid #f1b24a;
  color: #152039;
  background: #f1b24a;
  box-shadow: 0 12px 28px rgba(241, 178, 74, 0.28);
}

.by-slider-primary:hover {
  border-color: #d79528;
  color: #152039;
  background: #d79528;
  transform: translateY(-2px);
}

.by-slider-secondary {
  border: 1px solid rgba(255, 255, 255, 0.78);
  color: #ffffff;
  background: rgba(12, 23, 50, 0.42);
  backdrop-filter: blur(7px);
}

.by-slider-secondary:hover {
  border-color: #ffffff;
  color: #243b9f;
  background: #ffffff;
  transform: translateY(-2px);
}

.by-slider-carousel .owl-nav {
  position: static !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin: 0 !important;
}

.by-slider-carousel .owl-nav button.owl-prev,
.by-slider-carousel .owl-nav button.owl-next {
  position: absolute !important;
  top: 50% !important;
  z-index: 30 !important;
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 56px !important;
  height: 56px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 2px solid rgba(255, 255, 255, 0.85) !important;
  border-radius: 50% !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  background: rgba(9, 18, 42, 0.72) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28) !important;
  font-size: 18px !important;
  line-height: 1 !important;
  transform: translateY(-50%) !important;
  transition: all 0.25s ease !important;
  backdrop-filter: blur(8px);
}

.by-slider-carousel .owl-nav button.owl-prev {
  left: 28px !important;
}

.by-slider-carousel .owl-nav button.owl-next {
  right: 28px !important;
}

.by-slider-carousel .owl-nav button.owl-prev:hover,
.by-slider-carousel .owl-nav button.owl-next:hover {
  border-color: #f1b24a !important;
  color: #152039 !important;
  background: #f1b24a !important;
  transform: translateY(-50%) scale(1.08) !important;
}

.by-slider-carousel .owl-nav button span {
  display: none !important;
}

.by-slider-carousel .owl-nav button::before {
  display: block;
  width: 13px;
  height: 13px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  content: "";
}

.by-slider-carousel .owl-nav button.owl-prev::before {
  margin-left: 5px;
  transform: rotate(-135deg);
}

.by-slider-carousel .owl-nav button.owl-next::before {
  margin-right: 5px;
  transform: rotate(45deg);
}

.by-slider-carousel .owl-dots {
  position: absolute !important;
  right: 0;
  bottom: 28px;
  left: 0;
  z-index: 30;
  display: flex !important;
  margin: 0 !important;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.by-slider-carousel .owl-dot {
  display: inline-flex !important;
  padding: 5px !important;
}

.by-slider-carousel .owl-dot span {
  display: block !important;
  width: 9px !important;
  height: 9px !important;
  margin: 0 !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.75) !important;
  transition: all 0.25s ease !important;
}

.by-slider-carousel .owl-dot.active span {
  width: 34px !important;
  background: #f1b24a !important;
}

.by-slide-label,
.by-slide-caption h1,
.by-slide-caption h2,
.by-slide-caption p,
.by-slide-actions {
  opacity: 0;
  transform: translateY(22px);
}

.by-slider-carousel .owl-item.active .by-slide-label {
  animation: bySliderFadeUp 0.65s ease 0.15s forwards;
}

.by-slider-carousel .owl-item.active .by-slide-caption h1,
.by-slider-carousel .owl-item.active .by-slide-caption h2 {
  animation: bySliderFadeUp 0.7s ease 0.28s forwards;
}

.by-slider-carousel .owl-item.active .by-slide-caption p {
  animation: bySliderFadeUp 0.7s ease 0.42s forwards;
}

.by-slider-carousel .owl-item.active .by-slide-actions {
  animation: bySliderFadeUp 0.7s ease 0.55s forwards;
}

@keyframes bySliderFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.by-slider-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 35;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
}

.by-slider-progress-value {
  display: block;
  width: 0;
  height: 100%;
  background: #f1b24a;
}

.by-slider-progress-value.is-running {
  animation: bySliderProgress 7s linear forwards;
}

@keyframes bySliderProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@media (max-width: 1199.98px) {
  .by-slider-carousel .owl-nav button.owl-prev {
    left: 16px !important;
  }

  .by-slider-carousel .owl-nav button.owl-next {
    right: 16px !important;
  }
}

@media (max-width: 991.98px) {
  .by-slider-carousel,
  .by-slider-carousel .owl-stage-outer,
  .by-slider-carousel .owl-stage,
  .by-slider-carousel .owl-item,
  .by-slide {
    height: 620px;
  }

  .by-slide-shade {
    background: linear-gradient(
      90deg,
      rgba(8, 17, 39, 0.86) 0%,
      rgba(8, 17, 39, 0.66) 40%,
      rgba(8, 17, 39, 0.22) 75%,
      rgba(8, 17, 39, 0.06) 100%
    );
  }

  .by-slide-caption-inner {
    max-width: 600px;
    padding-right: 58px;
    padding-left: 58px;
  }

  .by-slider-carousel .owl-nav button.owl-prev,
  .by-slider-carousel .owl-nav button.owl-next {
    width: 47px !important;
    height: 47px !important;
  }

  .by-slider-carousel .owl-nav button.owl-prev {
    left: 10px !important;
  }

  .by-slider-carousel .owl-nav button.owl-next {
    right: 10px !important;
  }
}

@media (max-width: 767.98px) {
  .by-slider-carousel,
  .by-slider-carousel .owl-stage-outer,
  .by-slider-carousel .owl-stage,
  .by-slider-carousel .owl-item,
  .by-slide {
    height: 650px;
  }

  .by-slide-image {
    object-fit: contain;
    object-position: center top;
  }

  .by-slide-background {
    opacity: 0.62;
  }

  .by-slide-shade {
    background: linear-gradient(
      180deg,
      rgba(8, 17, 38, 0.02) 0%,
      rgba(8, 17, 38, 0.06) 32%,
      rgba(8, 17, 38, 0.56) 56%,
      rgba(8, 17, 38, 0.91) 74%,
      rgba(8, 17, 38, 0.98) 100%
    );
  }

  .by-slide-caption {
    align-items: flex-end;
    text-align: center;
  }

  .by-slide-caption-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 50px 30px 76px;
  }

  .by-slide-caption h1,
  .by-slide-caption h2 {
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .by-slide-caption p {
    margin-right: auto;
    margin-left: auto;
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .by-slide-actions {
    justify-content: center;
  }

  .by-slider-carousel .owl-nav {
    display: block !important;
  }

  .by-slider-carousel .owl-nav button.owl-prev,
  .by-slider-carousel .owl-nav button.owl-next {
    top: 34% !important;
    width: 43px !important;
    height: 43px !important;
    border-width: 1px !important;
    background: rgba(9, 18, 42, 0.78) !important;
  }

  .by-slider-carousel .owl-nav button.owl-prev {
    left: 9px !important;
  }

  .by-slider-carousel .owl-nav button.owl-next {
    right: 9px !important;
  }

  .by-slider-carousel .owl-dots {
    bottom: 18px;
  }
}

@media (max-width: 575.98px) {
  .by-slider-carousel,
  .by-slider-carousel .owl-stage-outer,
  .by-slider-carousel .owl-stage,
  .by-slider-carousel .owl-item,
  .by-slide {
    height: 680px;
  }

  .by-slide-caption-inner {
    padding-right: 20px;
    padding-bottom: 75px;
    padding-left: 20px;
  }

  .by-slide-label {
    margin-bottom: 13px;
    padding: 7px 12px;
    font-size: 0.64rem;
  }

  .by-slide-caption h1,
  .by-slide-caption h2 {
    margin-bottom: 14px;
    font-size: 2rem;
  }

  .by-slide-caption p {
    margin-bottom: 23px;
    font-size: 0.91rem;
  }

  .by-slide-actions {
    flex-direction: column;
  }

  .by-slide-actions .btn {
    width: 100%;
  }
}

/* =======================================================
   SLIDER INFORMATION ENHANCEMENTS
======================================================= */

.by-slide-topline {
  display: flex;
  max-width: 640px;
  margin-bottom: 18px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.by-slide-topline .by-slide-label {
  margin-bottom: 0;
}

.by-slide-number {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  color: rgba(255, 255, 255, 0.9);

  font-family: "DM Sans", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.by-slide-number span {
  color: var(--ngo-secondary);
}

.by-slide-points {
  display: flex;
  max-width: 620px;
  margin: -8px 0 28px;
  flex-wrap: wrap;
  gap: 9px;
}

.by-slide-points span {
  display: inline-flex;
  min-height: 34px;
  padding: 7px 12px;

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;

  align-items: center;
  gap: 7px;

  color: rgba(255, 255, 255, 0.93);
  background: rgba(12, 23, 50, 0.34);

  font-size: 0.75rem;
  font-weight: 600;

  backdrop-filter: blur(7px);
}

.by-slide-points i {
  color: var(--ngo-secondary);
  font-size: 0.62rem;
}

.by-slider-scroll {
  position: absolute;
  right: 35px;
  bottom: 28px;
  z-index: 34;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: rgba(255, 255, 255, 0.85);

  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.by-slider-scroll:hover {
  color: var(--ngo-secondary);
}

.by-slider-scroll i {
  animation: bySliderScrollBounce 1.7s ease-in-out infinite;
}

@keyframes bySliderScrollBounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

/*
|--------------------------------------------------------------------------
| Improved desktop photograph presentation
|--------------------------------------------------------------------------
*/

@media (min-width: 992px) {
  .by-slide-image {
    object-fit: cover;
    object-position: center;
  }

  .by-slide-caption-inner {
    max-width: 670px;
    padding-right: 25px;
  }
}

/*
|--------------------------------------------------------------------------
| Tablet adjustments
|--------------------------------------------------------------------------
*/

@media (max-width: 991.98px) {
  .by-slide-topline {
    max-width: 100%;
  }

  .by-slide-points {
    justify-content: flex-start;
  }

  .by-slider-scroll {
    display: none;
  }
}

/*
|--------------------------------------------------------------------------
| Mobile slider
|--------------------------------------------------------------------------
*/

@media (max-width: 767.98px) {
  .by-slider-carousel,
  .by-slider-carousel .owl-stage-outer,
  .by-slider-carousel .owl-stage,
  .by-slider-carousel .owl-item,
  .by-slide {
    height: min(780px, calc(100svh - 70px));
    min-height: 650px;
  }

  .by-slide-image {
    height: 48%;
    object-fit: cover;
    object-position: center top;
  }

  .by-slide-background {
    opacity: 0.52;
  }

  .by-slide-shade {
    background: linear-gradient(
      180deg,
      rgba(8, 17, 38, 0.04) 0%,
      rgba(8, 17, 38, 0.12) 30%,
      rgba(8, 17, 38, 0.78) 48%,
      rgba(8, 17, 38, 0.98) 67%,
      #081126 100%
    );
  }

  .by-slide-caption-inner {
    padding-top: 300px;
  }

  .by-slide-topline {
    justify-content: center;
  }

  .by-slide-number {
    display: none;
  }

  .by-slide-points {
    margin-top: -5px;
    margin-bottom: 23px;
    justify-content: center;
  }

  .by-slide-points span {
    min-height: 31px;
    padding: 6px 10px;
    font-size: 0.68rem;
  }
}

/*
|--------------------------------------------------------------------------
| Small phones
|--------------------------------------------------------------------------
*/

@media (max-width: 575.98px) {
  .by-slider-carousel,
  .by-slider-carousel .owl-stage-outer,
  .by-slider-carousel .owl-stage,
  .by-slider-carousel .owl-item,
  .by-slide {
    height: auto;
    min-height: 720px;
  }

  .by-slide-caption-inner {
    padding-top: 280px;
    padding-bottom: 70px;
  }

  .by-slide-caption h1,
  .by-slide-caption h2 {
    font-size: clamp(1.8rem, 8.7vw, 2.25rem);
    line-height: 1.14;
  }

  .by-slide-caption p {
    font-size: 0.89rem;
    line-height: 1.58;
  }

  .by-slide-points {
    gap: 6px;
  }

  .by-slide-points span {
    padding-right: 9px;
    padding-left: 9px;
  }

  .by-slider-carousel .owl-nav button.owl-prev,
  .by-slider-carousel .owl-nav button.owl-next {
    top: 23% !important;
  }
}
/* =======================================================
   MEDICAL CAMP FIRST-VISIT POPUP
======================================================= */

.medical-camp-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;

  display: flex;
  padding: 24px;

  align-items: center;
  justify-content: center;

  visibility: hidden;
  opacity: 0;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.medical-camp-modal.is-visible {
  visibility: visible;
  opacity: 1;
}

.medical-camp-backdrop {
  position: absolute;
  inset: 0;

  background: rgba(7, 17, 29, 0.84);

  backdrop-filter: blur(7px);
}

.medical-camp-dialog {
  position: relative;
  z-index: 2;

  display: grid;
  width: min(1080px, 100%);
  max-height: calc(100vh - 48px);

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;

  grid-template-columns: minmax(320px, 0.9fr) minmax(380px, 1.1fr);

  overflow: hidden;

  background: #ffffff;

  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.42);

  transform: translateY(30px) scale(0.97);
  transition: transform 0.35s ease;
}

.medical-camp-modal.is-visible .medical-camp-dialog {
  transform: translateY(0) scale(1);
}

.medical-camp-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;

  display: inline-flex;
  width: 44px;
  height: 44px;
  padding: 0;

  border: 0;
  border-radius: 50%;

  align-items: center;
  justify-content: center;

  color: #ffffff;
  background: rgba(9, 24, 45, 0.84);

  cursor: pointer;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);

  transition: all 0.25s ease;
}

.medical-camp-close:hover {
  color: #ffffff;
  background: #c72c2c;
  transform: rotate(90deg);
}

.medical-camp-poster {
  position: relative;

  min-height: 630px;

  overflow: hidden;

  background: #eaf2e6;
}

.medical-camp-poster img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: top center;
}

.medical-camp-content {
  padding: 55px 48px;

  overflow-y: auto;

  background:
    radial-gradient(
      circle at top right,
      rgba(35, 120, 62, 0.1),
      transparent 42%
    ),
    #ffffff;
}

.medical-camp-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 13px;

  border-radius: 30px;

  color: #ffffff;
  background: #17703a;

  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.medical-camp-content h2 {
  margin-bottom: 17px;

  color: #102d1c;

  font-size: clamp(2rem, 4vw, 3rem);
}

.medical-camp-content > p {
  margin-bottom: 27px;

  color: #526159;

  font-size: 1rem;
}

.medical-camp-details {
  display: grid;
  margin: 0 0 28px;
  padding: 0;

  gap: 12px;

  list-style: none;
}

.medical-camp-details li {
  display: flex;
  padding: 14px 16px;

  border: 1px solid #dce9df;
  border-radius: 12px;

  align-items: center;
  gap: 14px;

  background: #f7fbf7;
}

.medical-camp-details i {
  display: inline-flex;
  min-width: 42px;
  height: 42px;

  border-radius: 10px;

  align-items: center;
  justify-content: center;

  color: #ffffff;
  background: #17703a;
}

.medical-camp-details span {
  color: #58645d;
  font-size: 0.88rem;
}

.medical-camp-details strong {
  display: block;

  color: #172b20;

  font-size: 0.78rem;
  text-transform: uppercase;
}

.medical-camp-services {
  display: flex;
  margin-bottom: 30px;

  flex-wrap: wrap;
  gap: 8px;
}

.medical-camp-services > strong {
  width: 100%;
  margin-bottom: 5px;

  color: #183423;
}

.medical-camp-services span {
  display: inline-flex;
  padding: 7px 11px;

  border: 1px solid #d9e7dc;
  border-radius: 30px;

  color: #466052;
  background: #f8fbf8;

  font-size: 0.76rem;
  font-weight: 600;
}

.medical-camp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.medical-camp-primary-btn,
.medical-camp-secondary-btn {
  display: inline-flex;
  min-height: 50px;
  padding: 12px 21px;

  border-radius: 9px;

  align-items: center;
  justify-content: center;
  gap: 9px;

  font-weight: 700;
}

.medical-camp-primary-btn {
  border: 1px solid #17703a;

  color: #ffffff;
  background: #17703a;
}

.medical-camp-primary-btn:hover {
  border-color: #0e552a;

  color: #ffffff;
  background: #0e552a;
}

.medical-camp-secondary-btn {
  border: 1px solid #cbd8ce;

  color: #283b30;
  background: #ffffff;
}

.medical-camp-secondary-btn:hover {
  border-color: #17703a;

  color: #17703a;
  background: #f5faf6;
}

body.medical-camp-open {
  overflow: hidden;
}

/* Event poster works better as a complete portrait image */
.by-slider-carousel .owl-item:first-child .by-slide-image {
  object-fit: contain;
  object-position: center;
}

.by-slider-carousel .owl-item:first-child .by-slide-background {
  opacity: 0.7;
}

/* =======================================================
   TABLET
======================================================= */

@media (max-width: 991.98px) {
  .medical-camp-dialog {
    grid-template-columns: minmax(280px, 0.85fr) minmax(340px, 1.15fr);
  }

  .medical-camp-content {
    padding: 45px 32px;
  }
}

/* =======================================================
   MOBILE
======================================================= */

@media (max-width: 767.98px) {
  .medical-camp-modal {
    padding: 12px;
    align-items: flex-start;
    overflow-y: auto;
  }

  .medical-camp-dialog {
    display: block;

    max-height: none;
    margin: 12px 0;

    border-radius: 18px;
  }

  .medical-camp-poster {
    min-height: 0;
    max-height: none;
  }

  .medical-camp-poster img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;
  }

  .medical-camp-content {
    padding: 35px 24px;
    overflow: visible;
  }

  .medical-camp-content h2 {
    font-size: 2rem;
  }

  .medical-camp-actions {
    flex-direction: column;
  }

  .medical-camp-actions .btn {
    width: 100%;
  }

  .medical-camp-close {
    position: fixed;
    top: 20px;
    right: 20px;
  }
}

/* =======================================================
   ABOUT US PAGE
======================================================= */

/* -------------------------------------------------------
   Page banner
------------------------------------------------------- */

.about-page-banner {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ngo-dark);
}

.about-page-banner-image,
.about-page-banner-overlay {
  position: absolute;
  inset: 0;
}

.about-page-banner-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.03);
}

.about-page-banner-overlay {
  background: linear-gradient(
    90deg,
    rgba(12, 24, 54, 0.96) 0%,
    rgba(20, 37, 83, 0.82) 52%,
    rgba(20, 37, 83, 0.48) 100%
  );
}

.about-page-banner-container {
  position: relative;
  z-index: 2;
}

.about-page-banner-content {
  max-width: 750px;
  padding: 85px 0;
}

.about-page-kicker {
  display: inline-flex;
  margin-bottom: 17px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  color: var(--ngo-secondary);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.about-page-banner h1 {
  margin-bottom: 18px;
  color: var(--ngo-white);
  font-size: clamp(2.7rem, 6vw, 4.7rem);
}

.about-page-banner p {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

.about-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ngo-white);
  font-weight: 600;
}

.about-breadcrumb a:hover {
  color: var(--ngo-secondary);
}

.about-breadcrumb > span:last-child {
  color: var(--ngo-secondary);
  font-weight: 700;
}

/* -------------------------------------------------------
   Introduction
------------------------------------------------------- */

.about-introduction-section {
  background: var(--ngo-white);
}

.about-page-image-wrapper {
  position: relative;
  max-width: 570px;
  padding: 25px 45px 45px 0;
}

.about-page-main-image {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 560px;
  border-radius: var(--ngo-radius-lg);
  object-fit: cover;
  box-shadow: var(--ngo-shadow);
}

.about-page-pattern {
  position: absolute;
  top: 0;
  left: -30px;
  width: 160px;
  height: 160px;
  border-radius: 20px;
  background-image: radial-gradient(
    var(--ngo-primary) 1.5px,
    transparent 1.5px
  );
  background-size: 14px 14px;
  opacity: 0.58;
}

.about-founded-card {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  width: 205px;
  padding: 25px;
  border: 8px solid var(--ngo-white);
  border-radius: 18px;
  color: var(--ngo-white);
  background: var(--ngo-primary);
  box-shadow: var(--ngo-shadow-sm);
}

.about-founded-year,
.about-founded-text {
  display: block;
}

.about-founded-year {
  margin-bottom: 4px;
  color: var(--ngo-secondary);
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 700;
}

.about-founded-text {
  font-size: 0.8rem;
  line-height: 1.45;
}

.about-page-features {
  display: grid;
  margin-top: 32px;
  gap: 17px;
}

.about-page-feature {
  display: flex;
  padding: 18px;
  border: 1px solid var(--ngo-border);
  border-radius: 13px;
  align-items: flex-start;
  gap: 15px;
  background: var(--ngo-light);
}

.about-page-feature-icon {
  display: inline-flex;
  min-width: 46px;
  height: 46px;
  border-radius: 11px;
  align-items: center;
  justify-content: center;
  color: var(--ngo-primary);
  background: var(--ngo-primary-soft);
}

.about-page-feature h3 {
  margin-bottom: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.96rem;
}

.about-page-feature p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.6;
}

/* -------------------------------------------------------
   Mission and vision
------------------------------------------------------- */

.about-purpose-section {
  background: var(--ngo-light);
}

.about-purpose-card {
  position: relative;
  height: 100%;
  padding: 42px 38px;
  border: 1px solid var(--ngo-border);
  border-radius: var(--ngo-radius);
  overflow: hidden;
  background: var(--ngo-white);
  box-shadow: var(--ngo-shadow-sm);
}

.about-purpose-card-featured {
  border-color: var(--ngo-primary);
  color: var(--ngo-white);
  background: linear-gradient(
    135deg,
    var(--ngo-primary),
    var(--ngo-primary-dark)
  );
}

.about-purpose-icon {
  display: inline-flex;
  width: 62px;
  height: 62px;
  margin-bottom: 25px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  color: var(--ngo-primary);
  background: var(--ngo-primary-soft);
  font-size: 1.3rem;
}

.about-purpose-card-featured .about-purpose-icon {
  color: var(--ngo-dark);
  background: var(--ngo-secondary);
}

.about-purpose-number {
  position: absolute;
  top: 23px;
  right: 28px;
  color: rgba(60, 84, 200, 0.12);
  font-size: 3rem;
  font-weight: 800;
}

.about-purpose-card-featured .about-purpose-number {
  color: rgba(255, 255, 255, 0.12);
}

.about-purpose-card h3 {
  margin-bottom: 17px;
  font-size: 1.6rem;
}

.about-purpose-card p {
  margin: 0;
}

.about-purpose-card-featured h3 {
  color: var(--ngo-white);
}

.about-purpose-card-featured p {
  color: rgba(255, 255, 255, 0.82);
}

/* -------------------------------------------------------
   Olwekobaano
------------------------------------------------------- */

.about-olwekobaano-section {
  padding: 90px 0;
  background: var(--ngo-white);
}

.about-olwekobaano-card {
  display: grid;
  border-radius: var(--ngo-radius-lg);
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  background: linear-gradient(
    130deg,
    var(--ngo-primary),
    var(--ngo-primary-dark)
  );
  box-shadow: var(--ngo-shadow);
}

.about-olwekobaano-content {
  padding: 65px 58px;
}

.about-olwekobaano-content h2 {
  margin-bottom: 20px;
  color: var(--ngo-white);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}

.about-olwekobaano-content p {
  color: rgba(255, 255, 255, 0.8);
}

.about-olwekobaano-meta {
  display: grid;
  margin: 28px 0;
  gap: 11px;
}

.about-olwekobaano-meta span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 600;
}

.about-olwekobaano-meta i {
  color: var(--ngo-secondary);
}

.about-olwekobaano-image {
  min-height: 630px;
  background: #eaf0e5;
}

.about-olwekobaano-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* -------------------------------------------------------
   Objectives
------------------------------------------------------- */

.about-objectives-section {
  background: var(--ngo-light);
}

.about-objectives-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.about-objective-card {
  position: relative;
  min-height: 300px;
  padding: 35px;
  border: 1px solid var(--ngo-border);
  border-radius: var(--ngo-radius);
  overflow: hidden;
  background: var(--ngo-white);
  transition: all 0.3s ease;
}

.about-objective-card:hover {
  border-color: transparent;
  box-shadow: var(--ngo-shadow);
  transform: translateY(-6px);
}

.about-objective-number {
  position: absolute;
  top: 22px;
  right: 27px;
  color: rgba(60, 84, 200, 0.1);
  font-size: 2.9rem;
  font-weight: 800;
}

.about-objective-icon {
  display: inline-flex;
  width: 55px;
  height: 55px;
  margin-bottom: 24px;
  border-radius: 13px;
  align-items: center;
  justify-content: center;
  color: var(--ngo-primary);
  background: var(--ngo-primary-soft);
  font-size: 1.18rem;
}

.about-objective-card h3 {
  max-width: 360px;
  margin-bottom: 14px;
  font-size: 1.28rem;
}

.about-objective-card p {
  margin: 0;
  font-size: 0.92rem;
}

/* -------------------------------------------------------
   Achievements
------------------------------------------------------- */

.about-achievements-section {
  background: var(--ngo-white);
}

.about-achievements-image {
  position: relative;
  padding: 0 32px 40px 0;
}

.about-achievements-image > img {
  width: 100%;
  min-height: 610px;
  border-radius: var(--ngo-radius-lg);
  object-fit: cover;
  box-shadow: var(--ngo-shadow);
}

.about-achievements-floating-card {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  max-width: 310px;
  padding: 22px;
  border: 7px solid var(--ngo-white);
  border-radius: 15px;
  align-items: center;
  gap: 14px;
  color: var(--ngo-white);
  background: var(--ngo-primary);
  box-shadow: var(--ngo-shadow-sm);
}

.about-achievements-icon {
  display: inline-flex;
  min-width: 50px;
  height: 50px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  color: var(--ngo-dark);
  background: var(--ngo-secondary);
}

.about-achievements-floating-card strong,
.about-achievements-floating-card span {
  display: block;
}

.about-achievements-floating-card strong {
  color: var(--ngo-secondary);
  font-size: 1.4rem;
}

.about-achievements-floating-card span {
  font-size: 0.74rem;
  line-height: 1.4;
}

.about-achievements-list {
  display: grid;
  margin-top: 30px;
  gap: 18px;
}

.about-achievement-item {
  display: flex;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ngo-border);
  gap: 14px;
}

.about-achievement-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.about-achievement-check {
  display: inline-flex;
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--ngo-primary);
  background: var(--ngo-primary-soft);
  font-size: 0.7rem;
}

.about-achievement-item h3 {
  margin-bottom: 5px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.98rem;
}

.about-achievement-item p {
  margin: 0;
  font-size: 0.87rem;
  line-height: 1.65;
}

/* -------------------------------------------------------
   HEAT strategy
------------------------------------------------------- */

.about-strategy-section {
  background: var(--ngo-light);
}

.about-heat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.about-heat-card {
  position: relative;
  min-height: 300px;
  padding: 33px 26px;
  border: 1px solid var(--ngo-border);
  border-radius: var(--ngo-radius);
  overflow: hidden;
  background: var(--ngo-white);
  text-align: center;
  transition: all 0.3s ease;
}

.about-heat-card:hover {
  border-color: var(--ngo-primary);
  box-shadow: var(--ngo-shadow);
  transform: translateY(-7px);
}

.about-heat-letter {
  position: absolute;
  top: -22px;
  right: -2px;
  color: rgba(60, 84, 200, 0.07);
  font-size: 8rem;
  font-weight: 800;
  line-height: 1;
}

.about-heat-icon {
  position: relative;
  display: inline-flex;
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  border-radius: 15px;
  align-items: center;
  justify-content: center;
  color: var(--ngo-primary);
  background: var(--ngo-primary-soft);
  font-size: 1.3rem;
}

.about-heat-card h3 {
  position: relative;
  margin-bottom: 13px;
  font-size: 1.32rem;
}

.about-heat-card p {
  position: relative;
  margin: 0;
  font-size: 0.86rem;
}

.about-strategy-note {
  display: flex;
  max-width: 820px;
  margin: 35px auto 0;
  padding: 21px 24px;
  border: 1px solid #dce2f4;
  border-radius: 13px;
  align-items: center;
  gap: 15px;
  background: var(--ngo-primary-soft);
}

.about-strategy-note i {
  color: var(--ngo-primary);
  font-size: 1.1rem;
}

.about-strategy-note p {
  margin: 0;
  font-size: 0.88rem;
}

/* -------------------------------------------------------
   Leadership
------------------------------------------------------- */

.about-leadership-section {
  background: var(--ngo-white);
}

.about-leadership-content {
  max-width: 570px;
}

.about-leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-leadership-item {
  display: flex;
  min-height: 110px;
  padding: 20px;
  border: 1px solid var(--ngo-border);
  border-radius: 13px;
  align-items: center;
  gap: 13px;
  color: #354056;
  background: var(--ngo-light);
  font-size: 0.88rem;
  font-weight: 700;
  transition: all 0.25s ease;
}

.about-leadership-item:hover {
  border-color: var(--ngo-primary);
  color: var(--ngo-primary);
  background: var(--ngo-primary-soft);
  transform: translateY(-3px);
}

.about-leadership-item i {
  display: inline-flex;
  min-width: 42px;
  height: 42px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  color: var(--ngo-primary);
  background: var(--ngo-white);
}

/* =======================================================
   RESPONSIVE ABOUT PAGE
======================================================= */

@media (max-width: 991.98px) {
  .about-page-banner {
    min-height: 380px;
  }

  .about-page-banner-overlay {
    background: rgba(12, 24, 54, 0.82);
  }

  .about-page-image-wrapper {
    margin: 0 auto;
  }

  .about-olwekobaano-card {
    grid-template-columns: 1fr;
  }

  .about-olwekobaano-image {
    min-height: 0;
  }

  .about-olwekobaano-image img {
    height: auto;
    object-fit: contain;
  }

  .about-objectives-grid {
    grid-template-columns: 1fr;
  }

  .about-heat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-leadership-content {
    max-width: none;
  }
}

@media (max-width: 767.98px) {
  .about-page-banner {
    min-height: 350px;
    text-align: center;
  }

  .about-page-banner-content {
    padding: 65px 0;
  }

  .about-page-banner p {
    margin-right: auto;
    margin-left: auto;
  }

  .about-breadcrumb {
    justify-content: center;
  }

  .about-page-image-wrapper {
    padding-right: 18px;
    padding-bottom: 35px;
  }

  .about-page-main-image {
    min-height: 430px;
  }

  .about-founded-card {
    width: 170px;
    padding: 18px;
  }

  .about-purpose-card {
    padding: 34px 27px;
  }

  .about-olwekobaano-section {
    padding: 65px 0;
  }

  .about-olwekobaano-content {
    padding: 42px 30px;
  }

  .about-objective-card {
    min-height: auto;
    padding: 30px 26px;
  }

  .about-achievements-image > img {
    min-height: 470px;
  }

  .about-achievements-floating-card {
    max-width: 260px;
  }

  .about-heat-grid {
    grid-template-columns: 1fr;
  }

  .about-leadership-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .about-page-banner h1 {
    font-size: 2.45rem;
  }

  .about-page-kicker {
    font-size: 0.62rem;
  }

  .about-page-main-image {
    min-height: 360px;
  }

  .about-page-pattern {
    display: none;
  }

  .about-founded-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 25px);
    margin: -45px auto 0;
  }

  .about-page-image-wrapper {
    padding: 0;
  }

  .about-olwekobaano-content {
    padding: 35px 23px;
  }

  .about-achievements-image {
    padding: 0;
  }

  .about-achievements-image > img {
    min-height: 390px;
  }

  .about-achievements-floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: calc(100% - 25px);
    margin: -35px auto 0;
  }

  .about-strategy-note {
    align-items: flex-start;
  }
}

/* =======================================================
   SERVICES PAGE
======================================================= */

/* -------------------------------------------------------
   Services banner
------------------------------------------------------- */

.services-page-banner {
  position: relative;
  min-height: 430px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: var(--ngo-dark);
}

.services-page-banner-image,
.services-page-banner-overlay {
  position: absolute;
  inset: 0;
}

.services-page-banner-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  transform: scale(1.04);
}

.services-page-banner-overlay {
  background: linear-gradient(
    90deg,
    rgba(10, 24, 51, 0.96) 0%,
    rgba(20, 42, 87, 0.84) 50%,
    rgba(20, 42, 87, 0.42) 100%
  );
}

.services-page-banner-container {
  position: relative;
  z-index: 2;
}

.services-page-banner-content {
  max-width: 760px;
  padding: 85px 0;
}

.services-page-kicker {
  display: inline-flex;
  margin-bottom: 17px;
  padding: 7px 14px;

  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 30px;

  color: var(--ngo-secondary);
  background: rgba(255, 255, 255, 0.08);

  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  backdrop-filter: blur(8px);
}

.services-page-banner h1 {
  margin-bottom: 18px;

  color: var(--ngo-white);

  font-size: clamp(2.7rem, 6vw, 4.7rem);
}

.services-page-banner p {
  max-width: 650px;
  margin-bottom: 28px;

  color: rgba(255, 255, 255, 0.82);

  font-size: 1.08rem;
}

.services-breadcrumb {
  display: flex;
  align-items: center;
  gap: 11px;

  color: rgba(255, 255, 255, 0.7);

  font-size: 0.82rem;
}

.services-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: var(--ngo-white);

  font-weight: 600;
}

.services-breadcrumb a:hover {
  color: var(--ngo-secondary);
}

.services-breadcrumb > span:last-child {
  color: var(--ngo-secondary);
  font-weight: 700;
}

/* -------------------------------------------------------
   Introduction
------------------------------------------------------- */

.services-introduction-section {
  background: var(--ngo-white);
}

.services-introduction-grid {
  display: grid;
  margin-top: 15px;

  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.services-introduction-stat {
  display: flex;
  min-height: 115px;
  padding: 23px;

  border: 1px solid var(--ngo-border);
  border-radius: 14px;

  align-items: center;
  gap: 15px;

  background: var(--ngo-light);
}

.services-introduction-icon {
  display: inline-flex;
  min-width: 50px;
  height: 50px;

  border-radius: 12px;

  align-items: center;
  justify-content: center;

  color: var(--ngo-primary);
  background: var(--ngo-primary-soft);

  font-size: 1.05rem;
}

.services-introduction-stat strong,
.services-introduction-stat span {
  display: block;
}

.services-introduction-stat strong {
  margin-bottom: 4px;

  color: var(--ngo-heading);

  font-size: 0.95rem;
}

.services-introduction-stat div > span {
  color: var(--ngo-muted);

  font-size: 0.78rem;
  line-height: 1.45;
}

/* -------------------------------------------------------
   Services grid
------------------------------------------------------- */

.services-grid-section {
  background: var(--ngo-light);
}

.services-page-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}

.service-page-card {
  height: fit-content;

  border: 1px solid var(--ngo-border);
  border-radius: var(--ngo-radius);

  overflow: hidden;

  background: var(--ngo-white);

  box-shadow: 0 8px 28px rgba(22, 35, 65, 0.05);

  transition: all 0.3s ease;
}

.service-page-card:hover {
  border-color: transparent;

  box-shadow: var(--ngo-shadow);

  transform: translateY(-7px);
}

.service-page-card-featured {
  border-color: rgba(37, 140, 105, 0.35);
}

.service-page-image {
  position: relative;
  height: 245px;

  overflow: hidden;

  background: #e8ecf4;
}

.service-page-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.55s ease;
}

.service-page-card:hover .service-page-image img {
  transform: scale(1.06);
}

.service-page-image::after {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(10, 22, 48, 0.5) 100%
  );

  content: "";
}

.service-page-number {
  position: absolute;
  top: 17px;
  left: 18px;
  z-index: 2;

  display: inline-flex;
  min-width: 41px;
  height: 31px;
  padding: 0 10px;

  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 30px;

  align-items: center;
  justify-content: center;

  color: var(--ngo-white);
  background: rgba(13, 26, 55, 0.7);

  font-size: 0.7rem;
  font-weight: 700;

  backdrop-filter: blur(8px);
}

.service-page-icon {
  position: absolute;
  right: 21px;
  bottom: -28px;
  z-index: 3;

  display: inline-flex;
  width: 62px;
  height: 62px;

  border: 5px solid var(--ngo-white);
  border-radius: 15px;

  align-items: center;
  justify-content: center;

  color: var(--ngo-dark);
  background: var(--ngo-secondary);

  box-shadow: var(--ngo-shadow-sm);

  font-size: 1.2rem;
}

.service-featured-badge {
  position: absolute;
  top: 17px;
  right: 18px;
  z-index: 2;

  padding: 7px 12px;

  border-radius: 30px;

  color: var(--ngo-white);
  background: var(--ngo-success);

  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.service-page-body {
  padding: 38px 28px 30px;
}

.service-page-category {
  display: inline-block;
  margin-bottom: 9px;

  color: var(--ngo-primary);

  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-page-body h3 {
  margin-bottom: 14px;

  font-size: 1.4rem;
}

.service-page-body > p {
  min-height: 135px;
  margin-bottom: 20px;

  font-size: 0.88rem;
  line-height: 1.68;
}

.service-page-details {
  display: grid;
  margin-bottom: 22px;

  gap: 9px;
}

.service-page-details span {
  display: flex;
  align-items: center;
  gap: 9px;

  color: #495469;

  font-size: 0.79rem;
  font-weight: 600;
}

.service-page-details i {
  display: inline-flex;
  min-width: 21px;
  height: 21px;

  border-radius: 50%;

  align-items: center;
  justify-content: center;

  color: var(--ngo-primary);
  background: var(--ngo-primary-soft);

  font-size: 0.55rem;
}

.service-page-link {
  display: inline-flex;
  padding: 0;

  border: 0;

  align-items: center;
  gap: 8px;

  color: var(--ngo-primary);
  background: transparent;

  font-size: 0.84rem;
  font-weight: 700;

  cursor: pointer;
}

.service-page-link:hover,
.service-page-link.is-active {
  color: var(--ngo-primary-dark);
}

.service-page-expanded-content {
  max-height: 0;
  margin-top: 0;

  overflow: hidden;

  opacity: 0;

  transition:
    max-height 0.45s ease,
    margin-top 0.3s ease,
    opacity 0.3s ease;
}

.service-page-expanded-content.is-visible {
  max-height: 650px;
  margin-top: 20px;

  opacity: 1;
}

.service-page-expanded-content p {
  padding-top: 15px;
  border-top: 1px solid var(--ngo-border);

  font-size: 0.83rem;
  line-height: 1.65;
}

.service-page-expanded-content p + p {
  padding-top: 0;
  border-top: 0;
}

.service-medical-camp-btn {
  display: inline-flex;
  min-height: 43px;
  padding: 10px 16px;

  border: 1px solid var(--ngo-success);
  border-radius: 8px;

  align-items: center;
  gap: 8px;

  color: var(--ngo-white);
  background: var(--ngo-success);

  font-size: 0.78rem;
  font-weight: 700;
}

.service-medical-camp-btn:hover {
  color: var(--ngo-white);
  background: #176b50;
}

/* -------------------------------------------------------
   HEAT section
------------------------------------------------------- */

.services-heat-section {
  padding: 95px 0;

  background: var(--ngo-white);
}

.services-heat-wrapper {
  display: grid;
  padding: 58px;

  border-radius: var(--ngo-radius-lg);

  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 55px;

  color: var(--ngo-white);
  background: linear-gradient(
    130deg,
    var(--ngo-primary),
    var(--ngo-primary-dark)
  );

  box-shadow: var(--ngo-shadow);
}

.services-heat-content h2 {
  margin-bottom: 18px;

  color: var(--ngo-white);

  font-size: clamp(2rem, 4vw, 3rem);
}

.services-heat-content p {
  margin-bottom: 28px;

  color: rgba(255, 255, 255, 0.78);
}

.services-heat-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.services-heat-item {
  position: relative;

  display: flex;
  min-height: 145px;
  padding: 24px;

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;

  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 9px;

  overflow: hidden;

  background: rgba(255, 255, 255, 0.07);

  backdrop-filter: blur(8px);
}

.services-heat-item > span {
  position: absolute;
  top: -25px;
  right: -2px;

  color: rgba(255, 255, 255, 0.08);

  font-size: 7rem;
  font-weight: 800;
  line-height: 1;
}

.services-heat-item i {
  position: relative;

  color: var(--ngo-secondary);

  font-size: 1.35rem;
}

.services-heat-item strong {
  position: relative;

  color: var(--ngo-white);

  font-size: 0.9rem;
}

/* =======================================================
   SERVICES PAGE RESPONSIVE
======================================================= */

@media (max-width: 1199.98px) {
  .services-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-page-body > p {
    min-height: 120px;
  }
}

@media (max-width: 991.98px) {
  .services-page-banner {
    min-height: 380px;
  }

  .services-page-banner-overlay {
    background: rgba(10, 24, 51, 0.84);
  }

  .services-introduction-grid {
    grid-template-columns: 1fr;
  }

  .services-heat-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .services-page-banner {
    min-height: 350px;

    text-align: center;
  }

  .services-page-banner-content {
    padding: 65px 0;
  }

  .services-page-banner p {
    margin-right: auto;
    margin-left: auto;
  }

  .services-breadcrumb {
    justify-content: center;
  }

  .services-page-grid {
    grid-template-columns: 1fr;
  }

  .service-page-body > p {
    min-height: auto;
  }

  .services-heat-section {
    padding: 65px 0;
  }

  .services-heat-wrapper {
    padding: 40px 28px;
  }
}

@media (max-width: 575.98px) {
  .services-page-banner h1 {
    font-size: 2.45rem;
  }

  .services-page-kicker {
    font-size: 0.62rem;
  }

  .service-page-image {
    height: 220px;
  }

  .service-page-body {
    padding: 37px 22px 27px;
  }

  .services-heat-wrapper {
    padding: 35px 22px;
  }

  .services-heat-grid {
    grid-template-columns: 1fr;
  }
}

/* =======================================================
   EVENTS PAGE
======================================================= */

/* -------------------------------------------------------
   Page banner
------------------------------------------------------- */

.events-page-banner {
  position: relative;
  min-height: 430px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: var(--ngo-dark);
}

.events-page-banner-image,
.events-page-banner-overlay {
  position: absolute;
  inset: 0;
}

.events-page-banner-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  transform: scale(1.04);
}

.events-page-banner-overlay {
  background: linear-gradient(
    90deg,
    rgba(10, 23, 49, 0.96) 0%,
    rgba(23, 41, 87, 0.83) 52%,
    rgba(23, 41, 87, 0.42) 100%
  );
}

.events-page-banner-container {
  position: relative;
  z-index: 2;
}

.events-page-banner-content {
  max-width: 760px;
  padding: 85px 0;
}

.events-page-kicker {
  display: inline-flex;
  margin-bottom: 17px;
  padding: 7px 14px;

  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 30px;

  color: var(--ngo-secondary);
  background: rgba(255, 255, 255, 0.08);

  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  backdrop-filter: blur(8px);
}

.events-page-banner h1 {
  margin-bottom: 18px;

  color: var(--ngo-white);

  font-size: clamp(2.7rem, 6vw, 4.7rem);
}

.events-page-banner p {
  max-width: 650px;
  margin-bottom: 28px;

  color: rgba(255, 255, 255, 0.82);

  font-size: 1.08rem;
}

.events-breadcrumb {
  display: flex;
  align-items: center;
  gap: 11px;

  color: rgba(255, 255, 255, 0.7);

  font-size: 0.82rem;
}

.events-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: var(--ngo-white);

  font-weight: 600;
}

.events-breadcrumb a:hover {
  color: var(--ngo-secondary);
}

.events-breadcrumb > span:last-child {
  color: var(--ngo-secondary);
  font-weight: 700;
}

/* -------------------------------------------------------
   Featured event
------------------------------------------------------- */

.events-featured-section {
  background: var(--ngo-white);
}

.events-featured-card {
  border-radius: var(--ngo-radius-lg);

  overflow: hidden;

  background: var(--ngo-light);

  box-shadow: var(--ngo-shadow);
}

.events-featured-poster {
  position: relative;

  height: 100%;
  min-height: 690px;

  background: #edf3e7;
}

.events-featured-poster img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: top center;
}

.events-featured-badge {
  position: absolute;
  top: 24px;
  left: 24px;

  padding: 9px 15px;

  border-radius: 30px;

  color: var(--ngo-white);
  background: var(--ngo-success);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);

  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.events-featured-content {
  height: 100%;
  padding: 58px 50px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.events-featured-content h2 {
  margin-bottom: 17px;

  font-size: clamp(2.25rem, 4vw, 3.4rem);
}

.events-featured-theme {
  margin-bottom: 24px;
  padding: 17px 18px;

  border-left: 4px solid var(--ngo-secondary);
  border-radius: 0 10px 10px 0;

  color: #28362f;
  background: #f3f7f2;

  font-weight: 700;
  line-height: 1.65;
}

.events-featured-meta {
  display: grid;
  margin-bottom: 25px;

  gap: 11px;
}

.events-featured-meta-item {
  display: flex;
  padding: 13px 15px;

  border: 1px solid #e0e7e1;
  border-radius: 11px;

  align-items: center;
  gap: 13px;

  background: var(--ngo-white);
}

.events-featured-meta-item > i {
  display: inline-flex;
  min-width: 41px;
  height: 41px;

  border-radius: 10px;

  align-items: center;
  justify-content: center;

  color: var(--ngo-white);
  background: var(--ngo-success);
}

.events-featured-meta-item span,
.events-featured-meta-item strong {
  display: block;
}

.events-featured-meta-item strong {
  margin-bottom: 2px;

  color: var(--ngo-heading);

  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.events-featured-meta-item span {
  color: var(--ngo-text);

  font-size: 0.84rem;
}

.events-featured-focus {
  display: flex;
  margin: 4px 0 29px;

  flex-wrap: wrap;
  gap: 8px;
}

.events-featured-focus span {
  display: inline-flex;
  min-height: 35px;
  padding: 7px 11px;

  border: 1px solid #dee6e0;
  border-radius: 30px;

  align-items: center;
  gap: 7px;

  color: #405047;
  background: var(--ngo-white);

  font-size: 0.74rem;
  font-weight: 600;
}

.events-featured-focus i {
  color: var(--ngo-success);
}

.events-featured-actions {
  display: flex;
  flex-wrap: wrap;

  align-items: center;
  gap: 20px;
}

.events-featured-link {
  display: inline-flex;

  align-items: center;
  gap: 8px;

  color: var(--ngo-primary);

  font-size: 0.86rem;
  font-weight: 700;
}

/* -------------------------------------------------------
   Summary
------------------------------------------------------- */

.events-summary-section {
  padding: 0 0 85px;

  background: var(--ngo-white);
}

.events-summary-grid {
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.events-summary-item {
  display: flex;
  min-height: 105px;
  padding: 21px;

  border: 1px solid var(--ngo-border);
  border-radius: 14px;

  align-items: center;
  gap: 13px;

  background: var(--ngo-light);
}

.events-summary-icon {
  display: inline-flex;
  min-width: 48px;
  height: 48px;

  border-radius: 12px;

  align-items: center;
  justify-content: center;

  color: var(--ngo-primary);
  background: var(--ngo-primary-soft);
}

.events-summary-item strong,
.events-summary-item div > span {
  display: block;
}

.events-summary-item strong {
  margin-bottom: 3px;

  color: var(--ngo-heading);

  font-size: 0.88rem;
}

.events-summary-item div > span {
  color: var(--ngo-muted);

  font-size: 0.73rem;
  line-height: 1.45;
}

/* -------------------------------------------------------
   Gallery
------------------------------------------------------- */

.events-gallery-section {
  background: var(--ngo-light);
}

.events-gallery-filters {
  display: flex;
  max-width: 1050px;
  margin: 0 auto 25px;

  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.events-filter-button {
  min-height: 43px;
  padding: 9px 17px;

  border: 1px solid var(--ngo-border);
  border-radius: 30px;

  color: #475168;
  background: var(--ngo-white);

  font-size: 0.79rem;
  font-weight: 700;

  cursor: pointer;

  transition: all 0.25s ease;
}

.events-filter-button:hover,
.events-filter-button.is-active {
  border-color: var(--ngo-primary);

  color: var(--ngo-white);
  background: var(--ngo-primary);

  box-shadow: 0 9px 22px rgba(60, 84, 200, 0.2);
}

.events-gallery-toolbar {
  display: flex;
  margin-bottom: 25px;
  padding-bottom: 16px;

  border-bottom: 1px solid var(--ngo-border);

  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.events-gallery-count {
  margin: 0;

  color: var(--ngo-muted);

  font-size: 0.83rem;
}

.events-gallery-count strong {
  color: var(--ngo-heading);
}

.events-gallery-reset {
  display: inline-flex;
  padding: 0;

  border: 0;

  align-items: center;
  gap: 7px;

  color: var(--ngo-primary);
  background: transparent;

  font-size: 0.78rem;
  font-weight: 700;

  cursor: pointer;
}

.events-gallery-grid {
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.events-gallery-item {
  min-width: 0;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.events-gallery-item.is-hidden {
  display: none;
}

.events-gallery-card {
  position: relative;

  display: block;
  width: 100%;
  height: 295px;
  padding: 0;

  border: 0;
  border-radius: 15px;

  overflow: hidden;

  background: #dfe5ef;

  cursor: pointer;

  box-shadow: 0 8px 25px rgba(22, 35, 65, 0.08);

  text-align: left;
}

.events-gallery-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.55s ease;
}

.events-gallery-card:hover img {
  transform: scale(1.08);
}

.events-gallery-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  padding: 18px;

  flex-direction: column;
  justify-content: space-between;

  color: var(--ngo-white);

  background: linear-gradient(
    180deg,
    rgba(8, 18, 42, 0.04) 15%,
    rgba(8, 18, 42, 0.18) 48%,
    rgba(8, 18, 42, 0.92) 100%
  );
}

.events-gallery-category {
  align-self: flex-start;

  padding: 6px 10px;

  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;

  color: var(--ngo-white);
  background: rgba(11, 23, 51, 0.58);

  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  backdrop-filter: blur(7px);
}

.events-gallery-caption {
  display: flex;

  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;

  transform: translateY(8px);

  transition: transform 0.3s ease;
}

.events-gallery-card:hover .events-gallery-caption {
  transform: translateY(0);
}

.events-gallery-caption h3 {
  margin-bottom: 4px;

  color: var(--ngo-white);

  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
}

.events-gallery-caption p {
  margin: 0;

  color: rgba(255, 255, 255, 0.76);

  font-size: 0.7rem;
  line-height: 1.45;
}

.events-gallery-expand {
  display: inline-flex;
  min-width: 38px;
  height: 38px;

  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;

  align-items: center;
  justify-content: center;

  color: var(--ngo-dark);
  background: var(--ngo-secondary);
}

.events-gallery-empty {
  padding: 70px 25px;

  border: 1px dashed var(--ngo-border);
  border-radius: 18px;

  background: var(--ngo-white);

  text-align: center;
}

.events-gallery-empty i {
  margin-bottom: 18px;

  color: var(--ngo-primary);

  font-size: 2.5rem;
}

.events-gallery-empty h3 {
  margin-bottom: 8px;
}

.events-gallery-empty p {
  margin: 0;
}

/* -------------------------------------------------------
   Lightbox
------------------------------------------------------- */

.event-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;

  display: flex;
  padding: 25px;

  align-items: center;
  justify-content: center;

  visibility: hidden;
  opacity: 0;

  transition:
    visibility 0.3s ease,
    opacity 0.3s ease;
}

.event-lightbox.is-visible {
  visibility: visible;
  opacity: 1;
}

.event-lightbox-backdrop {
  position: absolute;
  inset: 0;

  background: rgba(5, 12, 27, 0.92);

  backdrop-filter: blur(8px);
}

.event-lightbox-dialog {
  position: relative;
  z-index: 2;

  display: flex;
  width: min(1100px, 100%);
  max-height: calc(100vh - 50px);

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;

  flex-direction: column;

  overflow: hidden;

  background: #111a2d;

  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.5);

  transform: translateY(25px) scale(0.98);

  transition: transform 0.3s ease;
}

.event-lightbox.is-visible .event-lightbox-dialog {
  transform: translateY(0) scale(1);
}

.event-lightbox-image-wrapper {
  display: flex;
  min-height: 300px;
  max-height: calc(100vh - 215px);

  align-items: center;
  justify-content: center;

  background: #080f1e;
}

.event-lightbox-image-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 215px);

  object-fit: contain;
}

.event-lightbox-content {
  padding: 20px 80px 24px;

  text-align: center;
}

.event-lightbox-content > span {
  display: block;
  margin-bottom: 4px;

  color: var(--ngo-secondary);

  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-lightbox-content h2 {
  margin-bottom: 5px;

  color: var(--ngo-white);

  font-family: "DM Sans", sans-serif;
  font-size: 1.15rem;
}

.event-lightbox-content p {
  margin: 0;

  color: rgba(255, 255, 255, 0.66);

  font-size: 0.82rem;
}

.event-lightbox-close,
.event-lightbox-navigation {
  position: absolute;
  z-index: 5;

  display: inline-flex;
  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;

  align-items: center;
  justify-content: center;

  color: var(--ngo-white);
  background: rgba(7, 16, 35, 0.78);

  cursor: pointer;

  backdrop-filter: blur(8px);
}

.event-lightbox-close {
  top: 15px;
  right: 15px;

  width: 44px;
  height: 44px;
}

.event-lightbox-close:hover {
  border-color: #cc3d3d;

  background: #cc3d3d;
}

.event-lightbox-navigation {
  top: 45%;

  width: 50px;
  height: 50px;

  transform: translateY(-50%);
}

.event-lightbox-navigation:hover {
  border-color: var(--ngo-secondary);

  color: var(--ngo-dark);
  background: var(--ngo-secondary);
}

.event-lightbox-previous {
  left: 17px;
}

.event-lightbox-next {
  right: 17px;
}

body.event-lightbox-open {
  overflow: hidden;
}

/* =======================================================
   RESPONSIVE EVENTS PAGE
======================================================= */

@media (max-width: 1199.98px) {
  .events-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .events-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .events-page-banner {
    min-height: 380px;
  }

  .events-page-banner-overlay {
    background: rgba(10, 23, 49, 0.84);
  }

  .events-featured-poster {
    min-height: 0;
  }

  .events-featured-poster img {
    display: block;
    height: auto;

    object-fit: contain;
  }

  .events-featured-content {
    padding: 48px 38px;
  }

  .events-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .events-page-banner {
    min-height: 350px;

    text-align: center;
  }

  .events-page-banner-content {
    padding: 65px 0;
  }

  .events-page-banner p {
    margin-right: auto;
    margin-left: auto;
  }

  .events-breadcrumb {
    justify-content: center;
  }

  .events-featured-content {
    padding: 40px 27px;
  }

  .events-summary-grid {
    grid-template-columns: 1fr;
  }

  .events-gallery-filters {
    flex-wrap: nowrap;
    justify-content: flex-start;

    overflow-x: auto;

    scrollbar-width: thin;
  }

  .events-filter-button {
    flex: 0 0 auto;
  }

  .events-gallery-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .event-lightbox {
    padding: 12px;
  }

  .event-lightbox-dialog {
    max-height: calc(100vh - 24px);
  }

  .event-lightbox-image-wrapper,
  .event-lightbox-image-wrapper img {
    max-height: calc(100vh - 200px);
  }

  .event-lightbox-content {
    padding: 18px 50px 22px;
  }

  .event-lightbox-navigation {
    width: 43px;
    height: 43px;
  }

  .event-lightbox-previous {
    left: 9px;
  }

  .event-lightbox-next {
    right: 9px;
  }
}

@media (max-width: 575.98px) {
  .events-page-banner h1 {
    font-size: 2.45rem;
  }

  .events-page-kicker {
    font-size: 0.62rem;
  }

  .events-gallery-grid {
    grid-template-columns: 1fr;
  }

  .events-gallery-card {
    height: 300px;
  }

  .events-featured-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .events-featured-actions .btn,
  .events-featured-link {
    width: 100%;
    justify-content: center;
  }

  .event-lightbox-content {
    padding-right: 20px;
    padding-left: 20px;
  }

  .event-lightbox-navigation {
    top: 40%;
  }
}

/* =======================================================
   TEAM PAGE
======================================================= */

/* -------------------------------------------------------
   Banner
------------------------------------------------------- */

.team-page-banner {
  position: relative;
  min-height: 430px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: var(--ngo-dark);
}

.team-page-banner-image,
.team-page-banner-overlay {
  position: absolute;
  inset: 0;
}

.team-page-banner-image {
  background-position: center 25%;
  background-repeat: no-repeat;
  background-size: cover;

  transform: scale(1.04);
}

.team-page-banner-overlay {
  background: linear-gradient(
    90deg,
    rgba(10, 23, 49, 0.96) 0%,
    rgba(22, 40, 84, 0.84) 52%,
    rgba(22, 40, 84, 0.42) 100%
  );
}

.team-page-banner-container {
  position: relative;
  z-index: 2;
}

.team-page-banner-content {
  max-width: 760px;
  padding: 85px 0;
}

.team-page-kicker {
  display: inline-flex;
  margin-bottom: 17px;
  padding: 7px 14px;

  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 30px;

  color: var(--ngo-secondary);
  background: rgba(255, 255, 255, 0.08);

  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  backdrop-filter: blur(8px);
}

.team-page-banner h1 {
  margin-bottom: 18px;

  color: var(--ngo-white);

  font-size: clamp(2.7rem, 6vw, 4.7rem);
}

.team-page-banner p {
  max-width: 650px;
  margin-bottom: 28px;

  color: rgba(255, 255, 255, 0.82);

  font-size: 1.08rem;
}

.team-breadcrumb {
  display: flex;
  align-items: center;
  gap: 11px;

  color: rgba(255, 255, 255, 0.7);

  font-size: 0.82rem;
}

.team-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: var(--ngo-white);

  font-weight: 600;
}

.team-breadcrumb a:hover {
  color: var(--ngo-secondary);
}

.team-breadcrumb > span:last-child {
  color: var(--ngo-secondary);

  font-weight: 700;
}

/* -------------------------------------------------------
   Introduction
------------------------------------------------------- */

.team-introduction-section {
  background: var(--ngo-white);
}

.team-introduction-grid {
  display: grid;
  margin-top: 15px;

  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.team-introduction-item {
  display: flex;
  min-height: 112px;
  padding: 23px;

  border: 1px solid var(--ngo-border);
  border-radius: 14px;

  align-items: center;
  gap: 15px;

  background: var(--ngo-light);
}

.team-introduction-icon {
  display: inline-flex;
  min-width: 50px;
  height: 50px;

  border-radius: 12px;

  align-items: center;
  justify-content: center;

  color: var(--ngo-primary);
  background: var(--ngo-primary-soft);

  font-size: 1.05rem;
}

.team-introduction-item strong,
.team-introduction-item div > span {
  display: block;
}

.team-introduction-item strong {
  margin-bottom: 4px;

  color: var(--ngo-heading);

  font-size: 0.93rem;
}

.team-introduction-item div > span {
  color: var(--ngo-muted);

  font-size: 0.77rem;
  line-height: 1.45;
}

/* -------------------------------------------------------
   President
------------------------------------------------------- */

.team-president-section {
  padding: 0 0 95px;

  background: var(--ngo-white);
}

.team-president-card {
  display: grid;

  border-radius: var(--ngo-radius-lg);

  grid-template-columns: 0.86fr 1.14fr;

  overflow: hidden;

  background: linear-gradient(
    130deg,
    var(--ngo-primary),
    var(--ngo-primary-dark)
  );

  box-shadow: var(--ngo-shadow);
}

.team-president-image {
  position: relative;
  min-height: 610px;

  background: #dde4ea;
}

.team-president-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: top center;
}

.team-president-image::after {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(5, 17, 38, 0.55) 100%
  );

  content: "";
}

.team-president-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;

  padding: 9px 14px;

  border-radius: 30px;

  color: var(--ngo-dark);
  background: var(--ngo-secondary);

  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);

  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-president-content {
  display: flex;
  padding: 65px 58px;

  flex-direction: column;
  justify-content: center;
}

.team-president-content h2 {
  margin-bottom: 7px;

  color: var(--ngo-white);

  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.team-president-role {
  display: inline-block;
  margin-bottom: 23px;

  color: var(--ngo-secondary);

  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.team-president-content > p {
  color: rgba(255, 255, 255, 0.8);

  font-size: 0.96rem;
  line-height: 1.78;
}

.team-president-focus {
  display: flex;
  margin: 27px 0 31px;

  flex-wrap: wrap;
  gap: 9px;
}

.team-president-focus span {
  display: inline-flex;
  min-height: 38px;
  padding: 8px 12px;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;

  align-items: center;
  gap: 8px;

  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);

  font-size: 0.74rem;
  font-weight: 600;
}

.team-president-focus i {
  color: var(--ngo-secondary);
}

/* -------------------------------------------------------
   Team directory
------------------------------------------------------- */

.team-directory-section {
  background: var(--ngo-light);
}

.team-filter-buttons {
  display: flex;
  max-width: 980px;
  margin: 0 auto 34px;

  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.team-filter-button {
  min-height: 43px;
  padding: 9px 17px;

  border: 1px solid var(--ngo-border);
  border-radius: 30px;

  color: #475168;
  background: var(--ngo-white);

  font-size: 0.79rem;
  font-weight: 700;

  cursor: pointer;

  transition: all 0.25s ease;
}

.team-filter-button:hover,
.team-filter-button.is-active {
  border-color: var(--ngo-primary);

  color: var(--ngo-white);
  background: var(--ngo-primary);

  box-shadow: 0 9px 22px rgba(60, 84, 200, 0.2);
}

.team-directory-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}

.team-member-card {
  min-width: 0;

  border: 1px solid var(--ngo-border);
  border-radius: var(--ngo-radius);

  overflow: hidden;

  background: var(--ngo-white);

  box-shadow: 0 8px 25px rgba(22, 35, 65, 0.05);

  transition: all 0.3s ease;
}

.team-member-card:hover {
  border-color: transparent;

  box-shadow: var(--ngo-shadow);

  transform: translateY(-7px);
}

.team-member-card.is-hidden {
  display: none;
}

.team-member-image {
  position: relative;
  height: 340px;

  overflow: hidden;

  background: #e1e6ef;
}

.team-member-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: top center;

  transition: transform 0.55s ease;
}

.team-member-card:hover .team-member-image img {
  transform: scale(1.05);
}

.team-member-image-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(8, 20, 47, 0.62) 100%
  );
}

.team-member-icon {
  position: absolute;
  right: 21px;
  bottom: -28px;
  z-index: 3;

  display: inline-flex;
  width: 62px;
  height: 62px;

  border: 5px solid var(--ngo-white);
  border-radius: 15px;

  align-items: center;
  justify-content: center;

  color: var(--ngo-dark);
  background: var(--ngo-secondary);

  box-shadow: var(--ngo-shadow-sm);

  font-size: 1.16rem;
}

.team-member-featured-badge {
  position: absolute;
  top: 17px;
  left: 17px;
  z-index: 2;

  padding: 7px 12px;

  border-radius: 30px;

  color: var(--ngo-white);
  background: var(--ngo-success);

  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.team-member-body {
  padding: 38px 27px 29px;
}

.team-member-category {
  display: inline-block;
  margin-bottom: 8px;

  color: var(--ngo-primary);

  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.team-member-body h3 {
  margin-bottom: 5px;

  font-size: 1.28rem;
}

.team-member-role {
  min-height: 40px;
  margin-bottom: 14px;

  color: var(--ngo-success);

  font-size: 0.79rem;
  font-weight: 700;
  line-height: 1.45;
}

.team-member-summary {
  min-height: 75px;
  margin-bottom: 18px;

  color: var(--ngo-muted);

  font-size: 0.84rem;
  line-height: 1.65;
}

.team-member-more {
  display: inline-flex;
  padding: 0;

  border: 0;

  align-items: center;
  gap: 8px;

  color: var(--ngo-primary);
  background: transparent;

  font-size: 0.8rem;
  font-weight: 700;

  cursor: pointer;
}

.team-member-more:hover,
.team-member-more.is-active {
  color: var(--ngo-primary-dark);
}

.team-member-bio {
  max-height: 0;
  margin-top: 0;

  overflow: hidden;

  opacity: 0;

  transition:
    max-height 0.45s ease,
    margin-top 0.3s ease,
    opacity 0.3s ease;
}

.team-member-bio.is-visible {
  max-height: 500px;
  margin-top: 18px;

  opacity: 1;
}

.team-member-bio p {
  margin: 0;
  padding-top: 16px;

  border-top: 1px solid var(--ngo-border);

  color: var(--ngo-muted);

  font-size: 0.82rem;
  line-height: 1.68;
}

.team-empty-state {
  margin-top: 30px;
  padding: 65px 25px;

  border: 1px dashed var(--ngo-border);
  border-radius: 18px;

  background: var(--ngo-white);

  text-align: center;
}

.team-empty-state i {
  margin-bottom: 17px;

  color: var(--ngo-primary);

  font-size: 2.3rem;
}

.team-empty-state h3 {
  margin-bottom: 7px;
}

.team-empty-state p {
  margin: 0;
}

/* -------------------------------------------------------
   Structure
------------------------------------------------------- */

.team-structure-section {
  background: var(--ngo-white);
}

.team-structure-content {
  max-width: 550px;
}

.team-structure-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.team-structure-item {
  display: flex;
  min-height: 165px;
  padding: 24px;

  border: 1px solid var(--ngo-border);
  border-radius: 14px;

  align-items: flex-start;
  gap: 15px;

  background: var(--ngo-light);

  transition: all 0.25s ease;
}

.team-structure-item:hover {
  border-color: var(--ngo-primary);

  background: var(--ngo-primary-soft);

  transform: translateY(-4px);
}

.team-structure-item > span {
  display: inline-flex;
  min-width: 47px;
  height: 47px;

  border-radius: 11px;

  align-items: center;
  justify-content: center;

  color: var(--ngo-primary);
  background: var(--ngo-white);

  box-shadow: var(--ngo-shadow-sm);
}

.team-structure-item strong {
  display: block;
  margin-bottom: 7px;

  color: var(--ngo-heading);

  font-size: 0.92rem;
}

.team-structure-item p {
  margin: 0;

  color: var(--ngo-muted);

  font-size: 0.78rem;
  line-height: 1.6;
}

/* =======================================================
   RESPONSIVE TEAM PAGE
======================================================= */

@media (max-width: 1199.98px) {
  .team-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .team-page-banner {
    min-height: 380px;
  }

  .team-page-banner-overlay {
    background: rgba(10, 23, 49, 0.85);
  }

  .team-introduction-grid {
    grid-template-columns: 1fr;
  }

  .team-president-card {
    grid-template-columns: 1fr;
  }

  .team-president-image {
    min-height: 600px;
  }

  .team-president-content {
    padding: 50px 42px;
  }

  .team-structure-content {
    max-width: none;
  }
}

@media (max-width: 767.98px) {
  .team-page-banner {
    min-height: 350px;

    text-align: center;
  }

  .team-page-banner-content {
    padding: 65px 0;
  }

  .team-page-banner p {
    margin-right: auto;
    margin-left: auto;
  }

  .team-breadcrumb {
    justify-content: center;
  }

  .team-president-section {
    padding-bottom: 70px;
  }

  .team-president-image {
    min-height: 480px;
  }

  .team-president-content {
    padding: 42px 29px;
  }

  .team-filter-buttons {
    flex-wrap: nowrap;
    justify-content: flex-start;

    overflow-x: auto;

    scrollbar-width: thin;
  }

  .team-filter-button {
    flex: 0 0 auto;
  }

  .team-directory-grid {
    grid-template-columns: 1fr;
  }

  .team-structure-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .team-page-banner h1 {
    font-size: 2.45rem;
  }

  .team-page-kicker {
    font-size: 0.62rem;
  }

  .team-president-image {
    min-height: 410px;
  }

  .team-president-content {
    padding: 36px 23px;
  }

  .team-president-focus {
    align-items: stretch;
    flex-direction: column;
  }

  .team-president-focus span {
    width: 100%;
  }

  .team-member-image {
    height: 380px;
  }

  .team-member-body {
    padding: 38px 22px 27px;
  }

  .team-member-role,
  .team-member-summary {
    min-height: auto;
  }
}
/* =======================================================
   CONTACT PAGE
======================================================= */

/* -------------------------------------------------------
   Banner
------------------------------------------------------- */

.contact-page-banner {
  position: relative;
  min-height: 430px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: var(--ngo-dark);
}

.contact-page-banner-image,
.contact-page-banner-overlay {
  position: absolute;
  inset: 0;
}

.contact-page-banner-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  transform: scale(1.04);
}

.contact-page-banner-overlay {
  background: linear-gradient(
    90deg,
    rgba(10, 23, 49, 0.96) 0%,
    rgba(22, 40, 84, 0.84) 52%,
    rgba(22, 40, 84, 0.42) 100%
  );
}

.contact-page-banner-container {
  position: relative;
  z-index: 2;
}

.contact-page-banner-content {
  max-width: 760px;
  padding: 85px 0;
}

.contact-page-kicker {
  display: inline-flex;
  margin-bottom: 17px;
  padding: 7px 14px;

  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 30px;

  color: var(--ngo-secondary);
  background: rgba(255, 255, 255, 0.08);

  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  backdrop-filter: blur(8px);
}

.contact-page-banner h1 {
  margin-bottom: 18px;

  color: var(--ngo-white);

  font-size: clamp(2.7rem, 6vw, 4.7rem);
}

.contact-page-banner p {
  max-width: 650px;
  margin-bottom: 28px;

  color: rgba(255, 255, 255, 0.82);

  font-size: 1.08rem;
}

.contact-breadcrumb {
  display: flex;
  align-items: center;
  gap: 11px;

  color: rgba(255, 255, 255, 0.7);

  font-size: 0.82rem;
}

.contact-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: var(--ngo-white);

  font-weight: 600;
}

.contact-breadcrumb a:hover {
  color: var(--ngo-secondary);
}

.contact-breadcrumb > span:last-child {
  color: var(--ngo-secondary);

  font-weight: 700;
}

/* -------------------------------------------------------
   Contact introduction
------------------------------------------------------- */

.contact-introduction-section {
  background: var(--ngo-white);
}

.contact-info-grid {
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.contact-info-card {
  min-height: 235px;
  padding: 30px 24px;

  border: 1px solid var(--ngo-border);
  border-radius: var(--ngo-radius);

  background: var(--ngo-light);

  text-align: center;

  transition: all 0.3s ease;
}

.contact-info-card:hover {
  border-color: var(--ngo-primary);

  background: var(--ngo-primary-soft);

  box-shadow: var(--ngo-shadow-sm);

  transform: translateY(-6px);
}

.contact-info-icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;

  border-radius: 14px;

  align-items: center;
  justify-content: center;

  color: var(--ngo-primary);
  background: var(--ngo-white);

  box-shadow: var(--ngo-shadow-sm);

  font-size: 1.18rem;
}

.contact-info-card h3 {
  margin-bottom: 11px;

  font-size: 1.1rem;
}

.contact-info-card p {
  margin: 0;

  color: var(--ngo-muted);

  font-size: 0.84rem;
  line-height: 1.7;
}

.contact-info-card a {
  display: block;

  color: var(--ngo-primary);

  word-break: break-word;
}

.contact-info-card a + a {
  margin-top: 4px;
}

.contact-info-card a:hover {
  color: var(--ngo-primary-dark);
}

/* -------------------------------------------------------
   Main contact card
------------------------------------------------------- */

.contact-form-section {
  background: var(--ngo-light);
}

.contact-main-card {
  border-radius: var(--ngo-radius-lg);

  overflow: hidden;

  background: var(--ngo-white);

  box-shadow: var(--ngo-shadow);
}

/* -------------------------------------------------------
   Contact details panel
------------------------------------------------------- */

.contact-details-panel {
  height: 100%;
  padding: 58px 45px;

  color: var(--ngo-white);
  background: linear-gradient(
    145deg,
    var(--ngo-primary),
    var(--ngo-primary-dark)
  );
}

.contact-details-panel h2 {
  margin-bottom: 18px;

  color: var(--ngo-white);

  font-size: clamp(2rem, 4vw, 2.85rem);
}

.contact-details-panel > p {
  margin-bottom: 30px;

  color: rgba(255, 255, 255, 0.78);

  font-size: 0.92rem;
  line-height: 1.75;
}

.contact-details-list {
  display: grid;

  gap: 16px;
}

.contact-details-item {
  display: flex;
  padding: 16px;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;

  align-items: flex-start;
  gap: 13px;

  background: rgba(255, 255, 255, 0.07);
}

.contact-details-item > span {
  display: inline-flex;
  min-width: 42px;
  height: 42px;

  border-radius: 10px;

  align-items: center;
  justify-content: center;

  color: var(--ngo-dark);
  background: var(--ngo-secondary);
}

.contact-details-item strong {
  display: block;
  margin-bottom: 4px;

  color: var(--ngo-white);

  font-size: 0.84rem;
}

.contact-details-item p {
  margin: 0;

  color: rgba(255, 255, 255, 0.74);

  font-size: 0.78rem;
  line-height: 1.55;
}

.contact-details-item a {
  color: rgba(255, 255, 255, 0.82);

  word-break: break-word;
}

.contact-details-item a:hover {
  color: var(--ngo-secondary);
}

.contact-social-block {
  margin-top: 35px;
  padding-top: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-social-block > span {
  display: block;
  margin-bottom: 13px;

  color: rgba(255, 255, 255, 0.68);

  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-social-links {
  display: flex;

  gap: 9px;
}

.contact-social-links a {
  display: inline-flex;
  width: 41px;
  height: 41px;

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;

  align-items: center;
  justify-content: center;

  color: var(--ngo-white);
  background: rgba(255, 255, 255, 0.08);

  transition: all 0.25s ease;
}

.contact-social-links a:hover {
  border-color: var(--ngo-secondary);

  color: var(--ngo-dark);
  background: var(--ngo-secondary);

  transform: translateY(-3px);
}

/* -------------------------------------------------------
   Contact form
------------------------------------------------------- */

.contact-form-wrapper {
  padding: 58px 50px;
}

.contact-form-heading {
  margin-bottom: 30px;
}

.contact-form-heading h2 {
  margin-bottom: 8px;

  font-size: clamp(1.9rem, 4vw, 2.65rem);
}

.contact-form-heading p {
  margin: 0;

  font-size: 0.9rem;
}

.contact-form-group {
  margin-bottom: 21px;
}

.contact-form-group label {
  display: block;
  margin-bottom: 8px;

  color: var(--ngo-heading);

  font-size: 0.79rem;
  font-weight: 700;
}

.contact-form-group label span {
  color: #cc3d3d;
}

.contact-input-wrapper {
  position: relative;
}

.contact-input-wrapper > i {
  position: absolute;
  top: 50%;
  left: 16px;

  z-index: 2;

  color: var(--ngo-primary);

  font-size: 0.88rem;

  transform: translateY(-50%);
}

.contact-textarea-wrapper > i {
  top: 18px;

  transform: none;
}

.contact-page-form .form-control {
  width: 100%;
  min-height: 50px;
  padding: 11px 16px 11px 44px;

  border: 1px solid var(--ngo-border);
  border-radius: 10px;

  color: var(--ngo-text);
  background: var(--ngo-light);

  font-size: 0.85rem;

  box-shadow: none;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.contact-page-form textarea.form-control {
  min-height: 145px;
  padding-top: 14px;

  resize: vertical;
}

.contact-page-form select.form-control {
  cursor: pointer;
}

.contact-page-form .form-control:focus {
  border-color: var(--ngo-primary);

  background: var(--ngo-white);

  box-shadow: 0 0 0 3px rgba(60, 84, 200, 0.12);

  outline: none;
}

.contact-page-form .form-control::placeholder {
  color: #9ba4b4;
}

.contact-consent {
  display: flex;
  margin: 2px 0 25px;

  align-items: flex-start;
  gap: 10px;

  color: var(--ngo-muted);

  font-size: 0.76rem;
  line-height: 1.55;

  cursor: pointer;
}

.contact-consent input {
  width: 17px;
  height: 17px;
  margin-top: 2px;

  accent-color: var(--ngo-primary);
}

.contact-form-actions {
  display: flex;

  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-submit-button {
  display: inline-flex;
  min-height: 51px;
  padding: 12px 23px;

  align-items: center;
  justify-content: center;
  gap: 9px;
}

.contact-form-actions p {
  margin: 0;

  color: var(--ngo-muted);

  font-size: 0.72rem;
}

.contact-form-actions p span {
  color: #cc3d3d;
}

/* -------------------------------------------------------
   Map
------------------------------------------------------- */

.contact-map-section {
  padding: 95px 0;

  background: var(--ngo-white);
}

.contact-map-heading {
  display: grid;
  margin-bottom: 35px;

  grid-template-columns: 1fr 0.75fr;
  align-items: end;
  gap: 45px;
}

.contact-map-heading p {
  margin: 0;

  color: var(--ngo-muted);
}

.contact-map-wrapper {
  position: relative;

  min-height: 520px;

  border-radius: var(--ngo-radius-lg);

  overflow: hidden;

  background: #e6eaf1;

  box-shadow: var(--ngo-shadow);
}

.contact-map-wrapper iframe {
  display: block;
  width: 100%;
  height: 520px;

  border: 0;
}

.contact-map-card {
  position: absolute;
  right: 28px;
  bottom: 28px;

  display: flex;
  width: min(340px, calc(100% - 56px));
  padding: 22px;

  border-radius: 15px;

  align-items: flex-start;
  gap: 14px;

  background: var(--ngo-white);

  box-shadow: 0 20px 50px rgba(15, 30, 62, 0.25);
}

.contact-map-card-icon {
  display: inline-flex;
  min-width: 48px;
  height: 48px;

  border-radius: 11px;

  align-items: center;
  justify-content: center;

  color: var(--ngo-white);
  background: var(--ngo-primary);
}

.contact-map-card strong {
  display: block;
  margin-bottom: 7px;

  color: var(--ngo-heading);

  font-size: 0.93rem;
}

.contact-map-card p {
  margin-bottom: 10px;

  color: var(--ngo-muted);

  font-size: 0.78rem;
  line-height: 1.55;
}

.contact-map-card a {
  display: inline-flex;

  align-items: center;
  gap: 7px;

  color: var(--ngo-primary);

  font-size: 0.75rem;
  font-weight: 700;
}

/* =======================================================
   RESPONSIVE CONTACT PAGE
======================================================= */

@media (max-width: 1199.98px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .contact-page-banner {
    min-height: 380px;
  }

  .contact-page-banner-overlay {
    background: rgba(10, 23, 49, 0.85);
  }

  .contact-details-panel,
  .contact-form-wrapper {
    padding: 48px 38px;
  }

  .contact-map-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 767.98px) {
  .contact-page-banner {
    min-height: 350px;

    text-align: center;
  }

  .contact-page-banner-content {
    padding: 65px 0;
  }

  .contact-page-banner p {
    margin-right: auto;
    margin-left: auto;
  }

  .contact-breadcrumb {
    justify-content: center;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    min-height: auto;
  }

  .contact-details-panel,
  .contact-form-wrapper {
    padding: 40px 27px;
  }

  .contact-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-submit-button {
    width: 100%;
  }

  .contact-form-actions p {
    text-align: center;
  }

  .contact-map-section {
    padding: 70px 0;
  }

  .contact-map-wrapper,
  .contact-map-wrapper iframe {
    height: 480px;
    min-height: 480px;
  }

  .contact-map-card {
    right: 18px;
    bottom: 18px;

    width: calc(100% - 36px);
  }
}

@media (max-width: 575.98px) {
  .contact-page-banner h1 {
    font-size: 2.45rem;
  }

  .contact-page-kicker {
    font-size: 0.62rem;
  }

  .contact-details-panel,
  .contact-form-wrapper {
    padding: 35px 22px;
  }

  .contact-map-wrapper {
    border-radius: 14px;
  }

  .contact-map-wrapper,
  .contact-map-wrapper iframe {
    height: 530px;
    min-height: 530px;
  }

  .contact-map-card {
    right: 12px;
    bottom: 12px;

    width: calc(100% - 24px);
    padding: 18px;
  }
}
