@import url("tokens.css");

/* =============================================================
   "About us" page — extra components not covered by home.css
   ============================================================= */

/* ============ VIDEO BANNER (decorative, no real video) ======= */
.video-banner {
  padding-block: 90px;
}
.video-banner__box {
  width: 100%;
  height: 730px;
  background: var(--color-navy);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-banner__play {
  width: 200px;
  height: 200px;
}

/* ============ STATS ROW (+7 / سنين من الخبرة) ================ */
.stats-row {
  padding-bottom: 70px;
}
.stats-row__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 2px solid var(--color-navy);
}
.stat-badge {
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.stat-badge img { width: 70px; height: 70px; flex-shrink: 0; }
.stat-badge strong {
  display: block;
  font-size: 56px;
  font-weight: var(--fw-extrabold);
  color: var(--color-gold);
  line-height: 1;
}
.stat-badge span {
  display: block;
  margin-top: 10px;
  font-size: 18px;
  color: var(--color-text-heading);
  white-space: nowrap;
}

/* ============ VISION / MISSION / VALUES ======================= */
.vision {
  padding-bottom: 90px;
}
.vision__grid {
  display: flex;
  align-items: stretch;
  gap: 70px;
}
.vision__media {
  flex: 0 0 486px;
  background: var(--color-navy);
  border-radius: var(--radius-md);
  min-height: 500px;
}
.vision__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
.vision__block h2 {
  font-size: var(--fs-h2);
  text-align: center;
  margin-bottom: 16px;
}
.vision__block p {
  font-size: var(--fs-body-lg);
  color: var(--color-text-body);
  line-height: 1.6;
  text-align: center;
}
.vision__block p + p { margin-top: 14px; }
.vision__block strong { color: var(--color-text-body); font-weight: var(--fw-bold); }

/* ============ PHOTO GALLERY (placeholder tiles) ================ */
.gallery { padding-bottom: 90px; }
.gallery__title {margin-bottom: 40px;}
.gallery__title .eyebrow {font-size: var(--fs-body-lg);}
.gallery__title h2 { font-size: var(--fs-h2); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery__item {
  background: var(--color-navy);
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 5;
}

.gallery__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
.gallery__line { flex: 1; border-top: 1px dashed var(--color-divider); }
.btn--navy-pill {
  background: var(--color-navy);
  color: var(--color-bg-white);
}
