/* ══════════════════════════════════════
   FLYZER — about.css
   Styles specific to the About Us page.
   This file loads AFTER styles.css, so
   all shared variables & components are
   already available.
══════════════════════════════════════ */

/* ══════════════════════════════════════
   PAGE HERO / BANNER
══════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1e1e2e 55%, #2a0a0e 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.page-hero-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12px;
  color: #888;
  margin-bottom: 20px;
}

.breadcrumb a {
  color: #aaa;
  text-decoration: none;
  transition: color .2s;
}

.breadcrumb a:hover {
  color: var(--red);
}

.breadcrumb span:last-child {
  color: var(--red);
}

/* Hero title */
.page-hero h1 {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
  animation: fadeUp .6s ease both;
}

.page-hero h1 span {
  color: var(--red);
}

.page-hero p {
  color: #aaa;
  font-size: 17px;
  line-height: 1.6;
  max-width: 500px;
  animation: fadeUp .6s .15s ease both;
}

/* ══════════════════════════════════════
   WHO WE ARE — INTRO
══════════════════════════════════════ */
.about-intro {
  padding: 90px 0;
  background: var(--white);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* Left: image + floating stat card */
.about-intro-visual {
  position: relative;
}

.about-img-placeholder {
  width: 100%;
  background: var(--gray);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #aaa;
  font-family: var(--font-head);
  font-size: 13px;
  border: 2px dashed #ccc;
}

.about-img-placeholder.large {
  height: 420px;
}

.about-img-placeholder svg {
  opacity: .4;
}

/* Floating stat card */
.stat-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--red);
  color: var(--white);
  border-radius: 12px;
  padding: 24px 32px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(208, 2, 27, .35);
}

.stat-number {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .85;
}

/* Right: text */
.about-intro-text h2 {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 20px;
  margin-top: 12px;
}

.about-intro-text h2 span {
  color: var(--red);
}

.about-intro-text p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Highlights checklist */
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin: 28px 0 36px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.highlight-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.highlight-text {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
}

/* ══════════════════════════════════════
   STATS STRIP
══════════════════════════════════════ */
.stats-strip {
  background: var(--dark);
  padding: 60px 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
}

.stat-item {
  text-align: center;
}

.stat-big {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-desc {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: #aaa;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, .1);
}

/* ══════════════════════════════════════
   MISSION / VISION / VALUES
══════════════════════════════════════ */
.mv-section {
  padding: 90px 0;
  background: var(--gray);
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mv-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 32px;
  border-top: 4px solid var(--red);
  transition: box-shadow .25s, transform .25s;
}

.mv-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, .1);
  transform: translateY(-4px);
}

.mv-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.mv-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 14px;
}

.mv-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.8;
}

.mv-card ul {
  list-style: none;
  padding: 0;
}

.mv-card ul li {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.8;
  padding: 6px 0;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  gap: 10px;
}

.mv-card ul li::before {
  content: '▸';
  color: var(--red);
  font-size: 12px;
  flex-shrink: 0;
}

.mv-card ul li:last-child {
  border-bottom: none;
}

/* ══════════════════════════════════════
   SECTION SHARED HEADINGS
══════════════════════════════════════ */
.section-title {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 900;
  color: var(--black);
  text-align: center;
  margin-bottom: 16px;
  margin-top: 8px;
}

.section-title span {
  color: var(--red);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 56px;
}

/* ══════════════════════════════════════
   TIMELINE
══════════════════════════════════════ */
.journey-section {
  padding: 90px 0;
  background: var(--white);
}

.timeline {
  position: relative;
  margin-top: 56px;
  padding-bottom: 20px;
}

/* Central vertical line */
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: var(--light-gray);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 48px;
  position: relative;
}

.timeline-item.left {
  justify-content: flex-end;
  padding-right: calc(50% + 40px);
}

.timeline-item.right {
  justify-content: flex-start;
  padding-left: calc(50% + 40px);
}

.timeline-content {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  padding: 24px 28px;
  max-width: 380px;
  width: 100%;
  transition: box-shadow .25s, border-color .25s;
}

.timeline-content:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, .09);
  border-color: var(--red);
}

.timeline-year {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 1px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.timeline-content h4 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

/* Timeline dot */
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 24px;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--red);
  z-index: 1;
}

/* ══════════════════════════════════════
   TEAM
══════════════════════════════════════ */
.team-section {
  padding: 90px 0;
  background: var(--gray);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}

.team-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, .1);
  transform: translateY(-4px);
}

.team-img-placeholder {
  width: 100%;
  height: 240px;
  background: var(--light-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #aaa;
  font-family: var(--font-head);
  font-size: 12px;
  border-bottom: 3px solid var(--red);
}

.team-img-placeholder svg {
  opacity: .35;
}

.team-body {
  padding: 24px;
}

.team-body h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 4px;
}

.team-role {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 12px;
}

.team-body p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
.about-cta {
  padding: 80px 0;
  background: var(--white);
}

.cta-box {
  background: linear-gradient(135deg, var(--dark) 0%, #2a0a0e 100%);
  border-radius: 16px;
  padding: 60px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: var(--red);
  border-radius: 50%;
  opacity: .08;
}

.cta-text h2 {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
}

.cta-text p {
  color: #aaa;
  font-size: 15px;
  line-height: 1.6;
  max-width: 420px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}

.btn-cta-primary:hover {
  background: var(--dark-red);
  transform: translateY(-2px);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  border: 2px solid rgba(255, 255, 255, .3);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: border-color .2s, background .2s;
  white-space: nowrap;
}

.btn-cta-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .08);
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
══════════════════════════════════════ */
@media (max-width: 900px) {
  .page-hero h1         { font-size: 36px; }
  .about-intro-grid     { grid-template-columns: 1fr; }
  .stat-card            { position: static; margin-top: 20px; display: inline-block; }
  .about-intro-visual   { text-align: center; }
  .mv-grid              { grid-template-columns: 1fr; }
  .team-grid            { grid-template-columns: 1fr 1fr; }
  .cta-box              { flex-direction: column; text-align: center; padding: 40px 28px; }
  .cta-text p           { max-width: 100%; }

  /* Collapse timeline to single column */
  .timeline::before     { left: 16px; }
  .timeline-item.left,
  .timeline-item.right  { padding-left: 48px; padding-right: 0; justify-content: flex-start; }
  .timeline-dot         { left: 16px; }
  .timeline-content     { max-width: 100%; }
  .stat-divider         { display: none; }
  .stats-grid           { gap: 40px; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 600px)
══════════════════════════════════════ */
@media (max-width: 600px) {
  .team-grid      { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .cta-actions    { flex-direction: column; width: 100%; }
  .btn-cta-primary,
  .btn-cta-outline { text-align: center; justify-content: center; }
}
''