/* =============================================
   RIPTIDE CLEANING — style.css
   ============================================= */

:root {
  --blue: #1b4f9c;
  --blue-dark: #0f2f63;
  --teal: #19c2c7;
  --teal-dark: #14a7ab;
  --text: #1a2332;
  --text-muted: #5a6a7e;
  --bg: #f7fafc;
  --white: #ffffff;
  --border: #e2e6ec;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

h1 { font-size: 48px; font-weight: 700; line-height: 1.15; margin-bottom: 20px; }
h2 { font-size: 34px; font-weight: 700; color: var(--blue-dark); margin-bottom: 16px; }
h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
p  { font-size: 16px; line-height: 1.7; color: var(--text-muted); }

.section-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 8px;
}

.section-sub {
  font-size: 17px; color: var(--text-muted);
  max-width: 540px; margin-bottom: 48px; font-weight: 300;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
}

/* =============================================
   BUTTONS
   ============================================= */
.hero-btn {
  display: inline-block; background: var(--teal); color: var(--white);
  padding: 16px 36px; border-radius: 8px; font-weight: 600; font-size: 16px;
  transition: var(--transition); box-shadow: 0 10px 25px rgba(25,194,199,0.3);
}
.hero-btn:hover { background: var(--teal-dark); transform: translateY(-2px); }

.hero-btn-outline {
  display: inline-block; border: 2px solid rgba(255,255,255,0.6); color: var(--white);
  padding: 14px 36px; border-radius: 8px; font-weight: 600; font-size: 16px;
  transition: var(--transition);
}
.hero-btn-outline:hover { background: rgba(255,255,255,0.15); border-color: white; }

.hero-btn-outline-dark {
  display: inline-block; border: 2px solid rgba(255,255,255,0.5); color: var(--white);
  padding: 14px 36px; border-radius: 8px; font-weight: 600; font-size: 16px;
  transition: var(--transition);
}
.hero-btn-outline-dark:hover { background: rgba(255,255,255,0.15); border-color: white; }

/* =============================================
   URGENCY BANNER
   ============================================= */
.urgency-banner {
  background: #0a1f4e;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 400;
  position: relative;
  z-index: 1001;
}

.urgency-banner strong { color: var(--teal); }

.urgency-banner a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  margin-left: 4px;
}

.urgency-banner a:hover { color: var(--teal); }

/* =============================================
   HEADER
   ============================================= */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 60px;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img { height: 130px; }

nav a {
  margin-left: 30px; color: var(--text); font-weight: 500; font-size: 15px;
  padding-bottom: 3px; border-bottom: 2px solid transparent; transition: var(--transition);
}
nav a:hover, nav a.active { color: var(--blue); border-bottom-color: var(--teal); }

.header-call { font-weight: 600; color: var(--teal); font-size: 15px; }
.header-call a { color: var(--teal); }
.header-call a:hover { color: var(--teal-dark); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 90vh;
  background:
    linear-gradient(rgba(5,20,50,0.45), rgba(10,30,70,0.65)),
    url("images/backgroundimage.jpg");
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 60px 20px;
}

.hero-badge {
  display: inline-block; background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25); color: #a8e6d8;
  font-size: 13px; font-weight: 500; padding: 6px 18px;
  border-radius: 20px; margin-bottom: 24px;
}
.hero-content { max-width: 700px; }
.hero-content h1 { color: var(--white); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 36px; font-weight: 300; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats {
  display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-stat { display: flex; flex-direction: column; align-items: center; }
.stat-num { font-size: 28px; font-weight: 700; color: var(--white); }
.stat-lbl { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar { background: var(--white); padding: 20px; border-bottom: 1px solid var(--border); }
.trust-items { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { font-weight: 600; font-size: 14px; color: var(--blue); }

/* =============================================
   SERVICES
   ============================================= */
.services, .why-us, .reviews { padding: 100px 0; }
.projects, .process { padding: 100px 0; background: var(--white); }

.services { text-align: center; }
.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }

.service {
  background: var(--white); padding: 28px 14px; border-radius: var(--radius);
  box-shadow: var(--shadow); transition: var(--transition);
  border: 1px solid transparent; border-top: 3px solid var(--teal);
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--teal); }

.service-icon {
  font-size: 24px;
  margin-bottom: 16px;
  width: 60px;
  height: 60px;
  background: #e8f8f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.service h3 { color: var(--blue-dark); font-size: 16px; }

.service-link {
  display: inline-block; margin-top: 16px;
  font-size: 13px; font-weight: 600; color: var(--teal);
  transition: var(--transition);
}
.service-link:hover { color: var(--teal-dark); transform: translateX(4px); }

/* =============================================
   PROJECTS
   ============================================= */
.projects .container { text-align: center; }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 8px; }
.project { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); text-align: left; }
.project img { width: 100%; height: 280px; object-fit: cover; }
.project-info { padding: 20px 24px; background: var(--white); }
.project-tag {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 4px; margin-bottom: 8px;
}
.project-tag.before { background: #fef3e2; color: #92400e; }
.project-tag.after  { background: #e1f5ee; color: #065f46; }
.project-info h3 { color: var(--text); margin-bottom: 6px; }

/* =============================================
   WHY US
   ============================================= */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 8px; }
.why-card {
  background: var(--white); padding: 32px 28px; border-radius: var(--radius);
  box-shadow: var(--shadow); border-top: 3px solid var(--teal); transition: var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-num { font-size: 36px; font-weight: 700; color: #d0e8f7; margin-bottom: 12px; line-height: 1; }
.why-card h3 { color: var(--blue-dark); margin-bottom: 8px; }

/* =============================================
   PROCESS
   ============================================= */
.process .container { text-align: center; }
.process-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px; max-width: 1000px; margin: 0 auto;
}
.process-card {
  background: var(--bg); padding: 35px 28px; border-radius: var(--radius);
  border: 1px solid var(--border); transition: var(--transition);
}
.process-card:hover { background: var(--white); box-shadow: var(--shadow); }
.process-num {
  width: 52px; height: 52px; background: var(--blue); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; margin: 0 auto 20px;
}
.process-card h3 { color: var(--blue-dark); margin-bottom: 10px; }

/* =============================================
   REVIEWS
   ============================================= */
.reviews { text-align: center; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 8px; }
.review {
  background: var(--white); padding: 32px 28px; border-radius: var(--radius);
  box-shadow: var(--shadow); text-align: left; transition: var(--transition);
}
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { color: #f4a400; font-size: 18px; letter-spacing: 3px; margin-bottom: 16px; }
.review p { font-size: 15px; font-style: italic; color: #4a5568; margin-bottom: 20px; line-height: 1.8; }
.reviewer { font-size: 14px; font-weight: 600; color: var(--text); }
.reviewer span { color: var(--text-muted); font-weight: 400; }

/* =============================================
   SUBURB GRID
   ============================================= */
.suburbs {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}

.suburb-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

.suburb-tag {
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  cursor: default;
}

.suburb-tag:hover {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
  transform: translateY(-2px);
}

/* =============================================
   CTA
   ============================================= */
.cta {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 100px 0; text-align: center; color: var(--white);
}
.cta-badge {
  display: inline-block; background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2); color: #a8e6d8;
  font-size: 12px; font-weight: 600; padding: 6px 18px;
  border-radius: 20px; margin-bottom: 20px; letter-spacing: 0.05em;
}
.cta h2 { color: var(--white); font-size: 38px; margin-bottom: 16px; }
.cta p  { color: rgba(255,255,255,0.75); font-size: 17px; margin-bottom: 36px; font-weight: 300; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   FOOTER
   ============================================= */
footer { background: var(--blue-dark); color: var(--white); padding: 60px 60px 30px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; max-width: 1100px; margin: 0 auto 40px;
}
.footer-brand { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.footer-brand span { color: var(--teal); }
.footer-col p, .footer-col a {
  font-size: 14px; color: rgba(255,255,255,0.6);
  line-height: 2; display: block; font-weight: 300;
}
.footer-col a:hover { color: var(--teal); }
.footer-location { margin-top: 12px; }
.footer-col h4 {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  text-align: center; max-width: 1100px; margin: 0 auto;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }

/* =============================================
   ROTATING HEADLINE
   ============================================= */
.rotating-headline {
  position: relative;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.headline-line {
  position: absolute;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  width: 100%;
  text-align: center;
  color: var(--white);
}

.headline-line.active {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   STICKY MOBILE CALL BAR
   ============================================= */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: none;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.sticky-call {
  background: var(--blue); color: var(--white);
  text-align: center; padding: 16px;
  font-weight: 600; font-size: 15px;
  transition: var(--transition);
}
.sticky-call:hover { background: var(--blue-dark); }

.sticky-quote {
  background: var(--teal); color: var(--white);
  text-align: center; padding: 16px;
  font-weight: 600; font-size: 15px;
  transition: var(--transition);
}
.sticky-quote:hover { background: var(--teal-dark); }

/* =============================================
   BEFORE / AFTER SLIDER
   ============================================= */
.ba-slider-section {
  padding: 100px 0;
  background: var(--white);
}

.ba-slider-section .container { text-align: center; }

.ba-sliders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 16px;
}

.ba-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ba-slider {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: ew-resize;
  box-shadow: var(--shadow-lg);
  user-select: none;
  touch-action: none;
}

.ba-img-after,
.ba-img-before {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

.ba-img-after img,
.ba-img-before img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  image-rendering: -webkit-optimize-contrast;
}
.ba-img-before { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba-img-after  { z-index: 1; }

.ba-handle {
  position: absolute;
  top: 0; left: 50%;
  width: 3px; height: 100%;
  background: white;
  transform: translateX(-50%);
  z-index: 10;
  cursor: ew-resize;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

.ba-handle-circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 50px; height: 50px;
  background: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  gap: 2px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  font-size: 20px; font-weight: 700;
  color: var(--blue);
}

.ba-label-before,
.ba-label-after {
  position: absolute;
  top: 16px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 4px;
  z-index: 5; pointer-events: none;
}

.ba-label-before { left: 16px; background: rgba(0,0,0,0.55); color: white; }
.ba-label-after  { right: 16px; background: var(--teal); color: white; }

.ba-caption {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

/* =============================================
   REPAIR PHOTO HOVER EFFECT
   ============================================= */
.repair-photo {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}

.repair-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}

.repair-photo:hover img { transform: scale(1.06); }

.repair-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10, 30, 70, 0.85));
  padding: 40px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.repair-photo:hover .repair-overlay { transform: translateY(0); }

.repair-overlay span {
  color: white; font-size: 14px; font-weight: 500;
  font-family: 'Poppins', sans-serif; line-height: 1.5;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 80px 60px; color: var(--white); text-align: center;
}

.page-hero-content { max-width: 600px; margin: 0 auto; }
.page-hero h1 { color: var(--white); font-size: 38px; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 17px; font-weight: 300; }

.contact-section { padding: 80px 0 100px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px; align-items: start;
}

.contact-form-wrap {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 48px;
}

.contact-form-wrap h2 { margin-bottom: 8px; }
.form-sub { color: var(--text-muted); margin-bottom: 32px; font-size: 15px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 15px; color: var(--text);
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 8px; padding: 12px 16px;
  transition: var(--transition); outline: none; width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(25, 194, 199, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #aab4c0; }

.form-group select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235a6a7e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

.form-check { display: flex; align-items: flex-start; gap: 10px; }

.form-check input[type="checkbox"] {
  width: 18px; height: 18px; margin-top: 2px;
  accent-color: var(--teal); flex-shrink: 0; cursor: pointer;
}

.form-check label { font-size: 13px; color: var(--text-muted); line-height: 1.5; cursor: pointer; }

.submit-btn {
  background: var(--teal); color: var(--white); border: none;
  padding: 16px 36px; border-radius: 8px;
  font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 10px 25px rgba(25,194,199,0.3); width: 100%;
}

.submit-btn:hover {
  background: var(--teal-dark); transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(25,194,199,0.4);
}

.form-note { font-size: 13px; color: var(--text-muted); text-align: center; margin-top: -8px; }

.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }

.sidebar-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 28px;
}

.sidebar-card h3 { color: var(--blue-dark); margin-bottom: 14px; font-size: 17px; }
.sidebar-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 12px; }

.call-btn {
  display: block; background: var(--blue); color: var(--white);
  text-align: center; padding: 14px; border-radius: 8px;
  font-weight: 600; font-size: 18px; margin-bottom: 10px; transition: var(--transition);
}
.call-btn:hover { background: var(--blue-dark); transform: translateY(-2px); }

.suburb-list {
  list-style: none; padding: 0; margin-top: 8px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
}

.suburb-list li {
  font-size: 13px; color: var(--text-muted);
  padding-left: 14px; position: relative;
}

.suburb-list li::before { content: '•'; position: absolute; left: 0; color: var(--teal); }

.trust-card { border-top: 3px solid var(--teal); }

.trust-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--text);
  padding: 8px 0; border-bottom: 1px solid var(--border);
}

.trust-row:last-child { border-bottom: none; }
.trust-tick { color: var(--teal); font-weight: 700; font-size: 15px; }

/* =============================================
   SERVICES PAGE
   ============================================= */
.services-page { padding: 80px 0 100px; }

.service-detail {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  padding: 64px 0; border-bottom: 1px solid var(--border);
}

.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }

.service-detail-img img {
  width: 100%; height: 100%; min-height: 420px;
  object-fit: cover; object-position: center top;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  display: block;
}

.service-detail-content h2 { margin-bottom: 16px; }
.service-detail-content p { margin-bottom: 16px; font-size: 15px; }

.service-includes {
  list-style: none; padding: 0; margin: 24px 0 32px;
  display: flex; flex-direction: column; gap: 10px;
}

.service-includes li {
  font-size: 14px; font-weight: 500; color: var(--text);
  display: flex; align-items: center; gap: 10px;
}

/* =============================================
   GALLERY PAGE
   ============================================= */
.gallery-filter {
  display: flex; justify-content: center; gap: 12px;
  flex-wrap: wrap; padding: 28px 20px;
  background: var(--white); border-bottom: 1px solid var(--border);
}

.filter-btn {
  background: transparent; border: 1.5px solid var(--border);
  color: var(--text-muted); padding: 8px 22px; border-radius: 20px;
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 500;
  cursor: pointer; transition: var(--transition);
}

.filter-btn:hover { border-color: var(--teal); color: var(--teal); }
.filter-btn.active { background: var(--teal); border-color: var(--teal); color: white; }

.gallery-section { padding: 80px 0 100px; }
.gallery-category { margin-bottom: 20px; }
.gallery-divider { height: 1px; background: var(--border); margin: 60px 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 16px;
}

.gallery-item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

.gallery-item img {
  width: 100%; height: 400px; object-fit: cover;
  display: block; transition: var(--transition);
}

.gallery-item:hover img { transform: scale(1.03); }

.gallery-item-label {
  padding: 14px 16px; font-size: 13px;
  font-weight: 500; color: var(--text); background: var(--white);
}

.before-label { background: #fef3e2; color: #92400e; }

.gutter-cta {
  margin-top: 40px; text-align: center;
  padding: 40px; background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow);
}

.gutter-cta p { font-size: 16px; color: var(--text-muted); margin-bottom: 20px; }

/* =============================================
   SCROLL TO TOP BUTTON
   ============================================= */
.scroll-top {
  display: none;
  position: fixed;
  bottom: 90px; right: 20px;
  width: 44px; height: 44px;
  background: var(--blue); color: white;
  border: none; border-radius: 50%;
  font-size: 18px; font-weight: 700;
  cursor: pointer; z-index: 999;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: var(--transition);
}

.scroll-top:hover { background: var(--blue-dark); transform: translateY(-2px); }

/* =============================================
   STICKY SHAKING QUOTE BUTTON
   ============================================= */
.shake-btn {
  position: fixed;
  bottom: 100px; left: 20px;
  background: var(--teal); color: white;
  padding: 14px 22px; border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px; font-weight: 600;
  text-decoration: none; z-index: 9998;
  box-shadow: 0 6px 20px rgba(25,194,199,0.45);
  animation: shake 3s ease infinite;
  display: flex; align-items: center; gap: 8px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.shake-btn:hover {
  background: var(--teal-dark);
  animation: none;
  transform: scale(1.05);
}

@keyframes shake {
  0%   { transform: rotate(0deg); }
  2%   { transform: rotate(-4deg); }
  4%   { transform: rotate(4deg); }
  6%   { transform: rotate(-4deg); }
  8%   { transform: rotate(4deg); }
  10%  { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

/* =============================================
   RESPONSIVE — 900px
   ============================================= */
@media (max-width: 900px) {
  .container { padding: 0 30px; }
  .ba-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; padding: 0 30px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-detail,
  .service-detail.reverse {
    grid-template-columns: 1fr; direction: ltr; gap: 32px; padding: 48px 0;
  }
  .service-detail-img img { min-height: 260px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .trust-card { grid-column: 1 / -1; }
}

/* =============================================
   RESPONSIVE — 768px
   ============================================= */
@media (max-width: 768px) {
  header { flex-direction: column; gap: 16px; padding: 20px; }
  .logo img { height: 90px; }
  nav a { margin-left: 16px; font-size: 14px; }
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  .hero-stats { gap: 24px; }
  .hero { background-attachment: scroll; }
  .services, .why-us, .reviews, .projects, .process, .cta, .suburbs { padding: 70px 0; }
  .container { padding: 0 20px; }
  footer { padding: 40px 20px 80px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 0; }
  .cta h2 { font-size: 28px; }
  .ba-sliders { grid-template-columns: 1fr; }
  .ba-slider { height: 280px; }
  .repair-photo { height: 280px; }
  .rotating-headline { min-height: 160px; }
  .sticky-bar { display: grid; }
  .shake-btn { display: none; }
  .page-hero { padding: 60px 20px; }
  .page-hero h1 { font-size: 28px; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-sidebar { grid-template-columns: 1fr; }
  .trust-card { grid-column: auto; }
  .gallery-filter { gap: 8px; }
  .filter-btn { padding: 7px 16px; font-size: 13px; }
  .gallery-section { padding: 50px 0 80px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   RESPONSIVE — 480px
   ============================================= */
@media (max-width: 480px) {
  .hero-btns, .cta-btns { flex-direction: column; align-items: center; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 22px; }
  .services-grid { grid-template-columns: 1fr; }
}

/* =============================================
   DESKTOP ONLY
   ============================================= */
@media (min-width: 769px) {
  .sticky-bar { display: none !important; }
  .scroll-top { display: flex; }
}