/* =========================================
   CLEANPRO — about.css
   ========================================= */

/* PAGE HERO BANNER */
.page-hero {
  position: relative;
  height: 280px;
  background: var(--dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14, 27, 18, 0.92) 0%,
    rgba(39, 163, 72, 0.25) 100%
  );
  z-index: 1;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.phb-shape {
  position: absolute;
  border-radius: 50%;
}
.phb-s1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(62, 197, 94, 0.18) 0%,
    transparent 70%
  );
  top: -200px;
  right: -100px;
}
.phb-s2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(62, 197, 94, 0.1) 0%,
    transparent 70%
  );
  bottom: -100px;
  left: 100px;
}
.phb-stars {
  position: absolute;
  inset: 0;
}
.star {
  position: absolute;
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.4rem;
  animation: twinkle 3s ease-in-out infinite;
}
.star-1 {
  top: 30%;
  right: 20%;
  font-size: 1.8rem;
  animation-delay: 0s;
}
.star-2 {
  top: 60%;
  right: 35%;
  font-size: 1.2rem;
  animation-delay: 1s;
}
.star-3 {
  top: 25%;
  right: 45%;
  font-size: 2rem;
  animation-delay: 2s;
  color: rgba(62, 197, 94, 0.5);
}
@keyframes twinkle {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.2);
  }
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-hero-title {
  color: white;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--green);
}
.bc-sep {
  color: rgba(255, 255, 255, 0.4);
}
.bc-current {
  color: var(--green);
  font-weight: 500;
}

/* WHY US */
.why-us {
  padding: 100px 0;
  background: var(--white);
}
.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.why-visual {
  position: relative;
}
.why-img-frame {
  width: 340px;
  height: 380px;
  border-radius: 24px;
  overflow: visible;
  position: relative;
}
.why-img-scene {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--green-light) 0%, #b8f0c5 100%);
  border-radius: 24px;
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* CSS cleaner illustration */
.cleaner-alt {
  position: relative;
  text-align: center;
}
.ca-body {
  position: relative;
  display: inline-block;
}
.ca-head {
  width: 60px;
  height: 60px;
  background: #f5c4a0;
  border-radius: 50%;
  margin: 0 auto 8px;
  border: 4px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.ca-body > div:not(.ca-head) {
}
.ca-arm {
  width: 16px;
  height: 60px;
  background: white;
  border-radius: 8px;
  position: absolute;
  top: 70px;
}
.ca-arm-l {
  left: -20px;
  transform: rotate(-10deg);
}
.ca-arm-r {
  right: -20px;
  transform: rotate(10deg);
  position: relative;
}
.ca-spray {
  position: absolute;
  right: -30px;
  top: 30px;
  width: 30px;
  height: 48px;
  background: var(--green-dark);
  border-radius: 6px;
}
.ca-spray::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 22px;
  background: var(--green);
  border-radius: 4px 4px 0 0;
  top: -16px;
  right: -2px;
}
.ca-apron {
  width: 80px;
  height: 100px;
  background: var(--green-dark);
  border-radius: 8px 8px 20px 20px;
  margin: 0 auto;
}
.ca-bucket {
  font-size: 2.5rem;
  margin-top: 10px;
}

.why-bubbles {
  position: absolute;
  top: 20px;
  left: 20px;
}
.wb {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  animation: floatBubble 3s ease-in-out infinite;
}
.wb1 {
  width: 28px;
  height: 28px;
  top: 0;
  left: 0;
  animation-delay: 0s;
}
.wb2 {
  width: 18px;
  height: 18px;
  top: -15px;
  left: 40px;
  animation-delay: 0.9s;
}
.wb3 {
  width: 12px;
  height: 12px;
  top: 18px;
  left: 65px;
  animation-delay: 1.8s;
}

.why-badge {
  position: absolute;
  top: 20px;
  right: -24px;
  background: var(--green);
  color: white;
  border-radius: var(--radius);
  padding: 16px 18px;
  text-align: center;
  box-shadow: var(--shadow);
  animation: floatY 3s ease-in-out infinite;
  z-index: 10;
}
.wb-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-head);
  line-height: 1;
}
.wb-lbl {
  font-size: 0.68rem;
  opacity: 0.85;
  line-height: 1.3;
}

.why-text h2 {
  margin-bottom: 1rem;
}
.why-desc {
  color: var(--muted);
  margin-bottom: 2rem;
}

.why-video-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  cursor: pointer;
  transition: all 0.3s;
}
.why-video-cta:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
}
.wvc-thumb {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--green-light), #9ddba8);
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.wvc-play {
  width: 28px;
  height: 28px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  z-index: 1;
}
.wvc-img-bg {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #2d6a4f20, #52b78820);
}
.wvc-text h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--dark);
}
.wvc-text p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

/* FEATURED SERVICES */
.featured-services {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  background: var(--dark);
  min-height: 340px;
  position: relative;
  overflow: hidden;
}
.featured-services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
    circle,
    rgba(62, 197, 94, 0.07) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
}
.fs-left {
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.fs-left h2 {
  color: white;
  margin-bottom: 1rem;
}
.fs-left p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}
.fs-right {
  padding: 64px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.fs-slider {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
}
.fs-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: white;
  border-radius: var(--radius);
  padding: 22px 20px;
  min-width: 260px;
  flex-shrink: 0;
  transition: all 0.3s;
}
.fs-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}
.fs-icon-wrap {
  width: 50px;
  height: 50px;
  background: var(--green-light);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.fs-card-text h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--dark);
}
.fs-card-text p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}
.fs-dots {
  display: flex;
  gap: 8px;
  padding-left: 4px;
}
.fs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.fs-dot.active {
  background: var(--green);
  width: 28px;
  border-radius: 5px;
}

/* TIMELINE */
.timeline-section {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.timeline-section::before {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(62, 197, 94, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.timeline-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

/* TL Visual */
.tl-visual {
  position: relative;
}
.tl-img-frame {
  width: 100%;
  max-width: 340px;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  border: 3px solid var(--border);
  background: linear-gradient(145deg, #e8fbed, #c8f2d4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tl-img-scene {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tl-cleaner {
  text-align: center;
}
.tlc-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.tlc-head {
  width: 70px;
  height: 70px;
  background: #f5c4a0;
  border-radius: 50%;
  border: 5px solid white;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}
.tlc-bucket {
  background: var(--green-dark);
  border-radius: 12px 12px 20px 20px;
  width: 100px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.tlcb-handle {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 20px;
  border: 4px solid var(--green);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}
.tlcb-body {
}
.tlcb-tools {
  font-size: 1.4rem;
}

/* Timeline track */
.tl-content {
}
.tl-content h2 {
  margin-bottom: 0.75rem;
}
.tl-desc {
  color: var(--muted);
  margin-bottom: 2rem;
}

.timeline-track {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.tl-arr {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  font-size: 1.1rem;
  color: var(--mid);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.tl-arr:hover {
  border-color: var(--green);
  color: var(--green);
}
.tl-years {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
}
.tl-year {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.ty-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  font-family: var(--font-head);
  transition: color 0.2s;
}
.ty-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid var(--border);
  transition: all 0.3s;
}
.tl-year.active .ty-label {
  color: var(--dark);
}
.tl-year.active .ty-dot {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(62, 197, 94, 0.2);
  width: 14px;
  height: 14px;
}

.tl-timeline-bar {
  position: relative;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  margin: 0 48px 32px;
}
.tl-bar-progress {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--green);
  border-radius: 2px;
  transition: width 0.4s ease;
  width: 0%;
}

.tl-event-box {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.tl-event-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--green);
  border-radius: 2px 0 0 2px;
}
.tl-event-box h3 {
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.tl-event-box p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* TEAM */
.team {
  padding: 100px 0;
  background: var(--white);
}
.team-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 3rem;
}
.team-header-right p {
  color: var(--muted);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 1.5rem;
}
.team-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: all 0.3s;
  background: var(--white);
}
.team-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.tc-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.tc-img-1 {
  background: linear-gradient(145deg, #e8d5f5, #c9a0dc);
}
.tc-img-2 {
  background: linear-gradient(145deg, #d5e8f5, #90c9e6);
}
.tc-img-3 {
  background: linear-gradient(145deg, #d5f5e4, #90d9b5);
}
.tc-img-4 {
  background: linear-gradient(145deg, #f5e8d5, #e6c090);
}

.tc-person {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tcp-head {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}
.tcp-head-1 {
  background: #f5c4a0;
}
.tcp-head-2 {
  background: #f0b8b0;
}
.tcp-head-3 {
  background: #d4b896;
}
.tcp-head-4 {
  background: #e8c4a8;
}

.tcp-body {
  width: 80px;
  height: 80px;
  border-radius: 40px 40px 0 0;
}
.tcp-body-1 {
  background: var(--green-dark);
}
.tcp-body-2 {
  background: #2980b9;
}
.tcp-body-3 {
  background: #1a6b3c;
}
.tcp-body-4 {
  background: #7b4f12;
}

.tc-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-top: 3px solid var(--green);
}
.tc-info h4 {
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 3px;
}
.tc-info span {
  font-size: 0.75rem;
  color: var(--muted);
}
.tc-share {
  width: 32px;
  height: 32px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.75rem;
  transition: all 0.2s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tc-share:hover {
  background: var(--green-dark);
  transform: scale(1.05);
}

.team-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.tdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}
.tdot.active {
  background: var(--green);
  width: 28px;
  border-radius: 5px;
}

/* STATS LIGHT */
.stats-light {
  padding: 60px 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-light-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: center;
}
.sl-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  justify-content: center;
}
.sl-icon {
  font-size: 2.5rem;
  opacity: 0.5;
}
.sl-text {
  display: flex;
  flex-direction: column;
}
.sl-num {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-head);
  color: var(--dark);
  line-height: 1;
}
.sl-sup {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  display: inline;
  vertical-align: super;
}
.sl-lbl {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 4px;
}
.sl-sep {
  width: 1px;
  height: 60px;
  background: var(--border);
  margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .why-us-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-visual {
    display: none;
  }
  .featured-services {
    grid-template-columns: 1fr;
  }
  .fs-left {
    padding: 40px 24px 20px;
  }
  .fs-right {
    padding: 20px 24px 40px;
  }
  .timeline-inner {
    grid-template-columns: 1fr;
  }
  .tl-visual {
    display: none;
  }
  .team-header {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-light-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .sl-sep:nth-child(4) {
    display: none;
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .stats-light-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .sl-sep {
    display: none;
  }
  .tl-years {
    gap: 12px;
  }
  .ty-label {
    font-size: 0.75rem;
  }
  .page-hero {
    height: 200px;
  }
}

/* Demo image upgrades */
.why-img-scene,
.wvc-thumb,
.tl-img-frame,
.fs-icon-wrap {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.why-img-scene {
  background-image:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(62, 197, 94, 0.18)),
    url("https://images.unsplash.com/photo-1603712725038-e9334ae8f39f?auto=format&fit=crop&w=900&q=80");
}
.cleaner-alt,
.why-bubbles,
.wvc-img-bg,
.tl-img-scene,
.fs-icon {
  display: none;
}
.wvc-thumb {
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(62, 197, 94, 0.18)),
    url("https://images.unsplash.com/photo-1521790797524-b2497295b8a0?auto=format&fit=crop&w=300&q=80");
}
.tl-img-frame {
  background-image:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(62, 197, 94, 0.18)),
    url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=900&q=80");
}
.fs-card:nth-child(1) .fs-icon-wrap { background-image: url("https://images.unsplash.com/photo-1628177142898-93e36e4e3a50?auto=format&fit=crop&w=240&q=80"); }
.fs-card:nth-child(2) .fs-icon-wrap { background-image: url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=240&q=80"); }
.fs-card:nth-child(3) .fs-icon-wrap { background-image: url("https://images.unsplash.com/photo-1556911220-bff31c812dba?auto=format&fit=crop&w=240&q=80"); }

