/* Why Choose Us Section */
.why-choose-us {
  background-color: var(--body-bg);
  padding: 50px 0px 100px;
}

.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: white;

  svg {
    width: 35px;
    height: auto;
    filter: invert(0);
  }
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.feature-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--neutral-gray);
  margin: 0;
}

/* Commitment Section */
.commitment-section {
  background: linear-gradient(
    135deg,
    rgba(182, 30, 35, 0.02) 0%,
    var(--body-bg) 100%
  );
  padding: 100px 0px 50px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--neutral-light-gray);
  margin-bottom: 0;
}

.commitment-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.commitment-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
  color: white;
  padding: 0.5rem 0.8rem;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(182, 30, 35, 0.3);
}

.commitment-badge i {
  font-size: 1.6rem;
}

.commitment-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 2.5rem;
}

.commitment-promises {
  margin-bottom: 2.5rem;
}

.promise-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.promise-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary-), var(--bmw-light-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.promise-icon i {
  color: white;
  font-size: 1.3rem;
}

.promise-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.promise-content p {
  font-size: 0.95rem;
  color: var(--neutral-gray);
  margin: 0;
}

.commitment-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.commitment-cta .btn {
  padding: 12px 30px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .hero-stats {
    gap: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .mvv-card {
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .card-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
}

@media (max-width: 767.98px) {
  .about-hero {
    height: 80vh;
    min-height: 500px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .mvv-card {
    padding: 1.5rem;
  }

  .card-title {
    font-size: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem 1rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .commitment-cta {
    flex-direction: column;
  }

  .commitment-cta .btn {
    width: 100%;
    text-align: center;
  }
}

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

  .bmw-logo {
    width: 60px;
    height: 60px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .mvv-card {
    padding: 1.25rem;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .card-title {
    font-size: 1.3rem;
  }

  .story-text,
  .card-text,
  .commitment-text {
    font-size: 1rem;
  }

  .promise-item {
    flex-direction: column;
    text-align: center;
  }

  .promise-icon {
    margin: 0 auto 1rem;
  }
}
