/* ==========================================================================
   About Page Styles — DriveBro Theme
   ========================================================================== */

/* Hero Section
   ========================================================================== */

.about-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1a3d4a 100%);
  color: var(--primary-foreground);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.about-hero h1 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
  position: relative;
}

.about-hero p {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
}

/* Story Section
   ========================================================================== */

.about-story {
  padding: 5rem 0;
  background: var(--surface);
}

.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-story__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-story__content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--foreground);
  margin: 0 0 1rem;
}

.about-story__content p {
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Values Cards (4-Grid)
   ========================================================================== */

.about-values {
  padding: 5rem 0;
  background: var(--background);
}

.about-values__header {
  text-align: center;
  margin-bottom: 3rem;
}

.about-values__header h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--foreground);
  margin: 0 0 0.5rem;
}

.about-values__header p {
  color: var(--muted-foreground);
  font-size: 1.0625rem;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.value-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: var(--primary-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.value-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0 0 0.5rem;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin: 0;
}

/* Stats Bar
   ========================================================================== */

.about-stats {
  background: linear-gradient(135deg, var(--primary) 0%, #1a3d4a 100%);
  color: var(--primary-foreground);
  padding: 3rem 0;
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.about-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.about-stats__number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.about-stats__label {
  font-size: 0.9375rem;
  opacity: 0.85;
}

/* Why Choose Us (2x2 Grid)
   ========================================================================== */

.about-why {
  padding: 5rem 0;
  background: var(--surface);
}

.about-why__header {
  text-align: center;
  margin-bottom: 3rem;
}

.about-why__header h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--foreground);
  margin: 0 0 0.5rem;
}

.about-why__header p {
  color: var(--muted-foreground);
  font-size: 1.0625rem;
}

.about-why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.why-card {
  display: flex;
  gap: 1.25rem;
  padding: 2rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.why-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.why-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.why-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0 0 0.5rem;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin: 0;
}

/* Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .about-story__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding: 3.5rem 0 3rem;
  }

  .about-values__grid {
    grid-template-columns: 1fr;
  }

  .about-why__grid {
    grid-template-columns: 1fr;
  }

  .about-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
