﻿/* =============================================
   SWIFTROUTE  -  ABOUT PAGE STYLES
   ============================================= */

.text-red {
  color: var(--red);
}
.nav-active {
  color: var(--red) !important;
}
.nav-active::after {
  width: calc(100% - 24px) !important;
}

/* ---- PAGE HERO ---- */
.page-hero {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      100deg,
      rgba(7, 17, 31, 0.92) 35%,
      rgba(7, 17, 31, 0.55) 100%
    ),
    linear-gradient(135deg, #0b2040 0%, #1a3a6e 60%, #0a1830 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.page-hero-content h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 14px;
  animation: fadeUp 0.6s ease both;
}
.page-hero-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  margin-bottom: 22px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  animation: fadeUp 0.6s 0.2s ease both;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--red);
}

/* ---- ABOUT INTRO ---- */
.about-intro {
  padding: 90px 0 70px;
  background: var(--white);
}
.about-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 70px;
  align-items: start;
}
.about-intro-headline h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 24px;
}
.red-arrow-line {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 4px;
}
.ral-line {
  flex: 1;
  height: 2px;
  background: var(--red);
}
.ral-arrow {
  color: var(--red);
  font-size: 1.3rem;
  line-height: 1;
  margin-left: 4px;
}

.about-intro-body {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.intro-logo-block {
  background: var(--navy);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.intro-logo-block .logo {
  color: var(--white);
}
.ilb-truck {
  font-size: 2.4rem;
}

.intro-col-left p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 18px;
}
.intro-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.intro-bullets li {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy2);
  padding-left: 4px;
}
.intro-bullets li::before {
  color: var(--red);
}

.intro-tagline {
  font-size: 1.02rem;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.45;
}
.intro-col-right p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
.intro-img-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.intro-img {
  height: 160px;
  background-size: cover;
  background-position: center;
}
.intro-img-1 {
  background-color: #1a3a6e;
  background-image: linear-gradient(135deg, #0b2040, #1a4a8e);
  position: relative;
  overflow: hidden;
}
.intro-img-1::after {
  content: "";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  opacity: 0.4;
}
.intro-img-2 {
  background-color: #0e1f3e;
  background-image: linear-gradient(135deg, #0a1830, #1a3a6e);
  position: relative;
  overflow: hidden;
}
.intro-img-2::after {
  content: "";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  opacity: 0.4;
}

/* ---- TICKER ---- */
.ticker-wrap {
  background: var(--offwhite);
  border-top: 1px solid var(--lightgray);
  border-bottom: 1px solid var(--lightgray);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 60px;
  animation: ticker 30s linear infinite;
}
.ticker-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: #aab4c4;
  text-transform: uppercase;
  white-space: nowrap;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---- CAPABILITIES ---- */
.capabilities {
  padding: 80px 0;
  background: var(--white);
}
.capabilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}
.cap-card {
  padding: 36px 32px;
  border: 1px solid var(--lightgray);
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.cap-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.cap-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.cap-icon-navy {
  background: var(--navy);
}
.cap-icon-red {
  background: var(--red);
}
.cap-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.cap-card p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ---- VALUES SPLIT ---- */
.values-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.values-img {
  position: relative;
  overflow: hidden;
}
.values-img-bg {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background:
    radial-gradient(
      circle at 30% 60%,
      rgba(26, 58, 110, 0.7) 0%,
      transparent 55%
    ),
    linear-gradient(160deg, #0b1829 0%, #1a3a6e 60%, #080f1e 100%);
  position: relative;
}
.values-img-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  opacity: 0.12;
}
.values-content {
  background: var(--navy2);
  padding: 70px 60px;
}
.values-content h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  color: var(--white);
  margin-bottom: 36px;
  line-height: 1.1;
}

/* Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.acc-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.acc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  user-select: none;
  transition: color 0.2s;
}
.acc-header:hover {
  color: #ff9999;
}
.acc-toggle {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--white);
  transition: background 0.2s;
}
.acc-item.acc-open .acc-toggle {
  background: var(--red);
  border-color: var(--red);
  content: "-";
}
.red-dot {
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
.acc-body {
  padding-bottom: 20px;
}
.acc-body p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ---- WHY US ---- */
.why-us {
  padding: 90px 0;
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.why-item {
  text-align: center;
  padding: 28px 20px;
}
.why-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.why-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.why-item p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--offwhite);
  border-top: 1px solid var(--lightgray);
  border-bottom: 1px solid var(--lightgray);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 0 36px;
  border-right: 1px solid var(--lightgray);
}
.stat-item:first-child {
  padding-left: 0;
}
.stat-item:last-child {
  border-right: none;
}
.stat-item small {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 8px;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-item p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.55;
}

/* ---- TEAM ---- */
.team-section {
  padding: 90px 0;
  background: var(--white);
}
.team-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 40px;
}
.team-intro h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--navy);
  line-height: 1.1;
}
.team-side {
  max-width: 320px;
  text-align: right;
}
.team-side p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  overflow: hidden;
  border: 1px solid var(--lightgray);
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.team-photo {
  height: 260px;
  position: relative;
  overflow: hidden;
}
.team-photo-1 {
  background: linear-gradient(160deg, #1a3050 0%, #2a4a7e 100%);
}
.team-photo-2 {
  background: linear-gradient(160deg, #1a3a5e 0%, #0e2040 100%);
}
.team-photo-3 {
  background: linear-gradient(160deg, #112244 0%, #1e3e6e 100%);
}
.team-photo-4 {
  background: linear-gradient(160deg, #0d1f3e 0%, #163060 100%);
}
.team-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  opacity: 0.18;
}
.team-info {
  padding: 16px 18px;
  background: var(--white);
}
.team-info strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-info span {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ---- PARTNERS SECTION ---- */
.partners-section {
  background: var(--offwhite);
  padding: 70px 0;
  border-top: 1px solid var(--lightgray);
}
.partners-split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.ps-label {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 28px;
  max-width: 500px;
}
.ps-logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 36px;
}
.ps-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  color: #aab4c4;
  transition: color 0.2s;
}
.ps-logo:hover {
  color: var(--navy2);
}
.ps-cta {
  background: var(--navy);
  color: var(--white);
  padding: 40px 36px;
  min-width: 280px;
  text-align: center;
}
.ps-cta h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.ps-cta p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 24px;
  line-height: 1.55;
}

/* ---- FOOTER OVERRIDE FOR ABOUT ---- */
.footer-top-band {
  background: var(--navy2);
  padding: 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-top-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.ftb-left .logo {
  color: var(--white);
  margin-bottom: 14px;
}
.ftb-left p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.ftb-right h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact-list li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* ---- REVEAL ANIMATION ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .about-intro-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-intro-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .values-split {
    grid-template-columns: 1fr;
  }
  .values-img {
    display: none;
  }
  .values-content {
    padding: 60px 36px;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .stat-item {
    border-right: none;
    padding: 0;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .team-side {
    text-align: left;
    max-width: 100%;
  }
  .partners-split {
    grid-template-columns: 1fr;
  }
  .footer-top-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .capabilities-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}
