/* =========================================
   CLEANPRO — services.css
   ========================================= */

.nav-active {
  color: var(--green-dark) !important;
  background: var(--green-light) !important;
  border-radius: 6px;
}

/* ── SERVICE INTRO ──────────────────────── */
.srv-intro {
  padding: 80px 0 60px;
  background: var(--white);
}

.srv-intro-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.srv-intro-left h2 {
  line-height: 1.2;
}
.srv-intro-right p {
  color: var(--muted);
}

/* 3×2 service card grid */
.srv-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.srv-card {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.srv-card:hover {
  border-color: var(--green);
  box-shadow: 0 12px 40px rgba(62, 197, 94, 0.14);
  transform: translateY(-4px);
}

.srv-card-icon {
  width: 64px;
  height: 64px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.srv-card:hover .srv-card-icon {
  background: var(--green-light);
  border-color: var(--green);
}

.srv-card h3 {
  color: var(--green-dark);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.srv-card-line {
  width: 40px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin-bottom: 14px;
}

.srv-card p {
  color: var(--muted);
  font-size: 0.88rem;
  flex: 1;
  margin-bottom: 24px;
}

.srv-card-btn {
  align-self: flex-start;
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* ── WHY QUALITY / TABS ─────────────────── */
.why-quality {
  padding: 80px 0;
  background: var(--cream);
}

.wq-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.wq-header-right p {
  color: var(--muted);
}

/* Tab navigation */
.wq-tabs {
}
.wq-tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 0;
}
.wq-tab-btn {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  background: none;
  border: none;
  padding: 14px 28px;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}
.wq-tab-btn::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.wq-tab-btn.active {
  color: var(--green-dark);
}
.wq-tab-btn.active::after {
  transform: scaleX(1);
}
.wq-tab-btn:hover {
  color: var(--green-dark);
}

/* Tab panels */
.wq-tab-panels {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
}
.wq-panel {
  display: none;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
}
.wq-panel.active {
  display: grid;
}

.wqp-text {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wqp-text h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.wqp-text p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 0.9rem;
  line-height: 1.7;
}
.wqp-btn {
  align-self: flex-start;
}

.wqp-visual {
  background: linear-gradient(145deg, var(--green-light), #b8f0c5);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.wqp-img-scene {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  position: relative;
}

/* CSS Cleaner illustration for philosophy tab */
.wqp-cleaner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.wqpc-head {
  width: 52px;
  height: 52px;
  background: #f5c4a0;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.wqpc-torso {
  width: 70px;
  height: 80px;
  background: var(--green-dark);
  border-radius: 8px 8px 0 0;
  position: relative;
}
.wqpc-arm {
  position: absolute;
  width: 14px;
  height: 52px;
  background: white;
  border-radius: 8px;
  top: 8px;
}
.wqpc-arm-l {
  left: -16px;
  transform: rotate(-8deg);
}
.wqpc-arm-r {
  right: -16px;
  transform: rotate(8deg);
}
.wqpc-spray {
  position: absolute;
  bottom: -8px;
  right: -24px;
  width: 26px;
  height: 42px;
  background: var(--green);
  border-radius: 5px;
}
.wqpc-spray::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 18px;
  background: var(--green-dark);
  border-radius: 3px 3px 0 0;
  top: -14px;
  right: 0;
}
.wqpc-legs {
  display: flex;
  gap: 8px;
}
.wqpc-leg {
  width: 20px;
  height: 40px;
  background: var(--dark);
  border-radius: 0 0 8px 8px;
}

.wqp-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.wqps {
  position: absolute;
  color: var(--green-dark);
  font-size: 1rem;
  animation: sparkle 1.8s ease-in-out infinite;
}
.wqps-1 {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}
.wqps-2 {
  top: 50%;
  right: 15%;
  animation-delay: 0.6s;
}
.wqps-3 {
  bottom: 20%;
  left: 30%;
  animation-delay: 1.2s;
}

/* Mission scene */
.wqp-mission-scene {
  flex-direction: column;
  gap: 20px;
}
.mission-icon {
  font-size: 3.5rem;
}
.mission-rings {
  position: relative;
  width: 120px;
  height: 120px;
}
.mr {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(62, 197, 94, 0.35);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulseRing 2.5s ease-out infinite;
}
.mr1 {
  width: 40px;
  height: 40px;
  animation-delay: 0s;
}
.mr2 {
  width: 80px;
  height: 80px;
  animation-delay: 0.5s;
}
.mr3 {
  width: 120px;
  height: 120px;
  animation-delay: 1s;
}
@keyframes pulseRing {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

/* Vision scene */
.wqp-vision-scene {
  flex-direction: column;
  gap: 16px;
}
.vision-icon {
  font-size: 3.5rem;
}
.vision-cities {
  position: absolute;
  inset: 20px;
}
.vc-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 50%;
  border: 2px solid white;
  animation: floatBubble 3s ease-in-out infinite;
  box-shadow: 0 0 0 4px rgba(62, 197, 94, 0.2);
}
.vc-dot:nth-child(2) {
  animation-delay: 0.5s;
}
.vc-dot:nth-child(3) {
  animation-delay: 1s;
}
.vc-dot:nth-child(4) {
  animation-delay: 1.5s;
}
.vc-dot:nth-child(5) {
  animation-delay: 2s;
}

/* CIRCULAR SERVICES */
.circular-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1.5px solid var(--border);
}

.circ-srv {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.circ-wrap {
  position: relative;
  width: 100px;
  height: 100px;
}
.circ-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--green);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 20px;
  z-index: 2;
  border: 2px solid var(--cream);
}
.circ-ring {
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.circ-svg {
  position: absolute;
  inset: 0;
  transform: rotate(-90deg);
}
.circ-track {
  fill: none;
  stroke: var(--border);
  stroke-width: 5;
}
.circ-fill {
  fill: none;
  stroke: var(--green);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: calc(2 * 3.14159 * 34);
  stroke-dashoffset: calc(2 * 3.14159 * 34 * (1 - var(--pct)));
  transition: stroke-dashoffset 1.2s ease;
}
.circ-icon {
  position: relative;
  z-index: 1;
  font-size: 1.8rem;
  width: 68px;
  height: 68px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
  transition: all 0.3s;
}
.circ-srv:hover .circ-icon {
  background: var(--green-light);
  border-color: var(--green);
  transform: scale(1.05);
}
.circ-srv h4 {
  font-size: 0.95rem;
  color: var(--dark);
}
.circ-srv p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── PRICING ────────────────────────────── */
.pricing {
  padding: 80px 0 100px;
  background: var(--white);
}

.pricing-sub {
  color: var(--muted);
  max-width: 520px;
  margin: 12px auto 0;
  font-size: 0.9rem;
}

/* Toggle */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 32px 0 40px;
}
.pt-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  transition: all 0.2s;
}
.pt-option input {
  display: none;
}
.pt-option--active,
.pt-option.selected {
  color: var(--green-dark);
  border-color: var(--green);
  background: var(--green-light);
}
.pt-save-badge {
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

/* Pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s;
  background: var(--white);
  position: relative;
}
.pricing-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--green);
}

.pricing-card--featured {
  background: var(--dark);
  border-color: var(--dark);
}
.pricing-card--featured:hover {
  border-color: var(--green);
}

.pc-best {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.pc-top {
  margin-bottom: 16px;
}
.pc-top h4 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 4px;
}
.pricing-card--featured .pc-top h4 {
  color: white;
}
.pc-sub {
  font-size: 0.75rem;
  color: var(--muted);
}
.pricing-card--featured .pc-sub {
  color: rgba(255, 255, 255, 0.5);
}

.pc-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 20px;
}
.pc-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  font-family: var(--font-head);
}
.pc-amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark);
  font-family: var(--font-head);
  line-height: 1;
  transition: all 0.3s;
}
.pricing-card--featured .pc-amount {
  color: white;
}
.pc-period {
  font-size: 0.8rem;
  color: var(--muted);
}
.pricing-card--featured .pc-period {
  color: rgba(255, 255, 255, 0.5);
}

.pc-icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
  border: 2px solid var(--border);
}
.pricing-card--featured .pc-icon-wrap {
  background: rgba(62, 197, 94, 0.15);
  border-color: rgba(62, 197, 94, 0.3);
}

.pc-features {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  text-align: left;
}
.pc-features li {
  font-size: 0.82rem;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-card--featured .pc-features li {
  color: rgba(255, 255, 255, 0.75);
}
.pc-features li.muted {
  color: var(--border);
}
.pricing-card--featured .pc-features li.muted {
  color: rgba(255, 255, 255, 0.25);
}

.pc-note {
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.4;
}
.pricing-card--featured .pc-note {
  color: rgba(255, 255, 255, 0.4);
}
.pc-note strong {
  color: var(--dark);
}
.pricing-card--featured .pc-note strong {
  color: white;
}

.pc-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  margin-top: auto;
  font-size: 0.88rem;
  padding: 11px 20px;
}

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .circular-services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .srv-intro-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .srv-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wq-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .wq-panel.active {
    grid-template-columns: 1fr;
  }
  .wqp-visual {
    min-height: 200px;
  }
}

@media (max-width: 700px) {
  .srv-cards-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .circular-services {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .wq-tab-nav {
    overflow-x: auto;
  }
  .wq-tab-btn {
    padding: 12px 18px;
    font-size: 0.82rem;
  }
}

/* Demo image upgrades */
.srv-card-icon,
.circ-icon,
.pc-illustration {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: transparent;
  font-size: 0;
}
.srv-card:nth-child(1) .srv-card-icon { background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=240&q=80"); }
.srv-card:nth-child(2) .srv-card-icon { background-image: url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format&fit=crop&w=240&q=80"); }
.srv-card:nth-child(3) .srv-card-icon { background-image: url("https://images.unsplash.com/photo-1484154218962-a197022b5858?auto=format&fit=crop&w=240&q=80"); }
.srv-card:nth-child(4) .srv-card-icon { background-image: url("https://images.unsplash.com/photo-1628177142898-93e36e4e3a50?auto=format&fit=crop&w=240&q=80"); }
.srv-card:nth-child(5) .srv-card-icon { background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=240&q=80"); }
.srv-card:nth-child(6) .srv-card-icon { background-image: url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=240&q=80"); }
.circ-srv:nth-child(1) .circ-icon { background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=240&q=80"); }
.circ-srv:nth-child(2) .circ-icon { background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=240&q=80"); }
.circ-srv:nth-child(3) .circ-icon { background-image: url("https://images.unsplash.com/photo-1484154218962-a197022b5858?auto=format&fit=crop&w=240&q=80"); }
.circ-srv:nth-child(4) .circ-icon { background-image: url("https://images.unsplash.com/photo-1563453392212-326f5e854473?auto=format&fit=crop&w=240&q=80"); }
.pc-illustration {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 3px solid var(--border);
}
.pricing-card:nth-child(1) .pc-illustration { background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=300&q=80"); }
.pricing-card:nth-child(2) .pc-illustration { background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=300&q=80"); }
.pricing-card:nth-child(3) .pc-illustration { background-image: url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=300&q=80"); }
.pricing-card:nth-child(4) .pc-illustration { background-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=300&q=80"); }

