/* ==========================================================================
   Pure Bliss Cleaning — Design Tokens
   ========================================================================== */
:root {
  /* Color — matched to thewebmax.org/cleenza (navy + yellow) */
  --color-primary: #001892;        /* navy — brand / buttons / footer */
  --color-primary-dark: #000f5c;   /* deeper navy — hover */
  --color-primary-light: #1bbce8;  /* cyan — icon accents */
  --color-accent: #fff000;         /* signature yellow — standout CTA */
  --color-accent-dark: #e6d800;    /* darker yellow — hover */
  --color-on-accent: #0b1130;      /* near-black navy text on yellow */
  --color-background: #001892;     /* navy page background */
  --color-surface-muted: #f3f5fb;  /* light chip bg — used INSIDE white cards only */
  --color-card: #ffffff;
  --color-foreground: #383f4c;     /* dark slate — text inside white cards */
  --color-heading: #0a1440;        /* dark navy — headings inside white cards */
  --color-muted-foreground: #5b6472;
  --color-border: #e2e6f2;
  --color-text-on-dark: #d3daf5;   /* light body text directly on navy bg */
  --color-text-on-dark-muted: #a6b1de;

  /* Typography */
  --font-heading: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Open Sans', 'Segoe UI', system-ui, sans-serif;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 96px;

  /* Radius / shadow */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 999px;
  --shadow-sm: 0 2px 8px rgba(0, 12, 58, 0.07);
  --shadow-md: 0 12px 28px rgba(0, 12, 58, 0.12);
  --shadow-lg: 0 20px 45px rgba(0, 12, 58, 0.16);

  --transition: 200ms ease;
  --header-height: 76px;
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-foreground);
  background: var(--color-background);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-height);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  line-height: 1.2;
  margin: 0 0 var(--space-3);
  font-weight: 700;
}

h1 {
  font-family: 'Dela Gothic One', var(--font-heading);
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  font-weight: 400;
  line-height: 1.25;
  color: #ffffff;
}
h2 {
  font-family: 'Dela Gothic One', var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 400;
  line-height: 1.3;
  color: #ffffff;
}
h3 { font-size: 1.15rem; }

p { margin: 0 0 var(--space-3); color: var(--color-text-on-dark-muted); }

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }

ul { list-style: none; margin: 0; padding: 0; }

button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.icon { width: 20px; height: 20px; flex-shrink: 0; }
.icon-sm { width: 16px; height: 16px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-2) var(--space-3);
  z-index: 200;
  border-radius: var(--radius-sm);
}
.skip-link:focus {
  left: var(--space-3);
  top: var(--space-3);
}

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  padding: 12px 24px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-accent {
  background: var(--color-accent);
  color: var(--color-on-accent);
  box-shadow: var(--shadow-sm);
}
.btn-accent:hover { background: var(--color-accent-dark); box-shadow: var(--shadow-md); }

.btn-light {
  background: #ffffff;
  color: var(--color-primary-dark);
}
.btn-light:hover { background: #f0fbf6; }

.btn-lg { padding: 16px 30px; font-size: 1.05rem; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  z-index: 100;
  transition: box-shadow var(--transition);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.logo-mark { width: 36px; height: 36px; }
.logo-text {
  font-family: 'Dela Gothic One', var(--font-heading);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--color-heading);
}

.main-nav ul {
  display: flex;
  gap: var(--space-5);
}
.main-nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-foreground);
  padding: var(--space-2) 0;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.main-nav a:hover::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  color: var(--color-heading);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding-block: var(--space-8) var(--space-7);
  background: var(--color-background);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}
.eyebrow-center { }

.hero-sub {
  font-size: 1.1rem;
  max-width: 42ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-block: var(--space-5);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-text-on-dark);
}
.hero-trust svg { color: #ffffff; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-blob {
  position: absolute;
  width: 120%;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
  z-index: 0;
}
.hero-illustration {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(var(--shadow-lg));
}

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust-strip {
  background: var(--color-primary-dark);
  padding-block: var(--space-4);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: #dbe4ff;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  justify-content: center;
  text-align: center;
}
.trust-item .icon { color: var(--color-accent); }

/* ==========================================================================
   Section shared
   ========================================================================== */
.section {
  padding-block: var(--space-8);
}
.section-alt { background: var(--color-primary-dark); }

.section-head {
  max-width: 640px;
  margin: 0 auto var(--space-6);
  text-align: center;
}
.section-sub { font-size: 1.05rem; }
.section-sub.note {
  font-size: 0.85rem;
  font-style: italic;
  color: #ffdd6b;
}

/* ==========================================================================
   Services
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
.service-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--color-surface-muted);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: var(--space-2); }
.service-card p { color: var(--color-foreground); font-size: 0.95rem; margin-bottom: var(--space-3); }
.service-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
}
.service-link:hover { text-decoration: underline; }

/* ==========================================================================
   Why choose us
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
}
.why-list { margin-top: var(--space-5); display: flex; flex-direction: column; gap: var(--space-4); }
.why-list li { display: flex; gap: var(--space-3); align-items: flex-start; }
.why-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon svg { width: 20px; height: 20px; }
.why-list h3 { margin-bottom: 4px; font-size: 1.05rem; color: #ffffff; }
.why-list p { font-size: 0.92rem; margin-bottom: 0; color: var(--color-text-on-dark-muted); }
.why-visual { display: flex; justify-content: center; }
.why-visual svg { width: 100%; max-width: 340px; }

/* ==========================================================================
   How it works
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
.step-card {
  position: relative;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  text-align: center;
}
.step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  border: 3px solid var(--color-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
}
.step-icon {
  width: 56px;
  height: 56px;
  margin: var(--space-3) auto var(--space-3);
  border-radius: 50%;
  background: var(--color-surface-muted);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon svg { width: 26px; height: 26px; }
.step-card p { color: var(--color-foreground); font-size: 0.92rem; margin-bottom: 0; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background: var(--color-primary);
  padding-block: var(--space-6);
}
.cta-band-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
  justify-content: space-between;
}
.cta-band h2 { color: #fff; margin-bottom: var(--space-1); }
.cta-band p { color: rgba(255, 255, 255, 0.82); margin-bottom: 0; }

/* ==========================================================================
   Service area
   ========================================================================== */
.area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  max-width: 640px;
  margin-inline: auto;
}
.area-list {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}
.area-list h3 {
  color: var(--color-primary-dark);
  margin-bottom: var(--space-3);
}
.area-list ul { display: flex; flex-direction: column; gap: var(--space-2); }
.area-list li {
  font-weight: 500;
  padding-left: var(--space-4);
  position: relative;
}
.area-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
.testimonial-card {
  margin: 0;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}
.stars { display: flex; gap: 2px; color: #f59e0b; margin-bottom: var(--space-3); }
.stars svg { width: 16px; height: 16px; }
.testimonial-card p { color: var(--color-foreground); font-size: 0.98rem; }
.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-3);
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
}
.testimonial-card cite {
  font-style: normal;
  font-family: var(--font-heading);
  font-weight: 600;
  display: block;
  font-size: 0.92rem;
  color: var(--color-heading);
}
.testimonial-loc { font-size: 0.8rem; color: var(--color-muted-foreground); }

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  padding-block: var(--space-8);
}
.final-cta-inner {
  text-align: center;
  max-width: 560px;
}
.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255, 255, 255, 0.82); margin-bottom: var(--space-5); font-size: 1.05rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #000a30;
  color: #c7d0ea;
  padding-top: var(--space-7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  padding-bottom: var(--space-6);
}
.footer-brand p { color: #a3aed6; font-size: 0.9rem; margin-top: var(--space-3); }
.footer-brand .logo-text { color: #fff; }
.footer-col h3 {
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-3);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-2); }
.footer-col a, .footer-col li { color: #a3aed6; font-size: 0.92rem; }
.footer-col a:hover { color: var(--color-accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: var(--space-4);
  text-align: center;
  font-size: 0.82rem;
  color: #7683b3;
}

/* ==========================================================================
   Mobile sticky CTA
   ========================================================================== */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-3) var(--space-4);
  padding-bottom: max(var(--space-3), env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--color-border);
  z-index: 90;
  display: block;
}

/* ==========================================================================
   Responsive — Tablet 768px+
   ========================================================================== */
@media (min-width: 768px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .area-grid { grid-template-columns: repeat(3, 1fr); max-width: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band-inner { flex-direction: row; align-items: center; }
}

/* ==========================================================================
   Responsive — Desktop 1024px+
   ========================================================================== */
@media (min-width: 1024px) {
  body { padding-top: 0; }
  .site-header { position: sticky; }
  .mobile-sticky-cta { display: none; }

  .hero { padding-block: var(--space-8) var(--space-8); }
  .hero-inner { grid-template-columns: 1.05fr 0.95fr; gap: var(--space-7); }

  .why-grid { grid-template-columns: 1fr 0.8fr; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

@media (max-width: 1023.98px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }

  .main-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
  }
  .main-nav.is-open { display: block; }
  .main-nav ul {
    flex-direction: column;
    padding: var(--space-4);
    gap: var(--space-1);
  }
  .main-nav a {
    display: block;
    padding: var(--space-3);
    border-radius: var(--radius-sm);
  }
  .main-nav a:hover { background: var(--color-surface-muted); }
  .main-nav a::after { display: none; }

  body { padding-bottom: 80px; }
}

/* ==========================================================================
   Responsive — Large desktop 1440px+
   ========================================================================== */
@media (min-width: 1440px) {
  .container { max-width: 1320px; }
}
