

/* ── 1. HERO BANNER (top: 0, h: 500px) ─────────────────────── */
.about-hero {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  background: url("../images/about_bg.074df2b422a4.jpg") center / cover no-repeat;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.about-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 16px;
}

.about-hero__title {
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  font-size: 60px;
  line-height: 60px;
  text-align: center;
  color: #FFFFFF;
  margin: 0;
}

.about-hero__subtitle {
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  color: #FFFFFF;
  margin: 0;
  max-width: 700px;
}

/* ── 2. STATS STRIP (top: 500px, h: 208px, bg: #6B7330) ────── */
.about-stats {
  background: #6B7330;
  width: 100%;
  height: 208px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-stats__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 1536px;
  padding: 0 160px;
}

.about-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 280px;
  flex-shrink: 0;
}

.about-stats__number {
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 48px;
  text-align: center;
  color: #FFFFFF;
  margin: 0;
}

.about-stats__label {
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #FFFFFF;
  opacity: 0.9;
  margin: 0;
}

/* ── 3. WHO WE ARE (top: 788px) ─────────────────────────────── */
.about-whoweare {
  padding: 80px 0;
  background: #FFFFFF;
}

.about-whoweare__inner {
  max-width: 1536px;
  margin: 0 auto;
  padding: 0 224px;
}

.about-section-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-left: 36px;
  border-left: 4px solid #A4AC56;
}

.about-section-block__heading {
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 40px;
  color: #3A3A1A;
  margin: 0;
}

.about-section-block__text {
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  color: #364153;
  margin: 0;
}

/* ── 4. CORE VALUES (bg: #F9FAFB) ───────────────────────────── */
.about-corevalues {
  background: #F9FAFB;
  padding: 80px 0;
}

.about-corevalues__inner {
  max-width: 1536px;
  margin: 0 auto;
  padding: 0 128px 0 160px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.about-corevalues__heading {
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 40px;
  text-align: center;
  color: #3A3A1A;
  margin: 0;
}

.about-corevalues__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.about-value-card {
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1),
              0px 2px 4px -2px rgba(0, 0, 0, 0.1);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  min-height: 270px;
}

.about-value-card__icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-value-card__icon-wrap--1 { background: #A4AC56; }
.about-value-card__icon-wrap--2 { background: #7A823A; }
.about-value-card__icon-wrap--3 { background: #8A923E; }

.about-value-card__icon-wrap i {
  font-size: 28px;
  color: #FFFFFF;
}

.about-value-card__title {
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: #3A3A1A;
  margin: 0;
}

.about-value-card__desc {
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  text-align: center;
  color: #364153;
  margin: 0;
}

/* ── 5. MISSION & VISION ─────────────────────────────────────── */
.about-mission-vision {
  background: #FFFFFF;
  padding: 80px 0;
}

.about-mission-vision__inner {
  max-width: 1536px;
  margin: 0 auto;
  padding: 0 160px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.about-mv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-mv-row--reverse {
  direction: rtl;
}

.about-mv-row--reverse > * {
  direction: ltr;
}

.about-mv-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.about-mv-text__heading {
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 40px;
  color: #3A3A1A;
  margin: 0;
}

.about-mv-text__para {
  font-family: 'Arimo', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  color: #364153;
  margin: 0;
}

.about-mv-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1),
              0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  height: 320px;
}

.about-mv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .about-whoweare__inner { padding: 0 64px; }
  .about-corevalues__inner { padding: 0 64px; }
  .about-mission-vision__inner { padding: 0 64px; }
  .about-stats__inner { padding: 0 40px; gap: 20px; }
  .about-stats__item { width: auto; flex: 1; }
}

@media (max-width: 900px) {
  .about-hero__title { font-size: 42px; }
  .about-hero__subtitle { font-size: 18px; }
  .about-stats { height: auto; padding: 40px 24px; }
  .about-stats__inner { flex-wrap: wrap; gap: 32px; padding: 0 24px; }
  .about-stats__item { width: 45%; }
  .about-whoweare__inner { padding: 0 24px; }
  .about-corevalues__inner { padding: 0 24px; }
  .about-corevalues__grid { grid-template-columns: 1fr; }
  .about-mission-vision__inner { padding: 0 24px; }
  .about-mv-row { grid-template-columns: 1fr; }
  .about-mv-row--reverse { direction: ltr; }
}

@media (max-width: 576px) {
  .about-hero { height: 380px; }
  .about-hero__title { font-size: 32px; line-height: 40px; }
  .about-hero__subtitle { font-size: 15px; }
  .about-stats__item { width: 100%; }
  .about-stats__number { font-size: 36px; }
}
