/* TV Antennas Canning - Enhanced Stylesheet v2 - FIXED FOR MOBILE */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --accent: #c2410c;
  --accent-dark: #9a3412;
  --accent-light: rgba(194,65,12,0.1);
  --accent-glow: rgba(194,65,12,0.15);
  --charcoal: #1a1a1a;
  --slate: #2d3748;
  --slate-light: #4a5568;
  --light: #f7f8fa;
  --lighter: #fafbfc;
  --white: #ffffff;
  --green: #22c55e;
  --green-light: rgba(34, 197, 94, 0.1);
  --border: #e2e8f0;
  --blue: #3b82f6;
  --purple: #8b5cf6;
  --yellow: #f59e0b;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

/* HEADER */
header {
  background: var(--charcoal);
  padding: 0 40px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 1px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo span {
  color: var(--accent);
}

nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s;
}

nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

nav a.active {
  color: var(--accent);
}

.header-phone {
  background: #15803d;
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
  white-space: nowrap;
}

.header-phone:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.mobile-menu-label {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(230, 92, 0, 0.3);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 92, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn-dark {
  background: var(--slate);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-dark:hover {
  background: var(--slate-light);
  transform: translateY(-1px);
}

/* TYPOGRAPHY */
h1, h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  line-height: 1.1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #dcfce7;
  color: #166534;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

/* HERO */
.hero {
  min-height: 80vh;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.82) 0%, rgba(26, 26, 26, 0.72) 100%), url('canning_hero.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
}

.hero-content {
  max-width: 750px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex-wrap: wrap;
}

.hero-badge .stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 2px;
}

.hero-badge span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(2.2rem, 9vw, 5.5rem);
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.hero h1 span {
  color: var(--accent);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
}

.trust-item svg {
  color: var(--green);
  flex-shrink: 0;
}

.page-hero {
  min-height: 35vh;
  background: linear-gradient(135deg, var(--charcoal) 0%, #252525 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 50px;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--light), transparent);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  max-width: 550px;
  margin: 0 auto;
}

/* SECTIONS */
section {
  padding: 90px 40px;
}

.section-light {
  background: var(--light);
}

.section-dark {
  background: var(--charcoal);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

/* SERVICE CARDS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  position: relative;
  border: 1px solid var(--border);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--accent);
  border-radius: 4px 0 0 4px;
  transition: height 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.service-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.service-card p {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s;
  color: var(--accent);
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* REVIEWS */
.reviews-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
  padding: 90px 40px;
}

.reviews-header {
  text-align: center;
  margin-bottom: 50px;
}

.reviews-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--charcoal);
  margin-bottom: 16px;
}

.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.google-rating .stars {
  color: #fbbf24;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.google-rating .rating-text {
  font-weight: 600;
  color: var(--charcoal);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.review-card {
  background: var(--white);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.review-stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-text {
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  background: #bbf7d0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #14532d;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.review-author-info p {
  font-size: 0.85rem;
  color: var(--slate-light);
}

/* FAQ */
.faq-section {
  padding: 90px 40px;
  background: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.2s;
  gap: 16px;
}

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

.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
  color: var(--accent);
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding-bottom: 24px;
  color: var(--slate);
  line-height: 1.7;
}

/* MAP SECTION */
.map-section {
  padding: 90px 40px;
  background: var(--light);
}

.map-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.map-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--charcoal);
  margin-bottom: 20px;
}

.map-content p {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.suburbs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.suburb-tag {
  background: rgba(255, 255, 255, 0.25);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.9rem;
  color: #fff;
  font-weight: 600;
  border: 1px solid transparent;
}

.map-embed {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  height: 400px;
  background: var(--light);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* CTA SECTION */
.cta {
  background: linear-gradient(135deg, var(--charcoal) 0%, #1f1f1f 100%);
  padding: 90px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: var(--accent);
  opacity: 0.05;
  border-radius: 50%;
  pointer-events: none;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: var(--accent);
  opacity: 0.03;
  border-radius: 50%;
  pointer-events: none;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: 14px;
}

.cta > p, .cta-inner > p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
footer {
  background: #0f0f0f;
  padding: 70px 40px 40px;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-heading {
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  margin-bottom: 14px;
  font-size: 0.95rem;
  transition: color 0.2s;
  word-break: break-word;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-contact svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 50px;
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
}

/* SERVICE DETAIL BLOCKS */
.service-block {
  display: flex;
  gap: 60px;
  align-items: center;
  padding: 50px 0;
  border-bottom: 1px solid var(--border);
}

.service-block:last-child {
  border-bottom: none;
}

.service-block.reverse {
  flex-direction: row-reverse;
}

.service-block-content {
  flex: 1;
  min-width: 0;
}

.service-block-visual {
  flex: 0 0 280px;
  height: 220px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-block-visual svg {
  width: 80px;
  height: 80px;
  stroke-width: 1;
}

.service-block h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--charcoal);
}

.service-block p {
  color: var(--slate);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.5;
}

.check-list svg {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ABOUT PAGE */
.about-intro {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}

.about-image {
  flex: 0 0 240px;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.about-image p {
  text-align: center;
  margin-top: 14px;
  color: var(--slate);
  font-size: 0.9rem;
}

.about-text {
  flex: 1;
  min-width: 0;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--slate);
}

.about-text p:first-of-type {
  font-size: 1.25rem;
  color: var(--charcoal);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 28px;
  border-radius: 12px;
  border-left: 4px solid var(--green);
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
}

.feature-card.orange {
  border-left-color: var(--accent);
}

.feature-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-card h3 svg {
  color: var(--green);
  flex-shrink: 0;
}

.feature-card.orange h3 svg {
  color: var(--accent);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* QUOTE PAGE */
.quote-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.quote-form {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
}

.quote-form h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.quote-form > p {
  color: var(--slate);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--charcoal);
  font-size: 0.95rem;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--white);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

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

.quote-form .btn {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
}

.quote-info {
  padding-top: 10px;
}

.quote-info h2 {
  font-size: 2.2rem;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.quote-info > p {
  color: var(--slate);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 14px;
  transition: all 0.2s;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
}

.contact-method:hover {
  transform: translateX(6px);
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon svg {
  color: white;
}

.contact-method-icon.dark {
  background: var(--charcoal);
}

.contact-method h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-method p {
  color: var(--slate);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.contact-method .contact-value {
  color: #15803d;
  font-weight: 600;
  font-size: 1.05rem;
}

.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #dcfce7;
  color: #166534;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 20px;
}


/* SERVICE PHOTO CARDS */
.service-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.service-photo-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  display: block;
  text-decoration: none;
  color: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.service-photo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(22, 101, 52, 0.25);
}
.service-photo-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.service-photo-card:hover img { transform: scale(1.06); }
.service-photo-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(0deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.service-photo-label {
  font-size: 1.25rem; font-weight: 700; letter-spacing: -0.01em;
  line-height: 1.2; text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.service-photo-overlay p {
  font-size: 0.9rem; margin-top: 4px; opacity: 0.85;
  line-height: 1.3; font-weight: 400; text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
  .service-photo-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 500px) {
  .service-photo-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-photo-card { aspect-ratio: 16 / 9; }
}

/* SUBURB CONTENT VISUAL BREAKS */
.suburb-content h3 { display: flex; align-items: center; gap: 10px; }
.suburb-content h3::before {
  content: ""; display: inline-block; width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%; flex-shrink: 0;
}
.content-accent-bar {
  width: 60px; height: 4px; background: var(--accent);
  border-radius: 2px; margin: 32px 0 16px;
}
.tip-box {
  background: var(--accent-light, #f0fdf4); border-left: 4px solid var(--accent);
  border-radius: 0 10px 10px 0; padding: 16px 20px; margin: 20px 0;
  font-size: 0.95rem; line-height: 1.6; color: #444;
}
.tip-box strong { color: var(--charcoal); }
.inline-thumb {
  float: right; width: 180px; height: 130px; object-fit: cover;
  border-radius: 10px; margin: 0 0 16px 20px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}
.inline-thumb-left {
  float: left; width: 180px; height: 130px; object-fit: cover;
  border-radius: 10px; margin: 0 20px 16px 0;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}
@media (max-width: 600px) {
  .inline-thumb, .inline-thumb-left {
    float: none; width: 100%; height: 160px; margin: 12px 0;
  }
}

/* PROBLEM CARDS */
.problem-section {
  padding: 90px 40px;
  background: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.problem-card {
  background: var(--light);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
}

.problem-card:hover {
  background: var(--white);
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(230, 92, 0, 0.1);
  transform: translateY(-3px);
}

.problem-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
}

.problem-content {
  flex: 1;
  min-width: 0;
}

.problem-content p {
  font-size: 1rem;
  color: var(--charcoal);
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.4;
}

.problem-link {
  color: #15803d;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.problem-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.problem-card:hover .problem-link svg {
  transform: translateX(4px);
}

/* PROCESS STEPS */
.process-section {
  padding: 90px 40px;
  background: var(--light);
}

.process-section .section-label {
  background: #e5e7eb;
  color: #374151;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
}

.process-number {
  width: 64px;
  height: 64px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(230, 92, 0, 0.3);
}

.process-number svg {
  width: 28px;
  height: 28px;
  color: white;
}

.process-step h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.process-step p {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.6;
}

.process-note {
  text-align: center;
  margin-top: 50px;
  color: var(--slate);
  font-size: 0.95rem;
}

/* STICKY MOBILE CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  z-index: 999;
  display: none;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.sticky-cta .btn {
  flex: 1;
  padding: 14px 16px;
  font-size: 0.95rem;
}

.sticky-cta.visible {
  display: flex;
}

/* HERO MICROCOPY */
.hero-microcopy {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-top: 12px;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in > * {
  animation: fadeInUp 0.7s ease-out forwards;
  opacity: 0;
}

.animate-in > *:nth-child(1) { animation-delay: 0.1s; }
.animate-in > *:nth-child(2) { animation-delay: 0.2s; }
.animate-in > *:nth-child(3) { animation-delay: 0.3s; }
.animate-in > *:nth-child(4) { animation-delay: 0.4s; }
.animate-in > *:nth-child(5) { animation-delay: 0.5s; }
.animate-in > *:nth-child(6) { animation-delay: 0.6s; }

/* ====================== */
/* RESPONSIVE BREAKPOINTS */
/* ====================== */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  .map-container {
    grid-template-columns: 1fr;
  }
  .map-embed {
    height: 350px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 400px;
  }
}

/* Tablets */
@media (max-width: 900px) {
  .service-block {
    flex-direction: column !important;
    gap: 30px;
  }
  .service-block-visual {
    flex: none;
    width: 100%;
    height: 200px;
  }
  .about-intro {
    flex-direction: column;
    text-align: center;
  }
  .about-image {
    flex: none;
    margin: 0 auto;
  }
  .quote-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .quote-info {
    order: -1;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  header {
    padding: 0 20px;
    height: 64px;
  }
  .logo {
    font-size: 1.3rem;
  }
  .logo-icon {
    width: 32px;
    height: 32px;
  }
  nav {
    display: none;
  }
  .mobile-menu-label {
    display: block;
  }
  .hero, .page-hero {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero {
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: auto;
  }
  .hero h1 {
    font-size: 2.4rem;
  }
  .hero-subtitle {
    font-size: 1.05rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 0.95rem;
  }
  .hero-trust {
    flex-direction: column;
    gap: 12px;
  }
  section {
    padding: 60px 20px;
  }
  .services-grid,
  .reviews-grid,
  .problem-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .footer-contact a {
    justify-content: center;
  }
  .quote-form {
    padding: 28px 20px;
  }
  .quote-info h2 {
    font-size: 1.8rem;
  }
  .contact-method {
    padding: 18px;
  }
  .faq-question {
    font-size: 1rem;
    padding: 20px 0;
  }
  body.has-sticky-cta {
    padding-bottom: 80px;
  }
  .service-block h2 {
    font-size: 1.4rem;
  }
  .service-block p {
    font-size: 1rem;
  }
  .google-rating {
    padding: 10px 16px;
  }
  .google-rating svg {
    width: 60px;
    height: auto;
  }
}

/* Small mobile - 375px and below */
@media (max-width: 480px) {
  header {
    padding: 0 16px;
  }
  .logo {
    font-size: 1.1rem;
    gap: 8px;
  }
  .logo-icon {
    width: 28px;
    height: 28px;
  }
  .logo-icon svg {
    width: 14px;
    height: 14px;
  }
  .hero {
    padding-top: 90px;
    padding-bottom: 50px;
  }
  .hero h1 {
    font-size: 2rem;
    letter-spacing: 1px;
  }
  .hero-badge {
    padding: 10px 14px;
    gap: 8px;
    margin-bottom: 20px;
  }
  .hero-badge span {
    font-size: 0.8rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }
  .hero-buttons {
    margin-bottom: 28px;
  }
  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    gap: 8px;
  }
  .trust-item {
    font-size: 0.85rem;
  }
  section {
    padding: 50px 16px;
  }
  .page-hero {
    padding: 100px 16px 40px;
    min-height: 30vh;
  }
  .page-hero h1 {
    font-size: 1.8rem;
  }
  .page-hero p {
    font-size: 1rem;
  }
  .section-label {
    font-size: 0.7rem;
    padding: 6px 12px;
  }
  .problem-card {
    padding: 18px;
    gap: 12px;
  }
  .problem-icon {
    width: 40px;
    height: 40px;
  }
  .problem-icon svg {
    width: 20px;
    height: 20px;
  }
  .problem-content p {
    font-size: 0.9rem;
  }
  .problem-link {
    font-size: 0.85rem;
  }
  .process-number {
    width: 56px;
    height: 56px;
  }
  .process-number svg {
    width: 24px;
    height: 24px;
  }
  .process-step h3 {
    font-size: 1.1rem;
  }
  .process-step p {
    font-size: 0.9rem;
  }
  .reviews-header h2 {
    font-size: 1.6rem;
  }
  .review-card {
    padding: 22px;
  }
  .review-text {
    font-size: 0.95rem;
  }
  .google-rating {
    flex-direction: column;
    gap: 8px;
  }
  .faq-question {
    font-size: 0.95rem;
    padding: 18px 0;
  }
  .faq-answer-inner {
    font-size: 0.95rem;
  }
  .map-content h2 {
    font-size: 1.6rem;
  }
  .suburb-tag {
    font-size: 0.8rem;
    padding: 5px 10px;
  }
  .cta h2 {
    font-size: 1.6rem;
  }
  .cta > p, .cta-inner > p {
    font-size: 0.95rem;
  }
  .quote-form {
    padding: 24px 16px;
  }
  .quote-form h2 {
    font-size: 1.2rem;
  }
  .quote-info h2 {
    font-size: 1.5rem;
  }
  .quote-info > p {
    font-size: 1rem;
  }
  .contact-method {
    padding: 16px;
    gap: 14px;
  }
  .contact-method-icon {
    width: 42px;
    height: 42px;
  }
  .contact-method h3 {
    font-size: 0.95rem;
  }
  .contact-method p {
    font-size: 0.85rem;
  }
  .contact-method .contact-value {
    font-size: 0.95rem;
  }
  .response-badge {
    font-size: 0.8rem;
    padding: 8px 14px;
  }
  footer {
    padding: 50px 16px 30px;
  }
  .footer-brand p {
    font-size: 0.9rem;
  }
  .footer-links a, .footer-contact a {
    font-size: 0.9rem;
  }
  .footer-bottom p {
    font-size: 0.8rem;
  }
  .service-block-visual {
    height: 160px;
  }
  .service-block h2 {
    font-size: 1.25rem;
  }
  .service-block p {
    font-size: 0.95rem;
  }
  .check-list li {
    font-size: 0.9rem;
    gap: 10px;
  }
  .check-list svg {
    width: 18px;
    height: 18px;
  }
  .about-image {
    max-width: 200px;
  }
  .about-text p {
    font-size: 1rem;
  }
  .about-text p:first-of-type {
    font-size: 1.1rem;
  }
  .feature-card {
    padding: 22px;
  }
  .feature-card h3 {
    font-size: 0.95rem;
  }
  .feature-card p {
    font-size: 0.9rem;
  }
  .form-group input, 
  .form-group select, 
  .form-group textarea {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  .form-group label {
    font-size: 0.9rem;
  }
}

/* Extra small screens - 360px and below */
@media (max-width: 360px) {
  .logo {
    font-size: 1rem;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
  .hero-badge {
    padding: 8px 12px;
  }
  .hero-badge .stars {
    font-size: 0.9rem;
  }
  .hero-badge span {
    font-size: 0.75rem;
  }
  .btn {
    padding: 11px 16px;
    font-size: 0.85rem;
  }
  .page-hero h1 {
    font-size: 1.6rem;
  }
  .cta h2 {
    font-size: 1.4rem;
  }
  .quote-info h2 {
    font-size: 1.4rem;
  }
}

/* HERO MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 100px 24px 60px;
  }
  .hero::after {
    height: 80px;
  }
}

/* === UTILITY CLASSES (replacing inline styles) === */
.section-heading { font-size: clamp(1.6rem, 4vw, 2.8rem); color: var(--charcoal); }
.section-heading-sm { font-size: clamp(1.5rem, 3.5vw, 2.2rem); color: var(--charcoal, #1a1a1a); margin-bottom: 30px; line-height: 1.3; }
.section-label { font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--charcoal); margin: 0; }
.section-subtitle { color: var(--mid-grey); font-size: 1.1rem; margin-top: 12px; }
.section-spacer { margin-bottom: 50px; }
.section-padded { padding: 60px 20px; max-width: 1100px; margin: 0 auto; }
.section-bg-light { background: var(--light); padding: 90px 40px; }
.text-center { text-align: center; }
.text-white { color: white; }
.text-white-muted { color: rgba(255,255,255,0.8); }
.text-white-soft { color: rgba(255,255,255,0.9); font-size: 1.1rem; }
.text-white-dim { color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; max-width: 1000px; margin: 50px auto 0; }
.process-card { display: flex; align-items: center; gap: 14px; background: var(--white); padding: 16px 20px; border-radius: 10px; border: 1px solid var(--border); }
.process-icon { width: 44px; height: 44px; background: var(--accent-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.process-label { font-weight: 600; font-size: 0.9rem; color: var(--charcoal); }

.faq-title { font-size: 1.25rem; color: var(--charcoal, #1a1a1a); margin: 0; padding: 0; }
.faq-desc { font-size: 0.85rem; color: var(--slate); margin-top: 6px; }
.faq-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0; }

.suburb-grid { display: grid; gap: 20px; font-size: 1.05rem; line-height: 1.8; color: #333; }
.hero-badges { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin: 20px 0; font-size: 1.1rem; color: white; }
.hero-contact-info { font-size: 0.9rem; color: var(--slate); display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.hero-contact-info-last { font-size: 0.9rem; color: var(--slate); display: flex; align-items: center; gap: 10px; }

.btn-green { background: #16a34a; border: none; cursor: pointer; color: white; }
.btn-green-dark { background: #15803d; }
.btn-full { width: 100%; }
.btn-submit { width: 100%; border: none; cursor: pointer; background: #16a34a; }

.cta-section-bg { background: var(--accent); color: white; }
.cta-heading { color: white; font-size: clamp(1.6rem, 4vw, 2.5rem); }
.cta-badges { margin: 24px 0; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.cta-badge { background: rgba(255,255,255,0.2); border-color: transparent; color: white; padding: 8px 16px; border-radius: 20px; display: inline-flex; align-items: center; gap: 6px; font-size: 0.9rem; }
.rounded-overflow { border-radius: 12px; overflow: hidden; }
.items-center { align-items: center; }

.reviews-label { text-align: center; color: var(--accent); font-weight: 600; margin-bottom: 8px; }
.reviews-subtitle { text-align: center; margin-bottom: 28px; }
.hidden { display: none; }
.mt-sm { margin-top: 16px; font-weight: 600; }
.mt-md { margin-top: 20px; }
.mt-lg { margin-top: 24px; }

.service-visual-img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.color-accent { color: var(--accent); }
.color-purple { color: var(--purple); }
.color-blue { color: var(--blue); }
.color-green { color: var(--green); }
.color-yellow { color: var(--yellow); }
.bg-white { background: var(--white); }


/* ============================================
   SCROLL ANIMATIONS & MICRO-INTERACTIONS
   ============================================ */

/* Scroll reveal - elements start invisible, animate in */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children - each child delays slightly */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.19s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.26s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.33s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.47s; opacity: 1; transform: translateY(0); }

/* Slide from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale up */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Hover lift for cards */
.service-photo-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-photo-card:hover {
  transform: translateY(-6px);
}

/* Process step hover */
.process-step {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

/* Review card hover */
.review-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* FAQ item hover */
.faq-item {
  transition: border-color 0.3s ease;
}
.faq-item:hover {
  border-color: var(--accent);
}

/* Suburb tag hover */
.suburb-tag {
  transition: transform 0.2s ease, background 0.2s ease;
}
.suburb-tag:hover {
  transform: translateY(-2px) scale(1.03);
}

/* CTA button pulse on hover */
.btn-primary:hover, .cta .btn:hover {
  transform: scale(1.04);
  transition: transform 0.2s ease, background 0.2s ease;
}

/* Tip box accent animation */
.tip-box {
  border-left: 4px solid var(--accent);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.tip-box:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* Stat badge hover */
.stat-badge {
  transition: transform 0.2s ease, background 0.2s ease;
}
.stat-badge:hover {
  transform: scale(1.05);
  background: var(--accent-light, #f0f7ff);
}

/* Smooth number icon */
.process-number {
  transition: background 0.3s ease, transform 0.3s ease;
}
.process-step:hover .process-number {
  transform: scale(1.1);
  background: var(--accent);
}
.process-step:hover .process-number svg {
  stroke: white;
}

/* Content accent bar animation */
.content-accent-bar {
  transition: width 0.6s ease-out;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}



/* ============================================
   PROCESS SECTION VARIANTS
   ============================================ */

/* --- VARIANT A: TIMELINE (horizontal connecting line) --- */
.process-section--timeline .process-grid {
  position: relative;
  display: flex;
  gap: 0;
  justify-content: center;
  padding-top: 20px;
}
.process-section--timeline .process-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 15%;
  right: 15%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  z-index: 0;
}
.process-section--timeline .process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  background: white;
  border-radius: 16px;
  padding: 32px 20px;
  margin: 0 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: none;
}
.process-section--timeline .process-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.process-section--timeline .process-number svg {
  stroke: white;
  width: 24px;
  height: 24px;
}
@media (max-width: 768px) {
  .process-section--timeline .process-grid {
    flex-direction: column;
    gap: 16px;
  }
  .process-section--timeline .process-grid::before {
    top: 0;
    bottom: 0;
    left: 28px;
    right: auto;
    width: 3px;
    height: 100%;
  }
  .process-section--timeline .process-step {
    margin: 0;
    padding-left: 70px;
    text-align: left;
  }
  .process-section--timeline .process-number {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
  }
}

/* --- VARIANT B: VERTICAL STACKED with step counter --- */
.process-section--vertical .process-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 60px;
}
.process-section--vertical .process-grid::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent-light, #e0e7ff);
}
.process-section--vertical .process-step {
  position: relative;
  padding: 24px 28px;
  border: none;
  border-left: none;
  background: transparent;
  box-shadow: none;
  counter-increment: step-counter;
}
.process-section--vertical .process-step::before {
  content: counter(step-counter);
  position: absolute;
  left: -60px;
  top: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.process-section--vertical .process-grid {
  counter-reset: step-counter;
}
.process-section--vertical .process-number {
  display: none;
}
.process-section--vertical .process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--accent-dark, var(--accent));
}
.process-section--vertical .process-step p {
  color: #555;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .process-section--vertical .process-grid {
    padding-left: 50px;
  }
  .process-section--vertical .process-step::before {
    left: -50px;
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}

/* --- VARIANT C: MINIMAL with large step numbers --- */
.process-section--minimal .process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.process-section--minimal .process-step {
  text-align: left;
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0;
  position: relative;
  counter-increment: min-step;
}
.process-section--minimal .process-step::before {
  content: counter(min-step, decimal-leading-zero);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--accent-light, #e0e7ff);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.process-section--minimal .process-grid {
  counter-reset: min-step;
}
.process-section--minimal .process-number {
  display: none;
}
.process-section--minimal .process-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
@media (max-width: 768px) {
  .process-section--minimal .process-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* --- VARIANT D: ELEVATED CARDS with accent stripe --- */
.process-section--cards .process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.process-section--cards .process-step {
  background: white;
  border: none;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  counter-increment: card-step;
}
.process-section--cards .process-step::before {
  content: '';
  display: block;
  height: 4px;
  background: var(--accent);
}
.process-section--cards .process-step > * {
  padding: 0 24px;
}
.process-section--cards .process-step h3 {
  padding-top: 20px;
}
.process-section--cards .process-step p {
  padding-bottom: 24px;
}
.process-section--cards .process-grid {
  counter-reset: card-step;
}
.process-section--cards .process-number {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-light, #f0f7ff);
  margin: 20px 24px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-section--cards .process-number svg {
  stroke: var(--accent);
  width: 22px;
  height: 22px;
}
@media (max-width: 768px) {
  .process-section--cards .process-grid {
    grid-template-columns: 1fr;
  }
}



/* ============================================
   SUBURB TAG STYLES & VARIANTS
   ============================================ */

/* Base suburb tag link styling (replaces inline styles) */
.suburbs-list a.suburb-tag {
  background: rgba(255,255,255,0.15);
  border-color: transparent;
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  transition: background 0.2s ease, transform 0.2s ease;
}
.suburbs-list a.suburb-tag:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

/* --- VARIANT: PILLS (default enhanced) --- */
.suburbs--pills .suburbs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.suburbs--pills a.suburb-tag {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 500;
}
.suburbs--pills a.suburb-tag:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
}
.suburbs--pills .suburb-tag.cta-badge {
  background: var(--accent);
  border-color: var(--accent);
  font-weight: 700;
}

/* --- VARIANT: GRID CARDS --- */
.suburbs--grid .suburbs-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}
.suburbs--grid a.suburb-tag,
.suburbs--grid .suburb-tag {
  display: block;
  text-align: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 14px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.suburbs--grid a.suburb-tag:hover {
  background: rgba(255,255,255,0.2);
  border-color: var(--accent);
  transform: translateY(-3px);
}
.suburbs--grid .suburb-tag.cta-badge {
  background: var(--accent);
  border-color: var(--accent);
  font-weight: 700;
  grid-column: 1 / -1;
  font-size: 1.05rem;
}
@media (max-width: 768px) {
  .suburbs--grid .suburbs-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- VARIANT: LINE LIST (vertical with markers) --- */
.suburbs--lines .suburbs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: 600px;
}
.suburbs--lines a.suburb-tag,
.suburbs--lines .suburb-tag {
  display: inline-block;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 6px 16px 6px 0;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  position: relative;
}
.suburbs--lines a.suburb-tag::after {
  content: '·';
  margin-left: 16px;
  color: var(--accent);
  font-weight: bold;
  font-size: 1.4em;
}
.suburbs--lines a.suburb-tag:last-child::after {
  content: '';
}
.suburbs--lines a.suburb-tag:hover {
  color: white;
  background: transparent;
  transform: none;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.suburbs--lines .suburb-tag.cta-badge {
  font-weight: 700;
  color: white;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
  background: transparent;
}

/* --- VARIANT: TAG CLOUD (varied sizes) --- */
.suburbs--cloud .suburbs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.suburbs--cloud a.suburb-tag {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.85rem;
}
.suburbs--cloud a.suburb-tag:nth-child(3n+1) {
  font-size: 1rem;
  padding: 8px 18px;
}
.suburbs--cloud a.suburb-tag:nth-child(5n+2) {
  font-size: 0.8rem;
  opacity: 0.8;
}
.suburbs--cloud a.suburb-tag:hover {
  background: var(--accent);
  border-color: var(--accent);
  opacity: 1;
}
.suburbs--cloud .suburb-tag.cta-badge {
  background: var(--accent);
  border-color: var(--accent);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 10px 22px;
}



/* ============================================
   REVIEW SECTION VARIANTS
   ============================================ */

/* --- VARIANT: FEATURED (first review large, rest small) --- */
.reviews--featured .review-grid,
.reviews--featured .reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.reviews--featured .review-grid > :first-child,
.reviews--featured .reviews-grid > :first-child {
  grid-column: 1 / -1;
  font-size: 1.1em;
  padding: 32px;
  border-left: 4px solid var(--accent);
  background: linear-gradient(135deg, white, var(--accent-light, #f8faff));
}
@media (max-width: 768px) {
  .reviews--featured .review-grid,
  .reviews--featured .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* --- VARIANT: SCROLL (horizontal scrolling) --- */
.reviews--scroll .review-grid,
.reviews--scroll .reviews-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  padding-bottom: 16px;
  -webkit-overflow-scrolling: touch;
}
.reviews--scroll .review-grid > *,
.reviews--scroll .reviews-grid > * {
  min-width: 300px;
  max-width: 340px;
  flex-shrink: 0;
  scroll-snap-align: start;
}
.reviews--scroll .review-grid::-webkit-scrollbar,
.reviews--scroll .reviews-grid::-webkit-scrollbar {
  height: 6px;
}
.reviews--scroll .review-grid::-webkit-scrollbar-track,
.reviews--scroll .reviews-grid::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 3px;
}
.reviews--scroll .review-grid::-webkit-scrollbar-thumb,
.reviews--scroll .reviews-grid::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

/* --- VARIANT: MASONRY-LIKE (varied heights) --- */
.reviews--masonry .review-grid,
.reviews--masonry .reviews-grid {
  column-count: 3;
  column-gap: 16px;
}
.reviews--masonry .review-grid > *,
.reviews--masonry .reviews-grid > * {
  break-inside: avoid;
  margin-bottom: 16px;
  display: inline-block;
  width: 100%;
}
@media (max-width: 768px) {
  .reviews--masonry .review-grid,
  .reviews--masonry .reviews-grid {
    column-count: 1;
  }
}

/* ============================================
   SERVICE CARD LAYOUT VARIANTS
   ============================================ */

/* --- VARIANT: MOSAIC (2 large + 4 small) --- */
.services--mosaic .service-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 16px;
}
.services--mosaic .service-photo-grid > :nth-child(1) {
  grid-row: 1 / 3;
}
.services--mosaic .service-photo-grid > :nth-child(1) img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .services--mosaic .service-photo-grid {
    grid-template-columns: 1fr;
  }
  .services--mosaic .service-photo-grid > :nth-child(1) {
    grid-row: auto;
  }
}

/* --- VARIANT: ALTERNATING (full-width alternating rows) --- */
.services--alternating .service-photo-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.services--alternating .service-photo-card {
  display: flex;
  flex-direction: row;
  border-radius: 0;
  min-height: 200px;
}
.services--alternating .service-photo-card:nth-child(even) {
  flex-direction: row-reverse;
}
.services--alternating .service-photo-card img {
  width: 50%;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
}
.services--alternating .service-photo-overlay {
  width: 50%;
  position: relative;
  opacity: 1;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 32px;
}
.services--alternating .service-photo-overlay .service-photo-label {
  color: var(--accent);
  font-size: 1.3rem;
}
.services--alternating .service-photo-overlay p {
  color: #555;
}
.services--alternating .service-photo-card:nth-child(even) .service-photo-overlay {
  background: var(--accent-light, #f8faff);
}
@media (max-width: 768px) {
  .services--alternating .service-photo-card,
  .services--alternating .service-photo-card:nth-child(even) {
    flex-direction: column;
  }
  .services--alternating .service-photo-card img,
  .services--alternating .service-photo-overlay {
    width: 100%;
  }
}

/* --- VARIANT: COMPACT (3 column, tighter) --- */
.services--compact .service-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.services--compact .service-photo-card {
  border-radius: 8px;
}
.services--compact .service-photo-card img {
  height: 160px;
}
.services--compact .service-photo-overlay {
  padding: 12px 16px;
}
.services--compact .service-photo-label {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .services--compact .service-photo-grid {
    grid-template-columns: 1fr 1fr;
  }
}



/* ============================================
   HERO SECTION VARIANTS
   ============================================ */

/* --- VARIANT: ANGLED bottom edge --- */
.hero--angled::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: white;
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
  z-index: 2;
}

/* --- VARIANT: WAVE bottom edge --- */
.hero--wave::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: white;
  clip-path: path('M0,40 Q240,0 480,40 T960,40 L960,60 L0,60 Z');
  z-index: 2;
}
@media (min-width: 960px) {
  .hero--wave::after {
    clip-path: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'><path d='M0,40 Q360,0 720,40 T1440,40 L1440,60 L0,60 Z'/></svg>#path");
  }
}

/* --- VARIANT: LEFT-ALIGNED text --- */
.hero--left .hero-content {
  text-align: left;
  align-items: flex-start;
  max-width: 600px;
}
.hero--left .hero-badges,
.hero--left .hero-btns {
  justify-content: flex-start;
}
.hero--left h1 {
  text-align: left;
}

/* --- VARIANT: SPLIT (content left, accent block right) --- */
.hero--split::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 35%;
  background: var(--accent);
  opacity: 0.15;
  z-index: 1;
}
.hero--split .hero-content {
  text-align: left;
  align-items: flex-start;
  max-width: 600px;
  position: relative;
  z-index: 2;
}

/* ============================================
   CTA SECTION VARIANTS
   ============================================ */

/* --- VARIANT: BANNER (full-width accent bg strip) --- */
.cta--banner {
  background: var(--accent);
  padding: 48px 24px;
}
.cta--banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* --- VARIANT: CARD (centered floating card) --- */
.cta--card {
  padding: 60px 24px;
  background: #f8f9fa;
}
.cta--card .container {
  max-width: 600px;
  background: white;
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border-top: 4px solid var(--accent);
}

/* --- VARIANT: MINIMAL (no background, just text + button) --- */
.cta--minimal {
  background: transparent;
  border-top: 1px solid #e5e7eb;
  padding: 40px 24px;
}
.cta--minimal .container {
  text-align: center;
}
.cta--minimal h2 {
  color: #111;
}
.cta--minimal p {
  color: #555;
}

/* ============================================
   FAQ SECTION VARIANTS
   ============================================ */

/* --- VARIANT: ACCORDION BORDER --- */
.faq--bordered .faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 12px;
  padding: 20px 24px;
  background: white;
}
.faq--bordered .faq-item:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* --- VARIANT: LEFT-ACCENT --- */
.faq--accent .faq-item {
  border-left: 3px solid var(--accent-light, #e0e7ff);
  padding-left: 20px;
  margin-bottom: 20px;
  transition: border-color 0.3s ease;
}
.faq--accent .faq-item:hover {
  border-left-color: var(--accent);
}

/* --- VARIANT: CARDS GRID (2 columns) --- */
.faq--grid .faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.faq--grid .faq-item {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid #f0f0f0;
}
@media (max-width: 768px) {
  .faq--grid .faq-list {
    grid-template-columns: 1fr;
  }
}



/* ============================================
   CTA BUTTON CONTRAST FIXES
   ============================================ */

/* Banner variant has accent bg - buttons need white treatment */
.cta--banner .btn-primary,
.cta--banner .btn {
  background: white;
  color: var(--accent);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.cta--banner .btn-primary:hover,
.cta--banner .btn:hover {
  background: #f0f0f0;
  color: var(--accent-dark, var(--accent));
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Card variant has white bg - accent buttons work fine, but outline needs contrast */
.cta--card .btn-outline {
  border-color: var(--accent);
  color: var(--accent);
}

/* Minimal variant has light bg - ensure buttons are clearly accent */
.cta--minimal .btn-primary {
  background: var(--accent);
  color: white;
}

/* Also fix any btn inside .cta-section-bg (the map/suburb dark section) */
.cta-section-bg .btn-primary,
.cta-section-bg .btn {
  background: white;
  color: var(--accent);
}
.cta-section-bg .btn-primary:hover,
.cta-section-bg .btn:hover {
  background: #f0f0f0;
}



/* === FIX 1: HERO TEXT CONTRAST (QA Audit 2026-02-26) === */
.hero h1,
.page-hero h1 {
  text-shadow: 0 2px 12px rgba(0,0,0,0.7), 0 1px 3px rgba(0,0,0,0.9);
}
.hero-subtitle,
.page-hero p {
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  color: rgba(255, 255, 255, 0.95) !important;
}


/* === FIX 2: CTA BUTTON PROMINENCE ON MOBILE (QA Audit 2026-02-26) === */
@media (max-width: 768px) {
  .btn-primary,
  .hero-buttons .btn-primary,
  .cta .btn-primary {
    font-size: 1.15rem !important;
    padding: 16px 32px !important;
    min-height: 52px;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(230, 92, 0, 0.45);
    font-weight: 700;
  }
  .hero-buttons {
    gap: 12px;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-buttons .btn {
    text-align: center;
    width: 100%;
  }
  /* Phone CTA sticky bar on mobile */
  .phone-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--accent);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
  }
  .phone-sticky a {
    color: white;
    text-decoration: none;
  }
}
@media (min-width: 769px) {
  .phone-sticky { display: none; }
}


/* === FIX 3: TEXT READABILITY - Break up walls (QA Audit 2026-02-26) === */
.faq-answer,
.seo-content p,
.content-section p {
  max-width: 72ch;
  line-height: 1.75;
  margin-bottom: 1em;
}
.faq-answer {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.seo-content {
  column-count: 1;
}
.seo-content p {
  margin-bottom: 1.2em;
}
/* Service descriptions */
.service-detail p,
.service-text p {
  max-width: 68ch;
  line-height: 1.7;
}


/* === SERVICES HERO FIX (QA Audit 2026-02-26) === */
.page-hero--services {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.82) 0%, rgba(26, 26, 26, 0.72) 100%), url('images/tradie_hero.webp');
  background-size: cover;
  background-position: center;
  min-height: 45vh;
  text-align: left;
  justify-content: flex-start;
}
.page-hero--services .hero-inner {
  max-width: 650px;
}
.page-hero--services p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  max-width: 55ch;
}
.page-hero--services .hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .page-hero--services {
    min-height: 35vh;
    padding: 100px 24px 50px;
  }
  .page-hero--services .hero-cta-row {
    flex-direction: column;
  }
  .page-hero--services .hero-cta-row .btn {
    width: 100%;
    text-align: center;
  }
}


/* === SERVICE BLOCK READABILITY FIX (QA Audit 2026-02-26) === */
.service-block-content p {
  max-width: 60ch;
  line-height: 1.7;
  font-size: 0.98rem;
}
.service-block-content .check-list li {
  line-height: 1.5;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* FAQ section title spacing fix */
.faq-section .section-title {
  margin-bottom: 32px;
}
.section-title {
  margin-bottom: 28px;
}

/* CTA card text fix - prevent white on white */
.cta--card h2 {
  color: var(--charcoal, #1a1a1a);
}
.cta--card p,
.cta--card .cta-inner p {
  color: var(--slate, #4a5568);
}
