/* ==========================================================================
   Homecoming Movers - About Us Page Stylesheet (about.css)
   Matches input_file_0.png exactly
   ========================================================================== */

/* ==========================================================================
   1. Hero Section
   ========================================================================== */
.about-hero-section {
  position: relative;
  background-color: #FFFFFF;
  /* padding: 60px 0 70px 0; */
  overflow: hidden;
}

.about-hero-title {
  color: var(--primary-navy, #0B1B3D);
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.5px;
}

.about-hero-lead {
  color: var(--text-muted, #64748B);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 540px;
}

.about-hero-img-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-truck-img {
  width: 100%;
  max-width: 680px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(11, 27, 61, 0.06));
  transition: transform 0.4s ease;
}

.about-hero-truck-img:hover {
  transform: translateY(-4px);
}

/* ==========================================================================
   2. Our Story Section
   ========================================================================== */
.our-story-section {
  /* padding: 90px 0; */
  background-color: #FFFFFF;
}

.story-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(11, 27, 61, 0.08);
}

.story-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: 520px;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: transform 0.5s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  image-rendering: -webkit-optimize-contrast;
}

.story-img-wrapper:hover .story-img {
  transform: scale(1.03);
}

.story-heading {
  color: var(--primary-navy, #0B1B3D);
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.25;
}

.story-text {
  color: var(--text-body, #475569);
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* Feature Badges Row */
.story-badges-row {
  margin-top: 32px;
  padding-top: 24px;
  /* border-top: 1px solid #F1F5F9; */
}


.story-badge-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-right: 20px;
}

.story-badges-row .col-md-4:not(:last-child) .story-badge-item {
  border-right: 1px solid #bdc6ce;
}

.story-badge-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background-color: #FFF5EE;
  color: var(--accent-orange, #FF6600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1.5px solid var(--accent-orange, #FF6600);
}

.story-badge-title {
  color: var(--primary-navy, #0B1B3D);
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.story-badge-desc {
  color: var(--text-muted, #64748B);
  font-size: 0.82rem;
  line-height: 1.45;
  margin: 0;
}

/* ==========================================================================
   3. What We Do Section
   ========================================================================== */
.what-we-do-section {
  /* padding: 90px 0; */
  background-color: #F8FAFC;
}

.what-we-do-heading {
  color: var(--primary-navy, #0B1B3D);
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.25;
}

.service-feature-card {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 38px 24px;
  text-align: center;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 16px rgba(11, 27, 61, 0.03);
}

.service-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 102, 0, 0.3);
  box-shadow: 0 16px 36px rgba(11, 27, 61, 0.08);
}

.service-feature-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  border-radius: 16px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-feature-icon-img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.service-feature-title {
  color: var(--primary-navy, #0B1B3D);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-feature-desc {
  color: var(--text-muted, #64748B);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

/* ==========================================================================
   4. Our Commitment Section
   ========================================================================== */
.our-commitment-section {
  padding: 40px 0;
  background-color: #FFFFFF;
}

.commitment-card-wrapper {
  background-color: #F3F6FA;
  border-radius: 22px;
  padding: 50px 45px;
  border: 1px solid #E2E8F0;
}

.commitment-heading {
  color: var(--primary-navy, #0B1B3D);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
}

.commitment-desc {
  color: var(--text-body, #475569);
  font-size: 0.98rem;
  line-height: 1.65;
}

.commitment-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0 0;
}

.commitment-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--primary-navy, #0B1B3D);
  font-size: 0.95rem;
  font-weight: 700;
}

.check-circle-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background-color: var(--accent-orange, #FF6600);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.commitment-img-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(11, 27, 61, 0.06);
  height: 100%;
  min-height: 320px;
}

.commitment-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  image-rendering: -webkit-optimize-contrast;
}

/* ==========================================================================
   5. Our Impact Section
   ========================================================================== */
.our-impact-section {
  background-color: transparent;
  padding: 30px 0;
  position: relative;
}

.impact-card-wrapper {
  background-color: var(--primary-navy, #0B1B3D);
  border-radius: 20px;
  padding: 25px 25px;
  box-shadow: 0 16px 40px rgba(11, 27, 61, 0.12);
}

.impact-heading {
  color: #FFFFFF;
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.25;
}

.impact-stat-item {
  text-align: center;
  padding: 20px 15px;
  position: relative;
}

.impact-stat-divider {
  position: relative;
}

@media (min-width: 992px) {
  .impact-stat-divider::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15);
  }
}

.impact-icon {
  font-size: 2.4rem;
  color: var(--accent-orange, #FF6600);
  margin-bottom: 14px;
  display: inline-block;
}

.impact-number {
  color: #FFFFFF;
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.impact-label {
  color: #94A3B8;
  font-size: 0.92rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.2px;
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 991.98px) {
  .about-hero-section {
    padding: 50px 0 60px 0;
    text-align: center;
  }

  .about-hero-title {
    font-size: 2.35rem;
  }

  .about-hero-lead {
    margin: 0 auto 24px auto;
  }

  .about-hero-truck-img {
    max-width: 90%;
    margin-top: 20px;
  }

  .story-heading,
  .what-we-do-heading,
  .commitment-heading,
  .impact-heading {
    font-size: 1.95rem;
  }

  .story-img {
    min-height: 340px;
    max-height: 380px;
  }

  .commitment-card-wrapper {
    padding: 32px 24px;
  }

  .impact-card-wrapper {
    padding: 36px 20px;
    border-radius: 16px;
  }

  .commitment-img-wrapper {
    min-height: 280px;
    margin-top: 24px;
  }

  .impact-stat-divider {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 24px;
    margin-bottom: 16px;
  }

  .impact-stat-divider:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

@media (max-width: 575.98px) {
  .about-hero-title {
    font-size: 1.9rem;
  }

  .story-heading,
  .what-we-do-heading,
  .commitment-heading,
  .impact-heading {
    font-size: 1.6rem;
  }

  .story-badge-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .impact-number {
    font-size: 2.2rem;
  }
}

@media (min-width: 768px) {
  .story-badges-row .col-md-4:not(:last-child) .story-badge-item {
    border-right: 1px solid #bdc6ce;
  }
}