/* ===================================================================
   Enhanced Cleaning — Global Styles
   Modern, luxe aesthetic with smooth animations
   =================================================================== */

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

/* ===== Variables ===== */
:root {
  --primary: #5FB0E2;
  --primary-dark: #4a9ad0;
  --primary-light: #eaf4fb;
  --accent: #8ccbf0;
  --gold: #c9a94e;
  --gold-light: #f5f0e0;
  --dark: #0f172a;
  --dark-800: #1e293b;
  --gray-700: #334155;
  --gray-500: #64748b;
  --gray-400: #94a3b8;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --gray-50: #f8fafc;
  --white: #ffffff;
  --header-height: 110px;
  --top-bar-height: 44px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.12);
}

/* ===== Accessibility ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

/* ===== Utility Classes (replacing common inline styles) ===== */
.flex-center-gap { display: flex; align-items: center; gap: 0.5rem; }
.icon-sm { width: 14px; height: 14px; }
.icon-md { width: 18px; height: 18px; vertical-align: middle; margin-right: 0.35rem; }
.text-center { text-align: center; }
.footer-logo { height: 40px; }
.btn.cta-outline-white { border: 2.5px solid var(--white); color: var(--white); background: transparent; }
.btn.cta-outline-white:hover { background: var(--white); color: var(--primary); }
.cta-outline-white-subtle { border-color: rgba(255,255,255,0.2); color: var(--white); }
.sa-icon-gradient { background: linear-gradient(135deg, var(--primary), var(--accent)); }
.section-header-compact { margin-bottom: 2rem; }
.sa-card-spaced { margin-bottom: 1.5rem; }
.sa-label-tight { margin-bottom: 0.25rem; }
.sa-card-title { font-size: 1.375rem; margin: 0; }
.guarantee-feature-num { font-weight: 700; font-size: 0.875rem; }
.guarantee-promises-heading { color: var(--gold, #c9a94e); font-size: 1.125rem; margin-bottom: 1.25rem; }
.mt-1 { margin-top: 1rem; }
.postcode-section { position: relative; z-index: 2; }
.postcode-desc { margin: 0 auto 2rem; max-width: 550px; color: var(--gray-500); }
.mb-half { margin-bottom: 0.5rem; }

/* ===== Base ===== */
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  color: var(--dark);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p { max-width: 65ch; }

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.text-gold {
  background: linear-gradient(135deg, var(--gold), #dfc06a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ===== Layout ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section-sm { padding: 4rem 0; }

.section-dark {
  background: var(--dark);
  color: var(--gray-200);
}

.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }

.section-gray { background: var(--gray-50); }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header p {
  margin: 1rem auto 0;
  font-size: 1.125rem;
  color: var(--gray-500);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-dark .section-label { color: var(--accent); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease),
              box-shadow 0.35s var(--ease);
}

.btn svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(11, 94, 215, 0.2);
}

.btn-primary:hover::before { opacity: 0.4; }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(11, 94, 215, 0.2);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #dfc06a);
  color: var(--dark);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 78, 0.35);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

/* ===== Top Bar ===== */
.top-bar {
  background: var(--dark);
  height: var(--top-bar-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

.top-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.top-bar-inner {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar a {
  color: var(--gray-400);
  font-size: 0.8125rem;
  font-weight: 500;
  transition: color 0.25s ease;
}

.top-bar a:hover { color: var(--white); }

.top-bar-phone { display: flex; align-items: center; gap: 0.5rem; }
.top-bar-phone svg { width: 14px; height: 14px; flex-shrink: 0; }
.top-bar-phone span { color: var(--accent); font-weight: 600; letter-spacing: 0.025em; }

.top-bar-socials { display: flex; align-items: center; gap: 1rem; }

.top-bar-socials a {
  display: flex;
  transition: color 0.25s ease, transform 0.25s ease;
}

.top-bar-socials a:hover { color: var(--accent); transform: translateY(-1px); }
.top-bar-socials svg { width: 16px; height: 16px; }

/* ===== Header ===== */
.header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: box-shadow 0.4s var(--ease), height 0.3s var(--ease);
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  height: 88px;
}
.header.scrolled .logo img { height: 40px; }
.header.scrolled .nav-link { padding: 0.625rem 1rem; font-size: 0.9375rem; }
.header.scrolled .header-cta .btn { padding: 0.5rem 1.25rem; font-size: 0.8125rem; }

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.1));
  border-radius: 6px;
  transition: height 0.3s var(--ease), transform 0.4s var(--ease), filter 0.4s var(--ease);
}

.logo:hover img {
  transform: scale(1.03);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text strong {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.logo-text span {
  font-size: 0.6875rem;
  color: var(--gray-400);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Navigation */
.nav { display: flex; align-items: center; gap: 0.25rem; }

.nav-link {
  position: relative;
  padding: 0.75rem 1.125rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: color 0.25s ease, background 0.25s ease, padding 0.3s var(--ease), font-size 0.3s var(--ease);
}

.nav-link:hover {
  color: var(--primary);
  background: rgba(11, 94, 215, 0.06);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transition: width 0.3s var(--ease), left 0.3s var(--ease);
}

.nav-link:hover::after { width: 60%; left: 20%; }

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.nav-dropdown-trigger .chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.3s var(--ease);
}

.nav-dropdown:hover .chevron { transform: rotate(180deg); }

.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 16px;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 230px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.04);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-dropdown-menu a:hover {
  background: rgba(11, 94, 215, 0.06);
  color: var(--primary);
  transform: translateX(4px);
}

.menu-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(11,94,215,0.08), rgba(0,194,255,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.menu-icon svg { width: 16px; height: 16px; color: var(--primary); }

/* Header CTA */
.header-cta .btn { padding: 0.625rem 1.5rem; font-size: 0.875rem; transition: padding 0.3s var(--ease), font-size 0.3s var(--ease); }

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  border-radius: var(--radius-sm);
  transition: background 0.25s ease;
}

.mobile-toggle:hover { background: rgba(11, 94, 215, 0.06); }

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.35s var(--ease), opacity 0.25s ease, top 0.35s var(--ease);
}

.mobile-toggle span:nth-child(1) { top: 14px; }
.mobile-toggle span:nth-child(2) { top: 21px; }
.mobile-toggle span:nth-child(3) { top: 28px; }

.mobile-toggle.active span:nth-child(1) { top: 21px; transform: translateX(-50%) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { top: 21px; transform: translateX(-50%) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: calc(var(--header-height) + var(--top-bar-height));
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 1rem 2rem 1.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease), top 0.3s var(--ease);
}


.mobile-menu.open { transform: translateX(0); }

/* All direct menu items — consistent spacing */
.mobile-menu > a {
  display: block;
  padding: 1rem 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
  transition: color 0.2s ease;
}
.mobile-menu > a:hover { color: var(--primary); }

/* Mobile submenu containers */
.mobile-submenu {
  border-bottom: 1px solid var(--gray-200);
}

.mobile-submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s ease;
}
.mobile-submenu-toggle:hover { color: var(--primary); }

.mobile-submenu-chevron {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}
.mobile-submenu.open .mobile-submenu-chevron {
  transform: rotate(180deg);
}

.mobile-submenu-items {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding-left: 1rem;
  border-left: 2px solid var(--gray-200);
  margin-left: 0.25rem;
}
.mobile-submenu.open .mobile-submenu-items {
  max-height: 400px;
  padding-bottom: 0.5rem;
}

.mobile-submenu-items a {
  display: block !important;
  font-size: 0.9375rem !important;
  padding: 0.625rem 0 !important;
  color: var(--gray-500) !important;
  border-bottom: none !important;
}
.mobile-submenu-items a:hover { color: var(--primary) !important; }

/* Mobile CTA button */
.mobile-menu .mobile-cta {
  display: flex;
  margin-top: 1.5rem;
}
.mobile-menu .mobile-cta .btn {
  width: 100%;
  position: relative;
  justify-content: center;
  padding: 1rem 3rem;
  border-radius: var(--radius-lg);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}
.mobile-menu .mobile-cta .btn svg {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}

.mobile-menu .mobile-phone {
  text-align: center;
  margin-top: 1rem;
  border: none;
  color: var(--gray-400);
  font-size: 0.875rem;
}

.mobile-menu .mobile-phone strong { color: var(--primary); }

.mobile-menu.open a {
  animation: slideInRight 0.35s var(--ease) both;
}

.mobile-menu.open > a:nth-child(1)           { animation-delay: 0.04s; }
.mobile-menu.open > a:nth-child(2)           { animation-delay: 0.07s; }
.mobile-menu.open > .mobile-submenu          { animation: slideInRight 0.35s var(--ease) both; animation-delay: 0.10s; }
.mobile-menu.open > a:nth-child(4)           { animation-delay: 0.13s; }
.mobile-menu.open > a:nth-child(5)           { animation-delay: 0.16s; }
.mobile-menu.open > a:nth-child(6)           { animation-delay: 0.19s; }
.mobile-menu.open > a:nth-child(7)           { animation-delay: 0.22s; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--dark);
  overflow: hidden;
  padding-bottom: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* ===== HERO IMAGE OPTIONS — uncomment ONE =====
   *
   * Option 1: Modern living room with white couch (current)
   * Option 2: Bright modern kitchen with island bench
   * Option 3: Light-filled living room with large windows
   * Option 4: Clean minimalist white living space
   * Option 5: Modern open-plan living & dining
   *
   * ============================================= */
  /* background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1920&q=80'); */  /* Option 1 */
  /* background-image: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?auto=format&fit=crop&w=1920&q=80'); */  /* Option 2 */
  /* background-image: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1920&q=80'); */  /* Option 3 */
  /* background-image: url('https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1920&q=80'); */  /* Option 4 */
  background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=1920&q=80');      /* Option 5 */
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(145deg, rgba(15,23,42,0.7) 0%, rgba(30,41,59,0.5) 50%, rgba(95,176,226,0.25) 100%),
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(95,176,226,0.2), transparent),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(140,203,240,0.1), transparent);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridFloat 20s linear infinite;
}

@keyframes gridFloat {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: -2rem;
}

.hero-content { color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-badge svg { width: 16px; height: 16px; }

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: normal;
  position: relative;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  opacity: 0.3;
  border-radius: 4px;
}

.hero-desc {
  font-size: 1.1875rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(24px);
  border: 2px solid rgba(95,176,226,0.5);
  border-radius: var(--radius-xl);
  padding: 3rem;
  width: 100%;
  max-width: 460px;
  box-shadow:
    0 0 30px rgba(95,176,226,0.25),
    0 0 80px rgba(95,176,226,0.12),
    0 0 120px rgba(95,176,226,0.06),
    0 24px 60px rgba(0,0,0,0.4);
  animation: cardGlow 4s ease-in-out infinite alternate;
  transform: scale(1.02);
}

@keyframes cardGlow {
  0%   { box-shadow: 0 0 30px rgba(95,176,226,0.25), 0 0 80px rgba(95,176,226,0.12), 0 0 120px rgba(95,176,226,0.06), 0 24px 60px rgba(0,0,0,0.4); }
  100% { box-shadow: 0 0 50px rgba(95,176,226,0.35), 0 0 100px rgba(95,176,226,0.18), 0 0 140px rgba(95,176,226,0.08), 0 24px 60px rgba(0,0,0,0.4); }
}

.hero-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.hero-card p {
  color: var(--gray-400);
  font-size: 0.9375rem;
  margin-bottom: 2rem;
}

.hero-card-services {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.hero-service-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem 1.5rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease);
}

.hero-service-btn:hover {
  background: rgba(11, 94, 215, 0.2);
  border-color: rgba(11, 94, 215, 0.4);
  transform: translateX(6px);
}

.hero-service-btn .service-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-service-btn .service-icon svg { width: 20px; height: 20px; color: var(--white); }

.hero-service-btn .arrow {
  margin-left: auto;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.hero-service-btn:hover .arrow {
  background: rgba(95,176,226,0.25);
  border-color: var(--primary);
  transform: translateX(4px);
}

.hero-service-btn .arrow svg { width: 16px; height: 16px; }

/* Floating elements */
.hero-float {
  position: absolute;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: float 6s ease-in-out infinite;
}

.hero-float svg { width: 18px; height: 18px; color: var(--gold); }

.hero-float-1 { top: calc(5% - 20px); right: -8%; animation-delay: 0s; }
.hero-float-2 { top: calc(40% - 50px); right: calc(-18% - 30px); animation-delay: 1.5s; }
.hero-float-3 { top: 70%; right: calc(-16% - 15px); animation-delay: 3s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===== As Seen In Carousel (inside hero) ===== */
.hero-as-seen-in {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 3rem auto 0;
  padding: 1.5rem 2rem;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.as-seen-label {
  text-align: center;
  margin: 0 auto;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--dark);
  margin-bottom: 1.25rem;
  margin-top: -10px;
}

.logo-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: scrollLogos 60s linear infinite;
}

.logo-track img {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.4s ease;
  flex-shrink: 0;
}

.logo-track img:hover {
  opacity: 0.85;
}

@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 1.75rem)); }
}

/* ===== Stats Bar ===== */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2.5rem 1rem;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  top: 25%;
  right: 0;
  height: 50%;
  width: 1px;
  background: var(--gray-200);
}

.stat-item:last-child::after { display: none; }

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ===== Steps Section ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step;
}

.step-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s ease;
  counter-increment: step;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.step-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto 1.5rem;
}

.step-number .step-num {
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.05em;
}

.step-number .step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 16px;
  color: var(--white);
  transition: transform 0.4s var(--ease-spring);
}

.step-card:hover .step-icon { transform: rotate(-8deg) scale(1.1); }

.step-card h3 { margin-bottom: 0.75rem; }

.step-card p {
  color: var(--gray-500);
  font-size: 0.9375rem;
  margin: 0 auto;
}

/* ===== Services Grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
  transform-origin: left;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.4s ease;
}

.service-card:hover .service-card-icon { background: linear-gradient(135deg, var(--primary), var(--accent)); }
.service-card-icon svg { width: 24px; height: 24px; color: var(--primary); transition: color 0.4s ease; }
.service-card:hover .service-card-icon svg { color: var(--white); }

.service-card h3 { margin-bottom: 0.75rem; }
.service-card p { color: var(--gray-500); font-size: 0.9375rem; margin-bottom: 1.5rem; }

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.3s ease;
}

.service-card .card-link:hover { gap: 0.75rem; }
.service-card .card-link svg { width: 16px; height: 16px; }

/* ===== Guarantee Section ===== */
.guarantee-section {
  background: linear-gradient(145deg, var(--dark) 0%, #162544 100%);
  position: relative;
  overflow: hidden;
}

.guarantee-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,169,78,0.08), transparent 70%);
  border-radius: 50%;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.guarantee-content h2 { color: var(--white); margin-bottom: 1.5rem; }
.guarantee-content p { color: var(--gray-400); font-size: 1.0625rem; line-height: 1.8; margin-bottom: 1.5rem; }

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(201, 169, 78, 0.1);
  border: 1px solid rgba(201, 169, 78, 0.2);
  border-radius: 100px;
  padding: 0.75rem 1.5rem;
  margin-bottom: 2rem;
}

.guarantee-badge svg { width: 24px; height: 24px; color: var(--gold); }

.guarantee-badge span {
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.guarantee-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.guarantee-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: background 0.3s ease, transform 0.3s var(--ease);
}

.guarantee-feature:hover {
  background: rgba(255,255,255,0.07);
  transform: translateX(6px);
}

.guarantee-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), #dfc06a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guarantee-feature-icon svg { width: 20px; height: 20px; color: var(--dark); }

.guarantee-feature h4 { color: var(--white); font-size: 1.125rem; margin-bottom: 0.25rem; }
.guarantee-feature p { color: var(--gray-400); font-size: 0.9375rem; margin: 0; }

/* ===== Floating Image Box ===== */
.section-with-image {
  position: relative;
  overflow: hidden;
}

.section-float-img {
  position: absolute;
  width: clamp(200px, 25vw, 420px);
  height: clamp(140px, 18vw, 300px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  z-index: 0;
  opacity: 0.9;
}

.section-float-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-float-img.top-right {
  top: 2rem;
  right: 0;
}

.section-float-img.bottom-left {
  bottom: 2rem;
  left: 0;
}

.section-float-img.top-left {
  top: 2rem;
  left: 0;
}

.section-float-img.bottom-right {
  bottom: 2rem;
  right: 0;
}

@media (max-width: 960px) {
  .section-float-img { display: none; }
}

/* ===== Section with Background Image ===== */
.section-bg {
  position: relative;
}

.section-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.25);
  z-index: 0;
}

.section-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(95,176,226,0.35) 0%, rgba(74,154,208,0.25) 50%, rgba(15,23,42,0.4) 100%);
  z-index: 0;
}

.section-bg > .container {
  position: relative;
  z-index: 1;
}

.section-bg.bg-living::before {
  background-image: url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=1920&q=80');
}

.section-bg.bg-kitchen::before {
  background-image: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?auto=format&fit=crop&w=1920&q=80');
}

.section-bg.bg-bathroom::before {
  background-image: url('https://images.unsplash.com/photo-1552321554-5fefe8c9ef14?auto=format&fit=crop&w=1920&q=80');
}

.section-bg.bg-office::before {
  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80');
}

.section-bg.bg-empty-house::before {
  background-image: url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?auto=format&fit=crop&w=1920&q=80');
}

.section-bg.bg-medical::before {
  background-image: url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&w=1920&q=80');
}

.section-bg.bg-care::before {
  background-image: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=1920&q=80');
}

.section-bg.bg-bedroom::before {
  background-image: url('https://images.unsplash.com/photo-1616594039964-ae9021a400a0?auto=format&fit=crop&w=1920&q=80');
}

.section-bg h2, .section-bg h3, .section-bg h4 { color: var(--white); }
.section-bg p, .section-bg blockquote { color: var(--gray-300); }
.section-bg .section-label { color: var(--accent); }
.section-bg .testimonial-card { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.08); backdrop-filter: blur(12px); }
.section-bg .testimonial-card blockquote { color: rgba(255,255,255,0.85); }
.section-bg .testimonial-card .testimonial-author-info strong { color: var(--white); }
.section-bg .testimonial-card .testimonial-author-info span { color: var(--gray-400); }
.section-bg .testimonial-avatar { background: rgba(95,176,226,0.2); color: var(--accent); }

/* ===== Features / Checklist Section ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-check {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-check svg { width: 16px; height: 16px; color: #10b981; }

.feature-item h4 { font-size: 1.0625rem; margin-bottom: 0.25rem; }
.feature-item p { color: var(--gray-500); font-size: 0.9375rem; margin: 0; }

/* ===== CLEAN Framework ===== */
.clean-values {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.clean-value-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.clean-value-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(95,176,226,0.3);
}

.clean-letter {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 14px;
}

.clean-value-content h3 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.clean-value-content p {
  color: var(--gray-400);
  line-height: 1.7;
  margin: 0;
  max-width: none;
}

/* ===== Meet the Founder ===== */
.founder-section {
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.founder-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 0 30px rgba(95,176,226,0.2),
    0 24px 60px rgba(0,0,0,0.4);
  border: 2px solid rgba(95,176,226,0.3);
}

.founder-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.founder-video-caption {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-top: 1rem;
}

.founder-content .section-label {
  color: var(--primary);
}

.founder-heading {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--white), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.founder-content p {
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: none;
}

.founder-signature {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.founder-sig-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.founder-signature span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.05em;
}

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg { width: 18px; height: 18px; color: var(--gold); fill: var(--gold); }

.testimonial-card blockquote {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), rgba(0,194,255,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--primary);
}

.testimonial-author-info strong { font-size: 0.875rem; display: block; }
.testimonial-author-info span { font-size: 0.75rem; color: var(--gray-400); }

/* ===== Blog ===== */
/* Featured blog post */
.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.blog-featured-img {
  overflow: hidden;
  min-height: 300px;
}
.blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-featured:hover .blog-featured-img img {
  transform: scale(1.03);
}
.blog-featured-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-featured-content h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}
.blog-featured-content p {
  color: var(--gray-500);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
@media (max-width: 768px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-img { min-height: 200px; }
  .blog-featured-content { padding: 1.5rem; }
}

/* Blog search */
.blog-search-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.blog-search-wrap:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.blog-search-wrap:focus-within {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(95,176,226,0.2);
}
.blog-search-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.9375rem;
  color: var(--dark);
  background: transparent;
}
.blog-search-wrap input::placeholder {
  color: var(--gray-400);
}

/* Blog card link styling */
.blog-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-date {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: block;
}

.blog-card-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card-content p {
  color: var(--gray-500);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}
.blog-featured .blog-card-link {
  font-size: 1rem;
}

/* Blog Post */
.blog-post {
  max-width: 760px;
  margin: 0 auto;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: var(--gray-500);
}

.blog-post-hero {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.blog-post-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-post h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

.blog-post h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0 0.75rem;
}

.blog-post p {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: none;
}

.blog-post ul, .blog-post ol {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.blog-post li {
  margin-bottom: 0.5rem;
}

/* ===== Service Areas ===== */
.sa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.sa-card-full {
  max-width: 100%;
}

.sa-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: box-shadow 0.3s ease;
}

.sa-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.sa-card:has(.sa-suburb-item:hover) {
  z-index: 10;
}

.sa-card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
  cursor: pointer;
}

.sa-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sa-icon svg {
  width: 26px;
  height: 26px;
  color: var(--white);
}

.sa-expand-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
  width: 100%;
  justify-content: center;
}

.sa-expand-btn:hover {
  background: var(--primary-light);
  border-color: var(--primary);
}

.sa-expand-inline {
  margin-left: auto;
  width: auto;
}

.sa-card-full .sa-card-header {
  margin-bottom: 0;
}

/* Region tabs for Perth North/Central/South */
.sa-region-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.sa-region-tab {
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  transition: all 0.2s ease;
}

.sa-region-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.sa-region-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.sa-region-panel {
  display: none;
}

.sa-region-panel.active {
  display: block;
}

.sa-suburb-grid-wide {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.sa-chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.sa-card.expanded .sa-chevron {
  transform: rotate(180deg);
}

.sa-card.expanded .sa-expand-text::after {
  content: '';
}

.sa-suburbs {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin 0.3s ease;
  margin-top: 0;
}

.sa-card.expanded .sa-suburbs {
  max-height: 2000px;
  margin-top: 1.5rem;
  overflow: visible;
}

.sa-suburb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.sa-suburb-grid span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  background: var(--gray-50);
  border-radius: var(--radius-sm);
}

.sa-suburb-grid > span::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Suburb dropdown links */
.sa-suburb-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.sa-suburb-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}
.sa-suburb-item:hover {
  background: transparent;
  color: var(--primary);
  z-index: 100;
}
.sa-suburb-item .sa-suburb-name {
  flex: 1;
}
.sa-suburb-item .sa-suburb-arrow {
  width: 14px;
  height: 14px;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
}
.sa-suburb-item:hover .sa-suburb-arrow {
  color: var(--primary);
  transform: rotate(90deg);
}
.sa-suburb-dropdown {
  display: none;
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  padding: 0.35rem 0;
  min-width: 220px;
}
.sa-suburb-item:hover .sa-suburb-dropdown {
  display: block;
}
.sa-suburb-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.sa-suburb-dropdown a:hover {
  background: var(--gray-50);
  color: var(--primary);
}
.sa-suburb-dropdown a svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}
.sa-suburb-divider {
  height: 1px;
  background: var(--border);
  margin: 0.2rem 0.75rem;
}

/* Postcode Checker */
.postcode-checker {
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.postcode-input-wrap {
  display: flex;
  gap: 0.75rem;
}

.postcode-field {
  flex: 1;
  position: relative;
}

.postcode-input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.postcode-input::placeholder {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--gray-400);
}

.postcode-input:focus {
  border-color: var(--primary);
}

.postcode-suggestions {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 100;
  max-height: 280px;
  overflow-y: auto;
}

.postcode-suggestion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  transition: background 0.15s ease;
}

.postcode-suggestion:hover {
  background: var(--primary-light);
}

.postcode-btn {
  white-space: nowrap;
}

.postcode-result {
  margin-top: 1.25rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  display: none;
}

.postcode-result.success {
  display: block;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
}

.postcode-result.fail {
  display: block;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(135deg, rgba(95,176,226,0.85), rgba(74,154,208,0.9));
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,194,255,0.2), transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.08), transparent 50%);
}

.cta-banner .container {
  position: relative;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.125rem;
  margin: 0 auto 2rem;
}

.cta-banner .btn-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
  background: var(--dark);
  color: var(--gray-400);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .logo { margin-bottom: 1.25rem; }
.footer-brand .logo-text strong { color: var(--white); }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.5rem; }

.footer-socials { display: flex; gap: 0.75rem; }

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-socials svg { width: 18px; height: 18px; color: var(--gray-400); }
.footer-socials a:hover svg { color: var(--white); }

.footer h4 {
  color: var(--white);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-links a {
  display: block;
  padding: 0.35rem 0;
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: color 0.2s ease, padding-left 0.3s ease;
}

.footer-links a:hover { color: var(--white); padding-left: 0.5rem; }

.footer-quote-btn {
  display: inline-block !important;
  margin-top: 0.75rem;
  padding: 0.5rem 1.25rem !important;
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-sm);
  color: var(--primary) !important;
  background: transparent;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease;
}
.footer-quote-btn:hover {
  background: rgba(95, 176, 226, 0.1);
  color: var(--white) !important;
  padding-left: 1.25rem !important;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.footer-contact-item svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.footer-bottom a { color: var(--gray-400); transition: color 0.2s ease; }
.footer-bottom a:hover { color: var(--white); }

/* ===== Page Header ===== */
.page-header {
  background: linear-gradient(145deg, var(--dark), var(--dark-800));
  padding: 6rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(11,94,215,0.12), transparent);
}

/* Parallax page header variant */
.page-header-parallax {
  background: var(--dark);
  padding: 7rem 0 5rem;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  filter: brightness(0.45);
  z-index: 0;
}

.page-header-parallax::before {
  z-index: 1;
  background:
    linear-gradient(145deg, rgba(15,23,42,0.6) 0%, rgba(30,41,59,0.4) 50%, rgba(95,176,226,0.35) 100%),
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(95,176,226,0.3), transparent),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(140,203,240,0.15), transparent);
}

.page-header-compact {
  padding: 5rem 0 3rem;
}

.page-header-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 30%, black 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 30%, black 70%);
}

.page-header .container { position: relative; z-index: 2; }

.page-header h1 { color: var(--white); margin-bottom: 1rem; }

.page-header p {
  color: rgba(255,255,255,0.85);
  font-size: 1.125rem;
  margin: 0 auto;
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

.breadcrumb a { color: var(--gray-400); transition: color 0.2s ease; }
.breadcrumb a:hover { color: var(--accent); }

/* ===== FAQ Accordion ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(11, 94, 215, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  font-family: inherit;
  text-align: left;
  transition: color 0.2s ease;
}

.faq-question:hover { color: var(--primary); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s var(--ease);
}

.faq-item.active .faq-icon {
  background: var(--primary-light);
  transform: rotate(45deg);
}

.faq-icon svg { width: 16px; height: 16px; color: var(--gray-500); }
.faq-item.active .faq-icon svg { color: var(--primary); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--gray-500);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ===== Contact Form ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: 3rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1.25rem;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(11, 94, 215, 0.1);
  background: var(--white);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.contact-form-wrap {
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 200px;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg { width: 22px; height: 22px; color: var(--white); }

.contact-info-card h4 { font-size: 0.9375rem; margin-bottom: 0.25rem; }
.contact-info-card p { color: var(--gray-500); font-size: 0.875rem; margin: 0; }
.contact-info-card a { color: var(--primary); font-weight: 500; }

/* ===== Pricing Table ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s ease;
}

.pricing-card.featured {
  border-color: var(--primary);
  position: relative;
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 1.25rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.pricing-card h3 { margin-bottom: 0.5rem; }
.pricing-card .pricing-desc { color: var(--gray-500); font-size: 0.875rem; margin-bottom: 1.5rem; }

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.pricing-price sup { font-size: 1.25rem; font-weight: 600; }
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--gray-400); }

.pricing-freq { font-size: 0.8125rem; color: var(--gray-400); margin-bottom: 2rem; }

.pricing-features {
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--gray-700);
}

.pricing-features li svg { width: 18px; height: 18px; color: #10b981; flex-shrink: 0; }

/* ===== Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 100-Point Checklist Hero (index) ===== */
.checklist-hero {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--dark) 0%, #1a2744 50%, #0f3460 100%);
  overflow: hidden;
}

.checklist-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  filter: brightness(0.15);
}

.checklist-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 50% at 30% 50%, rgba(95,176,226,0.15), transparent),
    radial-gradient(ellipse 40% 40% at 80% 30%, rgba(11,94,215,0.1), transparent);
}

.checklist-hero-icon {
  position: absolute;
  right: calc(8% - 70px);
  top: 8%;
  z-index: 1;
  opacity: 0.12;
  animation: checklistFloat 6s ease-in-out infinite;
}

@keyframes checklistFloat {
  0%, 100% { transform: rotate(-25deg) translateY(0); }
  50% { transform: rotate(-25deg) translateY(-12px); }
}

.checklist-hero-icon svg {
  width: 280px;
  height: 280px;
  color: var(--white);
}

.checklist-hero .container {
  position: relative;
  z-index: 2;
}

.checklist-hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.checklist-label {
  display: inline-block;
  background: rgba(95,176,226,0.15);
  border: 1px solid rgba(95,176,226,0.3);
  border-radius: 100px;
  padding: 0.4rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.checklist-hero h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.checklist-hero p {
  color: var(--gray-400);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 100%;
}

.checklist-hero-highlights {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.checklist-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 500;
}

.checklist-highlight svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Floating badges */
.checklist-float {
  position: absolute;
  z-index: 2;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
}

.checklist-float svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.checklist-float-tl {
  top: 12%;
  left: 5%;
  animation: float 6s ease-in-out infinite;
}

.checklist-float-br {
  bottom: 12%;
  right: 5%;
  animation: float 6s ease-in-out infinite;
  animation-delay: 2s;
}

/* ===== House Cleaning Page ===== */
.hc-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pricing-box {
  padding: 2rem;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.pricing-box h4 {
  margin-bottom: 1rem;
}

.pricing-box ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-box li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.pricing-box li:last-child {
  border-bottom: none;
}

/* ===== Why Choose Enhanced — Benefit Rows ===== */
.benefit-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.benefit-row:last-child {
  border-bottom: none;
}

.benefit-row-reverse {
  grid-template-columns: 1fr auto;
}

.benefit-row-reverse .benefit-icon-wrap {
  order: 2;
}

.benefit-row-reverse .benefit-text {
  order: 1;
  text-align: right;
}

.benefit-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(11,94,215,0.2);
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 44px;
  height: 44px;
  color: var(--white);
}

.benefit-text h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.benefit-text p {
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 600px;
}

.benefit-row-reverse .benefit-text p {
  margin-left: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

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

.pricing-table th {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
}

.pricing-table td:first-child {
  font-weight: 600;
  color: var(--gray-800);
}

.pricing-table td {
  color: var(--gray-600);
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-note {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--gray-400);
}

/* ===== Interactive Checklist Tabs ===== */
.checklist-section {
  background: var(--gray-50);
}

.checklist-tab-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.375rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.checklist-tab {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 0.875rem;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
  white-space: nowrap;
}

.checklist-tab svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.tab-count {
  background: var(--gray-100);
  color: var(--gray-500);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.125rem 0.5rem;
  border-radius: 100px;
  transition: all 0.25s ease;
}

.checklist-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.checklist-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(11,94,215,0.25);
}

.checklist-tab.active svg {
  color: var(--white);
}

.checklist-tab.active .tab-count {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

/* Panels */
.checklist-panels {
  position: relative;
  min-height: 200px;
}

.checklist-panel {
  display: none;
  animation: panelFadeIn 0.35s ease;
}

.checklist-panel.active {
  display: block;
}

@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gray-200);
}

.panel-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.panel-count {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(11,94,215,0.08);
  padding: 0.375rem 1rem;
  border-radius: 100px;
}

.checklist-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.5rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--gray-700);
  transition: all 0.2s ease;
}

.checklist-item:hover {
  border-color: var(--primary);
  background: rgba(11,94,215,0.03);
  transform: translateX(4px);
}

.checklist-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ===== We Provide Everything ===== */
.provide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.provide-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.provide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.provide-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.provide-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.provide-card h4 {
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.provide-card p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ===== Our Cleaners ===== */
.cleaners-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.cleaner-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}

.cleaner-feature.reverse {
  grid-template-columns: 1fr auto;
}

.cleaner-feature.reverse > div:not(.cleaner-feature-icon) {
  text-align: right;
}

.cleaner-feature.reverse > div:not(.cleaner-feature-icon) p {
  margin-left: auto;
  max-width: 65ch;
}

.cleaner-feature.reverse > div:not(.cleaner-feature-icon) h3 {
  margin-left: auto;
}

.cleaner-feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cleaner-feature-icon svg {
  width: 36px;
  height: 36px;
  color: var(--white);
}

.cleaner-feature h3 {
  margin-bottom: 0.5rem;
}

.cleaner-feature p {
  color: var(--gray-600);
  line-height: 1.7;
}

.btn-green {
  background: #22c55e;
  color: var(--white);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-green:hover {
  background: #16a34a;
  transform: translateY(-2px);
}

.btn-green svg { width: 18px; height: 18px; }

/* ===== Scroll-to-top ===== */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  left: 1.5rem;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  color: rgba(0,0,0,0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, background 0.2s ease;
}

.scroll-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-to-top:hover {
  background: rgba(0,0,0,0.25);
  color: rgba(0,0,0,0.6);
}

.scroll-to-top svg {
  width: 18px;
  height: 18px;
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .nav, .header-cta { display: none; }
  .mobile-toggle { display: block; }
  .mobile-menu { display: block; }

  /* Header — tighten on mobile */
  :root { --header-height: 72px; }
  .header-inner { padding: 0 1rem; }
  .logo img { height: 34px; }

  /* Mobile menu spacing */
  .mobile-menu { padding: 1rem 1.5rem; }
  .mobile-menu > a { padding: 1rem 0; font-size: 1.125rem; }
  .mobile-submenu-toggle { padding: 1rem 0; font-size: 1.125rem; }
  .mobile-submenu-items a { padding: 0.75rem 0; font-size: 1rem; }

  /* Hero — prevent cutoff */
  .hero { min-height: auto; padding: 3rem 0 0; }
  .hero .container { grid-template-columns: 1fr; text-align: center; gap: 2rem; margin-top: 0; }
  .hero-content { padding: 0 0.5rem; }
  .hero h1 { font-size: 2rem; line-height: 1.2; }
  .hero-desc { font-size: 0.9375rem; }
  .hero-buttons { justify-content: center; flex-direction: column; align-items: center; gap: 0.75rem; }
  .hero-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-visual { margin-top: 1rem; }
  .hero-float { display: none; }
  .hero-badge { font-size: 0.75rem; padding: 0.4rem 1rem; }
  .hero-as-seen-in { margin: 2rem 1rem 0; padding: 1.25rem 1rem; }
  .hero { padding-bottom: 1.5rem; }
  .checklist-float { display: none; }
  .checklist-hero-icon { display: none; }
  .checklist-hero { padding: 4rem 0; }
  .checklist-hero-highlights { gap: 1rem; }
  .hc-intro { grid-template-columns: 1fr; gap: 2rem; }
  .benefit-row,
  .benefit-row-reverse { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .benefit-row-reverse .benefit-icon-wrap { order: 0; }
  .benefit-row-reverse .benefit-text { order: 0; text-align: center; }
  .benefit-row-reverse .benefit-text p { margin-left: auto; margin-right: auto; }
  .benefit-text p { margin: 0 auto; }
  .benefit-icon { width: 80px; height: 80px; margin: 0 auto; }
  .benefit-icon svg { width: 36px; height: 36px; }
  .checklist-tab-nav { flex-wrap: wrap; gap: 0.375rem; }
  .checklist-tab { padding: 0.5rem 0.75rem; font-size: 0.75rem; }
  .checklist-tab svg { display: none; }
  .checklist-items { grid-template-columns: 1fr; }
  .provide-grid { grid-template-columns: 1fr !important; max-width: 500px; margin: 0 auto; }
  .cleaner-feature,
  .cleaner-feature.reverse { grid-template-columns: 1fr; text-align: center; }
  .cleaner-feature.reverse .cleaner-feature-icon { order: 0; }
  .cleaner-feature.reverse > div:not(.cleaner-feature-icon) { text-align: center; }
  .cleaner-feature-icon { margin: 0 auto; }
  .hero-card { transform: none; max-width: 100%; }
  .logo-track { animation-duration: 45s; }

  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }

  .steps-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .guarantee-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-cards { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .founder-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .sa-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .sa-card { padding: 1.5rem; }
  .clean-value-card { flex-direction: column; align-items: center; text-align: center; padding: 1.5rem; }
  .clean-letter { width: 48px; height: 48px; min-width: 48px; font-size: 1.25rem; }
  .founder-heading { font-size: 2rem; }
  .founder-signature { justify-content: center; }
}

@media (max-width: 600px) {
  .top-bar-socials { display: none; }
  .top-bar-inner { justify-content: center; }
  .stats-bar .container { grid-template-columns: 1fr; }
  .stat-item::after { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  h1 { font-size: 1.75rem; }
  .hero h1 { font-size: 1.75rem; }
  .hero { padding: 2.5rem 0 1.25rem; }
  .hero-card { padding: 1.5rem; }
  .logo-track { animation-duration: 45s; }
  .hero-card h3 { font-size: 1.125rem; }
  .section { padding: 3.5rem 0; }

  /* Mobile menu — tighter on small screens */
  .mobile-menu > a { padding: 0.875rem 0; font-size: 1.0625rem; }
  .mobile-submenu-toggle { padding: 0.875rem 0; font-size: 1.0625rem; }
  .mobile-submenu-items a { padding: 0.625rem 0; font-size: 0.9375rem; }
}

/* ===== Keyframes ===== */
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ===== Social Follow Buttons ===== */
.social-follow-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.social-follow-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-color: var(--primary);
}

/* ===== Review Hero Stars ===== */
.review-hero-stars {
  font-size: 2.5rem;
  letter-spacing: 8px;
  margin-bottom: 0.75rem;
  color: #f59e0b;
  text-shadow: none;
  transition: text-shadow 0.3s, transform 0.3s;
  cursor: default;
}
.review-hero-stars:hover {
  text-shadow: 0 0 12px rgba(245,158,11,0.6), 0 0 24px rgba(245,158,11,0.3);
  transform: scale(1.05);
}

/* ===== Review Carousel ===== */
.review-carousel {
  position: relative;
  overflow: visible;
  margin: 0 -6rem;
  padding: 0 3.5rem;
}
.review-carousel-track {
  overflow-x: auto;
}
.review-carousel-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.5rem 0 1rem;
}
.review-carousel-track::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 calc(((100% - 5rem) / 5) * 1.3);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.review-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
}
.review-text {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
  flex: 1;
}
.review-text .review-text-full {
  display: none;
}
.review-read-more {
  display: block;
  background: none;
  border: 1px solid var(--primary);
  border-radius: 6px;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.35rem 0.85rem;
  margin-top: 0.75rem;
  transition: all 0.2s;
}
.review-read-more:hover {
  background: var(--primary);
  color: var(--white);
}

/* Review modal */
.review-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.review-modal-overlay.active {
  display: flex;
}
.review-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
  box-shadow: 0 24px 48px rgba(0,0,0,0.2);
  animation: reviewModalIn 0.25s ease;
}
@keyframes reviewModalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.review-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.review-modal-close:hover {
  background: var(--gray-50);
}
.review-modal-close svg {
  width: 16px;
  height: 16px;
  color: var(--dark);
}
.review-modal-stars {
  color: #f59e0b;
  font-size: 1.125rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.review-modal-body {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.review-modal-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.review-modal-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.review-modal-author strong {
  display: block;
  font-size: 0.875rem;
  color: var(--dark);
}
.review-modal-author span {
  font-size: 0.8125rem;
  color: var(--gray-400);
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
  object-fit: cover;
}
img.review-avatar {
  display: block;
}
.review-author-info {
  flex: 1;
}
.review-author-info strong {
  display: block;
  font-size: 0.8125rem;
  color: var(--dark);
}
.review-author-info span {
  font-size: 0.75rem;
  color: var(--gray-400);
}
.review-google-icon {
  flex-shrink: 0;
}
.review-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.review-carousel-btn:hover {
  background: var(--primary-dark, #1a5276);
  border-color: var(--primary-dark, #1a5276);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.review-carousel-btn svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.5;
}
.review-carousel-prev { left: -50px; }
.review-carousel-next { right: -50px; }

@media (max-width: 900px) {
  .review-carousel {
    margin: 0 -1rem;
    padding: 0 2.5rem;
  }
  .review-carousel-prev { left: 0; }
  .review-carousel-next { right: 0; }
}
@media (max-width: 768px) {
  .review-card { flex: 0 0 calc((100% - 1.25rem) / 2); }
  .review-carousel-btn {
    width: 36px;
    height: 36px;
  }
  .review-carousel-btn svg {
    width: 18px;
    height: 18px;
  }
  .review-carousel-prev { left: 0; }
  .review-carousel-next { right: 0; }
}
@media (max-width: 480px) {
  .review-card { flex: 0 0 80%; }
  .review-carousel-btn {
    width: 30px;
    height: 30px;
  }
  .review-carousel-btn svg {
    width: 14px;
    height: 14px;
  }
  .review-carousel-prev { left: 0; }
  .review-carousel-next { right: 0; }
}

/* ===== Maps ===== */
.map-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.map-grid h3 { margin-bottom: 1rem; font-size: 1.125rem; }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-frame iframe { border: 0; display: block; }
@media (max-width: 768px) { .map-grid { grid-template-columns: 1fr; } }
