/* =============================================================
   ABOUT PAGE CSS — ULTRA-CLEAN & MODERN 2026
   ============================================================= */

/* ============================================================
   ABOUT HERO SECTION & ANIMATED VECTOR VISUAL
   ============================================================ */
.about-hero {
  padding: 88px 0 76px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.about-hero-wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 40px;
  align-items: center;
}

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

.about-hero-text h1 {
  color: var(--white);
  max-width: 760px;
}

.about-hero-text p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 540px;
  font-size: 16.5px;
  line-height: 1.7;
  margin-top: 14px;
}

.about-hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.about-hero-svg {
  width: 100%;
  max-width: 580px;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.5));
}

/* Smooth Infinite Motion Animations */
.anim-float-main {
  animation: floatMain 6s ease-in-out infinite;
}

.anim-float-phone {
  animation: floatPhone 5.2s ease-in-out infinite 0.6s;
}

.anim-float-store {
  animation: floatStore 5.8s ease-in-out infinite 1.2s;
}

.anim-pulse-ambient {
  animation: pulseAmbient 4.5s ease-in-out infinite;
  transform-origin: 340px 240px;
}

.anim-lasers path {
  animation: dashPulse 2.8s linear infinite;
}

.anim-rocket {
  animation: rocketSurge 3.5s ease-in-out infinite;
}

.anim-sparkles path {
  animation: twinkleSparkle 3s ease-in-out infinite;
  transform-origin: center;
}

.anim-glyphs circle,
.anim-glyphs rect {
  animation: glyphSpin 9s linear infinite;
  transform-origin: center;
}

@keyframes floatMain {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(0.6deg);
  }
}

@keyframes floatPhone {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(-1.5deg);
  }
}

@keyframes floatStore {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(10px) rotate(1.2deg);
  }
}

@keyframes pulseAmbient {
  0%, 100% {
    opacity: 0.35;
    transform: scale(0.95);
  }
  50% {
    opacity: 0.65;
    transform: scale(1.08);
  }
}

@keyframes dashPulse {
  0% {
    stroke-dashoffset: 24;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes rocketSurge {
  0%, 100% {
    transform: translate(490px, 70px) rotate(-35deg) scale(1);
    opacity: 0.85;
  }
  50% {
    transform: translate(498px, 60px) rotate(-35deg) scale(1.08);
    opacity: 1;
  }
}

@keyframes twinkleSparkle {
  0%, 100% {
    opacity: 0.35;
    transform: scale(0.85);
  }
  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

@keyframes glyphSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Accessibility: prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .anim-float-main,
  .anim-float-phone,
  .anim-float-store,
  .anim-pulse-ambient,
  .anim-lasers path,
  .anim-rocket,
  .anim-sparkles path,
  .anim-glyphs circle,
  .anim-glyphs rect {
    animation: none !important;
  }
}

/* Story Grid */
.about-story {
  padding: 96px 0;
  background: var(--white);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.story-img-col {
  position: relative;
}

.story-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--r-2xl);
  box-shadow: var(--sh-xl);
}

.story-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--navy);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-xl);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.badge-num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 38px;
  color: var(--green);
  line-height: 1;
}

.story-img-badge span:last-child {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  font-weight: 600;
}

.story-text-col h2 {
  font-size: clamp(1.8rem, 1.2rem + 2vw, 2.5rem);
  margin-bottom: 20px;
  color: var(--navy);
}

.story-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.sv-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
}

.sv-item i {
  color: var(--green-dark);
  font-size: 13px;
  flex-shrink: 0;
}

/* Mission & Vision Cards */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 30px;
  transition: all var(--t-base);
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--border-hover);
}

.mv-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--navy-pale);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 20px;
}

.mv-card:nth-child(2) .mv-icon {
  background: var(--green-pale);
  color: var(--green-dark);
}

.mv-card:nth-child(3) .mv-icon {
  background: var(--gold-light);
  color: var(--gold);
}

.mv-card h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.mv-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 0;
}

/* Alternating Service Rows */
.service-rows {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sr-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  padding: 36px;
  border-radius: var(--r-2xl);
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  transition: all var(--t-base);
}

.sr-row:hover {
  box-shadow: var(--sh-md);
  border-color: var(--border-hover);
}

.sr-row.reverse .sr-img { order: 2; }
.sr-row.reverse .sr-text { order: 1; }

.sr-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--r-xl);
}

.sr-text h3 {
  font-size: 1.45rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.sr-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 992px) {
  .about-hero-wrap {
    grid-template-columns: 1fr;
    gap: 44px;
    text-align: center;
  }
  .about-hero-text h1,
  .about-hero-text p {
    margin-left: auto;
    margin-right: auto;
  }
  .about-hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }
  .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-img { height: 340px; }
  .story-img-badge { right: 10px; bottom: -15px; padding: 14px 18px; }
  .mv-grid { grid-template-columns: 1fr; }
  .sr-row, .sr-row.reverse { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
  .sr-row.reverse .sr-img { order: 1; }
  .sr-row.reverse .sr-text { order: 2; }
  .sr-img img { height: 220px; }
}

@media (max-width: 580px) {
  .about-hero {
    padding: 64px 0 50px;
  }
  .about-hero-visual {
    max-width: 100%;
  }
  .story-values { grid-template-columns: 1fr; }
  .story-img-badge { position: static; margin-top: 14px; }
}