/* ===== ABOUT US PAGE ===== */

/* About Hero */
.about-hero {
  position: relative;
  padding: 252px 0 0;
  overflow: hidden;
  z-index: 0;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(17,23,33,0.6) 0%, rgba(9,12,17,0.8) 50%, rgba(4,6,8,0.9) 75%, rgba(0,0,0,1) 100%);
  opacity: 0.72;
}

.about-hero .container {
  position: relative;
  z-index: 1;
}

.about-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding-bottom: 252px;
}

.about-hero-content h1 {
  font-size: 42px;
  font-weight: 600;
  line-height: 52px;
  color: var(--white);
}

.about-hero-content p {
  font-size: 16px;
  line-height: 24px;
  color: var(--grey-1);
  max-width: 354px;
}

/* About Intro Section */
.about-intro {
  position: relative;
  padding: 0;
  margin-top: -70px;
  z-index: 1;
}

.about-intro-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../assets/cars-bg.svg?v=3') center top / 100% auto no-repeat;
  z-index: 0;
}

.about-intro .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-intro-scroll {
  display: flex;
  justify-content: center;
  padding-top: 13px;
  margin-bottom: 50px;
}

.about-scroll-btn {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-lg);
  background: var(--main);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-scroll-btn svg {
  transform: rotate(0deg);
}

.about-stats-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-bottom: 60px;
}

.about-stats-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.about-stat-item {
  display: flex;
  flex-direction: column;
}

.about-stat-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--grey-9);
}

.about-stat-value {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  color: var(--main);
  display: flex;
  align-items: center;
  gap: 2px;
}

.about-stat-value svg {
  width: 20px;
  height: 20px;
}

.about-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--grey-2);
}

.about-tagline {
  text-align: center;
  margin-bottom: 48px;
  width: 100%;
  max-width: 800px;
}

.about-tagline h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: var(--main);
}

.text-grey {
  color: var(--grey-5);
}

.about-main-photo {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.about-main-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* Legacy Section */
.legacy-section {
  padding: 60px 0;
}

.legacy-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 36px;
}

.legacy-header h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: var(--main);
}

.legacy-header p {
  font-size: 16px;
  line-height: 24px;
  color: var(--grey-9);
}

.legacy-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.legacy-periods {
  display: none;
}

.legacy-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.legacy-card {
  background: var(--white);
  border: 0.5px solid var(--grey-4);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.04);
}

.legacy-card h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--main);
  margin-bottom: 8px;
}

.legacy-card p {
  font-size: 16px;
  line-height: 24px;
  color: var(--grey-9);
}

/* Mobile: Year labels inline */
.legacy-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legacy-year-mobile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.legacy-year-mobile span {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--grey-9);
  white-space: nowrap;
}

.legacy-year-mobile::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--grey-2);
}

/* Mission Section */
.mission-section {
  padding: 60px 0;
}

.mission-tagline {
  text-align: center;
  margin-bottom: 36px;
}

.mission-tagline h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: var(--main);
}

.mission-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mission-photo-large {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.mission-photo-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.mission-right {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.mission-photos-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mission-photo-small {
  width: 300px;
  height: 160px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.mission-photo-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.mission-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mission-text h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--main);
}

.mission-text p {
  font-size: 16px;
  line-height: 24px;
  color: var(--grey-9);
}

/* Why Choose Us Section */
.whychoose-section {
  padding: 60px 0;
}

.whychoose-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.whychoose-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.whychoose-header h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: var(--main);
}

.whychoose-header p {
  font-size: 16px;
  line-height: 24px;
  color: var(--grey-9);
}

.whychoose-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.whychoose-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.whychoose-card {
  background: var(--white);
  border: 1px solid var(--grey-4);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  overflow: hidden;
}

.whychoose-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.whychoose-icon {
  width: 50px;
  height: 50px;
  border: 1px solid var(--main);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whychoose-card h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--main);
}

.whychoose-card p {
  font-size: 16px;
  line-height: 24px;
  color: var(--grey-9);
}

.whychoose-image {
  position: relative;
  width: 342px;
  height: 440px;
  align-self: flex-start;
}

.whychoose-image-shadow {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 338px;
  height: 420px;
  border-radius: var(--radius-md);
  background: rgba(17,23,33,0.2);
}

.whychoose-image img {
  position: relative;
  width: 342px;
  height: 424px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0px 4px 10px rgba(0,0,0,0.06);
}

.btn-icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whychoose-btn {
  width: 100%;
  justify-content: center;
  gap: 16px;
}

/* ===== ABOUT PAGE DESKTOP ===== */

@media (min-width: 1024px) {
  .about-hero {
    padding: 252px 200px 0;
  }

  .about-hero-content h1 {
    font-size: 64px;
    line-height: 76px;
  }

  .about-hero-content p {
    font-size: 18px;
    line-height: 28px;
    max-width: 600px;
  }

  .about-intro {
    margin-top: -130px;
  }

  .about-intro-scroll {
    margin-bottom: 60px;
  }

  .about-scroll-btn {
    width: 58px;
    height: 58px;
  }

  .about-stats-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    margin-bottom: 48px;
  }

  .about-stats-group {
    gap: 40px;
    justify-content: flex-start;
    width: auto;
  }

  .about-stat-label {
    font-size: 18px;
    line-height: 28px;
  }

  .about-stat-value {
    font-size: 32px;
    line-height: 42px;
    gap: 8px;
  }

  .about-stat-value svg {
    width: 24px;
    height: 24px;
  }

  .about-stat-divider {
    height: 48px;
  }

  .about-tagline h2 {
    font-size: 36px;
    line-height: 48px;
  }

  .about-main-photo img {
    height: 420px;
  }

  /* Legacy Desktop */
  .legacy-section {
    padding: 84px 0;
  }

  .legacy-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .legacy-header h2 {
    font-size: 36px;
    line-height: 48px;
    width: 500px;
    flex-shrink: 0;
  }

  .legacy-header p {
    font-size: 18px;
    line-height: 28px;
    width: 600px;
  }

  .legacy-timeline {
    gap: 24px;
  }

  .legacy-periods {
    display: flex;
    gap: 24px;
    width: 100%;
  }

  .legacy-period {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
  }

  .legacy-year {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--grey-9);
    white-space: nowrap;
  }

  .legacy-line {
    flex: 1;
    height: 1px;
    background: var(--grey-2);
  }

  .legacy-cards {
    flex-direction: row;
    gap: 24px;
  }

  .legacy-card {
    flex: 1;
  }

  .legacy-card h3 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 16px;
  }

  .legacy-card p {
    font-size: 18px;
    line-height: 28px;
  }

  .legacy-year-mobile {
    display: none;
  }

  /* Mission Desktop */
  .mission-section {
    padding: 84px 0;
  }

  .mission-tagline {
    margin-bottom: 52px;
  }

  .mission-tagline h2 {
    font-size: 36px;
    line-height: 48px;
    max-width: 800px;
    margin: 0 auto;
  }

  .mission-content {
    flex-direction: row;
    gap: 24px;
  }

  .mission-photo-large {
    width: 604px;
    height: 600px;
    flex-shrink: 0;
  }

  .mission-right {
    width: 612px;
    padding-top: 44px;
    gap: 36px;
  }

  .mission-photos-row {
    flex-direction: row;
    gap: 28px;
  }

  .mission-photo-small {
    width: 292px;
    height: 310px;
  }

  .mission-text h3 {
    font-size: 24px;
    line-height: 34px;
  }

  .mission-text p {
    font-size: 18px;
    line-height: 28px;
    max-width: 600px;
  }

  /* Why Choose Us Desktop */
  .whychoose-section {
    padding: 84px 0;
  }

  .whychoose-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
  }

  .whychoose-header h2 {
    font-size: 36px;
    line-height: 48px;
    width: 600px;
    flex-shrink: 0;
  }

  .whychoose-header p {
    font-size: 18px;
    line-height: 28px;
    width: 600px;
  }

  .whychoose-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .whychoose-col {
    width: 340px;
    gap: 24px;
  }

  .whychoose-card h4 {
    font-size: 24px;
    line-height: 34px;
  }

  .whychoose-icon {
    width: 58px;
    height: 58px;
  }

  .whychoose-image {
    width: 476px;
    height: 516px;
    align-self: center;
  }

  .whychoose-image-shadow {
    width: 457px;
    height: 496px;
  }

  .whychoose-image img {
    width: 457px;
    height: 496px;
  }

  .whychoose-btn {
    width: 200px;
    height: 58px;
    justify-content: space-between;
  }
}
