/* ===================================
   SPARKLING CLEAN SYDNEY - STYLESHEET
   =================================== */

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249,115,22,0.45); }
  50%       { box-shadow: 0 0 0 12px rgba(249,115,22,0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Scroll-triggered fade-up (applied via JS) */
.anim-fade-up   { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.anim-fade-in   { opacity: 0; transition: opacity 0.6s ease; }
.anim-scale-in  { opacity: 0; transform: scale(0.94); transition: opacity 0.6s ease, transform 0.6s ease; }
.anim-slide-left  { opacity: 0; transform: translateX(-36px); transition: opacity 0.6s ease, transform 0.6s ease; }
.anim-slide-right { opacity: 0; transform: translateX(36px);  transition: opacity 0.6s ease, transform 0.6s ease; }
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }
.anim-delay-5 { transition-delay: 0.5s; }

.in-view { opacity: 1 !important; transform: none !important; }

/* Hero entrance animation */
.hero-content { animation: fadeUp 0.8s ease both; }
.hero-content .hero-badge { animation: fadeIn 0.5s ease both; }
.hero-content h1 { animation: fadeUp 0.7s 0.1s ease both; }
.hero-content p  { animation: fadeUp 0.7s 0.2s ease both; }
.hero-content .hero-btns { animation: fadeUp 0.7s 0.3s ease both; }
.hero-content .hero-trust { animation: fadeUp 0.7s 0.4s ease both; }

/* Pulse on primary CTA buttons */
.btn-primary { animation: pulse 2.4s ease infinite; }
.btn-primary:hover { animation: none; }

/* Navbar link underline animation */
.nav-links a { position: relative; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }

/* Card hover lift already in .service-card — add smooth image zoom */
.service-card img { transition: transform 0.4s ease; }
.service-card:hover img { transform: scale(1.05); }
.service-card { overflow: hidden; }

/* Why card icon bounce on hover */
.why-card:hover .why-icon { animation: fadeUp 0.3s ease both; }

/* Review card slide up on hover */
.review-card { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

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

:root {
  --blue: #1a5fba;
  --blue-dark: #0d3d82;
  --blue-light: #e8f0fb;
  --orange: #f97316;
  --orange-dark: #ea6a0a;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --text: #111827;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.13);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-align: center;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-secondary {
  background: var(--white);
  color: var(--blue-dark);
  border: 2px solid var(--white);
}
.btn-secondary:hover { background: var(--blue-light); border-color: var(--blue); }
.btn-blue {
  background: var(--blue);
  color: var(--white);
}
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-lg { padding: 18px 36px; font-size: 18px; }
.btn-full { width: 100%; display: block; }
.btn-phone {
  background: #16a34a;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-phone:hover { background: #15803d; transform: translateY(-1px); }

/* --- Navigation --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1140px;
  margin: 0 auto;
}
.nav-logo img { height: 40px; width: auto; }
.nav-logo span {
  font-size: 20px;
  font-weight: 800;
  color: var(--blue-dark);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-weight: 600;
  color: var(--gray-800);
  font-size: 15px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-phone a.phone-link {
  font-weight: 700;
  color: var(--blue-dark);
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--gray-800);
  border-radius: 3px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  background: var(--white);
  padding: 16px 20px 20px;
  border-top: 1px solid var(--gray-200);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-weight: 600;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-800);
}
.mobile-menu .btn { margin-top: 14px; width: 100%; text-align: center; }

/* --- Hero --- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 90px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 660px;
}
.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero p {
  font-size: 18px;
  opacity: 0.92;
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 36px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
}
.trust-item .icon { font-size: 18px; }

/* --- Section Headings --- */
.section-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 600px;
}
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* --- Services Section --- */
.services-section { padding: 80px 0; background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  background: var(--white);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.service-card-body { padding: 24px; }
.service-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--blue-dark);
}
.service-card p { color: var(--gray-600); font-size: 15px; margin-bottom: 18px; }
.service-card .price-from {
  font-size: 14px;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 16px;
}

/* --- Deal Banner --- */
.deal-banner {
  background: linear-gradient(135deg, var(--orange) 0%, #ef4444 100%);
  color: white;
  padding: 60px 0;
}
.deal-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.deal-tag {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.deal-banner h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 8px;
}
.deal-banner p { font-size: 16px; opacity: 0.92; }
.deal-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-white { background: white; color: var(--orange-dark); font-weight: 700; }
.btn-white:hover { background: #fff3; color: white; }
.btn-outline-white { background: transparent; color: white; border: 2px solid white; font-weight: 700; }
.btn-outline-white:hover { background: white; color: var(--orange-dark); }

/* --- Why Choose Us --- */
.why-section { padding: 80px 0; background: var(--gray-50); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  text-align: center;
}
.why-icon {
  font-size: 42px;
  margin-bottom: 16px;
}
.why-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; color: var(--blue-dark); }
.why-card p { color: var(--gray-600); font-size: 15px; }

/* --- Reviews --- */
.reviews-section { padding: 80px 0; background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--gray-200);
}
.stars { color: #f59e0b; font-size: 18px; margin-bottom: 12px; }
.review-text { font-size: 15px; color: var(--gray-600); margin-bottom: 18px; font-style: italic; line-height: 1.7; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reviewer-name { font-weight: 700; font-size: 15px; }
.reviewer-location { font-size: 13px; color: var(--gray-400); }

/* --- Quote Form --- */
.quote-section { padding: 80px 0; background: var(--blue-dark); color: white; }
.quote-section .section-title { color: white; }
.quote-section .section-sub { color: rgba(255,255,255,0.8); }
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.quote-form {
  background: white;
  border-radius: 14px;
  padding: 36px;
  color: var(--text);
}
.quote-form h3 { font-size: 22px; font-weight: 800; margin-bottom: 24px; color: var(--blue-dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--gray-800); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
  background: white;
  color: var(--text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.form-group textarea { height: 100px; resize: vertical; }
.form-privacy { font-size: 12px; color: var(--gray-400); text-align: center; margin-top: 12px; }
.quote-perks { color: white; }
.quote-perks h3 { font-size: 26px; font-weight: 800; margin-bottom: 24px; }
.perk-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.perk-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.perk-text h4 { font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.perk-text p { font-size: 14px; opacity: 0.85; }

/* --- Suburbs --- */
.suburbs-section { padding: 80px 0; background: var(--gray-50); }
.suburbs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 40px;
}
.suburb-tag {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
  text-align: center;
}

/* --- Pricing Page --- */
.pricing-section { padding: 80px 0; background: var(--white); }
.pricing-service { margin-bottom: 72px; }
.pricing-service:last-child { margin-bottom: 0; }
.pricing-service-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 8px;
}
.pricing-service-sub { color: var(--gray-600); margin-bottom: 36px; font-size: 16px; }
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.pricing-card {
  border-radius: var(--radius);
  border: 2px solid var(--gray-200);
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.pricing-card.featured {
  border-color: var(--blue);
  background: var(--blue-light);
}
.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.pricing-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.pricing-price {
  font-size: 38px;
  font-weight: 900;
  color: var(--blue-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price span { font-size: 16px; font-weight: 600; color: var(--gray-600); }
.pricing-range { font-size: 13px; color: var(--gray-400); margin-bottom: 20px; }
.pricing-includes { margin-bottom: 28px; }
.pricing-includes li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-800);
}
.pricing-includes li:last-child { border: none; }
.check { color: #16a34a; font-size: 16px; font-weight: 700; }
.pricing-note {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--gray-700);
  margin-top: 36px;
}

/* --- Landing Page Hero (shorter) --- */
.lp-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  color: white;
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.lp-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.lp-hero-content { position: relative; z-index: 1; }
.lp-hero h1 { font-size: clamp(28px, 4.5vw, 46px); font-weight: 900; line-height: 1.15; margin-bottom: 16px; }
.lp-hero p { font-size: 18px; opacity: 0.92; max-width: 560px; margin-bottom: 28px; }

/* --- LP Layout (hero + form side by side) --- */
.lp-section { padding: 80px 0; }
.lp-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}
.lp-form-box {
  background: white;
  border-radius: 14px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  position: sticky;
  top: 90px;
}
.lp-form-box h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--blue-dark);
}
.lp-form-box .sub { font-size: 14px; color: var(--gray-600); margin-bottom: 22px; }
.includes-list { margin: 24px 0; }
.includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 15px;
  color: var(--gray-800);
}
.includes-list li:last-child { border: none; }
.includes-list .icon { font-size: 18px; margin-top: 1px; }

/* --- About Page --- */
.about-section { padding: 80px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img img { width: 100%; height: 420px; object-fit: cover; }
.about-content .section-title { margin-bottom: 16px; }
.about-content p { color: var(--gray-600); margin-bottom: 16px; font-size: 16px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
  padding: 28px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.stat-num { font-size: 32px; font-weight: 900; color: var(--blue); }
.stat-label { font-size: 13px; color: var(--gray-600); font-weight: 600; }
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 80px 0;
  background: var(--gray-50);
}
.values-grid-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.value-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.value-icon { font-size: 32px; margin-bottom: 12px; }
.value-card h4 { font-weight: 800; font-size: 16px; margin-bottom: 8px; color: var(--blue-dark); }
.value-card p { font-size: 14px; color: var(--gray-600); }

/* --- CTA Bar --- */
.cta-bar {
  background: var(--blue);
  color: white;
  padding: 60px 0;
  text-align: center;
}
.cta-bar h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 900; margin-bottom: 12px; }
.cta-bar p { font-size: 17px; opacity: 0.9; margin-bottom: 28px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* --- Footer --- */
.footer {
  background: var(--gray-800);
  color: white;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; opacity: 0.7; margin: 12px 0 20px; line-height: 1.7; }
.footer-logo { font-size: 20px; font-weight: 800; color: white; }
.footer h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray-400);
  margin-bottom: 16px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul li a { font-size: 14px; opacity: 0.8; transition: opacity 0.2s; }
.footer ul li a:hover { opacity: 1; color: var(--orange); }
.footer-contact li { font-size: 14px; opacity: 0.8; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.footer-contact li a { opacity: 1; }
.footer-contact li a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; opacity: 0.6; }
.social-links { display: flex; gap: 14px; }
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.2s;
}
.social-links a:hover { background: var(--blue); }

/* --- Before & After --- */
.before-after-section { padding: 80px 0; background: var(--gray-800); color: white; }
.before-after-section .section-label { color: var(--orange); }
.before-after-section .section-title { color: white; }
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.ba-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--gray-800);
}
.ba-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.ba-card:hover img { transform: scale(1.04); }
.ba-label {
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-align: center;
  letter-spacing: 0.3px;
}

/* --- Video Gallery --- */
.video-section { padding: 80px 0; background: var(--gray-50); }
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.video-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}
.video-wrap video {
  width: 100%;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .before-after-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .before-after-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Success message --- */
.form-success {
  display: none;
  background: #dcfce7;
  border: 1px solid #16a34a;
  color: #15803d;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  margin-top: 12px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .lp-grid { grid-template-columns: 1fr; }
  .lp-form-box { position: static; }
  .suburbs-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-phone .btn { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .suburbs-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .deal-inner { flex-direction: column; text-align: center; }
  .deal-btns { justify-content: center; }
  .about-stats { grid-template-columns: 1fr; gap: 12px; }
  .hero { padding: 60px 0 50px; }
}

@media (max-width: 480px) {
  .suburbs-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards { grid-template-columns: 1fr; }
  .values-grid-inner { grid-template-columns: 1fr; }
}
