:root {
  --pad-x: clamp(16px, 5vw, 48px);
  --section-y: clamp(40px, 6vw, 56px);
}

.about-page {
  background: #fff;
  overflow-x: hidden;
}

/* Hero */
.about-hero {
  padding: clamp(36px, 5vw, 52px) var(--pad-x) clamp(28px, 4vw, 40px);
  background: #040465;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.about-hero .about-h1 {
  color: #fff;
}

.about-hero .about-h1 span {
  color: var(--orange);
}

.about-hero .about-hero-sub {
  color: rgba(255, 255, 255, 0.78);
}

.about-hero .about-badge {
  background: rgba(255, 255, 255, 0.08);
  color: #8be9fd;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-hero-inner {
  max-width: 920px;
  margin: 0 auto;
}

.about-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.about-hero .about-breadcrumb {
  color: rgba(255, 255, 255, 0.55);
}

.about-hero .about-breadcrumb a {
  color: #8be9fd;
}

.about-hero .about-breadcrumb a:hover {
  color: var(--orange);
}

.about-hero .about-breadcrumb [aria-current="page"] {
  color: rgba(255, 255, 255, 0.92);
}

.about-hero .about-breadcrumb li + li::before {
  color: rgba(255, 255, 255, 0.35);
}

.about-breadcrumb li {
  display: inline-flex;
  align-items: center;
}

.about-breadcrumb li + li::before {
  content: '/';
  margin-right: 6px;
  color: #adb5bd;
}

.about-breadcrumb a {
  font-weight: 500;
}

.about-breadcrumb [aria-current="page"] {
  font-weight: 600;
}

.about-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin: 0 0 10px;
}

.about-h1 {
  font-family: 'Yatra One', cursive;
  font-size: clamp(26px, 4.5vw, 40px);
  line-height: 1.2;
  margin: 0 0 10px;
}

.about-hero-sub {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.65;
  max-width: 640px;
  margin: 0;
}

/* Sections */
.about-section {
  padding: var(--section-y) var(--pad-x);
}

.about-section--alt {
  background: var(--off);
}

.about-hero + .about-section {
  padding-top: calc(var(--section-y) - 4px);
}

.about-wrap {
  max-width: 960px;
  margin: 0 auto;
}

.about-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 6px;
}

.about-section h2 {
  font-family: 'Yatra One', cursive;
  font-size: clamp(22px, 3.5vw, 30px);
  color: var(--dark);
  margin: 0 0 10px;
  line-height: 1.2;
}

.about-section h2 span {
  color: var(--orange);
}

.about-lead {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 0 22px;
}

/* Company facts */
.about-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-facts li {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  border-left: 3px solid var(--orange);
}

.about-facts li.about-facts-note {
  grid-column: 1 / -1;
  border-left-color: var(--blue);
  background: #fff;
}

.about-facts strong {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.about-facts span {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.5;
}

.about-facts .status-active {
  color: var(--blue);
  font-weight: 600;
}

/* Vision & mission */
.about-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-vm-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  border-top: 3px solid var(--blue);
}

.about-section--alt .about-vm-card {
  background: #fff;
}

.about-vm-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--orange);
  margin: 0 0 10px;
}

.about-vm-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* Leadership */
.about-leaders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.about-leader {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.about-section--alt .about-leader {
  background: #fff;
}

.about-leader:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.about-leader-avatar {
  width: 72px;
  height: 72px;
  background: var(--orange);
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.about-leader-avatar--blue {
  background: var(--blue);
}

.about-leader h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 4px;
}

.about-leader-role {
  font-size: 13px;
  color: var(--blue);
  font-weight: 500;
  margin: 0 0 10px;
}

.about-leader-bio {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Values & process */
.about-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.about-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.about-section--alt .about-card {
  background: #fff;
}

.about-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.about-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.about-card-icon .dogy-icon {
  font-size: 1.1rem;
  color: #fff;
}

.about-card:nth-child(even) .about-card-icon {
  background: var(--blue);
}

.about-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 6px;
}

.about-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* Process — numbered row on desktop */
.about-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.about-process-item {
  position: relative;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
}

.about-process-num {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 22px;
  height: 22px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-process-item .about-card-icon {
  margin-top: 8px;
}

.about-process-item h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 6px;
}

.about-process-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* CTA */
.about-cta {
  background: linear-gradient(135deg, #212529 0%, var(--blue) 100%);
  color: #fff;
  padding: clamp(36px, 5vw, 48px) var(--pad-x);
  text-align: center;
}

.about-cta h2 {
  font-family: 'Yatra One', cursive;
  font-size: clamp(22px, 4vw, 28px);
  color: #fff;
  margin: 0 0 10px;
}

.about-cta p {
  font-size: 15px;
  opacity: 0.92;
  margin: 0 auto 18px;
  max-width: 520px;
  line-height: 1.65;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 24px;
  background: var(--orange);
  color: #fff;
  border: 2px solid var(--orange);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}

.about-btn:hover {
  background: var(--orange-d);
  border-color: var(--orange-d);
  transform: translateY(-1px);
}

.about-cta-meta {
  font-size: 13px;
  margin: 14px 0 0;
  opacity: 0.88;
}

.about-cta-meta a {
  color: #fff;
}

.about-cta-meta a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .about-cards,
  .about-process {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-vm-grid,
  .about-leaders {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .about-hero {
    padding: 28px var(--pad-x) 24px;
  }

  .about-cards,
  .about-process {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 992px) {
  .about-hero {
    padding: 52px var(--pad-x) 40px;
  }
}
