/* ============================================================
   FORTIS — ABOUT US page styles
   Sections: Page header, Company Overview, Vision & Mission,
             Values, CTA band
   ============================================================ */

/* ---------- PAGE HEADER (shared look across inner pages) ---------- */
.page-header {
  position: relative;
  padding: calc(var(--header-h) + 88px) 0 88px;
  background: var(--color-primary-dark);
  color: var(--color-text-light);
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.38;
  animation: kenburns 18s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(35, 31, 32, 0.96) 0%, rgba(35, 31, 32, 0.78) 55%, rgba(35, 31, 32, 0.45) 100%),
    radial-gradient(circle at 78% 20%, rgba(194, 18, 44, 0.35), transparent 55%);
}

.page-header .container { position: relative; z-index: 2; }

.page-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-brand-bright);
  margin-bottom: 16px;
}

.page-header .eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--color-brand-red);
}

.page-header h1 {
  color: var(--color-text-light);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.page-header h1 span { color: var(--color-brand-bright); }

.page-header p {
  margin-top: 16px;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

/* Breadcrumb */
.crumb {
  margin-top: 24px;
  font-size: 0.78rem;
  font-family: var(--font-head);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.crumb a { color: rgba(255, 255, 255, 0.75); transition: color 0.3s ease; }
.crumb a:hover { color: var(--color-brand-bright); }
.crumb span { color: var(--color-brand-bright); margin: 0 8px; }

/* ---------- COMPANY OVERVIEW ---------- */
.overview { background: var(--color-bg); }
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.overview-media { position: relative; }
.overview-media img {
  width: 100%;
  aspect-ratio: 4 / 4.2;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.overview-media::before {
  content: "";
  position: absolute;
  inset: 24px -24px -24px 24px;
  z-index: -1;
  border: 2px solid var(--color-brand-red);
  border-radius: 18px;
  opacity: 0.5;
}

.exp-tag {
  position: absolute;
  bottom: 26px;
  left: -16px;
  background: var(--color-primary-dark);
  color: var(--color-text-light);
  padding: 18px 24px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  font-family: var(--font-head);
  text-align: center;
  border-left: 4px solid var(--color-brand-bright);
}
.exp-tag b {
  display: block;
  font-size: 1.15rem;
  color: var(--color-brand-bright);
  font-weight: 800;
}
.exp-tag span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; }

.overview-copy .section-head-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-brand-red);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 16px;
}
.overview-copy .section-head-tag::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--color-brand-red);
}
.overview-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.overview-copy h2 span { color: var(--color-brand-red); }
.overview-copy p { margin-bottom: 16px; }

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}
.stat {
  position: relative;
  padding: 22px 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(160deg, #ffffff, #f7f7f7);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--color-brand-red), var(--color-brand-bright));
}
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.stat b {
  display: block;
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--color-brand-red);
  font-weight: 800;
}
.stat span {
  font-size: 0.76rem;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---------- VISION & MISSION ---------- */
.vm {
  background: var(--color-primary-dark);
  position: relative;
  overflow: hidden;
  color: var(--color-text-light);
}
.vm::before {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -140px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(194, 18, 44, 0.4), transparent 65%);
  border-radius: 50%;
}
.vm::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(235, 25, 61, 0.3), transparent 65%);
  border-radius: 50%;
}
.vm .container { position: relative; z-index: 1; }
.vm .section-head .eyebrow { color: var(--color-brand-bright); }
.vm .section-head h2 { color: var(--color-text-light); }
.vm .section-head p { color: rgba(255, 255, 255, 0.7); }

.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 24px; }

.vm-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 44px 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.vm-card:hover {
  transform: translateY(-8px);
  border-color: rgba(235, 25, 61, 0.5);
}
.vm-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-brand-red), var(--color-brand-bright));
  color: var(--color-text-light);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  font-size: 24px;
}
.vm-card h3 { color: var(--color-text-light); font-size: 1.35rem; text-transform: uppercase; margin-bottom: 14px; }
.vm-card p { color: rgba(255, 255, 255, 0.75); }
.vm-card ul { margin-top: 16px; display: grid; gap: 12px; }
.vm-card li {
  display: flex;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  align-items: flex-start;
}
.vm-card li i { color: var(--color-brand-bright); flex: none; margin-top: 4px; }

/* ---------- VALUES ---------- */
.values { background: linear-gradient(180deg, var(--color-bg), #f6f6f6); }
.values .section-head h2 span { color: var(--color-brand-red); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--color-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 34px 28px;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(194, 18, 44, 0.4);
}
.value-ic {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-brand-red), var(--color-brand-bright));
  color: var(--color-text-light);
  display: grid;
  place-items: center;
  font-size: 24px;
  transition: transform 0.35s ease;
}
.value-card:hover .value-ic { transform: rotate(-8deg) scale(1.08); }
.value-card h3 { font-size: 1.02rem; text-transform: uppercase; margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; color: var(--color-text); }

/* ---------- CTA BAND ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--color-brand-red), var(--color-brand-bright));
  color: var(--color-text-light);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 65%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 72px 24px;
}
.cta-inner h2 { color: var(--color-text-light); font-size: clamp(1.6rem, 3vw, 2.2rem); text-transform: uppercase; margin-bottom: 10px; }
.cta-inner p { color: rgba(255, 255, 255, 0.9); margin-bottom: 28px; }
.btn-cta {
  background: var(--color-primary-dark);
  color: var(--color-text-light);
  border-radius: 50px;
  padding: 16px 38px;
}
.btn-cta i { transition: transform 0.3s ease; }
.btn-cta:hover { background: var(--color-text-light); color: var(--color-brand-red); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25); }
.btn-cta:hover i { transform: translateX(5px); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1023px) {
  .page-header { padding: calc(var(--header-h) + 60px) 0 60px; }
  .overview-grid { grid-template-columns: 1fr; gap: 56px; }
  .overview-media::before { inset: 16px -12px -12px 16px; }
  .exp-tag { left: 12px; }
  .vm-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .stats-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .cta-inner { padding: 56px 12px; }
}