/* Company Story Section */
.company-story {
  background-color: var(--body-bg);
  padding: 0px 0px 50px 0px !important;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-color);
  background: linear-gradient(to right, var(--dark-red), var(--primary-red));
  -webkit-background-clip: text;
  background-clip: text;
}

.story-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--neutral-gray);
  margin-bottom: 1.5rem;
}

.story-highlights {
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--text-color);
}

.highlight-item i {
  color: var(--primary-red);
  font-size: 1.2rem;
  margin-right: 1rem;
}

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

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--mask-red) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.story-image:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
}

.overlay-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.overlay-content p {
  font-size: 1.1rem;
  margin: 0;
}

/* Mission, Vision, Values Section */
.mvv-section {
  background: linear-gradient(135deg, var(--body-bg) 0%, var(--body-bg) 100%);
  padding: 50px 0px 100px 0px !important;
}

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

.mvv-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mvv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transition: all 0.3s ease;
}

.mvv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: white;

  svg {
    width: 50px;
    height: auto;
  }
}

.mission-card .card-icon {
  background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
}

.vision-card .card-icon {
  background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
}

.values-card .card-icon {
  background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
}

.card-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.card-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--neutral-gray);
  margin-bottom: 2rem;
}

/* Mission Points */
.mission-points {
  margin-top: 1.5rem;
}

.point-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-color);
}

.point-item i {
  color: #4caf50;
  margin-right: 0.75rem;
  font-size: 1rem;
}

/* Vision Goals */
.vision-goals {
  margin-top: 1.5rem;
}

.goal-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

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

.goal-icon i {
  color: white;
  font-size: 1.2rem;
}

.goal-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-color);
}

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

/* Values List */
.values-list {
  margin-top: 1.5rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.value-icon {
  width: 35px;
  height: 35px;
  border-radius: 6px;
  background: linear-gradient(135deg, #4caf50, #8bc34a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.value-icon i {
  color: white;
  font-size: 1rem;
}

.value-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-color);
}

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

/* 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;
  }
}

@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 {
    font-size: 1rem;
  }
}
