/* ============================================================
   WELLSHINETECH — about.css
   Styles for about.html content only
   ============================================================ */

:root {
  --orange: #E84C1E;
  --orange-dark: #c43c14;
  --orange-light: #FFF0EB;
  --navy: #192a3d;
  --slate: #3A4F66;
  --text-mid: #4a5568;
  --text-light: #718096;
  --border: #e2e8f0;
  --white: #ffffff;
  --bg-light: #f7f9fc;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, .07);
  --shadow-md: 0 6px 28px rgba(0, 0, 0, .10);
  --transition: 0.28s ease;
  --header-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ============================================================
   SHARED CONTAINER
   ============================================================ */
.about-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   HERO
   ============================================================ */
.about-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 72px;

  background:
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80') center 40% / cover no-repeat;

  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(15, 25, 40, .82) 0%,
      rgba(40, 60, 85, .65) 55%,
      rgba(200, 85, 20, .22) 100%);
}

.about-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 72px 24px;
  max-width: 720px;
}

.about-hero-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232, 76, 30, .15);
  border: 1px solid rgba(232, 76, 30, .35);
  border-radius: 50px;
  padding: 5px 18px;
  margin-bottom: 18px;
}

.about-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.9rem, 5vw, 3.1rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .35);
}

.about-hero-subtitle {
  font-size: clamp(.9rem, 2vw, 1.05rem);
  color: rgba(255, 255, 255, .8);
  font-weight: 400;
  line-height: 1.7;
}

/* WhatsApp */
.about-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 10;
  width: 50px;
  height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, .55);
}

.about-whatsapp svg {
  width: 26px;
  height: 26px;
}

/* ============================================================
   SHARED HEADING ELEMENTS
   ============================================================ */
.about-tag {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.about-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0;
}

.about-section-head {
  text-align: center;
  margin-bottom: 52px;
}

/* ============================================================
   INTRO SECTION
   ============================================================ */
.about-intro {
  background: var(--white);
  padding: 88px 0 96px;
}

.about-intro .about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-intro-text .about-tag {
  margin-bottom: 10px;
}

.about-intro-text .about-section-title {
  margin-bottom: 22px;
}

.about-intro-body {
  font-size: .975rem;
  color: var(--text-mid);
  line-height: 1.82;
  margin-bottom: 32px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 34px;
  background: var(--orange);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: .875rem;
  font-weight: 600;
  border-radius: 7px;
  border: 2px solid var(--orange);
  box-shadow: 0 4px 18px rgba(232, 76, 30, .28);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.about-btn:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(232, 76, 30, .38);
}

/* Image side */
.about-img-wrapper {
  position: relative;
}

.about-img-wrapper img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-img-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 20px 26px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(232, 76, 30, .4);
}

.badge-number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.badge-label {
  display: block;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .04em;
  opacity: .9;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.about-stats {
  background: var(--navy);
  padding: 56px 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 16px 24px;
}

.stat-number {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-plus {
  color: var(--orange);
}

.stat-label {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, .12);
  flex-shrink: 0;
}

/* ============================================================
   ABOUT STATEMENT (dark band)
   ============================================================ */
.about-statement {
  position: relative;
  background:
    url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80') center / cover no-repeat;
  padding: 96px 0;
  overflow: hidden;
}

.about-statement-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 25, 40, .92) 0%, rgba(232, 76, 30, .18) 100%);
}

.about-statement-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 28px;
}

.about-statement-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 22px;
}

.about-statement-divider {
  width: 60px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: 0 auto 32px;
}

.about-statement-body {
  font-size: clamp(.95rem, 1.8vw, 1.05rem);
  color: rgba(255, 255, 255, .84);
  line-height: 1.9;
  font-weight: 500;
}

/* ============================================================
   VALUES SECTION
   ============================================================ */
.about-values {
  background: var(--bg-light);
  padding: 88px 0 96px;
}

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

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 26px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232, 76, 30, .25);
}

.value-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 20px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.value-card:hover .value-icon {
  background: #fde0d5;
}

.value-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--orange);
  fill: none;
}

.value-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.value-desc {
  font-size: .845rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ============================================================
   MISSION / VISION
   ============================================================ */
.about-mission {
  background: var(--white);
  padding: 88px 0 96px;
}

.mission-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.mission-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.mission-content .about-tag {
  margin-bottom: 8px;
}

.mission-content .about-section-title {
  margin-bottom: 36px;
}

.mission-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.mission-block:last-child {
  margin-bottom: 0;
}

.mission-block-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--orange-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: background var(--transition);
}

.mission-block:hover .mission-block-icon {
  background: #fde0d5;
}

.mission-block-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--orange);
}

.mission-block-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.mission-block-desc {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.about-cta {
  background: var(--bg-light);
  padding: 72px 28px 88px;
}

.about-cta-inner {
  max-width: 780px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f97316 0%, #E84C1E 55%, #c43c14 100%);
  border-radius: 20px;
  padding: 64px 52px;
  text-align: center;
  box-shadow: 0 18px 60px rgba(232, 76, 30, .32);
}

.cta-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 12px;
}

.about-cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}

.about-cta-body {
  font-size: .975rem;
  color: rgba(255, 255, 255, .78);
  line-height: 1.75;
  margin-bottom: 34px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 38px;
  background: transparent;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, .75);
  border-radius: 8px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.about-cta-btn:hover {
  background: rgba(255, 255, 255, .18);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.animate-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}

.animate-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .65s ease, transform .65s ease;
}

.animate-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .65s ease, transform .65s ease;
}

.animate-up.visible,
.animate-left.visible,
.animate-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* Animation delays */
.delay-1 {
  transition-delay: .12s;
}

.delay-2 {
  transition-delay: .24s;
}

.delay-3 {
  transition-delay: .36s;
}

/* ============================================================
   RESPONSIVE — Tablet (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-intro .about-container,
  .mission-row {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img-badge {
    bottom: -18px;
    left: -12px;
  }
}

/* ============================================================
   RESPONSIVE — Mobile (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  .about-hero {
    min-height: 380px;
  }

  .about-intro {
    padding: 60px 0 70px;
  }

  .about-stats {
    padding: 44px 0;
  }

  .stats-grid {
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 0 0 50%;
  }

  .stat-divider {
    display: none;
  }

  .about-statement {
    padding: 68px 0;
  }

  .about-values {
    padding: 60px 0 68px;
  }

  .about-mission {
    padding: 60px 0 68px;
  }

  .about-cta {
    padding: 52px 20px 68px;
  }

  .about-cta-inner {
    padding: 46px 28px;
  }
}

@media (max-width: 520px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    flex: 0 0 100%;
  }

  .about-img-badge {
    position: static;
    margin-top: 16px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .badge-number {
    font-size: 1.6rem;
  }

  .mission-block {
    flex-direction: column;
  }
}