:root {
  --primary-green: #0b7a39;
  --accent-green: #35b66b;
  --soft-green: #e6f6ec;
  --dark: #111827;
  --muted: #6b7280;
  --white: #ffffff;
  --border: #04d175;
  --shadow-soft: 0 15px 35px rgba(0, 0, 0, 0.06);
  --radius-xl: 18px;
  --transition: all 0.25s ease;
}

/* RESET & BASE */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  background-color: #cbe9da;
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.link-underline {
  text-decoration: underline;
}

/* HEADER / NAV */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

/* Mobile nav overlay */

#navOverlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  z-index: 40;
  transition: opacity 0.18s ease;
}

#navOverlay[aria-hidden="true"] {
  opacity: 0;
  pointer-events: none;
}

#navOverlay[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #ffffff 0, #35b66b 45%, #0b7a39 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 10px 25px rgba(0, 123, 67, 0.35);
}

.logo-text-main {
  font-weight: 700;
  font-size: 1.1rem;
}

.logo-text-sub {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: -0.2rem;
}

/* Desktop nav */

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.15rem;
  color: var(--muted);
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-green);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary-green);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 18px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Buttons */

.btn {
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.btn-outline {
  border-color: var(--primary-green);
  color: var(--primary-green);
  background: transparent;
}

.btn-outline:hover {
  background: var(--soft-green);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
  color: var(--white);
  box-shadow: 0 12px 30px rgba(11, 122, 57, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(11, 122, 57, 0.45);
}

/* Mobile nav toggle */

.nav-toggle {
  display: none;
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #ffffff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--dark);
  margin: 3px 0;
  transition: var(--transition);
}

/* HERO SECTION (supports video background if used) */

.hero {
  padding: 4.5rem 0 3.5rem;
  background: radial-gradient(circle at bottom left, #e7f9ef 60%, #f0f0f2 40%, #04000c 0%);
  position: relative;
  overflow: hidden;
}

/* Optional video background */

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.hero-video .bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.8);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 33, 13, 0.35),
    rgba(5, 33, 13, 0.1) 45%,
    rgba(5, 33, 13, 0.45)
  );
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  color: #ffffff;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(11, 122, 57, 0.07);
  color: var(--primary-green);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary-green);
}

.hero-title {
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: #cdd9d2;
}

.hero-title span {
  color: var(--primary-green);
}

.hero-subtitle {
  font-size: 0.98rem;
  color: rgba(237, 108, 10, 0.98);
  max-width: 32rem;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 1.4rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-meta strong {
  display: block;
  color: var(--primary-green);
  font-size: 1rem;
}

.hero-card {
  background: var(--white);
  border-radius: 28px;
  padding: 1.4rem 1.3rem 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(11, 122, 57, 0.08);
  color: var(--dark);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.hero-card-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-pill {
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: var(--soft-green);
  font-size: 0.75rem;
  color: var(--primary-green);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

.hero-stat {
  padding: 0.8rem 0.7rem;
  border-radius: 16px;
  background: #f3f4f6;
  font-size: 0.8rem;
}

.hero-stat strong {
  display: block;
  font-size: 1rem;
  color: var(--primary-green);
}

.hero-quote {
  border-radius: 14px;
  padding: 0.7rem 0.8rem;
  font-size: 0.78rem;
  background: #f9fafb;
  border: 1px dashed #d1d5db;
  color: var(--muted);
}

.hero-quote span {
  color: var(--primary-green);
  font-weight: 600;
}

/* SECTION BASE */

section {
  padding: 3.5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.3rem;
}

.section-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.section-subtitle {
  font-size: 0.9rem;
  max-width: 36rem;
  margin: 0 auto;
  color: var(--muted);
}

/* ABOUT GRID */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(229, 231, 235, 0.8);
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.card p:last-child {
  margin-bottom: 0;
}

.about-list {
  list-style: none;
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.about-list li {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

.about-bullet {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary-green);
  margin-top: 0.34rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: var(--muted);
}

/* VISION & MISSION */

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

.highlight-strip {
  width: 48px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
  margin-bottom: 0.7rem;
}

/* THREE COL (HOW IT WORKS) */

.three-col {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--soft-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary-green);
  margin-bottom: 0.7rem;
}

.muted {
  color: var(--muted);
  font-size: 0.9rem;
}

/* IMPACT & GOALS */

.impact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 1.6rem;
  align-items: stretch;
}

.timeline {
  list-style: none;
  border-left: 2px solid #e5e7eb;
  padding-left: 1rem;
  margin-top: 0.6rem;
}

.timeline-item {
  position: relative;
  padding-bottom: 0.9rem;
  margin-bottom: 0.5rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.13rem;
  top: 0.11rem;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--white);
  border: 2px solid var(--primary-green);
}

.timeline-year {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 0.1rem;
}

.goal-list {
  list-style: none;
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.goal-list li {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

.goal-icon {
  color: var(--primary-green);
  margin-top: 0.1rem;
}

/* QUOTES */

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.quote-card {
  background: #f9fafb;
  border-radius: var(--radius-xl);
  padding: 1rem 1.1rem;
  border: 1px solid #e5e7eb;
  font-size: 0.85rem;
  color: var(--muted);
}

.quote-author {
  margin-top: 0.6rem;
  font-weight: 500;
  color: var(--primary-green);
  font-size: 0.8rem;
}

/* REGISTRATION FORM */

.reg-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.reg-highlight {
  font-size: 0.93rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.reg-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: var(--soft-green);
  color: var(--primary-green);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.office-details {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 0.6rem;
}

.reg-form {
  background: var(--white);
  border-radius: 22px;
  padding: 1.4rem 1.4rem 1.7rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(11, 122, 57, 0.12);
  font-size: 0.86rem;
}

.reg-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

.reg-logo-text {
  font-weight: 600;
  color: var(--primary-green);
  font-size: 0.95rem;
}

.reg-code {
  font-size: 0.8rem;
  color: var(--muted);
}

.reg-title {
  text-align: center;
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0.4rem 0 0.1rem;
}

.reg-motto {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.reg-fee {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 0.9rem;
}

.reg-section-title {
  font-weight: 600;
  font-size: 0.86rem;
  margin: 0.7rem 0 0.3rem;
  text-transform: uppercase;
}

.reg-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}

.reg-row-single {
  display: block;
  margin-bottom: 0.4rem;
}

.reg-group {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.reg-label {
  font-size: 0.78rem;
  color: var(--muted);
}

.reg-input {
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  padding: 0.35rem 0.55rem;
  font-size: 0.82rem;
  outline: none;
}

.reg-input:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 1px rgba(11, 122, 57, 0.15);
}

.reg-note {
  margin: 0.7rem 0;
  padding: 0.55rem 0.6rem;
  border-radius: 10px;
  background: #fef9c3;
  border: 1px solid #fde68a;
  font-size: 0.8rem;
  text-align: center;
}

.reg-note span {
  display: block;
  color: var(--primary-green);
  font-weight: 600;
  margin-top: 0.15rem;
}

.reg-official {
  margin-top: 0.8rem;
  font-weight: 600;
  font-size: 0.86rem;
  text-align: center;
}

.reg-official-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.reg-submit {
  margin-top: 1rem;
  text-align: right;
}

.reg-submit button {
  padding-inline: 1.6rem;
}

/* PAYMENT METHODS (no image logos, circular text badges) */

.payment-methods {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .payment-methods {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.payment-card {
  display: block;
  cursor: pointer;
}

.payment-card input[type="radio"] {
  display: none;
}

.payment-card-inner {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 0.9rem 1rem;
  display: flex;
  gap: 0.9rem;
  align-items: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease, transform 0.1s ease;
  background-color: #ffffff;
}

.payment-card-inner:hover {
  border-color: #16a34a;
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.12);
  transform: translateY(-1px);
}

.payment-card input[type="radio"]:checked + .payment-card-inner {
  border-color: #16a34a;
  box-shadow: 0 12px 30px rgba(22, 163, 74, 0.18);
  background-color: #ecfdf3;
}

.payment-logo-circle {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: #ffffff;
}

.payment-logo-bank {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
}

.payment-logo-paypal {
  background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
}

.payment-logo-cash {
  background: linear-gradient(135deg, #15803d, #22c55e);
}

.payment-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.payment-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: #111827;
}

.payment-desc {
  font-size: 0.83rem;
  color: #6b7280;
  line-height: 1.4;
}

strong {
  color: red;
}

#director {
  border-radius: 100px;
}

/* MEDIA GRID: slider + gallery */

.media-grid {
  display: grid;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 900px) {
  .media-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  }
}

/* Slider */

.slider {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  background: #000;
}

.slides {
  display: flex;
  transition: transform 0.4s ease;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .slide img {
    height: 320px;
  }
}

.slide-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.75rem 0.9rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #f9fafb;
  font-size: 0.85rem;
}

.slide-title {
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.slide-text {
  font-size: 0.8rem;
}

/* Slider controls */

.slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0.75rem;
  background: #f9fafb;
  font-size: 0.8rem;
}

.slider-buttons {
  display: flex;
  gap: 0.5rem;
}

.slider-btn {
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: #ffffff;
  padding: 0.2rem 0.6rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1;
}

.slider-btn:hover {
  border-color: #16a34a;
}

/* Gallery */

.gallery-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid #e5e7eb;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.gallery-grid img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 0.6rem;
}

/* VIDEO GRID */

.video-grid {
  display: grid;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 900px) {
  .video-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  }
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 1rem;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-soft);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-text {
  font-size: 0.9rem;
  color: var(--muted);
}

/* HERO IMAGE SLIDER (if used) */

.hero-image-slider {
  margin-top: 0.7rem;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  width: 100%;
}

.hero-slides {
  display: flex;
  transition: transform 0.4s ease;
  width: 100%;
}

.hero-slide {
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
}

.hero-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.hero-slider-controls {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0.6rem;
}

.hero-slider-btn {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hero-slider-indicator {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  margin: 0 0.75rem;
}

/* FAQ */

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.8rem;
  align-items: flex-start;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 0.8rem 0;
}

.faq-q {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.faq-a {
  font-size: 0.87rem;
  color: var(--muted);
}

.faq-tagline {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.faq-highlight {
  font-size: 0.85rem;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  background: var(--soft-green);
  color: #064e22;
  margin-bottom: 0.8rem;
}

.contact-card {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-card strong {
  color: var(--primary-green);
}

/* CTA */

.cta {
  padding: 3rem 0 3.4rem;
  background: linear-gradient(135deg, #0b7a39, #0f9e50);
  color: var(--white);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.cta-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cta-text {
  font-size: 0.93rem;
  color: #e5f8ec;
  margin-bottom: 1.1rem;
  max-width: 32rem;
}

.cta-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  font-size: 0.85rem;
}

.cta-point {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.cta-check {
  margin-top: 0.12rem;
  font-size: 1rem;
}

.cta-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.88rem;
}

.cta-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.cta-card p {
  color: #e5f8ec;
  margin-bottom: 0.6rem;
}

.cta-card small {
  display: block;
  font-size: 0.78rem;
  color: #c7f3d6;
  margin-bottom: 0.4rem;
}

/* FOOTER */

footer {
  padding: 1.6rem 0 2.4rem;
  background: #020617;
  color: #9ca3af;
  font-size: 0.8rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
}

.footer-nav {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #9ca3af;
}

.footer-nav a:hover {
  color: #e5e7eb;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(55, 65, 81, 0.6);
  padding-top: 0.8rem;
}

/* FLAG */

.flag {
  display: inline-flex;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid #9ca3af;
}

.flag span {
  display: block;
  width: 10px;
  height: 10px;
}

.flag-green {
  background: #008751;
}

.flag-white {
  background: #ffffff;
}

/* UTILITIES */

.mt-1-3 {
  margin-top: 1.3rem;
}

.mt-0-8 {
  margin-top: 0.8rem;
}

.text-small {
  font-size: 0.95rem;
}

.flex-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* RESPONSIVE BREAKPOINTS */

/* Medium: stack grids */

@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .impact-grid,
  .faq-layout,
  .cta-inner,
  .reg-layout,
  .media-grid,
  .video-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .three-col,
  .quotes-grid,
  .cta-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile nav + further stacking */

@media (max-width: 800px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 0.18rem;
    border: 1px solid var(--border);
    background: #ffffff;
  }

  .nav-toggle span {
    background: #111827;
  }

  .nav.nav-open {
    background: #ffffff;
    flex-wrap: wrap;
  }

  .nav.nav-open .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 0.75rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    z-index: 45;
  }

  .nav.nav-open .nav-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 0.25rem 1.25rem 0.7rem;
    gap: 0.5rem;
  }

  .three-col,
  .quotes-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Small phones */

@media (max-width: 480px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .nav {
    padding: 0.6rem 0;
  }

  .hero {
    padding: 2.2rem 0 2rem;
  }

  .hero-video {
    display: none; /* save bandwidth and avoid autoplay issues on very small devices */
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-actions {
    gap: 0.5rem;
  }

  .hero-card {
    margin-top: 0.9rem;
  }

  .reg-row {
    grid-template-columns: 1fr;
  }

  .reg-official-grid {
    grid-template-columns: 1fr;
  }

  .reg-submit {
    text-align: center;
  }

  .reg-submit button {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: block;
  }

  .reg-input {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .slide img {
    height: 180px;
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cta-points {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .hero-title {
    font-size: 1.6rem;
  }
}
