:root {
  --bg-soft: #edf4fa;
  --bg-strong: #dfeaf4;
  --surface: #ffffff;
  --surface-alt: #f5f9fc;
  --primary-blue: #0e5fa9;
  --primary-blue-dark: #0a4376;
  --brand-red: #d32f2f;
  --heading-text: #16314f;
  --body-text: #4f647a;
  --muted: #7188a2;
  --border: rgba(17, 79, 129, 0.15);
  --shadow: rgba(18, 73, 120, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 110px;
}

body {
  margin: 0;
  font-family: "Noto Sans Devanagari", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, rgba(224, 239, 248, 0.9), rgba(214, 230, 241, 0.75) 30%, var(--bg-soft) 100%);
  color: var(--body-text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.language-switcher {
  display: inline-flex;
  flex-shrink: 0;
  padding: 3px;
  border: 1px solid rgba(17, 79, 129, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.language-option {
  border: 0;
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
  background: transparent;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
}

.language-option.active,
.language-option:hover,
.language-option:focus-visible {
  background: var(--primary-blue);
  color: #ffffff;
}
body.calendar-modal-open {
  overflow: hidden;
}

.calendar-popup-backdrop {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(13, 55, 89, 0.58);
  backdrop-filter: blur(6px);
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}

.calendar-popup-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.calendar-popup {
  position: relative;
  width: min(760px, calc(100vw - 32px));
  max-width: 760px;
  max-height: calc(100vh - 32px);
  min-height: 0;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(17, 79, 129, 0.12);
  box-shadow: 0 30px 60px rgba(12, 52, 85, 0.22);
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.28s ease;
}

.calendar-popup-backdrop.is-open .calendar-popup {
  transform: translateY(0) scale(1);
}

.calendar-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(14, 95, 169, 0.1);
  color: var(--primary-blue-dark);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.calendar-popup-close:hover {
  background: rgba(14, 95, 169, 0.16);
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(14, 95, 169, 0.12);
}

.notice-header {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 44px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(17, 79, 129, 0.1);
}

.notice-header-logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(211, 47, 47, 0.16);
  flex-shrink: 0;
}

.notice-header-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.notice-header-org {
  color: var(--heading-text);
  font-size: 0.98rem;
  font-weight: 800;
}

.notice-header-copy small {
  color: var(--muted);
  font-size: 0.76rem;
}

.notice-header-tag {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  background: rgba(14, 95, 169, 0.1);
  color: var(--primary-blue-dark);
  font-weight: 800;
  font-size: 0.76rem;
  text-align: right;
  white-space: nowrap;
}

.notice-body {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(160px, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 0;
}

.notice-col {
  min-width: 0;
}

.notice-title {
  margin: 0 0 12px;
  color: var(--heading-text);
  font-size: clamp(1.15rem, 0.6vw + 1rem, 1.5rem);
  line-height: 1.2;
}

.notice-datebox {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.notice-date-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(237, 244, 250, 0.9);
  border: 1px solid rgba(17, 79, 129, 0.08);
}

.notice-date-item span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.notice-date-item strong {
  color: var(--heading-text);
  font-size: 0.85rem;
}

.notice-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(14, 95, 169, 0.05), rgba(211, 47, 47, 0.05));
  border: 1px solid rgba(17, 79, 129, 0.08);
  margin-bottom: 12px;
}

.meeting-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  border: 1px solid transparent;
}

.meeting-status-badge.is-upcoming {
  background: rgba(32, 171, 116, 0.12);
  border-color: rgba(32, 171, 116, 0.2);
  color: #0d7d50;
}

.meeting-status-badge.is-today {
  background: rgba(247, 181, 67, 0.18);
  border-color: rgba(247, 181, 67, 0.25);
  color: #9f6702;
}

.meeting-status-badge.is-next {
  background: rgba(14, 95, 169, 0.12);
  border-color: rgba(14, 95, 169, 0.18);
  color: var(--primary-blue-dark);
}

.notice-countdown {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  text-align: right;
}

.notice-countdown span {
  color: var(--primary-blue-dark);
  font-weight: 700;
  font-size: 0.74rem;
}

.notice-countdown strong {
  color: var(--heading-text);
  font-size: 0.86rem;
  font-weight: 800;
}

.notice-meta-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.notice-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(17, 79, 129, 0.08);
}

.notice-meta-item span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.notice-meta-item strong {
  color: var(--heading-text);
  font-size: 0.82rem;
}

.notice-calendar {
  display: flex;
  align-items: stretch;
}

.mini-calendar-frame {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(227, 238, 247, 0.95));
  border: 1px solid rgba(17, 79, 129, 0.1);
  padding: 8px;
}

.mini-calendar-frame img {
  display: block;
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  background: transparent;
  border-radius: 10px;
}

.calendar-popup-side-image {
  display: none;
}

@media (max-width: 720px) {
  .notice-body {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .notice-calendar {
    order: -1;
  }

  .mini-calendar-frame {
    padding: 6px;
  }

  .mini-calendar-frame img {
    max-height: 150px;
  }

  .notice-title {
    margin-bottom: 8px;
  }

  .notice-datebox,
  .notice-status-row {
    margin-bottom: 8px;
  }
}

@media (max-width: 480px) {
  .notice-status-row {
    justify-content: flex-start;
  }

  .notice-countdown {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .calendar-popup-backdrop {
    padding: 12px;
  }

  .calendar-popup {
    width: min(100%, calc(100vw - 16px));
    max-height: calc(100vh - 16px);
    padding: 14px;
    border-radius: 20px;
    gap: 10px;
  }

  .notice-header {
    padding-bottom: 8px;
  }
}

@media (max-width: 400px), (max-height: 620px) {
  .calendar-popup {
    padding: 10px;
    gap: 6px;
  }

  .notice-header {
    flex-wrap: wrap;
    gap: 6px 8px;
    padding-bottom: 6px;
  }

  .notice-header-logo {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .notice-header-org {
    font-size: 0.84rem;
  }

  .notice-header-tag {
    font-size: 0.66rem;
    padding: 0.24rem 0.55rem;
  }

  .notice-title {
    font-size: 1.02rem;
    margin-bottom: 6px;
  }

  .notice-datebox {
    gap: 6px;
    margin-bottom: 6px;
  }

  .notice-date-item {
    padding: 6px 8px;
  }

  .notice-status-row {
    padding: 8px 10px;
    margin-bottom: 6px;
  }

  .notice-meta-item {
    padding: 6px 8px;
  }

  .mini-calendar-frame img {
    max-height: 96px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .calendar-popup-backdrop,
  .calendar-popup {
    transition: none;
  }
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(14, 95, 169, 0.08);
  backdrop-filter: blur(8px);
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
}

.brand-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand-red), #ff8661);
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: 900;
  box-shadow: 0 14px 24px rgba(211, 47, 47, 0.22);
  border: 2px solid rgba(255, 255, 255, 0.65);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.brand-mark:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 30px rgba(211, 47, 47, 0.28);
  filter: brightness(1.05);
}

.brand-mark.small {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 1.4rem;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-text {
  min-width: 0;
}

.brand-text h1 {
  margin: 0;
  font-size: clamp(1.18rem, 0.55vw + 1rem, 1.8rem);
  line-height: 1.2;
  color: var(--heading-text);
}

.brand-text p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.72rem 0.9rem;
  border-radius: 12px;
  color: var(--heading-text);
  font-weight: 700;
  font-size: 0.96rem;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.nav-item .nav-icon {
  font-size: 1rem;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(14, 95, 169, 0.08);
  color: var(--primary-blue-dark);
}

@media (max-width: 900px) {
  .topbar-inner {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }
}

main {
  padding-bottom: 28px;
}

.aim-section,
.info-section,
.ad-section,
.donation-section {
  padding-top: 26px;
}

.org-intro-section {
  padding-top: 26px;
}

.intro-wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 79, 129, 0.12);
  border-radius: 30px;
  padding: 32px;
  box-shadow: 0 18px 42px rgba(17, 79, 129, 0.06);
}

.intro-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro-content h2 {
  margin: 12px 0 0;
  font-size: clamp(1.8rem, 0.7vw + 1.2rem, 2.5rem);
  line-height: 1.2;
  color: var(--heading-text);
}

.intro-content p {
  margin: 18px 0 0;
  color: var(--body-text);
  line-height: 1.8;
  font-size: 1.02rem;
}

.intro-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 22px;
  padding: 0.82rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 14px 24px rgba(15, 94, 167, 0.18);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.intro-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(15, 94, 167, 0.24);
}

.intro-highlight {
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(245, 249, 252, 1), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(20, 86, 138, 0.12);
  box-shadow: 0 10px 24px rgba(15, 94, 167, 0.05);
}

.intro-points {
  display: grid;
  gap: 16px;
}

.intro-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 79, 129, 0.1);
}

.intro-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(14, 95, 169, 0.12), rgba(211, 47, 47, 0.08));
  font-size: 1.5rem;
}

.intro-point h3 {
  margin: 0 0 4px;
  color: var(--heading-text);
  font-size: 1rem;
}

.intro-point p {
  margin: 0;
  color: var(--body-text);
  font-size: 0.92rem;
  line-height: 1.6;
}

.aim-panel {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(17, 79, 129, 0.08);
  border-radius: 30px;
  padding: 32px;
  box-shadow: 0 18px 42px rgba(17, 79, 129, 0.06);
}

.objective-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.objective-header p {
  max-width: 680px;
  margin: 0;
  color: var(--body-text);
  line-height: 1.8;
}

.section-heading.left-aligned {
  margin-bottom: 0;
}

.section-heading.left-aligned h2 {
  text-align: left;
}

.aim-panel h2 {
  margin: 0;
  font-size: clamp(1.75rem, 1vw + 1.2rem, 2.5rem);
  line-height: 1.2;
  color: var(--heading-text);
  text-align: center;
}

.objective-roadmap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0 24px;
  padding: 18px 10px 0;
}

.roadmap-track {
  position: absolute;
  left: 5%;
  right: 5%;
  top: 34px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(14, 95, 169, 0.24), rgba(211, 47, 47, 0.18), rgba(14, 95, 169, 0.24));
}

.roadmap-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.roadmap-node {
  width: 104px;
  height: 104px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 79, 129, 0.15);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(223, 234, 244, 0.88));
  box-shadow: 0 16px 28px rgba(15, 94, 167, 0.08);
  color: var(--heading-text);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 0.7rem;
}

.roadmap-node span {
  display: inline-block;
  max-width: 78px;
  line-height: 1.25;
}

.roadmap-step small {
  font-weight: 700;
  color: var(--muted);
}

.aim-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.aim-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 18px;
  min-height: 190px;
  background: linear-gradient(180deg, rgba(245, 249, 252, 1), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(20, 86, 138, 0.12);
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(15, 94, 167, 0.05);
  text-align: center;
}

.objective-card {
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 100%;
  padding: 22px 20px;
  text-align: left;
}

.objective-card-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-bottom: 14px;
}

.objective-number {
  display: inline-flex;
  width: fit-content;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(14, 95, 169, 0.09);
  color: var(--primary-blue-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.objective-tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(211, 47, 47, 0.06);
  color: var(--brand-red);
  font-size: 0.76rem;
  font-weight: 800;
}

.objective-card h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.35;
  color: var(--heading-text);
}

.objective-card p {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 0.96rem;
  line-height: 1.7;
  text-align: left;
}

.objective-subpoints {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 8px;
}

.objective-subpoints li {
  position: relative;
  padding-left: 20px;
  color: var(--body-text);
  font-size: 0.91rem;
  line-height: 1.6;
}

.objective-subpoints li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-blue);
  font-size: 1.2rem;
  line-height: 1;
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.info-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(14, 95, 169, 0.12), rgba(211, 47, 47, 0.08));
  font-size: 1.2rem;
}

.card-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  margin-bottom: 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.card-icon.green {
  background: linear-gradient(135deg, #e1f6e7, #bfeac8);
}

.card-icon.purple {
  background: linear-gradient(135deg, #efe9ff, #dccafe);
}

.card-icon.orange {
  background: linear-gradient(135deg, #ffe9d9, #ffd1a8);
}

.card-icon.blue {
  background: linear-gradient(135deg, #dfeffc, #bfdfff);
}

.card-icon.red {
  background: linear-gradient(135deg, #ffe2e2, #ffc6c6);
}

.card-icon.yellow {
  background: linear-gradient(135deg, #fff4d1, #ffe4a3);
}

.aim-card p {
  margin: 0;
  color: var(--heading-text);
  font-weight: 700;
  line-height: 1.5;
}

.summary-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(14, 95, 169, 0.08), rgba(211, 47, 47, 0.04));
  border: 1px solid rgba(14, 95, 169, 0.15);
  color: var(--heading-text);
  font-weight: 700;
}

.donation-wrap {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 79, 129, 0.12);
  border-radius: 30px;
  padding: 32px;
  box-shadow: 0 18px 42px rgba(17, 79, 129, 0.06);
}

.donation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 24px;
  margin-top: 24px;
}

.donation-panel,
.support-card {
  border-radius: 24px;
  border: 1px solid rgba(17, 79, 129, 0.12);
  background: linear-gradient(180deg, rgba(245, 249, 252, 1), rgba(255, 255, 255, 0.96));
  box-shadow: 0 12px 26px rgba(15, 94, 167, 0.05);
}

.donation-panel {
  padding: 28px;
}

.support-tag {
  display: inline-flex;
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  background: rgba(14, 95, 169, 0.1);
  color: var(--primary-blue-dark);
  font-weight: 800;
  font-size: 0.83rem;
  letter-spacing: 0.02em;
}

.donation-panel p {
  margin: 18px 0 0;
  color: var(--body-text);
  line-height: 1.8;
  font-size: 1rem;
}

.donation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.donation-button,
.payment-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border-radius: 14px;
  padding: 0.8rem 1.3rem;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.donation-button.primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  color: #ffffff;
  box-shadow: 0 14px 24px rgba(15, 94, 167, 0.18);
}

.donation-button.secondary {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(17, 79, 129, 0.18);
  color: var(--heading-text);
}

.donation-button:hover,
.payment-button:hover {
  transform: translateY(-2px);
}

.donation-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.meta-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(17, 79, 129, 0.1);
}

.meta-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(14, 95, 169, 0.12), rgba(211, 47, 47, 0.08));
  font-size: 1.3rem;
}

.meta-card strong {
  color: var(--heading-text);
}

.meta-card p {
  margin: 6px 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.trust-note {
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(14, 95, 169, 0.08), rgba(211, 47, 47, 0.04));
  border: 1px solid rgba(14, 95, 169, 0.15);
  color: var(--heading-text);
  font-weight: 800;
  line-height: 1.6;
}

.support-sidebar {
  display: grid;
  gap: 20px;
}

.support-card {
  padding: 22px;
}

.support-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.support-card-header h3,
.trust-card h3 {
  margin: 0;
  color: var(--heading-text);
  font-size: 1.05rem;
}

.support-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(14, 95, 169, 0.12), rgba(211, 47, 47, 0.08));
  font-size: 1.2rem;
}

.qr-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 190px;
  border-radius: 20px;
  border: 2px dashed rgba(17, 79, 129, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(223, 234, 244, 0.8));
  color: var(--heading-text);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

.qr-placeholder small {
  display: block;
  margin-top: 8px;
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--body-text);
  line-height: 1.5;
}

.payment-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.payment-button {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(17, 79, 129, 0.15);
  color: var(--heading-text);
  font-size: 0.96rem;
  flex-direction: column;
  min-height: 56px;
}

.payment-button span {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
}

.payment-button.placeholder {
  cursor: not-allowed;
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
  color: var(--body-text);
  line-height: 1.6;
}

.trust-list li {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(17, 79, 129, 0.08);
}

.social-mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.social-mini-links a {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(14, 95, 169, 0.08);
  color: var(--primary-blue-dark);
  font-weight: 800;
}

.purpose-section {
  margin-top: 30px;
}

.small-heading {
  margin-bottom: 18px;
}

.small-heading h3 {
  margin: 0;
  font-size: clamp(1.4rem, 1vw + 0.9rem, 1.9rem);
  color: var(--heading-text);
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.purpose-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-height: 170px;
  padding: 20px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(245, 249, 252, 1), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(17, 79, 129, 0.12);
  box-shadow: 0 10px 24px rgba(15, 94, 167, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.purpose-card:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 95, 169, 0.34);
  box-shadow: 0 16px 28px rgba(15, 94, 167, 0.1);
}

.purpose-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(14, 95, 169, 0.12), rgba(211, 47, 47, 0.08));
  font-size: 1.6rem;
}

.purpose-card h4 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--heading-text);
}

.summary-label {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(14, 95, 169, 0.12);
  color: var(--primary-blue-dark);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.topics-section {
  padding-top: 26px;
}

.topics-wrap {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 79, 129, 0.12);
  border-radius: 30px;
  padding: 32px;
  box-shadow: 0 18px 42px rgba(17, 79, 129, 0.06);
}

.members-section {
  padding-top: 26px;
}

.members-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.6fr);
  gap: 24px;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 79, 129, 0.12);
  border-radius: 30px;
  padding: 32px;
  box-shadow: 0 18px 42px rgba(17, 79, 129, 0.06);
}

.members-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.members-intro h2 {
  margin: 12px 0 0;
  font-size: clamp(1.8rem, 0.7vw + 1.2rem, 2.5rem);
  color: var(--heading-text);
}

.members-intro p {
  margin: 16px 0 0;
  color: var(--body-text);
  font-size: 1rem;
  line-height: 1.7;
}

.members-panel {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.panel-card {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(20, 86, 138, 0.12);
  background: linear-gradient(180deg, rgba(245, 249, 252, 1), rgba(255, 255, 255, 0.96));
  box-shadow: 0 10px 24px rgba(15, 94, 167, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.panel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(15, 94, 167, 0.12);
  border-color: rgba(14, 95, 169, 0.34);
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.panel-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(14, 95, 169, 0.12), rgba(211, 47, 47, 0.08));
  font-size: 1.2rem;
}

.panel-header h3 {
  margin: 0;
  color: var(--heading-text);
  font-size: 1.06rem;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.info-list li {
  position: relative;
  padding-left: 18px;
  color: var(--body-text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.info-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-blue-dark);
  font-weight: 900;
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.step-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0.65rem 0.7rem;
  border-radius: 12px;
  background: rgba(14, 95, 169, 0.05);
  border: 1px solid rgba(14, 95, 169, 0.08);
  color: var(--body-text);
}

.step-number {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--primary-blue-dark);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
}

.step-list li span:last-child {
  flex: 1;
  line-height: 1.5;
}

.become-member-box {
  margin-top: 24px;
  padding: 22px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(245, 249, 252, 1), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(20, 86, 138, 0.12);
  box-shadow: 0 10px 24px rgba(15, 94, 167, 0.05);
}

.become-member-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.become-member-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(14, 95, 169, 0.12), rgba(211, 47, 47, 0.08));
  font-size: 1.4rem;
}

.become-member-header h3 {
  margin: 0;
  color: var(--heading-text);
  font-size: 1.3rem;
}

.member-option-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.member-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(14, 95, 169, 0.06);
  border: 1px solid rgba(14, 95, 169, 0.15);
  color: var(--heading-text);
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.member-option:hover {
  transform: translateX(4px);
  background: rgba(14, 95, 169, 0.1);
  border-color: rgba(14, 95, 169, 0.25);
}

.member-option-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(14, 95, 169, 0.12);
  color: var(--primary-blue-dark);
}

.member-option-label {
  flex: 1;
}

.member-option-arrow {
  font-size: 1.2rem;
  color: var(--primary-blue-dark);
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.member-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(180deg, rgba(245, 249, 252, 1), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(20, 86, 138, 0.12);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 94, 167, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.member-card::before {
  content: attr(data-post);
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  padding: 0.32rem 0.6rem;
  border-radius: 999px;
  background: rgba(14, 95, 169, 0.82);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.member-card.top {
  border-color: rgba(14, 95, 169, 0.3);
}

.member-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 28px rgba(15, 94, 167, 0.12);
  border-color: rgba(14, 95, 169, 0.34);
}

.member-card img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
  border-bottom: 1px solid rgba(17, 79, 129, 0.08);
  background: linear-gradient(135deg, rgba(14, 95, 169, 0.08), rgba(255, 255, 255, 0.7));
}

.member-name {
  padding: 18px 16px 6px;
  color: var(--heading-text);
  font-size: 0.97rem;
  font-weight: 800;
  line-height: 1.4;
}

.member-address {
  padding: 0 16px 18px;
  color: var(--body-text);
  font-size: 0.85rem;
  line-height: 1.5;
}

.member-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.committee-section {
  padding-top: 26px;
}

.committee-wrap {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 79, 129, 0.12);
  border-radius: 30px;
  padding: 32px;
  box-shadow: 0 18px 42px rgba(17, 79, 129, 0.06);
}

.committee-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.committee-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(245, 249, 252, 1), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(20, 86, 138, 0.12);
  box-shadow: 0 10px 24px rgba(15, 94, 167, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.committee-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(15, 94, 167, 0.12);
  border-color: rgba(14, 95, 169, 0.34);
}

.committee-number {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(14, 95, 169, 0.12), rgba(211, 47, 47, 0.08));
  color: var(--primary-blue-dark);
  font-weight: 900;
}

.committee-item h3 {
  margin: 0;
  color: var(--heading-text);
  font-size: 1rem;
}

.committee-item p {
  margin: 4px 0 0;
  color: var(--body-text);
  font-size: 0.9rem;
}

.committee-status {
  display: inline-block;
  margin-top: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
}

.committee-status.is-formed {
  background: rgba(22, 163, 74, 0.12);
  color: #0f7a43;
}

.committee-status.is-pending {
  background: rgba(234, 88, 12, 0.12);
  color: #b45309;
}

#committeeDetailModal[hidden] {
  display: none !important;
}

.committee-detail-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 31, 53, 0.58);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.committee-detail-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.committee-detail-modal {
  width: min(920px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow-y: auto;
  border: 1px solid rgba(20, 86, 138, 0.16);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(7, 31, 53, 0.28);
  transform: translateY(12px);
  transition: transform 0.2s ease;
}

.committee-detail-backdrop.is-open .committee-detail-modal {
  transform: translateY(0);
}

.committee-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(17, 79, 129, 0.1);
}

.committee-detail-brand,
.committee-detail-brand > div {
  display: flex;
  align-items: center;
}

.committee-detail-brand {
  gap: 12px;
}

.committee-detail-brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.committee-detail-brand > div {
  flex-direction: column;
  align-items: flex-start;
}

.committee-detail-brand-name {
  color: var(--heading-text);
  font-weight: 800;
}

.committee-detail-brand small {
  color: var(--body-text);
}

.committee-detail-badge,
.committee-detail-close {
  border-radius: 999px;
}

.committee-detail-badge {
  padding: 6px 10px;
  background: rgba(14, 95, 169, 0.1);
  color: var(--primary-blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.committee-detail-close {
  order: 2;
  width: 36px;
  height: 36px;
  margin-left: auto;
  border: 1px solid rgba(17, 79, 129, 0.14);
  background: #ffffff;
  color: var(--heading-text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.committee-detail-body {
  padding: 24px;
}

.committee-detail-summary h2 {
  margin: 6px 0 0;
  color: var(--heading-text);
}

.committee-detail-kicker,
.committee-detail-intro {
  margin: 0;
  color: var(--body-text);
}

.committee-detail-kicker {
  font-size: 0.82rem;
  font-weight: 800;
}

.committee-detail-intro {
  margin-top: 8px;
  line-height: 1.6;
}

.committee-detail-grid,
.committee-detail-sections {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.committee-detail-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.detail-item,
.committee-detail-panel {
  padding: 16px;
  border: 1px solid rgba(17, 79, 129, 0.1);
  border-radius: 16px;
  background: #f7fafc;
}

.detail-item {
  display: grid;
  gap: 6px;
}

.detail-item-label {
  color: var(--body-text);
  font-size: 0.78rem;
}

.detail-item strong {
  color: var(--heading-text);
}

.committee-detail-sections {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.committee-detail-panel h3 {
  margin: 0;
  color: var(--heading-text);
  font-size: 1rem;
}

.committee-member-list {
  display: grid;
  gap: 10px;
  max-height: 300px;
  margin-top: 12px;
  overflow-y: auto;
}

.committee-member-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 12px;
  background: #ffffff;
}

.committee-member-item img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  object-fit: contain;
}

.committee-member-copy h4,
.committee-member-copy span,
.committee-empty-state p {
  margin: 0;
}

.committee-member-copy h4 {
  color: var(--heading-text);
  font-size: 0.9rem;
}

.committee-member-copy span,
.committee-empty-state p {
  color: var(--body-text);
  font-size: 0.82rem;
}

body.committee-modal-open {
  overflow: hidden;
}

.gallery-section {
  padding-top: 26px;
}

.gallery-wrap {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 79, 129, 0.12);
  border-radius: 30px;
  padding: 32px;
  box-shadow: 0 18px 42px rgba(17, 79, 129, 0.06);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.gallery-item {
  background: linear-gradient(180deg, rgba(245, 249, 252, 1), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(20, 86, 138, 0.12);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(15, 94, 167, 0.05);
}

.gallery-name {
  display: block;
  margin-bottom: 12px;
  color: var(--heading-text);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.5;
}

.gallery-image {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  border-radius: 18px;
  border: 2px dashed rgba(17, 79, 129, 0.28);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.gallery-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(17, 79, 129, 0.28));
}

.gallery-image span {
  position: relative;
  z-index: 1;
  color: #ffffff;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

.calendar-gallery-carousel {
  min-height: 220px;
  align-items: center;
  padding: 0;
  border-style: solid;
  background: #eef5fa;
}

.calendar-gallery-frame {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.calendar-gallery-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(17, 79, 129, 0.14));
  pointer-events: none;
}

.calendar-gallery-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: zoom-in;
  opacity: 0;
  transition: opacity 0.24s ease;
}

.calendar-gallery-image.is-visible {
  opacity: 1;
}

.calendar-gallery-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 34px;
  height: 46px;
  place-items: center;
  padding: 0 0 4px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  background: rgba(10, 67, 118, 0.78);
  color: #ffffff;
  font-family: Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.calendar-gallery-arrow:hover,
.calendar-gallery-arrow:focus-visible {
  background: rgba(211, 47, 47, 0.9);
  transform: translateY(-50%) scale(1.05);
}

.calendar-gallery-prev {
  left: 10px;
}

.calendar-gallery-next {
  right: 10px;
}

.calendar-gallery-counter {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  right: 12px;
  bottom: 10px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(10, 67, 118, 0.82);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.4;
}

.calendar-gallery-lightbox-open {
  overflow: hidden;
}

.calendar-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 35, 59, 0.86);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.calendar-gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.calendar-gallery-lightbox-dialog {
  position: relative;
  display: flex;
  width: min(1100px, 100%);
  height: min(90vh, 820px);
  align-items: center;
  justify-content: center;
  transform: scale(0.96);
  transition: transform 0.22s ease;
}

.calendar-gallery-lightbox.is-open .calendar-gallery-lightbox-dialog {
  transform: scale(1);
}

.calendar-gallery-lightbox-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.calendar-gallery-lightbox-close {
  position: absolute;
  top: -12px;
  right: -12px;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: rgba(10, 67, 118, 0.92);
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.calendar-gallery-lightbox-close:hover,
.calendar-gallery-lightbox-close:focus-visible {
  background: rgba(211, 47, 47, 0.95);
  transform: scale(1.05);
}

.calendar-gallery-lightbox-arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  display: grid;
  width: 44px;
  height: 58px;
  place-items: center;
  padding: 0 0 5px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  background: rgba(10, 67, 118, 0.9);
  color: #ffffff;
  font-family: Georgia, serif;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.calendar-gallery-lightbox-arrow:hover,
.calendar-gallery-lightbox-arrow:focus-visible {
  background: rgba(211, 47, 47, 0.95);
  transform: translateY(-50%) scale(1.05);
}

.calendar-gallery-lightbox-prev {
  left: 12px;
}

.calendar-gallery-lightbox-next {
  right: 12px;
}

.calendar-gallery-lightbox-counter {
  position: absolute;
  z-index: 1;
  right: 50%;
  bottom: 10px;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(10, 67, 118, 0.9);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.4;
  pointer-events: none;
  transform: translateX(50%);
}

.placeholder-one {
  background: linear-gradient(135deg, rgba(14, 95, 169, 0.68), rgba(20, 132, 180, 0.4));
}

.placeholder-two {
  background: linear-gradient(135deg, rgba(211, 47, 47, 0.68), rgba(240, 113, 79, 0.4));
}

.placeholder-three {
  background: linear-gradient(135deg, rgba(8, 88, 92, 0.72), rgba(24, 166, 158, 0.42));
}

.placeholder-four {
  background: linear-gradient(135deg, rgba(117, 93, 20, 0.7), rgba(221, 168, 56, 0.45));
}

@media (max-width: 900px) {
  .history-story,
  .history-story-reverse {
    grid-template-columns: 1fr;
  }

  .history-story-reverse .history-image,
  .history-story-reverse .history-copy {
    order: initial;
  }

  .members-wrap {
    grid-template-columns: 1fr;
  }

  .members-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-wrap {
    grid-template-columns: 1fr;
  }

  .get-involved-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .get-involved-actions {
    justify-content: flex-start;
  }

  .objective-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .objective-roadmap {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .aim-grid {
    grid-template-columns: 1fr;
  }

  .donation-grid {
    grid-template-columns: 1fr;
  }

  .purpose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .calendar-gallery-item {
    grid-column: 1 / -1;
  }

  .members-grid {
    grid-template-columns: 1fr;
  }

  .get-involved-actions {
    width: 100%;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .objective-roadmap {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .roadmap-track {
    display: none;
  }

  .roadmap-step {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }

  .roadmap-node {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    font-size: 0.62rem;
  }

  .roadmap-step small {
    display: none;
  }

  .donation-actions {
    flex-direction: column;
  }

  .donation-button {
    width: 100%;
  }

  .donation-meta,
  .payment-buttons,
  .purpose-grid {
    grid-template-columns: 1fr;
  }

  .donation-panel,
  .support-card {
    padding: 18px;
  }

  .summary-box {
    font-size: 0.92rem;
  }
}

.history-section {
  padding: 72px 0 32px;
}

.history-grid {
  display: grid;
  gap: 32px;
}

.history-story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
  gap: 28px;
  padding: 28px;
  border: 1px solid rgba(17, 79, 129, 0.12);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(238, 245, 251, 0.92));
  box-shadow: 0 18px 42px rgba(17, 79, 129, 0.06);
  align-items: center;
}

.history-story-reverse {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.05fr);
}

.history-story-reverse .history-image {
  order: 2;
}

.history-story-reverse .history-copy {
  order: 1;
}

.history-image {
  min-height: 290px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.history-image span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  backdrop-filter: blur(2px);
}

.history-visual-one {
  background: linear-gradient(135deg, rgba(14, 95, 169, 0.82), rgba(33, 117, 201, 0.52)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
}

.history-visual-two {
  background: linear-gradient(135deg, rgba(211, 47, 47, 0.8), rgba(240, 113, 79, 0.52)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
}

.history-copy {
  padding: 12px 8px;
}

.history-year {
  display: inline-block;
  margin-bottom: 12px;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: rgba(14, 95, 169, 0.09);
  color: var(--primary-blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.history-copy h3 {
  margin: 0 0 12px;
  color: var(--heading-text);
  font-size: clamp(1.6rem, 1vw + 1rem, 2.1rem);
  line-height: 1.25;
}

.history-copy p {
  margin: 0;
  color: var(--body-text);
  font-size: 1.02rem;
  line-height: 1.8;
}

.section-heading {
  text-align: center;
  margin-bottom: 26px;
}

.section-tag {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(14, 95, 169, 0.09);
  color: var(--primary-blue-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 12px 0 0;
  font-size: clamp(1.8rem, 0.7vw + 1.2rem, 2.5rem);
  color: var(--heading-text);
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.topic-card {
  padding: 24px 20px;
  border-radius: 22px;
  border: 1px solid rgba(17, 79, 129, 0.12);
  background: linear-gradient(180deg, #f8fbfe, #eef5fb);
  box-shadow: 0 10px 24px rgba(15, 94, 167, 0.05);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.topic-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  color: var(--primary-blue);
  font-weight: 800;
  transition: color 0.2s ease, transform 0.2s ease;
}

.topic-link::after {
  content: " →";
  display: inline-block;
}

.topic-card:hover .topic-link {
  color: var(--primary-blue-dark);
}

.topic-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 28px rgba(15, 94, 167, 0.12);
}

.topic-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(14, 95, 169, 0.12), rgba(211, 47, 47, 0.08));
  font-size: 2rem;
}

.topic-card h3 {
  margin: 0 0 10px;
  color: var(--heading-text);
  font-size: 1.05rem;
}

.topic-card p {
  margin: 0;
  color: var(--body-text);
  font-size: 0.96rem;
}

.info-card {
  position: relative;
  padding: 28px 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 79, 129, 0.12);
  border-radius: 24px;
  box-shadow: 0 14px 28px rgba(17, 79, 129, 0.05);
  cursor: pointer;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    opacity 0.28s ease;
}

.get-involved-section {
  padding-top: 26px;
}

.get-involved-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(14, 95, 169, 0.08), rgba(255, 255, 255, 0.8));
  border: 1px solid rgba(17, 79, 129, 0.12);
  box-shadow: 0 18px 42px rgba(17, 79, 129, 0.06);
}

.get-involved-content {
  flex: 1;
}

.get-involved-content h2 {
  margin: 12px 0 0;
  font-size: clamp(1.8rem, 0.7vw + 1.2rem, 2.5rem);
  line-height: 1.2;
  color: var(--heading-text);
}

.get-involved-content p {
  margin: 14px 0 0;
  color: var(--body-text);
  line-height: 1.7;
  font-size: 1.02rem;
}

.get-involved-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.primary-action {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  color: #ffffff;
  box-shadow: 0 14px 24px rgba(15, 94, 167, 0.18);
}

.secondary-action {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(17, 79, 129, 0.18);
  color: var(--heading-text);
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-2px);
}

.primary-action:hover {
  box-shadow: 0 18px 28px rgba(15, 94, 167, 0.24);
}

.secondary-action:hover {
  border-color: rgba(14, 95, 169, 0.36);
  box-shadow: 0 12px 20px rgba(17, 79, 129, 0.08);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(17, 79, 129, 0.08);
}

.info-card.is-selected {
  z-index: 2;
  transform: scale(1.03);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(227, 239, 249, 0.9));
  border-color: rgba(14, 95, 169, 0.32);
  box-shadow: 0 22px 38px rgba(17, 79, 129, 0.14);
}

.info-card h3 {
  margin: 0 0 14px;
  color: var(--heading-text);
  font-size: 1.35rem;
}

.info-card p {
  margin: 0;
  color: var(--body-text);
}

.info-extra {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition:
    max-height 0.35s ease,
    opacity 0.28s ease,
    margin-top 0.28s ease;
}

.info-card.is-selected .info-extra {
  max-height: 200px;
  opacity: 1;
  margin-top: 16px;
}

.info-card.is-selected .info-extra p {
  color: var(--heading-text);
  font-weight: 700;
}

.info-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--primary-blue);
  font-weight: 700;
}

.ad-wrap {
  padding: 0;
}

.ad-box {
  display: grid;
  place-items: center;
  min-height: 180px;
  border-radius: 24px;
  border: 2px dashed rgba(17, 79, 129, 0.28);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(215, 231, 243, 0.4));
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 22px;
}

.ad-bank-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.ad-bank-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  padding: 18px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(17, 79, 129, 0.12);
  box-shadow: 0 10px 24px rgba(15, 94, 167, 0.05);
  text-align: center;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.ad-bank-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 32px rgba(15, 94, 167, 0.12);
  border-color: rgba(14, 95, 169, 0.34);
}

.bank-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 16px;
  margin-bottom: 10px;
  background: rgba(245, 249, 252, 0.9);
  padding: 8px;
  box-shadow: inset 0 0 0 1px rgba(17, 79, 129, 0.08);
}

.bank-name {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--heading-text);
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .ad-bank-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .ad-bank-grid {
    grid-template-columns: 1fr;
  }
}

.social-section {
  padding-top: 26px;
}

.social-wrap {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 79, 129, 0.12);
  border-radius: 30px;
  padding: 32px;
  box-shadow: 0 18px 42px rgba(17, 79, 129, 0.06);
}

.social-platform-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.social-platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 144px;
  padding: 18px 14px;
  border-radius: 22px;
  border: 1px solid rgba(17, 79, 129, 0.12);
  background: linear-gradient(180deg, rgba(245, 249, 252, 1), rgba(255, 255, 255, 0.96));
  box-shadow: 0 10px 24px rgba(15, 94, 167, 0.05);
  color: var(--heading-text);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.social-platform:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 28px rgba(15, 94, 167, 0.12);
  border-color: rgba(14, 95, 169, 0.34);
}

.platform-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  font-size: 1.45rem;
  font-weight: 900;
  color: #ffffff;
}

.platform-name {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.social-platform.facebook .platform-icon {
  background: linear-gradient(135deg, #1877f2, #3e8ef7);
}

.social-platform.instagram .platform-icon {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.social-platform.youtube .platform-icon {
  background: linear-gradient(135deg, #ff0000, #d92222);
}

.social-platform.x .platform-icon {
  background: linear-gradient(135deg, #111111, #4b4b4b);
}

.social-platform.linkedin .platform-icon {
  background: linear-gradient(135deg, #0a66c2, #1c78da);
}

.social-platform.whatsapp .platform-icon {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.sayings-section {
  padding-top: 26px;
}

.sayings-wrap {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 79, 129, 0.12);
  border-radius: 30px;
  padding: 32px;
  box-shadow: 0 18px 42px rgba(17, 79, 129, 0.06);
}

.sayings-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.saying-card {
  background: linear-gradient(180deg, rgba(245, 249, 252, 1), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(17, 79, 129, 0.12);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(15, 94, 167, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.saying-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(15, 94, 167, 0.12);
  border-color: rgba(14, 95, 169, 0.34);
}

.saying-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.saying-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.saying-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(14, 95, 169, 0.18), rgba(211, 47, 47, 0.12));
  color: var(--primary-blue-dark);
  font-size: 1rem;
  font-weight: 800;
}

.saying-person h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--heading-text);
}

.saying-person p {
  margin: 3px 0 0;
  font-size: 0.8rem;
  color: var(--body-text);
}

.love-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(14, 95, 169, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--heading-text);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.love-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(15, 94, 167, 0.08);
}

.love-button.is-liked {
  background: rgba(255, 92, 92, 0.12);
  border-color: rgba(255, 92, 92, 0.32);
  color: #d92d4f;
}

.love-icon {
  font-size: 1rem;
}

.saying-text {
  margin: 0;
  color: var(--body-text);
  line-height: 1.7;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .sayings-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .sayings-grid {
    grid-template-columns: 1fr;
  }
}

.contact-section {
  padding-top: 26px;
}

.contact-wrap {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 79, 129, 0.12);
  border-radius: 30px;
  padding: 32px;
  box-shadow: 0 18px 42px rgba(17, 79, 129, 0.06);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr;
  gap: 24px;
  align-items: stretch;
}

.contact-card,
.map-card,
.message-box {
  border-radius: 24px;
  background: rgba(245, 249, 252, 0.8);
  border: 1px solid rgba(17, 79, 129, 0.12);
  box-shadow: 0 10px 24px rgba(15, 94, 167, 0.05);
}

.contact-card {
  padding: 26px 22px;
}

.contact-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--heading-text);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.96rem;
  color: var(--heading-text);
}

.contact-item strong {
  color: var(--heading-text);
}

.contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(14, 95, 169, 0.12), rgba(211, 47, 47, 0.08));
  color: var(--primary-blue-dark);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(14, 95, 169, 0.06);
  border: 1px solid rgba(14, 95, 169, 0.12);
  color: var(--body-text);
  line-height: 1.55;
}

.map-card {
  padding: 18px;
}

.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading-text);
}

.map-header a {
  color: var(--primary-blue-dark);
  text-decoration: none;
}

.map-box {
  position: relative;
  height: 340px;
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)),
    url('https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  border: 1px solid rgba(17, 79, 129, 0.12);
}

.map-label {
  position: absolute;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  color: var(--heading-text);
  font-size: 0.7rem;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(14, 95, 169, 0.12);
}

.label-one {
  top: 38px;
  left: 140px;
}

.label-two {
  top: 100px;
  right: 90px;
}

.map-route {
  position: absolute;
  display: block;
  border-radius: 999px;
}

.route-one {
  top: 150px;
  left: 120px;
  width: 180px;
  height: 8px;
  background: rgba(50, 130, 246, 0.75);
  transform: rotate(10deg);
}

.route-two {
  top: 118px;
  right: 120px;
  width: 120px;
  height: 8px;
  background: rgba(255, 106, 90, 0.9);
  transform: rotate(-24deg);
}

.route-three {
  top: 197px;
  left: 180px;
  width: 150px;
  height: 8px;
  background: rgba(50, 130, 246, 0.55);
  transform: rotate(20deg);
}

.map-footer {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.9);
  background: rgba(8, 26, 41, 0.36);
  border-radius: 12px;
  padding: 8px 10px;
}

.message-box {
  margin-top: 24px;
  padding: 24px;
}

.message-box h3 {
  margin: 0 0 18px;
  font-size: 1.1rem;
  color: var(--heading-text);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: var(--heading-text);
  font-weight: 700;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(17, 79, 129, 0.2);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: inherit;
  background: rgba(255,255,255,0.7);
  color: var(--heading-text);
  box-sizing: border-box;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(14, 95, 169, 0.18);
  border-color: rgba(14, 95, 169, 0.32);
}

.submit-btn {
  width: 100%;
  max-width: 180px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #0f5fa9, #176ab7);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  padding: 14px 18px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 12px 22px rgba(15, 94, 167, 0.18);
}

.submit-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .social-platform-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .social-platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.site-footer {
  margin-top: 20px;
  background: linear-gradient(180deg, #0e2f4d 0%, #0a233f 100%);
  color: rgba(255, 255, 255, 0.82);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1.3fr 0.9fr 0.7fr;
  gap: 28px;
  padding: 40px 0 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-copy h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #ffffff;
}

.footer-copy p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact h4,
.footer-links h4,
.footer-social h4 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 1rem;
}

.footer-contact p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-contact a,
.footer-links a {
  color: rgba(255, 255, 255, 0.88);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-social {
  display: flex;
  flex-direction: column;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-weight: 800;
}

.copyright-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0 28px;
}

.copyright-wrap p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
}

/* =========================================================
   INTERACTION & POLISH
   ========================================================= */

html {
  scroll-behavior: smooth;
}

/* Smooth selection */
::selection {
  background: rgba(14, 95, 169, 0.18);
  color: var(--heading-text);
}

/* Better focus accessibility */
:focus-visible {
  outline: 3px solid rgba(14, 95, 169, 0.35);
  outline-offset: 3px;
}

/* ---------------------------------------------------------
   HEADER SCROLL EFFECT
   --------------------------------------------------------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease;
}

.topbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 28px rgba(39, 85, 130, 0.10);
}

/* ---------------------------------------------------------
   HERO SLIDER
   --------------------------------------------------------- */

.hero-slider {
  width: min(1240px, calc(100% - 48px));
  margin: 28px auto 0;
}

.slider-inner {
  position: relative;
  min-height: 440px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(18, 73, 120, 0.16);
  background: #cfe5f2;
}

.slides {
  position: relative;
  min-height: 440px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.08);
  transition:
    opacity 0.9s ease,
    transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1),
    visibility 0s linear 0.9s;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.12));
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition:
    opacity 0.9s ease,
    transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1),
    visibility 0s linear 0s;
}

.slide-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-left: clamp(24px, 4vw, 74px);
  padding: 40px 0;
  color: #ffffff;
}

.eyebrow {
  display: inline-block;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.slide-content h2 {
  margin-top: 18px;
  font-size: clamp(2rem, 1vw + 1.4rem, 3.4rem);
  line-height: 1.1;
  font-weight: 800;
}

.slide-content p {
  margin-top: 16px;
  max-width: 620px;
  font-size: clamp(1rem, 0.45vw + 0.9rem, 1.35rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.slide-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 16px 24px rgba(15, 94, 167, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.slide-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(15, 94, 167, 0.4);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.28);
}

.slider-arrow:active {
  transform: translateY(-50%) scale(0.96);
}

.slider-arrow.prev {
  left: 18px;
}

.slider-arrow.next {
  right: 18px;
}

.slider-dots {
  position: absolute;
  right: 24px;
  bottom: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.dot.active {
  background: #ffffff;
  transform: scale(1.18);
}

/* ---------------------------------------------------------
   NAVIGATION
   --------------------------------------------------------- */

.nav-item {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary-blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-item:hover::after,
.nav-item.active::after {
  transform: scaleX(1);
}

.nav-item:hover {
  transform: translateY(-1px);
}

.nav-item:active {
  transform: translateY(1px) scale(0.98);
}

.nav-item.active {
  box-shadow: inset 0 -2px 0 rgba(14, 95, 169, 0.55);
}

.reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    box-shadow 0.3s ease;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------------------
   BRAND
   --------------------------------------------------------- */

.brand-mark {
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.3s ease;
}

.brand-mark:hover {
  box-shadow:
    0 10px 25px rgba(180, 20, 20, 0.18),
    inset 0 0 0 3px rgba(255, 255, 255, 0.18);
}

/* ---------------------------------------------------------
   AIM CARDS
   --------------------------------------------------------- */

.aim-card {
  position: relative;
  overflow: hidden;
  cursor: default;
}

.aim-card::before,
.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      transparent 20%,
      rgba(255, 255, 255, 0.35) 50%,
      transparent 80%
    );
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.aim-card:hover::before,
.info-card:hover::before {
  transform: translateX(120%);
}

.aim-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 95, 169, 0.38);
  box-shadow:
    0 16px 30px rgba(18, 73, 120, 0.12),
    0 3px 8px rgba(18, 73, 120, 0.06);
}

.card-icon {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.aim-card:hover .card-icon {
  transform: rotate(-6deg) scale(1.08);
  box-shadow:
    0 8px 18px rgba(30, 80, 130, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* ---------------------------------------------------------
   SUMMARY BOX
   --------------------------------------------------------- */

.summary-box {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.summary-box:hover {
  transform: translateX(3px);
  box-shadow: 0 8px 20px rgba(18, 73, 120, 0.08);
}

/* ---------------------------------------------------------
   INFO CARDS
   --------------------------------------------------------- */

.info-card {
  position: relative;
  overflow: hidden;
}

.info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 95, 169, 0.4);
  box-shadow:
    0 16px 30px rgba(18, 73, 120, 0.11),
    0 3px 8px rgba(18, 73, 120, 0.05);
}

.info-card a {
  position: relative;
  width: fit-content;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.info-card a::after {
  content: " →";
  display: inline-block;
  transition: transform 0.2s ease;
}

.info-card a:hover {
  color: var(--primary-blue-dark);
  transform: translateX(3px);
}

.info-card a:hover::after {
  transform: translateX(4px);
}

/* ---------------------------------------------------------
   ADVERTISEMENT
   --------------------------------------------------------- */

.ad-box {
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.ad-box:hover {
  border-color: rgba(14, 95, 169, 0.8);
  background: rgba(255, 255, 255, 0.24);
}

/* ---------------------------------------------------------
   FOOTER LINKS
   --------------------------------------------------------- */

.footer-links a {
  position: relative;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary-blue);
  padding-left: 4px;
}

/* ---------------------------------------------------------
   SOCIAL ICONS
   --------------------------------------------------------- */

.social-icons a {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.social-icons a:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow:
    0 12px 22px rgba(17, 98, 182, 0.25);
}

.social-icons a:active {
  transform: scale(0.94);
}

/* ---------------------------------------------------------
   RIPPLE EFFECT
   --------------------------------------------------------- */

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transform: scale(0);
  animation: ripple-animation 0.65s ease-out;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ---------------------------------------------------------
   SCROLL PROGRESS
   --------------------------------------------------------- */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  z-index: 2000;
  background: linear-gradient(
    90deg,
    var(--brand-red),
    var(--primary-blue)
  );
  transition: width 0.08s linear;
}

/* ---------------------------------------------------------
   SUBTLE PAGE ENTRY
   --------------------------------------------------------- */

main {
  animation: page-enter 0.55s ease both;
}

@keyframes page-enter {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 640px) {
  .topbar.scrolled {
    backdrop-filter: blur(12px);
  }

  .hero-slider {
    width: min(100% - 20px, 100%);
  }

  .slider-inner,
  .slides {
    min-height: 360px;
  }

  .slide-content {
    margin-left: 18px;
    margin-right: 18px;
    padding: 28px 0;
  }

  .slide-content h2 {
    font-size: 1.8rem;
  }

  .slide-content p {
    font-size: 0.95rem;
  }

  .slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }

  .nav-item::after {
    left: 8px;
    right: 8px;
  }

  .aim-card:hover,
  .info-card:hover {
    transform: translateY(-3px);
  }
}

/* ---------------------------------------------------------
   REDUCED MOTION
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}