/* ==========================================================================
   about.css — About page layout.
   Loaded only on about.html / en/about.html. Monochrome, generous
   whitespace, thin rules — matches the rest of the site.
   ========================================================================== */

.about-page .subtitle {
  display: inline-block;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  color: #8a8a8a;
  margin-bottom: 14px;
}

/* WOW.js only toggles visibility (there are no keyframes for fadeInUp in this
   build) and it sometimes misses elements under the smooth-scroller. Keep the
   About content visible no matter what. */
.about-overview .wow,
.about-message .wow,
.about-vmv .wow,
.about-principles .wow { visibility: visible !important; }

/* ---------- 1. Overview ---------- */
.about-overview { padding: 120px 0; }
.about-overview .section-title h2 { margin-bottom: 26px; }
.about-overview .lead-text {
  font-family: "Afacad Flux", "Cairo", sans-serif;
  font-size: 23px;
  line-height: 1.6;
  color: #111;
  margin-bottom: 22px;
}
.about-overview p {
  font-size: 17px;
  line-height: 1.95;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 20px;
}
.about-overview .section-link { margin-top: 14px; }

.about-figure {
  position: relative;
  min-height: 460px;
  height: 100%;
  overflow: hidden;
}
.about-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s ease;
}
.about-figure:hover img { transform: scale(1.04); }
.about-figure::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

/* ---------- 2. Chairman's message (dark band) ---------- */
.about-message {
  background: #0f0f0f;
  color: #fff;
  padding: 120px 0;
}
.about-message .subtitle { color: rgba(255, 255, 255, 0.55); }
.about-message blockquote {
  font-family: "Afacad Flux", "Cairo", sans-serif;
  font-weight: 400;
  font-size: clamp(23px, 3.2vw, 38px);
  line-height: 1.55;
  color: #fff;
  margin: 22px 0 34px;
  position: relative;
  padding-top: 26px;
}
.about-message blockquote::before {
  content: "\201C";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 130px;
  line-height: 1;
  color: #b79f4f;
  position: absolute;
  top: -18px;
  left: -8px;
  opacity: 0.4;
}
.about-message .attribution {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-block;
}

/* ---------- 3. Vision / Mission / Values ---------- */
.about-vmv { padding: 120px 0; }
.about-vmv .section-title { margin-bottom: 54px; }
.vmv-card {
  border: 1px solid #e6e6e6;
  padding: 46px 38px;
  height: 100%;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}
.vmv-card:hover { background: #0f0f0f; border-color: #0f0f0f; }
.vmv-card:hover h3 { color: #fff; }
.vmv-card:hover p { color: rgba(255, 255, 255, 0.7); }
.vmv-card:hover .vmv-num { color: #b79f4f; border-color: #b79f4f; }
.vmv-num {
  font-family: "Afacad Flux", "Cairo", sans-serif;
  font-size: 19px;
  width: 56px;
  height: 56px;
  border: 1px solid #111;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: 0.35s ease;
}
.vmv-card h3 { font-size: 24px; margin-bottom: 14px; transition: color 0.35s ease; }
.vmv-card p {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(0, 0, 0, 0.55);
  margin: 0;
  transition: color 0.35s ease;
}

/* ---------- 4. Principles ---------- */
.about-principles { padding: 0 0 130px; }
.about-principles .section-title { margin-bottom: 26px; }
.principle {
  border-top: 1px solid #e6e6e6;
  padding: 34px 0;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 26px;
  align-items: start;
}
.principle:last-child { border-bottom: 1px solid #e6e6e6; }
.principle .p-index {
  font-family: "Afacad Flux", "Cairo", sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  color: #b0b0b0;
  padding-top: 6px;
}
.principle h4 { font-size: 22px; margin: 0 0 8px; }
.principle p {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(0, 0, 0, 0.55);
  margin: 0;
  max-width: 620px;
}

/* ---------- RTL ---------- */
[dir="rtl"] .about-message blockquote { padding-right: 0; }
[dir="rtl"] .about-message blockquote::before { left: auto; right: -8px; }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .about-overview,
  .about-vmv { padding: 74px 0; }
  .about-message { padding: 74px 0; }
  .about-principles { padding-bottom: 84px; }
  .about-figure { min-height: 0; height: auto; margin-top: 8px; }
  .about-figure img { height: auto; aspect-ratio: 3 / 2; }
  .about-vmv .section-title { margin-bottom: 34px; }
}
@media (max-width: 767px) {
  .about-overview .lead-text { font-size: 20px; }
  .about-overview p { font-size: 16px; }
  .vmv-card { padding: 32px 26px; }
  .vmv-card + .vmv-card,
  .about-vmv .row > [class*="col-"] + [class*="col-"] { margin-top: 16px; }
  .principle { grid-template-columns: 1fr; gap: 6px; }
  .principle .p-index { padding-top: 0; }
  .about-message blockquote::before { font-size: 90px; top: -6px; }
}
