/* Cleaning Services London — Design Audit Fixes
   Matches main removals page quality: typography, cards, spacing, mobile */

/* ─── Page-specific: wider container for grids ───────────────────────────── */
.cleaning-page .service-content .container,
.service-content .container {
  max-width: 1200px;
}

/* ─── Hero sub trust badges (remove inline styles) ───────────────────────── */
.hero-sub-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

/* ─── Unified service hero image (all pages) ─────────────────────────────── */
.service-hero-img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin: 1.5rem 0;
  box-shadow: var(--shadow-lg);
}

/* ─── Unified guarantees box ────────────────────────────────────────────── */
.guarantees-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--gray-50) 0%, white 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.guarantees-box span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--gray-800);
}

/* ─── Unified stats bar (cleaning-stats + all *-stats variants) ─────────── */
.cleaning-stats,
.deep-stats,
.carpet-stats,
.office-stats,
.builders-stats,
.oven-stats,
.airbnb-stats,
.regular-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  color: white;
  text-align: center;
  margin-bottom: 2.5rem;
}

.cleaning-stats .stat-value,
.deep-stats .stat-value,
.carpet-stats .stat-value,
.office-stats .stat-value,
.builders-stats .stat-value,
.oven-stats .stat-value,
.airbnb-stats .stat-value,
.regular-stats .stat-value {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 800;
  line-height: 1.2;
}

.cleaning-stats .stat-label,
.deep-stats .stat-label,
.carpet-stats .stat-label,
.office-stats .stat-label,
.builders-stats .stat-label,
.oven-stats .stat-label,
.airbnb-stats .stat-label,
.regular-stats .stat-label {
  font-size: 0.8rem;
  opacity: 0.9;
  margin-top: 0.25rem;
}

/* ─── Price table (end-of-tenancy, shared) ───────────────────────────────── */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.price-table th,
.price-table td {
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}

.price-table th {
  background: var(--primary);
  color: white;
  font-weight: 600;
}

.price-table tr:nth-child(even) {
  background: var(--gray-50);
}

.price-table .price-cell {
  font-weight: 600;
  color: var(--primary);
}

/* ─── Checklist section (end-of-tenancy) ─────────────────────────────────── */
.checklist-section {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.checklist-section h4 {
  margin: 0 0 0.75rem;
  color: var(--primary);
}

.checklist-section ul {
  margin: 0;
  padding-left: 1.25rem;
}

.checklist-section li {
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

/* Scroll margin for anchor links (header offset) */
#cleaning-calculator {
  scroll-margin-top: 100px;
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.cleaning-hero {
  position: relative;
  padding: 6rem 0 4rem;
  background: linear-gradient(180deg, #f0fdf9 0%, #ecfeff 30%, #f8fafc 100%);
  overflow: hidden;
}
.cleaning-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1600&q=80") center/cover no-repeat;
  opacity: 0.05;
  z-index: 0;
}
.cleaning-hero .container { position: relative; z-index: 1; text-align: center; }
.cleaning-hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 1rem;
}
.cleaning-hero-sub {
  font-size: 1.15rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.cleaning-hero-phone {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.cleaning-hero-phone a { text-decoration: none; color: inherit; }
.cleaning-hero-phone a:hover { text-decoration: underline; }
.cleaning-hero-img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-top: 2rem;
  box-shadow: var(--shadow-lg);
}

/* Unified stats block in hero — slightly tighter spacing */
.wme-stats-block-hero {
  margin-bottom: 1.5rem;
}

/* Trust badges — match hero-sub-trust from main site (legacy, replaced by wme-stats-block) */
.cleaning-trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-top: 1.5rem;
  padding: 1rem;
}
.cleaning-trust-badges span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--gray-800);
  font-size: 0.95rem;
  white-space: nowrap;
}

/* ─── Service cards — match main site service-card ─────────────────────────── */
.cleaning-service-card-ext {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.cleaning-service-card-ext:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.cleaning-service-card-ext .card-img {
  height: 180px;
  background: var(--gray-100);
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
  flex-shrink: 0;
}
.cleaning-service-card-ext:hover .card-img {
  transform: scale(1.05);
}
.cleaning-service-card-ext .card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cleaning-service-card-ext h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}
.cleaning-service-card-ext .card-meta {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}
.cleaning-service-card-ext p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}
.cleaning-service-card-ext .service-link {
  display: inline-block;
  margin-top: auto;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
  padding: 0.5rem 0;
  transition: color var(--transition);
}
.cleaning-service-card-ext .service-link:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Services grid */
.services-grid-eight {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 900px) {
  .services-grid-eight { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 600px) {
  .services-grid-eight {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ─── Why Choose Us — match reason-card ───────────────────────────────────── */
.cleaning-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.cleaning-why-item {
  padding: 1.75rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: all var(--transition);
}
.cleaning-why-item:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.cleaning-why-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-900);
}
.cleaning-why-item p {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.6;
}

/* ─── Boroughs ────────────────────────────────────────────────────────────── */
.cleaning-boroughs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.5rem;
}
.cleaning-borough-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  text-decoration: none;
  color: var(--gray-700);
  transition: var(--transition);
  min-height: 44px;
  text-align: center;
}
.cleaning-borough-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.cleaning-borough-region { margin-bottom: 2rem; }
.cleaning-borough-region h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ─── Testimonials — card grid ────────────────────────────────────────────── */
.cleaning-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.cleaning-testimonial {
  padding: 1.75rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: var(--transition);
}
.cleaning-testimonial:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-md);
}
.cleaning-testimonial .stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}
.cleaning-testimonial .quote {
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.cleaning-testimonial .author {
  font-size: 0.9rem;
  color: var(--gray-600);
}
.cleaning-testimonial .author strong { color: var(--gray-900); }
.cleaning-testimonial .service-tag {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  background: var(--gray-100);
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--gray-600);
  margin-left: 0.5rem;
}

/* ─── Resources ───────────────────────────────────────────────────────────── */
.cleaning-resources {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.cleaning-resource-link {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--gray-800);
  font-weight: 500;
  transition: var(--transition);
  min-height: 44px;
}
.cleaning-resource-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

/* ─── Section spacing & typography ────────────────────────────────────────── */
.cleaning-page .service-section {
  margin-top: 3.5rem;
  margin-bottom: 0;
}
.cleaning-page .service-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-900);
}
.cleaning-page .service-section h3,
.cleaning-page .service-faq h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--gray-700);
}

/* ─── FAQ section ─────────────────────────────────────────────────────────── */
.cleaning-page .service-faq .faq-item {
  margin-bottom: 0.5rem;
}
.cleaning-page .service-faq h2 {
  margin-bottom: 1rem;
}

/* ─── CTA section ─────────────────────────────────────────────────────────── */
.cleaning-page .service-cta-section {
  margin-top: 3rem;
  padding: 3rem 0;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}
.cleaning-page .service-cta-section .container {
  text-align: center;
}
.cleaning-page .service-cta-buttons .btn {
  min-height: 48px;
  padding: 1rem 2rem;
}

/* Service intro on cleaning page */
.cleaning-page .service-intro h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}
.cleaning-page .service-intro p {
  font-size: 1rem;
  line-height: 1.7;
}

/* ─── Mobile ───────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .cleaning-hero {
    padding: 3rem 0 2.5rem;
  }
  .cleaning-hero h1 {
    font-size: clamp(1.75rem, 5vw, 2rem);
  }
  .cleaning-hero-sub {
    font-size: 1rem;
  }
  .cleaning-trust-badges {
    gap: 0.5rem 1rem;
  }
  .cleaning-trust-badges span {
    font-size: 0.875rem;
  }
  .cleaning-stats,
  .deep-stats,
  .carpet-stats,
  .office-stats,
  .builders-stats,
  .oven-stats,
  .airbnb-stats,
  .regular-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 1.5rem;
  }
  .cleaning-stats .stat-value,
  .deep-stats .stat-value,
  .carpet-stats .stat-value,
  .office-stats .stat-value,
  .builders-stats .stat-value,
  .oven-stats .stat-value,
  .airbnb-stats .stat-value,
  .regular-stats .stat-value {
    font-size: 1.25rem;
  }
  .cleaning-why-grid {
    grid-template-columns: 1fr;
  }
  .cleaning-testimonials-grid {
    grid-template-columns: 1fr;
  }
  .cleaning-boroughs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cleaning-resources {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .cleaning-borough-chip {
    font-size: 0.8rem;
    padding: 0.4rem 0.5rem;
  }
}
