/* ============================================
   Om Automobile — about.css
   Full About Us page styles — fully responsive
   ============================================ */

/* ======================================================
   PAGE HERO
   ====================================================== */
.about-hero {
  padding: calc(var(--nav-h) + 6rem) 2.5rem 5rem;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(230,48,18,0.13) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(230,48,18,0.06) 0%, transparent 45%),
    linear-gradient(145deg, #08080f 0%, #0f0f28 55%, #0d0d0d 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Background grid pattern */
.about-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.018) 0, rgba(255,255,255,0.018) 1px, transparent 1px, transparent 52px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.018) 0, rgba(255,255,255,0.018) 1px, transparent 1px, transparent 52px);
  pointer-events: none;
}

.about-hero .container { position: relative; z-index: 1; }

.about-hero .section-title {
  font-size: clamp(36px, 5.5vw, 58px);
  max-width: 680px;
  margin: 0 auto 1rem;
}

.about-hero .section-sub {
  max-width: 580px;
  margin: 0 auto 0;
  text-align: center;
}

/* ── Stats row ── */
.about-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat-item {
  flex: 1;
  min-width: 130px;
  max-width: 180px;
  text-align: center;
  padding: 0 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.4;
}

/* ======================================================
   BREADCRUMB
   ====================================================== */
.breadcrumb {
  padding: 1rem 2.5rem;
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
}

.breadcrumb-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--muted);
}

.breadcrumb-inner a { color: var(--muted); transition: color var(--ease); }
.breadcrumb-inner a:hover { color: var(--red); }
.breadcrumb-inner .sep { color: #333; }
.breadcrumb-inner .current { color: var(--red); font-weight: 600; }

/* ======================================================
   STORY SECTION
   ====================================================== */
.about-story {
  padding: 7rem 2.5rem;
}

.about-story-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

/* Image side */
.story-visual { position: relative; }

.story-img {
  width: 100%;
  aspect-ratio: 4/3.2;
  background: var(--dark2);
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.story-img::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 65%, rgba(230,48,18,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 15%, rgba(230,48,18,0.08) 0%, transparent 45%);
}

.story-img-icon {
  font-size: 90px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 32px rgba(230,48,18,0.35));
  animation: floatIcon 3.5s ease-in-out infinite;
}

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

/* Floating badge */
.story-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  border-radius: 14px;
  padding: 1.2rem 1.6rem;
  text-align: center;
  box-shadow: 0 12px 40px rgba(230,48,18,0.4);
  z-index: 2;
}
.story-badge strong {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.story-badge span {
  font-size: 11px;
  color: rgba(255,255,255,0.72);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Second floating mini card */
.story-mini-card {
  position: absolute;
  top: -16px;
  left: -16px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.mini-card-icon { font-size: 22px; }
.mini-card-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 2px;
}
.mini-card-text span { font-size: 11px; color: var(--muted); }

/* Text side */
.story-text .section-title { margin-bottom: 1.2rem; }
.story-text p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.82;
  margin-bottom: 1rem;
}

.story-highlights {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 1.8rem 0 2.2rem;
}
.highlight-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #d0d0d0;
  font-weight: 500;
}
.highlight-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(230,48,18,0.5);
}

.story-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ======================================================
   VALUES SECTION
   ====================================================== */
.about-values {
  padding: 6rem 2.5rem;
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-values-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.values-header {
  text-align: center;
  margin-bottom: 4rem;
}
.values-header .section-sub { margin: 0 auto; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--ease);
  transform-origin: left;
}
.value-card:hover {
  border-color: rgba(230,48,18,0.3);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.value-card:hover::before { transform: scaleX(1); }

.value-icon-wrap {
  width: 54px; height: 54px;
  background: rgba(230,48,18,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.3rem;
  font-size: 26px;
}
.value-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 9px;
}
.value-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.72;
}

/* ======================================================
   TEAM SECTION
   ====================================================== */
.about-team {
  padding: 7rem 2.5rem;
}

.about-team-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.team-header {
  text-align: center;
  margin-bottom: 4rem;
}
.team-header .section-sub { margin: 0 auto; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.team-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.6rem;
  text-align: center;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.team-card:hover {
  border-color: rgba(230,48,18,0.3);
  transform: translateY(-5px);
  box-shadow: 0 16px 44px rgba(0,0,0,0.3);
}

.team-avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, #ff6b4a 100%);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.3rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  border: 3px solid rgba(230,48,18,0.25);
  box-shadow: 0 4px 20px rgba(230,48,18,0.25);
}
.team-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}
.team-card .role {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.team-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.68;
}
.team-card .team-exp {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  background: rgba(230,48,18,0.08);
  border: 1px solid rgba(230,48,18,0.18);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11px;
  color: var(--red);
  font-weight: 600;
}

/* ======================================================
   TIMELINE / MILESTONES
   ====================================================== */
.about-timeline {
  padding: 6rem 2.5rem;
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-timeline-inner {
  max-width: 820px;
  margin: 0 auto;
}

.timeline-header {
  text-align: center;
  margin-bottom: 4rem;
}

.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--red) 0%, rgba(230,48,18,0.08) 100%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-bottom: 3rem;
}
.timeline-item:last-child { padding-bottom: 0; }

/* Dot */
.timeline-item::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 8px;
  width: 14px; height: 14px;
  background: var(--red);
  border-radius: 50%;
  border: 3px solid var(--dark2);
  box-shadow: 0 0 0 4px rgba(230,48,18,0.2);
  transition: box-shadow var(--ease);
}
.timeline-item:hover::before {
  box-shadow: 0 0 0 6px rgba(230,48,18,0.15);
}

.timeline-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.8rem;
  transition: border-color var(--ease);
}
.timeline-item:hover .timeline-card { border-color: rgba(230,48,18,0.3); }

.timeline-year {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 2px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.timeline-year::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.timeline-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.timeline-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.75;
}

/* ======================================================
   TESTIMONIALS
   ====================================================== */
.about-testimonials {
  padding: 7rem 2.5rem;
}

.about-testimonials-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.testi-header {
  text-align: center;
  margin-bottom: 4rem;
}
.testi-header .section-sub { margin: 0 auto; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testi-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color var(--ease), transform var(--ease);
}
.testi-card:hover {
  border-color: rgba(230,48,18,0.25);
  transform: translateY(-3px);
}

.testi-stars { color: #f59e0b; font-size: 15px; letter-spacing: 2px; margin-bottom: 12px; }

.testi-quote {
  font-size: 13.5px;
  color: #ccc;
  line-height: 1.78;
  font-style: italic;
  flex: 1;
  margin-bottom: 1.4rem;
  position: relative;
  padding-top: 0.5rem;
}
.testi-quote::before {
  content: '"';
  position: absolute;
  top: -10px; left: -4px;
  font-size: 60px;
  font-family: Georgia, serif;
  color: rgba(230,48,18,0.15);
  line-height: 1;
  pointer-events: none;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}

.testi-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.testi-area { font-size: 11.5px; color: var(--muted); }

/* ======================================================
   CERTIFICATIONS / TRUST BADGES
   ====================================================== */
.about-trust {
  padding: 5rem 2.5rem;
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.trust-header { margin-bottom: 3rem; }

.trust-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2rem;
  min-width: 180px;
  text-align: center;
  transition: border-color var(--ease), transform var(--ease);
}
.trust-card:hover {
  border-color: rgba(230,48,18,0.3);
  transform: translateY(-3px);
}
.trust-icon  { font-size: 36px; margin-bottom: 10px; }
.trust-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.trust-sub { font-size: 12px; color: var(--muted); }

/* ======================================================
   CTA SECTION
   ====================================================== */
.about-cta {
  padding: 7rem 2.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.about-cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(230,48,18,0.12) 0%, transparent 65%),
    linear-gradient(180deg, #09090f 0%, #0d0d20 50%, #09090f 100%);
}
.about-cta .container { position: relative; z-index: 1; }
.about-cta .section-title { margin: 0 auto 1rem; max-width: 560px; }
.about-cta .section-sub   { margin: 0 auto 2.5rem; text-align: center; }

.cta-btn-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1060px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid   { grid-template-columns: repeat(2, 1fr); }
  .testi-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .about-hero  { padding: calc(var(--nav-h) + 4rem) 1.5rem 4rem; }
  .about-story { padding: 5rem 1.5rem; }
  .about-story-inner { grid-template-columns: 1fr; gap: 4rem; }
  .story-badge { bottom: -14px; right: 1rem; }
  .story-mini-card { top: -12px; left: 1rem; }
  .about-values        { padding: 5rem 1.5rem; }
  .about-team          { padding: 5rem 1.5rem; }
  .about-timeline      { padding: 5rem 1.5rem; }
  .about-testimonials  { padding: 5rem 1.5rem; }
  .about-trust         { padding: 4rem 1.5rem; }
  .about-cta           { padding: 5rem 1.5rem; }
}

@media (max-width: 640px) {
  .about-stats { gap: 1rem; }
  .stat-item { min-width: 110px; padding: 0 1rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 1rem; margin-bottom: 1rem; }
  .stat-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .stat-num { font-size: 38px; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid   { grid-template-columns: 1fr; }
  .testi-grid  { grid-template-columns: 1fr; }
  .story-mini-card { display: none; }
  .story-badge { position: relative; bottom: auto; right: auto; margin-top: 1.2rem; display: inline-block; }
}

@media (max-width: 400px) {
  .about-hero { padding: calc(var(--nav-h) + 3rem) 1rem 3rem; }
  .container  { padding: 0 1rem; }
}
