/* ==========================================================================
   ALRAHMA ABOUT PAGE — Template-specific styles
   Depends on: areas-shared.css (al- design system + tokens)
   ========================================================================== */

/* --- Hero --- */
.al-hero--about {
  position: relative;
  padding: 56px 0 48px;
  background:
    radial-gradient(620px 260px at 12% 10%, rgba(255, 39, 20, .14), transparent 60%),
    radial-gradient(520px 220px at 92% 90%, rgba(2, 67, 91, .10), transparent 60%),
    linear-gradient(180deg, var(--al-dark-04), rgba(255, 255, 255, .96));
  border-bottom: 1px solid var(--al-border);
  overflow: hidden;
}
.al-hero--about h1 {
  margin: 10px 0 12px;
  font-size: clamp(26px, 3.4vw, 44px);
  color: var(--al-dark);
  line-height: 1.2;
}
.al-hero--about .al-hero__lead {
  margin: 0;
  color: var(--al-secondary);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.8;
  max-width: 760px;
}

/* --- Story split (images + text) --- */
.al-story {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  align-items: center;
}
.al-story__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: stretch;
}
.al-story__media-item {
  border-radius: var(--al-radius);
  overflow: hidden;
  border: 1px solid var(--al-border);
  box-shadow: var(--al-shadow-sm);
  background: var(--al-dark-04);
}
.al-story__media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 3 / 4;
}
.al-story__media-item--top    { transform: translateY(-14px); }
.al-story__media-item--bottom { transform: translateY(14px); }

.al-story__text h2 {
  margin: 0 0 14px;
  font-size: clamp(22px, 2.8vw, 32px);
  color: var(--al-dark);
  line-height: 1.3;
}
.al-story__text p {
  margin: 0 0 16px;
  color: var(--al-secondary);
  line-height: 1.9;
  font-size: 15px;
}

/* Experience callout */
.al-story__callout {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin: 18px 0;
  padding: 0;
}
.al-story__years {
  flex-shrink: 0;
  background: var(--al-primary);
  color: var(--al-white);
  padding: 18px 22px;
  border-radius: var(--al-radius);
  text-align: center;
  min-width: 130px;
  box-shadow: var(--al-shadow-sm);
}
.al-story__years b {
  display: block;
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1;
  font-weight: 900;
}
.al-story__years span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-top: 6px;
  opacity: .95;
}
.al-story__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  align-content: center;
}
.al-story__bullets li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--al-secondary);
  font-size: 14px;
  line-height: 1.6;
}
.al-story__bullets li::before {
  content: "\f00c";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--al-primary-10);
  color: var(--al-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free", "FontAwesome";
}

/* --- Why-us cards --- */
.al-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.al-why-card {
  background: var(--al-white);
  border: 1px solid var(--al-border);
  border-radius: var(--al-radius-lg);
  padding: 22px;
  box-shadow: var(--al-shadow-sm);
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.al-why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--al-shadow);
  border-color: var(--al-primary-15);
}
.al-why-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--al-primary-10);
  color: var(--al-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.al-why-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--al-dark);
}
.al-why-card p {
  margin: 0;
  color: var(--al-secondary);
  font-size: 14px;
  line-height: 1.7;
}

/* --- Stats --- */
.al-stats {
  background: var(--al-dark);
  color: var(--al-white);
  border-radius: var(--al-radius-lg);
  padding: 36px 28px;
  box-shadow: var(--al-shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  overflow: hidden;
}
.al-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(380px 180px at 90% 10%, rgba(255, 39, 20, .30), transparent 60%),
    radial-gradient(360px 160px at 10% 90%, rgba(255, 39, 20, .15), transparent 60%);
  pointer-events: none;
}
.al-stats__item {
  position: relative;
  text-align: center;
  padding: 18px 10px;
  border-radius: var(--al-radius);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
}
.al-stats__icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 39, 20, .22);
  color: var(--al-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
}
.al-stats__num {
  display: block;
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 900;
  color: var(--al-white);
  line-height: 1;
  margin-bottom: 6px;
}
.al-stats__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, .82);
}

/* --- Process steps --- */
.al-process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.al-process__step {
  position: relative;
  background: var(--al-white);
  border: 1px solid var(--al-border);
  border-radius: var(--al-radius-lg);
  padding: 28px 22px 22px;
  box-shadow: var(--al-shadow-sm);
  counter-increment: step;
}
.al-process__step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -18px;
  inset-inline-start: 22px;
  background: var(--al-primary);
  color: var(--al-white);
  font-weight: 900;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: var(--al-shadow-sm);
}
.al-process__step h3 {
  margin: 4px 0 8px;
  color: var(--al-dark);
  font-size: 16px;
}
.al-process__step p {
  margin: 0;
  color: var(--al-secondary);
  font-size: 14px;
  line-height: 1.7;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .al-story { grid-template-columns: 1fr; }
  .al-story__media-item--top,
  .al-story__media-item--bottom { transform: none; }
  .al-why-grid,
  .al-stats,
  .al-process { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .al-hero--about { padding: 40px 0 32px; }
  .al-story__media { grid-template-columns: 1fr 1fr; }
  .al-story__callout { flex-direction: column; }
  .al-story__years { min-width: 0; }
  .al-why-grid,
  .al-stats,
  .al-process { grid-template-columns: 1fr; }
}
