/* ==========================================================================
   File: about.css
   WETCO Synergies — About Section (Home + About Page)
   ========================================================================== */

/* -----------------------------------------
   1. ABOUT SPLIT LAYOUT
----------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}

.about-visual-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-visual:hover .about-visual-main img {
  transform: scale(1.05);
}

.about-experience-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background-color: var(--color-navy);
  color: var(--color-text-light);
  border-radius: var(--radius-md);
  padding: 26px 30px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 6px solid var(--color-bg);
}

.about-experience-badge .num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--color-lime);
  line-height: 1;
}

.about-experience-badge .lbl {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.75);
}

.about-content .section-header {
  margin-bottom: 26px;
}

.about-points {
  display: grid;
  gap: 18px;
  margin-block: 30px;
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-point-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background-color: rgba(108, 201, 14, 0.12);
  color: var(--color-lime-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.about-point h4 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.about-point p {
  font-size: 0.92rem;
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--color-border);
}

.about-signature img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.about-signature .name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-navy);
  font-size: 0.95rem;
}

.about-signature .role {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

/* -----------------------------------------
   2. STATS STRIP
----------------------------------------- */
.stats-strip {
  background-color: var(--color-navy);
  padding-block: 60px;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 90% 10%, rgba(108, 201, 14, 0.12), transparent 50%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.stats-grid .stat-block {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid .stat-block:last-child {
  border-right: none;
}

/* -----------------------------------------
   3. MISSION / VISION / VALUES (About page)
----------------------------------------- */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mv-card {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: all var(--transition-mid);
}

.mv-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.mv-card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background-color: var(--color-navy);
  color: var(--color-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.mv-card h3 {
  margin-bottom: 12px;
}

/* -----------------------------------------
   4. TIMELINE (About page — company history)
----------------------------------------- */
.timeline {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--color-border);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 50px 60px;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--color-lime);
  border: 4px solid var(--color-bg);
  box-shadow: 0 0 0 2px var(--color-lime);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -9px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -9px;
}

.timeline-year {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-lime-dark);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.timeline-item h4 {
  margin-bottom: 8px;
}

/* -----------------------------------------
   5. TEAM GRID (About page)
----------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  text-align: center;
}

.team-photo {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/3.5;
  margin-bottom: 20px;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-mid);
}

.team-card:hover .team-photo img {
  transform: scale(1.06);
}

.team-social {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-bottom: 18px;
  transition: bottom var(--transition-mid);
}

.team-card:hover .team-social {
  bottom: 0;
}

.team-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-lime);
  color: var(--color-navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.team-card h4 {
  margin-bottom: 4px;
}

.team-card .role {
  font-size: 0.85rem;
  color: var(--color-lime-dark);
  font-weight: 600;
}

/* -----------------------------------------
   6. CERTIFICATIONS STRIP
----------------------------------------- */
.certs-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.cert-item:hover {
  opacity: 1;
}

.cert-item i {
  font-size: 2.2rem;
  color: var(--color-navy);
}

.cert-item span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

/* -----------------------------------------
   7. RESPONSIVE
----------------------------------------- */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }

  .stats-grid .stat-block:nth-child(2) {
    border-right: none;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    width: 100%;
    left: 0;
    text-align: left;
    padding: 0 0 50px 55px;
  }

  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    left: 11px;
    right: auto;
  }
}

@media (max-width: 640px) {
  .about-experience-badge {
    right: 16px;
    bottom: -20px;
    padding: 18px 20px;
  }

  .mv-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .certs-strip {
    gap: 32px;
  }
}
