/* ==========================================================================
   SHREE SHARADA TAXI - ABOUT US PAGE STYLESHEET
   Dedicated stylesheet for about.html following strict
   #0A0A0B and #F4C401 alternating section flow.
   ========================================================================== */

/* --------------------------------------------------------------------------
   PAGE HERO SUB-BANNER (Dark #0A0A0B)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  background-color: var(--bg-dark);
  padding: 8.5rem 0 5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/abthero.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.29;
  z-index: 0;
  pointer-events: none;
}

.page-hero-ambient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(244, 196, 1, 0.12) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(244, 196, 1, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.page-hero-content {
  max-width: 750px;
}

.page-hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-white);
  line-height: 1.1;
  margin: 0.85rem 0 1.25rem;
}

.page-hero-subtitle {
  font-size: 1.12rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.page-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-whatsapp {
  background: rgba(37, 211, 102, 0.15) !important;
  border: 1px solid rgba(37, 211, 102, 0.4) !important;
  color: #25D366 !important;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.btn-whatsapp:hover {
  background: #25D366 !important;
  color: #0A0A0B !important;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

/* Page Hero Badge Card (Right Side) */
.page-hero-badge-card {
  background: linear-gradient(145deg, #141417 0%, #0d0d0f 100%);
  border: 1px solid rgba(244, 196, 1, 0.3);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.page-hero-badge-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #F4C401, #FFE089);
}

.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background-color: #FFFFFF;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(244, 196, 1, 0.4);
}

.trust-badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(244, 196, 1, 0.2);
  border: 1px solid rgba(244, 196, 1, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  color: #B38800;
  flex-shrink: 0;
}

.trust-badge-val {
  font-size: 1.5rem;
  font-weight: 900;
  color: #0A0A0B;
  line-height: 1.1;
}

.trust-badge-sub {
  font-size: 0.88rem;
  color: #555555;
  font-weight: 700;
  margin-top: 0.25rem;
}

.hero-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hero-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.hero-highlight-item i {
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   ALTERNATING SECTION RHYTHM & BASE STYLES
   -------------------------------------------------------------------------- */
.section-yellow {
  background-color: var(--primary) !important;
  color: #0a0a0b;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.section-dark {
  background-color: var(--bg-dark) !important;
  color: var(--text-primary);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   SECTION HEADERS (Contrast-aware)
   -------------------------------------------------------------------------- */
.section-header-yellow {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem;
}

.section-header-yellow .eyebrow-dark {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0a0a0b;
  background: #ffffff;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
  border: 1px solid rgba(10, 10, 11, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.section-header-yellow h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0a0a0b;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-header-yellow p {
  font-size: 1.05rem;
  color: #27272a;
  line-height: 1.6;
}

.section-header-dark {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem;
}

.section-header-dark .eyebrow-gold {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: rgba(244, 196, 1, 0.12);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
  border: 1px solid rgba(244, 196, 1, 0.3);
}

.section-header-dark h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-header-dark p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   SECTION 1 (YELLOW): STORY & TWO-COLUMN OVERVIEW
   -------------------------------------------------------------------------- */
.about-story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: stretch;
}

.about-story-card-light {
  background: #ffffff;
  color: #0a0a0b;
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  border: 1px solid rgba(10, 10, 11, 0.08);
  box-shadow: 0 15px 40px rgba(10, 10, 11, 0.08);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.story-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.story-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary);
  color: #0a0a0b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(244, 196, 1, 0.35);
}

.about-story-card-light h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0a0a0b;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.about-story-card-light p {
  font-size: 1.02rem;
  color: #3f3f46;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-feature-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(10, 10, 11, 0.08);
}

.about-bullet-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: #111111;
}

.about-bullet-item i {
  font-size: 1.25rem;
  color: #0a0a0b;
  background: rgba(244, 196, 1, 0.35);
  padding: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.about-story-bg-icon {
  position: absolute;
  right: -15px;
  bottom: -15px;
  font-size: 9rem;
  color: #0a0a0b;
  opacity: 0.04;
  pointer-events: none;
}

.about-story-card {
  background: #0a0a0b;
  color: var(--text-primary);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  border: 1px solid rgba(244, 196, 1, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.story-card-dark-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.85rem;
}

.story-card-dark-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.service-locations-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2rem;
}

.loc-pill {
  background: rgba(244, 196, 1, 0.12);
  color: var(--primary);
  border: 1px solid rgba(244, 196, 1, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.loc-pill:hover {
  background: var(--primary);
  color: #0a0a0b;
  transform: translateY(-2px);
}

.story-card-cta {
  margin-top: auto;
}

/* --------------------------------------------------------------------------
   SECTION 2 (DARK): SAFETY, PROTOCOLS & ASSURANCE PILLARS
   -------------------------------------------------------------------------- */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.assurance-card {
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

/* Alternate Card 1: Pure White (#FFFFFF) */
.assurance-card.card-white {
  background: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.assurance-card.card-white .assurance-icon {
  background: #F4C401;
  border: 1px solid #E0B300;
  color: #0A0A0B;
}

.assurance-card.card-white h3 {
  color: #0A0A0B;
}

.assurance-card.card-white p {
  color: #374151;
}

.assurance-card.card-white:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  border-color: #F4C401;
}

/* Alternate Card 2: #F4C401 Yellow */
.assurance-card.card-yellow {
  background: #F4C401;
  border: 1px solid rgba(244, 196, 1, 0.6);
  box-shadow: 0 10px 30px rgba(244, 196, 1, 0.2);
}

.assurance-card.card-yellow .assurance-icon {
  background: #0A0A0B;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #F4C401;
}

.assurance-card.card-yellow h3 {
  color: #0A0A0B;
}

.assurance-card.card-yellow p {
  color: #1A1A1A;
}

.assurance-card.card-yellow:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 38px rgba(244, 196, 1, 0.4);
  background: #fab800;
  border-color: #fab800;
}

.assurance-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  transition: transform var(--transition-fast);
}

.assurance-card:hover .assurance-icon {
  transform: scale(1.08);
}

.assurance-card h3 {
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.assurance-card p {
  font-size: 0.92rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   SECTION 3 (YELLOW): METRICS & MILESTONES
   -------------------------------------------------------------------------- */
.metrics-yellow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.metric-card-dark {
  background: #0a0a0b;
  color: var(--text-primary);
  border-radius: var(--radius-xl);
  padding: 2.5rem 1.75rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(10, 10, 11, 0.3);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.metric-card-dark:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  border-color: rgba(244, 196, 1, 0.4);
}

.metric-icon-top {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(244, 196, 1, 0.12);
  border: 1px solid rgba(244, 196, 1, 0.3);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1.25rem;
}

.metric-val {
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.metric-label {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.4rem;
}

.metric-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.metric-card-bg-icon {
  position: absolute;
  right: -10px;
  bottom: -10px;
  font-size: 6rem;
  color: #ffffff;
  opacity: 0.03;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   SECTION 4 (DARK): CORE VALUES & DISPATCH BANNER
   -------------------------------------------------------------------------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 4rem;
}

.value-card {
  background: #141416;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 196, 1, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  background: #18181b;
}

.value-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(244, 196, 1, 0.12);
  border: 1px solid rgba(244, 196, 1, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 1.35rem;
  transition: transform var(--transition-fast);
}

.value-card:hover .value-icon-box {
  transform: scale(1.08);
}

.value-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* CTA Ready Banner (Matching index.html) */
.cta-ready-box {
  background: #111113;
  border: 2px solid rgba(244, 196, 1, 0.4);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.cta-ready-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/bengaluru-airport.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: -1;
  pointer-events: none;
}

.cta-ready-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #F4C401, #FFE089);
  z-index: 2;
}

.cta-ready-box h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.cta-ready-box p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 2rem;
}

.cta-buttons-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .safety-grid,
  .metrics-yellow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .safety-grid,
  .metrics-yellow-grid {
    grid-template-columns: 1fr;
  }
  .section-yellow,
  .section-dark {
    padding: 4rem 0;
  }
  .page-hero {
    padding: 7rem 0 3.5rem;
  }
  .about-story-card-light,
  .about-story-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 500px) {
  .page-hero {
    padding: 5.5rem 0 2.75rem;
  }

  .page-hero-title {
    font-size: clamp(1.75rem, 7vw, 2.35rem);
    margin: 0.65rem 0 1rem;
  }

  .page-hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .page-hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .page-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .page-hero-badge-card {
    padding: 1.5rem 1.15rem;
  }

  .hero-trust-badge {
    padding: 1rem 1.15rem;
    gap: 0.85rem;
  }

  .section-yellow,
  .section-dark {
    padding: 3rem 0;
  }

  .section-header-yellow,
  .section-header-dark {
    margin-bottom: 2rem;
  }

  .section-header-yellow h2,
  .section-header-dark h2 {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
    margin-bottom: 0.65rem;
  }

  .section-header-yellow p,
  .section-header-dark p {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .about-story-card-light,
  .about-story-card {
    padding: 1.6rem 1.15rem;
  }

  .about-story-card-light h3,
  .story-card-dark-header h3 {
    font-size: 1.25rem;
  }

  .about-story-card-light p,
  .story-card-dark-header p {
    font-size: 0.9rem;
  }

  .assurance-card,
  .metric-card-dark,
  .value-card {
    padding: 1.6rem 1.15rem;
  }

  .metric-val {
    font-size: 2.75rem;
  }

  .cta-ready-box {
    padding: 2.25rem 1.15rem;
  }

  .cta-ready-box h2 {
    font-size: clamp(1.4rem, 5.5vw, 1.85rem);
  }

  .cta-ready-box p {
    font-size: 0.9rem;
  }

  .cta-buttons-group {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .cta-buttons-group .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 350px) {
  .page-hero {
    padding: 4.75rem 0 2.25rem;
  }

  .page-hero-title {
    font-size: clamp(1.35rem, 6.5vw, 1.75rem);
  }

  .page-hero-subtitle {
    font-size: 0.85rem;
  }

  .page-hero-badge-card {
    padding: 1.15rem 0.85rem;
  }

  .hero-trust-badge {
    padding: 0.75rem 0.75rem;
    gap: 0.65rem;
  }

  .trust-badge-icon {
    width: 42px;
    height: 42px;
    font-size: 1.4rem;
  }

  .trust-badge-val {
    font-size: 1.25rem;
  }

  .trust-badge-sub {
    font-size: 0.78rem;
  }

  .section-yellow,
  .section-dark {
    padding: 2.25rem 0;
  }

  .section-header-yellow,
  .section-header-dark {
    margin-bottom: 1.5rem;
  }

  .section-header-yellow h2,
  .section-header-dark h2 {
    font-size: clamp(1.2rem, 5.5vw, 1.45rem);
  }

  .section-header-yellow p,
  .section-header-dark p {
    font-size: 0.82rem;
  }

  .about-story-card-light,
  .about-story-card {
    padding: 1.25rem 0.85rem;
  }

  .about-story-card-light h3,
  .story-card-dark-header h3 {
    font-size: 1.15rem;
  }

  .loc-pill {
    font-size: 0.75rem;
    padding: 4px 10px;
  }

  .assurance-card,
  .metric-card-dark,
  .value-card {
    padding: 1.25rem 0.85rem;
  }

  .assurance-card h3,
  .value-card h3 {
    font-size: 1.1rem;
  }

  .assurance-card p,
  .metric-desc,
  .value-card p {
    font-size: 0.85rem;
  }

  .metric-val {
    font-size: 2.25rem;
  }

  .cta-ready-box {
    padding: 1.75rem 0.85rem;
  }

  .cta-ready-box h2 {
    font-size: clamp(1.2rem, 5vw, 1.45rem);
  }

  .cta-ready-box p {
    font-size: 0.82rem;
  }
}

@media (max-width: 240px) {
  .page-hero-title {
    font-size: 1.2rem;
  }

  .about-story-card-light,
  .about-story-card,
  .assurance-card,
  .metric-card-dark,
  .value-card {
    padding: 1rem 0.65rem;
  }
}

