/* ===== About page ===== */
.about-main {
  padding: 0;
  padding-top: 6rem;
  min-height: 60vh;
}

/* About Us header (dark teal + blue lines) */
.about-page-header {
  background: #0C5780;
  padding: 3rem 1.5rem;
  text-align: center;
}
.about-header-inner {
  max-width: 800px;
  margin: 0 auto;
}
.about-title {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
}
.about-subtitle {
  margin: 0;
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
}

/* Orange divider */
.about-divider {
  height: 4px;
  background: #f97316;
  width: 100%;
}

/* Our Story section */
.our-story {
  position: relative;
  background: #fff;
  padding: 4rem;
  overflow: hidden;
}
.our-story::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url('../public/about/our-story-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
  /* filter: grayscale(100%); */
  pointer-events: none;
  z-index: 0;
}
.our-story-inner {
  position: relative;
  z-index: 1;
}
.our-story-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #1f2937;
}
.our-story-line {
  display: block;
  width: 60px;
  height: 4px;
  background: #0C5780;
  margin-bottom: 2rem;
  border-radius: 2px;
}
.our-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
  align-items: start;
}
.our-story-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.our-story-heading {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.3;
}
.our-story-col p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
  text-align: justify;
}

/* ===== Milestones section ===== */
.milestones {
  background: #fff;
  padding: 3rem 4rem;
}
.milestones-inner {
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 0.5rem;
  min-height: 200px;
}
.milestones-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  background: #d1d5db;
  z-index: 0;
}
.milestone {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 180px;
}
.milestone-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 0 0.25rem;
  min-height: 3.5rem;
}
.milestone-content.milestone-below {
  justify-content: flex-start;
}
.milestone-content:empty {
  min-height: 3rem;
}
.milestone-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0e7490;
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px #0e7490;
  flex-shrink: 0;
  margin: 0.5rem 0;
}
.milestone-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #f97316;
  margin-bottom: 0.25rem;
}
.milestone-desc {
  display: block;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #1f2937;
  text-align: center;
}
.milestone[data-position="above"] .milestone-above {
  order: 1;
}
.milestone[data-position="above"] .milestone-dot {
  order: 2;
}
.milestone[data-position="above"] .milestone-below {
  order: 3;
}

/* ===== Quote section ===== */
.quote-section {
  background: #bae6fd;
  padding: 4rem;
  text-align: center;
}
.quote-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.quote-block {
  margin: 0;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  text-align: left;
}
.quote-image {
  flex-shrink: 0;
  width: auto;
  height: clamp(3rem, 8vw, 4.5rem);
  max-width: 80px;
  object-fit: contain;
  display: block;
  margin-bottom: 6px;
}
.quote-content {
  flex: 1;
  min-width: 0;
  text-align: left;
}
.quote-text {
  margin: 0;
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  font-style: normal;
  color: #1f2937;
  line-height: 1.4;
  font-weight: 400;
  white-space: nowrap;
  font-family: "Metal", serif;
}

/* ===== Services section ===== */
.services-section {
  background: #fff;
  padding: 4rem;
}
.services-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: start;
}
.service-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.service-icon {
  display: block;
  margin-bottom: 1.25rem;
  line-height: 0;
}
.service-icon svg {
  width: 64px;
  height: 64px;
}
.service-title {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
}
.service-desc {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #374151;
  text-align: center;
}

/* ===== VMV section (Vision, Mission, Values) ===== */
.vmv-section {
  background: linear-gradient(180deg, #ffffff 0%, #E6F2FF 100%);
  padding: 4rem 1.25rem;
}
.vmv-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
  max-width: 1705px;
  margin: 0 auto;
}
.vmv-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem 1.75rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 0;
}
.vmv-icon {
  display: block;
  margin: -3.5rem auto 1.25rem;
  line-height: 0;
  flex-shrink: 0;
}
.vmv-icon img {
  width: 56px;
  height: 56px;
}
.vmv-title {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.vmv-desc {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #374151;
  text-align: center;
  flex: 1;
  min-height: 0;
}

/* ===== Who We Are (about page) ===== */
.who-we-are-about {
  background: #fff;
  padding: 4rem;
}
.who-we-are-about-inner {
  position: relative;
}
.who-we-are-about-text {
  width: calc(50% - 1.5rem);
  padding-right: 3rem;
  box-sizing: border-box;
}
.who-we-are-about-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #1f2937;
}
.who-we-are-about-line {
  display: block;
  width: 60px;
  height: 4px;
  background: #0C5780;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}
.who-we-are-about-text p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
  text-align: left;
}
.who-we-are-about-text p:last-child {
  margin-bottom: 0;
}
.who-we-are-about-image-wrap {
  position: absolute;
  left: calc(50% + 1.5rem);
  top: 0;
  bottom: 0;
  right: 0;
  width: calc(50% - 1.5rem);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.who-we-are-about-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
  object-position: center center;
}

/* ===== Donate Now (about page) ===== */
.donate-now-about {
  background: #e0f2fe;
  padding: 4rem 1.5rem;
  position: relative;
}
.donate-now-about-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.donate-now-about-title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #1f2937;
}
.donate-now-about-desc {
  margin: 0 0 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #374151;
  white-space: nowrap;
}
.donate-now-about-btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  background: #f97316;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.donate-now-about-btn:hover {
  background: #ea580c;
}
.donate-now-about-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #0a719d;
}

/* Responsive */
@media (max-width: 768px) {
  .our-story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .our-story {
    padding: 2.5rem 1rem 3rem;
  }
  .our-story::before {
    opacity: 0.06;
  }
  .milestones-inner {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .milestones-line {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
  }
  .milestone {
    max-width: 100%;
    flex-direction: column !important;
  }
  .milestone[data-position="above"] {
    flex-direction: column !important;
  }
  .milestone-dot { order: 0; }
  .quote-section { padding: 3rem 1rem; }
  .quote-block { gap: 0.75rem; padding: 0 1rem; }
  .quote-image { height: clamp(2.5rem, 10vw, 3.5rem); }
  .quote-text { white-space: normal; }
  .services-section { padding: 3rem 1rem; }
  .services-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }
  .vmv-section { padding: 3rem 1rem; }
  .vmv-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .vmv-card { padding: 2.5rem 1.5rem; }
  .vmv-icon { margin-top: 0; }
  .who-we-are-about { padding: 3rem 1rem; }
  .who-we-are-about-text {
    width: 100%;
    padding-right: 0;
  }
  .who-we-are-about-image-wrap {
    position: static;
    width: 100%;
    margin-top: 2rem;
  }
  .who-we-are-about-image {
    height: auto;
    width: 100%;
    object-fit: fill;
  }
  .donate-now-about { padding: 3rem 1rem; }
  .donate-now-about-desc { white-space: normal; }
}
