:root {
  --primary: #fcbf49;
  --primary-deep: #f39b00;
  --secondary: #1b5e72;
  --secondary-deep: #113d4f;
  --accent: #6ec6c8;
  --text: #1c2430;
  --muted: #5b6472;
  --surface: #f7f8fb;
  --surface-strong: #eef4f7;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(23, 42, 69, 0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

button, input, textarea { font: inherit; }

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  background: rgba(27, 94, 114, 0.08);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.section-heading {
  margin: 0;
  font-family: "Merriweather", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
  color: var(--text);
}

.section-lead {
  margin: 1rem auto 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(17, 61, 79, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 86px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--secondary-deep);
}

.brand img {
  width: 150px;
  height: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  flex: 1;
}

.nav-desktop a {
  position: relative;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  background: var(--primary-deep);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-desktop a:hover::after,
.nav-desktop a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  box-shadow: 0 12px 24px rgba(243, 155, 0, 0.28);
}

.btn-secondary {
  color: var(--secondary-deep);
  background: rgba(27, 94, 114, 0.1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(17, 61, 79, 0.12);
  background: var(--white);
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  position: relative;
  width: 18px;
  height: 2px;
  background: var(--secondary-deep);
  border-radius: 2px;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

.mobile-menu {
  display: none;
  padding: 0.75rem 0 1rem;
  border-top: 1px solid rgba(17, 61, 79, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

.mobile-menu.open { display: block; }

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.mobile-menu a {
  padding: 0.8rem 1rem;
  border-radius: 12px;
  background: rgba(17, 61, 79, 0.03);
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(12, 37, 48, 0.78), rgba(19, 57, 73, 0.58));
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1.4s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8, 24, 34, 0.82), rgba(8, 24, 34, 0.2));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.hero-copy {
  max-width: 760px;
  color: var(--white);
}

.eyebrow {
  display: inline-block;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255,255,255,0.22);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  margin: 1rem 0 1.2rem;
  font-family: "Merriweather", serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.08;
}

.hero p {
  font-size: 1.08rem;
  max-width: 620px;
  color: rgba(255,255,255,0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-actions .btn-primary {
  box-shadow: 0 16px 32px rgba(252, 191, 73, 0.4);
}

.hero-metrics {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 980px;
}

.metric-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 1.2rem;
  backdrop-filter: blur(8px);
}

.metric-card strong {
  display: block;
  font-size: clamp(1.6rem, 2vw, 2.1rem);
  font-weight: 800;
  color: var(--white);
}

.metric-card span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.93rem;
}

.stats-section,
.about-section,
.programs-section,
.milestones-section,
.testimonials-section,
.contact-section {
  padding: 5rem 0;
}

.stats-grid,
.program-grid,
.footer-grid,
.testimonial-grid {
  display: grid;
  gap: 1.5rem;
}

.stats-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 2.5rem;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(17, 61, 79, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.stat-card .value {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 800;
  color: var(--secondary-deep);
}

.stat-card .label {
  color: var(--muted);
  line-height: 1.5;
}

.about-layout,
.program-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-image,
.program-card img {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.about-copy {
  background: var(--white);
  border-radius: 28px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow);
}

.about-copy p {
  color: var(--muted);
  margin: 0;
}

.about-copy p + p {
  margin-top: 1rem;
}

.programs-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2rem;
}

.program-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.program-card {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(17, 61, 79, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(23, 42, 69, 0.14);
}

.program-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.program-card-content {
  padding: 1.25rem 1.25rem 1.5rem;
}

.program-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.12rem;
}

.program-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.milestones-section {
  background: linear-gradient(180deg, #eaf6f8 0%, #f6f9fc 100%);
}

.milestones-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.milestone-card {
  background: var(--white);
  border-radius: 22px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(17, 61, 79, 0.05);
}

.milestone-card .count {
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  font-weight: 800;
  color: var(--secondary-deep);
}

.milestone-card .label {
  margin-top: 0.5rem;
  color: var(--muted);
  line-height: 1.5;
}

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(27, 94, 114, 0.96), rgba(17, 61, 79, 1));
  color: var(--white);
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-content h2 {
  margin: 0;
  font-family: "Merriweather", serif;
  font-size: clamp(2rem, 3vw, 3rem);
}

.cta-content p {
  margin: 0.75rem 0 0;
  color: rgba(255,255,255,0.8);
  max-width: 650px;
}

.testimonials-section {
  background: #f4f8fa;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(17, 61, 79, 0.05);
}

.testimonial-card p {
  color: var(--muted);
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 700;
  color: var(--text);
}

.footer {
  background: #18232d;
  color: rgba(255,255,255,0.84);
  padding-top: 4rem;
}

.footer-grid {
  grid-template-columns: 1.1fr 0.9fr 0.9fr 1.1fr;
  padding-bottom: 2.5rem;
}

.footer h3 {
  margin: 0 0 1rem;
  color: var(--white);
  font-size: 1.05rem;
}

.footer p,
.footer li,
.footer a {
  color: rgba(255,255,255,0.72);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-list {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.social-list a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 0 1.5rem;
  text-align: center;
  color: rgba(255,255,255,0.64);
}

.page-hero {
  position: relative;
  background: linear-gradient(135deg, rgba(12, 37, 48, 0.82), rgba(19, 57, 73, 0.62)),
    url('https://blazetrust.org/wp-content/uploads/2021/03/DSCN0152-scaled.jpg') center/cover no-repeat;
  min-height: 420px;
  display: flex;
  align-items: center;
  color: var(--white);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 5rem 0 4rem;
}

.page-hero h1 {
  margin: 0;
  font-family: "Merriweather", serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.page-hero p {
  margin: 1rem 0 0;
  max-width: 720px;
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
}

.page-shell {
  padding: 4rem 0;
}

.content-card {
  background: var(--white);
  border-radius: 26px;
  padding: clamp(1.5rem, 2vw, 2.5rem);
  box-shadow: var(--shadow);
  border: 1px solid rgba(17, 61, 79, 0.05);
}

.page-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.page-grid img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.page-grid p,
.content-card p,
.content-card li {
  color: var(--muted);
  line-height: 1.8;
}

.content-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.content-list li {
  position: relative;
  padding-left: 1.5rem;
}

.content-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-deep);
  font-size: 1.5rem;
  line-height: 1;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.info-card {
  background: var(--white);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(17, 61, 79, 0.05);
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: 0.65rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(17, 61, 79, 0.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.gallery-item .caption {
  padding: 1rem 1rem 1.2rem;
  color: var(--muted);
  font-weight: 600;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.report-card {
  background: var(--white);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(17, 61, 79, 0.05);
}

.report-card h3 {
  margin-top: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-card {
  background: var(--white);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(17, 61, 79, 0.05);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 61, 79, 0.12);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: #f9fafb;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

@media (max-width: 980px) {
  .nav-desktop,
  .nav-actions .btn-secondary {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: 640px;
  }

  .hero-metrics,
  .stats-grid,
  .program-grid,
  .milestones-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-layout,
  .program-layout,
  .cta-content {
    grid-template-columns: 1fr;
    display: grid;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 560px;
  }

  .hero-content {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }

  .hero-metrics,
  .stats-grid,
  .program-grid,
  .milestones-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .programs-header {
    display: block;
  }

  .section-heading {
    font-size: 2rem;
  }

  .brand img {
    width: 120px;
  }
}
