/*
Theme Name: Grime Busters NZ
Theme URI: https://grimebusters.co.nz
Author: Grime Busters NZ
Author URI: https://grimebusters.co.nz
Description: Custom WordPress theme for Grime Busters NZ — Auckland's trusted home cleaning service. Carpet cleaning, house washing, roof treatment and pest control.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: grimebusters
Tags: cleaning, service, auckland, business
*/

/* ── Design Tokens ── */
:root {
  --dark:        #1A1A2E;
  --dark-mid:    #16213E;
  --orange:      #FF6B35;
  --orange-dark: #E85520;
  --orange-light:#FFF0EB;
  --white:       #FFFFFF;
  --grey-light:  #F5F5F5;
  --grey-mid:    #E5E5E5;
  --grey-text:   #6B7280;
  --green:       #22C55E;
  --radius:      12px;
  --shadow-sm:   0 1px 4px rgba(0,0,0,.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.18);
  --transition:  0.22s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; margin: 0; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Utility ── */
.container { width: 90%; max-width: 1160px; margin: 0 auto; }
.section { padding: 88px 0; }
.text-center { text-align: center; }
.section-tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 12px; }
.section-sub { font-size: 1.05rem; color: var(--grey-text); max-width: 520px; }
.section-sub.center { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  text-decoration: none;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(255,107,53,.4); color: var(--white); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: #0d0d1f; transform: translateY(-2px); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); color: var(--white); }
.btn-outline { background: transparent; color: var(--orange); border: 2px solid var(--orange); }
.btn-outline:hover { background: var(--orange); color: var(--white); }
.btn-white { background: var(--white); color: var(--orange-dark); }
.btn-white:hover { background: var(--orange-light); }

/* ── Announcement Bar ── */
.announcement-bar {
  background: var(--orange);
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.announcement-bar span { opacity: .85; margin: 0 8px; }

/* ── Navigation ── */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--dark); box-shadow: none; transition: box-shadow .3s ease; }
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.3); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.site-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: .06em; color: var(--white); text-decoration: none; display: flex; align-items: center; gap: 4px; }
.site-logo .logo-accent { color: var(--orange); }
.main-navigation ul { display: flex; align-items: center; gap: 32px; list-style: none; }
.main-navigation ul li a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.7); transition: color var(--transition); text-decoration: none; }
.main-navigation ul li a:hover { color: var(--orange); }
.nav-cta { margin-left: 8px; padding: 10px 22px !important; font-size: 14px !important; }
.menu-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.4rem; cursor: pointer; padding: 8px; }
.mobile-menu { display: none; flex-direction: column; background: var(--dark-mid); border-top: 1px solid rgba(255,255,255,.08); }
.mobile-menu a { padding: 12px 24px; font-weight: 500; color: rgba(255,255,255,.8); border-bottom: 1px solid rgba(255,255,255,.06); display: block; text-decoration: none; }
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu.active { display: flex; }

/* ── Hero ── */
.hero {
  background: var(--dark);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.hero-bg-circle { position: absolute; border-radius: 50%; }
.hero-bg-circle.c1 { width: 600px; height: 600px; background: rgba(255,107,53,.06); top: -200px; right: -150px; }
.hero-bg-circle.c2 { width: 300px; height: 300px; background: rgba(255,107,53,.04); bottom: -100px; left: -80px; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,53,.15);
  border: 1px solid rgba(255,107,53,.3);
  color: var(--orange);
  font-size: 13px; font-weight: 700;
  padding: 5px 14px; border-radius: 99px;
  margin-bottom: 18px; letter-spacing: .04em;
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 4.8rem);
  letter-spacing: .04em;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1;
}
.hero h1 .accent { color: var(--orange); }
.hero-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  color: rgba(255,255,255,.5);
  letter-spacing: .1em;
  margin-bottom: 20px;
}
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.75); margin-bottom: 32px; max-width: 460px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.trust-badges { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,.8); }
.trust-badge i { color: var(--orange); font-size: 15px; }

/* Hero Visual */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.ghost-wrap { position: relative; width: 320px; height: 320px; display: flex; align-items: center; justify-content: center; }
.ghost-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(255,107,53,.15); }
.ghost-ring.r1 { width: 260px; height: 260px; animation: ringpulse 3s infinite; }
.ghost-ring.r2 { width: 310px; height: 310px; animation: ringpulse 3s infinite .5s; }
@keyframes ringpulse { 0%,100%{opacity:.15;transform:scale(1)} 50%{opacity:.3;transform:scale(1.03)} }
.ghost-icon { width: 160px; height: 160px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 80px; box-shadow: 0 0 60px rgba(255,107,53,.4); position: relative; z-index: 1; }
.stat-chips { position: absolute; width: 100%; height: 100%; }
.stat-chip { position: absolute; background: var(--white); border-radius: 10px; padding: 10px 14px; box-shadow: var(--shadow-md); }
.stat-chip.c1 { top: 10px; right: -10px; }
.stat-chip.c2 { bottom: 40px; right: -20px; }
.stat-chip.c3 { bottom: 10px; left: -10px; }
.chip-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--dark); }
.chip-label { font-size: 11px; color: var(--grey-text); font-weight: 500; }
.chip-stars { color: #F59E0B; font-size: 10px; }

/* ── Services Section ── */
.services-section { background: var(--grey-light); }
.services-header { text-align: center; margin-bottom: 48px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 24px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-mid);
  transition: var(--transition);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 56px; height: 56px; background: var(--orange-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--orange); margin-bottom: 20px; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--grey-text); line-height: 1.65; flex: 1; margin-bottom: 24px; }
.service-card .btn { width: 100%; justify-content: center; padding: 11px; font-size: 14px; }

/* ── How It Works ── */
.how-section { background: var(--white); }
.how-header { text-align: center; margin-bottom: 56px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 36px;
  left: calc(16.666% + 24px); right: calc(16.666% + 24px);
  height: 2px; background: var(--orange-light); z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-icon-wrap {
  width: 72px; height: 72px;
  background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  border: 4px solid var(--white);
  box-shadow: 0 4px 20px rgba(255,107,53,.35);
  font-size: 26px; color: var(--white);
}
.step-item h3 { font-size: 1.15rem; margin-bottom: 10px; }
.step-item p { font-size: 14px; color: var(--grey-text); max-width: 220px; margin: 0 auto; }

/* ── Pricing Section ── */
.pricing-section { background: var(--grey-light); }
.pricing-header { text-align: center; margin-bottom: 48px; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pricing-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 24px; box-shadow: var(--shadow-sm);
  border: 2px solid var(--grey-mid);
  text-align: center; transition: var(--transition); position: relative;
}
.pricing-card.popular { border-color: var(--orange); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.popular-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: var(--white);
  font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: 99px;
  letter-spacing: .05em; white-space: nowrap;
}
.pricing-icon { width: 52px; height: 52px; background: var(--orange-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--orange); margin: 0 auto 16px; }
.pricing-card.popular .pricing-icon { background: var(--orange); color: var(--white); }
.pricing-card h3 { font-size: 1rem; margin-bottom: 8px; }
.price-range { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.7rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.price-note { font-size: 12px; color: var(--grey-text); margin-bottom: 20px; }
.pricing-features { text-align: left; margin-bottom: 24px; }
.pricing-features li { font-size: 13px; color: var(--grey-text); padding: 5px 0; display: flex; align-items: flex-start; gap: 8px; }
.pricing-features li i { color: var(--orange); font-size: 12px; margin-top: 3px; flex-shrink: 0; }
.pricing-card .btn { width: 100%; justify-content: center; font-size: 14px; padding: 11px; }

/* ── Reviews ── */
.reviews-section { background: var(--white); }
.reviews-header { text-align: center; margin-bottom: 48px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-mid); transition: var(--transition);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--dark); color: var(--white); font-weight: 700; font-size: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.reviewer-name { font-weight: 600; font-size: 14px; }
.reviewer-loc { font-size: 12px; color: var(--grey-text); }
.google-badge { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--grey-text); font-weight: 500; }
.review-stars { color: #F59E0B; font-size: 14px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: #374151; line-height: 1.7; }
.review-service { display: inline-block; margin-top: 14px; background: var(--orange-light); color: var(--orange-dark); font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 99px; }

/* ── CTA Banner ── */
.cta-banner { background: var(--orange); padding: 60px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-banner h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--white); letter-spacing: .04em; margin: 0 0 6px; }
.cta-banner p { color: rgba(255,255,255,.85); font-size: 15px; margin: 0; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Quote/Contact Form ── */
.quote-section { background: var(--dark); }
.quote-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: center; }
.quote-info h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 16px; }
.quote-info > p { color: rgba(255,255,255,.75); margin-bottom: 32px; }
.quote-points { display: flex; flex-direction: column; gap: 14px; }
.quote-point { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,.85); font-size: 14px; }
.quote-point i { color: var(--orange); font-size: 16px; margin-top: 1px; flex-shrink: 0; }
.form-card { background: var(--white); border-radius: 16px; padding: 40px; box-shadow: var(--shadow-lg); }
.form-card h3 { font-size: 1.3rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: #374151; margin-bottom: 6px; }
.form-group label .req { color: #EF4444; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--grey-mid); border-radius: 8px;
  font-size: 14px; font-family: 'Inter', sans-serif;
  color: var(--dark); background: var(--white); outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,53,.1); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit { width: 100%; padding: 14px; font-size: 15px; justify-content: center; }
.form-note { text-align: center; font-size: 12px; color: var(--grey-text); margin-top: 10px; }

/* ── Footer ── */
.site-footer { background: #0D0D1F; color: rgba(255,255,255,.65); padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 48px; }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: .06em; color: var(--white); display: block; margin-bottom: 14px; text-decoration: none; }
.footer-logo .logo-accent { color: var(--orange); }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 260px; margin: 0; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-btn { width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); font-size: 15px; transition: var(--transition); text-decoration: none; }
.social-btn:hover { background: var(--orange); color: var(--white); }
.footer-col h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 16px; letter-spacing: .02em; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.55); transition: color var(--transition); text-decoration: none; }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; }
.contact-item i { color: var(--orange); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; margin-left: 16px; }
.footer-bottom a:hover { color: var(--orange); }

/* ── WhatsApp FAB ── */
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--white);
  box-shadow: 0 4px 18px rgba(37,211,102,.5);
  transition: var(--transition); text-decoration: none;
}
.whatsapp-fab:hover { transform: scale(1.1); color: var(--white); }
.whatsapp-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: var(--dark); color: var(--white);
  font-size: 12px; font-weight: 500; padding: 6px 12px; border-radius: 6px;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.whatsapp-fab:hover .whatsapp-tooltip { opacity: 1; }

/* ── WordPress Core ── */
.wp-block-image img { border-radius: var(--radius); }
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ── Elementor Overrides ── */
.elementor-section { width: 100%; }
.elementor-kit-1 { --e-global-color-primary: #FF6B35; --e-global-color-secondary: #1A1A2E; --e-global-color-text: #1A1A2E; --e-global-color-accent: #E85520; }

/* ── Page Header ── */
.page-hero { background: var(--dark); padding: 60px 0; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; width: 400px; height: 400px; background: rgba(255,107,53,.06); border-radius: 50%; top: -150px; right: -80px; }
.page-hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: .04em; color: var(--white); margin-bottom: 8px; position: relative; z-index: 1; }
.page-hero h1 .accent { color: var(--orange); }
.page-hero p { color: rgba(255,255,255,.6); font-size: 15px; position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; font-size: 12px; color: rgba(255,255,255,.4); margin-top: 12px; position: relative; z-index: 1; }
.breadcrumb a { color: var(--orange); text-decoration: none; }
.breadcrumb span { opacity: .4; }

/* ── Single Page Content ── */
.page-content { padding: 60px 0; }
.content-wrap { max-width: 860px; margin: 0 auto; }
.content-wrap h2 { font-size: 1.6rem; margin: 32px 0 12px; }
.content-wrap h3 { font-size: 1.2rem; margin: 24px 0 8px; }
.content-wrap p { font-size: 15px; line-height: 1.75; color: #374151; margin-bottom: 16px; }
.content-wrap ul { margin: 0 0 16px 24px; list-style: disc; }
.content-wrap ul li { font-size: 15px; color: #374151; padding: 4px 0; }

/* ── Fade in animation ── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .5s ease, transform .5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .main-navigation, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .quote-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .services-grid, .pricing-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
}
