/* Modern About Us Page Styles */
.modern-about-page {
  overflow-x: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Base Typography Improvements */
.modern-about-page * {
  line-height: 1.6;
}

.modern-about-page h1,
.modern-about-page h2,
.modern-about-page h3,
.modern-about-page h4 {
  letter-spacing: -0.025em;
}

/* Hero Section */
.about-hero-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 80px 0;
  position: relative;
  color: #1e293b;
  border-bottom: 1px solid #e2e8f0;
}

.about-hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.hero-badge i {
  color: #fbbf24;
  font-size: 16px;
}

.about-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #1e293b;
}

.gradient-text {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-description {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #475569;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #2563eb;
  display: block;
  line-height: 1.2;
}

.stat-label {
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
  margin-top: 4px;
}

/* Hero Image */
.about-hero-image {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card {
  position: absolute;
  background: white;
  color: #1f2937;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.floating-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.floating-card i {
  font-size: 16px;
  color: #2563eb;
}

.card-1 {
  top: 15%;
  right: 15%;
  animation: float 3s ease-in-out infinite;
}

.card-2 {
  top: 45%;
  right: 5%;
  animation: float 3s ease-in-out infinite 1s;
}

.card-3 {
  bottom: 25%;
  right: 20%;
  animation: float 3s ease-in-out infinite 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.hero-car-image {
  position: relative;
  width: 300px;
  height: 180px;
}

.car-silhouette {
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 200" fill="%232563eb" opacity="0.8"><path d="M50 120h200c10 0 20 10 20 20v20c0 10-10 20-20 20H50c-10 0-20-10-20-20v-20c0-10 10-20 20-20z"/><circle cx="80" cy="160" r="15" fill="%232563eb"/><circle cx="220" cy="160" r="15" fill="%232563eb"/><path d="M70 120c0-20 20-40 40-40h80c20 0 40 20 40 40"/></svg>') center/contain no-repeat;
  filter: drop-shadow(0 4px 12px rgba(37, 99, 235, 0.3));
}

/* Mission & Vision Section */
.mission-vision-section {
  padding: 70px 0;
  background: white;
}

.mission-card {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  height: 100%;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all 0.3s ease;
}

.mission-card:hover {
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
  transform: translateY(-2px);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.card-icon i {
  font-size: 28px;
  color: white;
}

.mission-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}

.mission-card p {
  color: #475569;
  line-height: 1.7;
  font-size: 1.1rem;
  margin: 0;
}

/* Story Section */
.story-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: -0.025em;
}

.story-timeline {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.story-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  margin-bottom: 40px;
  position: relative;
  align-items: flex-start;
}

.timeline-year {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  margin-right: 25px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.timeline-content {
  flex: 1;
  padding-top: 8px;
}

.timeline-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.timeline-content p {
  color: #475569;
  line-height: 1.7;
  font-size: 1.1rem;
  margin: 0;
}

/* Achievement Cards */
.story-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px 0;
}

.achievement-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 400px;
  width: 100%;
}

.achievement-card {
  background: white;
  padding: 25px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.achievement-card:hover {
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
  transform: translateY(-3px);
}

.achievement-card i {
  font-size: 28px;
  color: #2563eb;
  margin-bottom: 12px;
}

.achievement-card h4 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 6px;
}

.achievement-card p {
  color: #475569;
  font-size: 0.95rem;
  margin: 0;
  font-weight: 500;
}

/* Why Choose Section */
.why-choose-section {
  padding: 70px 0;
  background: white;
}

.section-subtitle {
  color: #475569;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.6;
}

.feature-card {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  height: 100%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
  transform: translateY(-3px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.feature-icon i {
  font-size: 28px;
  color: white;
}

.feature-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
}

.feature-card p {
  color: #475569;
  line-height: 1.7;
  font-size: 1.05rem;
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  color: #e2e8f0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
  color: white;
  text-decoration: none;
}

.btn-outline-light {
  background: transparent;
  border: 2px solid #e2e8f0;
  color: white;
  padding: 13px 28px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline-light:hover {
  background: white;
  color: #1e293b;
  transform: translateY(-2px);
  text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .about-hero-title {
    font-size: 2.5rem;
    text-align: center;
  }
  
  .about-hero-description {
    font-size: 1.1rem;
    text-align: center;
  }
  
  .hero-stats {
    gap: 20px;
    justify-content: center;
  }
  
  .about-hero-image {
    height: 280px;
    margin-top: 30px;
  }
  
  .floating-card {
    display: none;
  }
  
  .achievement-cards {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 320px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .story-timeline {
    padding-left: 20px;
  }
  
  .story-timeline::before {
    left: 25px;
  }
  
  .timeline-year {
    width: 50px;
    height: 50px;
    font-size: 12px;
    margin-right: 20px;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-outline-light {
    width: 200px;
    justify-content: center;
  }
  
  .hero-badge {
    display: block;
    text-align: center;
    width: fit-content;
    margin: 0 auto 20px;
  }
  
  .about-hero-section {
    padding: 60px 0;
  }
  
  .mission-vision-section,
  .story-section,
  .why-choose-section,
  .cta-section {
    padding: 50px 0;
  }
}

@media (max-width: 576px) {
  .mission-card,
  .feature-card {
    padding: 25px 20px;
  }
  
  .about-hero-section {
    padding: 40px 0;
  }
  
  .mission-vision-section,
  .story-section,
  .why-choose-section,
  .cta-section {
    padding: 40px 0;
  }
  
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .about-hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .cta-content h2 {
    font-size: 1.6rem;
  }
}
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 0.95rem;
}

.btn-primary:hover {
  background: #1d4ed8;
  text-decoration: none;
  color: white;
}

.btn-outline-light {
  background: transparent;
  border: 2px solid #2563eb;
  color: #2563eb;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.btn-outline-light:hover {
  background: #2563eb;
  color: white;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-hero-title {
    font-size: 2.2rem;
    text-align: center;
  }
  
  .about-hero-description {
    font-size: 1rem;
    text-align: center;
  }
  
  .hero-stats {
    gap: 20px;
    justify-content: center;
  }
  
  .about-hero-image {
    height: 250px;
    margin-top: 30px;
  }
  
  .floating-card {
    display: none;
  }
  
  .achievement-cards {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 280px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .story-timeline {
    padding-left: 20px;
  }
  
  .story-timeline::before {
    left: 20px;
  }
  
  .timeline-year {
    width: 40px;
    height: 40px;
    font-size: 10px;
    margin-right: 15px;
  }
  
  .cta-content h2 {
    font-size: 1.6rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-outline-light {
    width: 180px;
    justify-content: center;
  }
  
  .hero-badge {
    display: block;
    text-align: center;
    width: fit-content;
    margin: 0 auto 15px;
  }
}

@media (max-width: 576px) {
  .mission-card,
  .feature-card {
    padding: 20px 15px;
  }
  
  .about-hero-section {
    padding: 40px 0;
  }
  
  .mission-vision-section,
  .story-section,
  .why-choose-section,
  .cta-section {
    padding: 35px 0;
  }
  
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
