/* ============================================
   EZI JUNK REMOVAL - Main Stylesheet
   Brand Colors: Red #E02020, Dark #1a1a1a, White #ffffff
   ============================================ */

/* ---- Google Fonts & Variables ---- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;600&display=swap');

:root {
  --red: #E02020;
  --red-dark: #b51919;
  --red-light: #ff4444;
  --dark: #1a1a1a;
  --dark-2: #2a2a2a;
  --dark-3: #333333;
  --grey: #666666;
  --light-grey: #f5f5f5;
  --white: #ffffff;
  --border: #e0e0e0;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-hover: 0 8px 40px rgba(224,32,32,0.2);
  --transition: all 0.3s ease;
  --radius: 8px;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

ul { list-style: none; }

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

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

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--red);
}

.btn-outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}

.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
}

/* ---- Top Bar ---- */
.topbar {
  background: var(--dark);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.85rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar a {
  color: var(--white);
  opacity: 0.85;
}

.topbar a:hover { color: var(--red-light); opacity: 1; }

.topbar-contact {
  display: flex;
  gap: 20px;
  align-items: center;
}

.topbar-contact span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-contact i { color: var(--red); font-size: 0.9rem; }

.topbar-phone a {
  color: var(--red-light);
  font-weight: 700;
  font-size: 1rem;
}

/* ---- Navigation ---- */
.navbar {
  background: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  height: 110px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0;
}

.navbar-logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
  padding: 5px 0;
}

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

.logo-text .brand-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--dark);
  letter-spacing: -0.5px;
  line-height: 1;
}

.logo-text .brand-name span { color: var(--red); }

.logo-text .brand-tagline {
  font-size: 0.7rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 26px 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark-3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 240px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  border-top: 3px solid var(--red);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1001;
}

.nav-links > li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  font-size: 0.88rem;
  color: var(--dark-3);
  border-bottom: 1px solid var(--border);
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}

.dropdown-menu li a:hover {
  color: var(--red);
  background: var(--light-grey);
  padding-left: 26px;
}

.dropdown-menu li:last-child a { border-bottom: none; }

.nav-cta {
  margin-left: 16px;
}

.nav-cta .btn-nav-quote {
  padding: 8px 18px;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  border-radius: 50px;
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
}

.nav-cta .btn-nav-quote:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(224,32,32,0.3);
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---- Page Header / Hero Banner ---- */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--white);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="40" fill="rgba(224,32,32,0.08)"/><circle cx="10" cy="80" r="30" fill="rgba(224,32,32,0.05)"/></svg>');
  background-size: cover;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
  position: relative;
}

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

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 20px;
  position: relative;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 0.85rem;
  opacity: 0.7;
  position: relative;
}

.breadcrumb a:hover { opacity: 1; color: var(--red-light); }
.breadcrumb i { font-size: 0.7rem; }

/* ---- Home Hero Section ---- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(26,26,26,0.92) 0%, rgba(26,26,26,0.75) 50%, rgba(224,32,32,0.4) 100%),
    url('../images/joel-truck-trailer.jpg') center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.1;
}

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

.hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  padding: 16px 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* ---- Sections ---- */
.section {
  padding: 80px 0;
}

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

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

.section-red {
  background: var(--red);
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}

.section-title span { color: var(--red); }

.section-subtitle {
  color: var(--grey);
  font-size: 1.05rem;
  line-height: 1.8;
}

.section-dark .section-subtitle { color: rgba(255,255,255,0.7); }

/* ---- Service Cards ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-bottom-color: var(--red);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

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

.service-card-body {
  padding: 24px;
}

.service-card-icon {
  width: 50px;
  height: 50px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.service-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-card-body p {
  color: var(--grey);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.service-card-body a {
  color: var(--red);
  font-weight: 600;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-card-body a:hover { gap: 10px; }

/* ---- How It Works ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}

.step {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}

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

.step-number {
  width: 60px;
  height: 60px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.step p { color: var(--grey); font-size: 0.9rem; }

/* ---- Pricing ---- */

/* New load-based pricing grid */
.load-pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}

@media (max-width: 1024px) {
  .load-pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .load-pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
  .load-pricing-grid { grid-template-columns: 1fr; }
}

.load-card {
  background: var(--white);
  border: 3px solid var(--dark);
  border-radius: 12px;
  padding: 0;
  text-align: center;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  cursor: default;
}

.load-card:hover {
  border-color: var(--red);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(224,32,32,0.2);
}

.load-card.featured {
  border-color: var(--red);
  box-shadow: 0 8px 32px rgba(224,32,32,0.25);
  transform: scale(1.03);
}

.load-card.featured:hover {
  transform: scale(1.03) translateY(-5px);
}

.load-card-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 0;
}

.load-card-header {
  padding: 40px 16px 12px;
  border-bottom: 2px solid var(--border);
}

.load-card.featured .load-card-header {
  padding-top: 44px;
}

.load-card-header h3 {
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  color: var(--dark);
}

/* Truck fill visual */
.truck-visual {
  width: 100%;
  padding: 16px 12px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.truck-icon-wrap {
  position: relative;
  width: 100%;
  max-width: 120px;
}

.truck-body {
  width: 100%;
  height: 48px;
  background: #eee;
  border-radius: 4px;
  border: 2px solid #ccc;
  position: relative;
  overflow: hidden;
}

.truck-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  background: var(--red);
  opacity: 0.85;
  transition: width 0.6s ease;
}

.truck-fill-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.load-size-tag {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  padding: 4px 14px;
  border-radius: 50px;
  margin: 10px 0 6px;
}

.load-card.featured .load-size-tag {
  background: var(--red);
}

.load-weight {
  font-size: 0.75rem;
  color: var(--grey);
  font-weight: 600;
  margin-bottom: 4px;
}

.load-card-body {
  padding: 14px 16px 20px;
}

.load-price {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 2px;
}

.load-price-from {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grey);
  display: block;
  margin-bottom: 6px;
}

.load-card-items {
  font-size: 0.78rem;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 14px;
}

.load-cta {
  display: inline-block;
  width: 100%;
  padding: 9px 10px;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
}

.load-cta:hover {
  background: var(--red);
  transform: translateY(-1px);
}

.load-card.featured .load-cta {
  background: var(--red);
}

.load-card.featured .load-cta:hover {
  background: var(--red-dark);
}

.pricing-note {
  text-align: center;
  margin-top: 28px;
  padding: 16px 20px;
  background: var(--light-grey);
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--grey);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-note strong { color: var(--dark); }

/* Legacy 3-card pricing (keep for fallback) */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  border: 2px solid var(--border);
}

.pricing-card.featured {
  border-color: var(--red);
  transform: scale(1.04);
}

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

.pricing-card.featured:hover { transform: scale(1.04) translateY(-4px); }

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: 50px;
}

.pricing-icon {
  font-size: 2.5rem;
  color: var(--red);
  margin-bottom: 16px;
}

.pricing-card h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.pricing-price {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--red);
  margin: 12px 0;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--grey);
}

.pricing-desc {
  color: var(--grey);
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  text-align: left;
}

.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.pricing-features li i {
  color: var(--red);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ---- Why Choose Us ---- */
/* ---- Service Card Before/After ---- */
.service-card-ba { padding: 0; overflow: hidden; }

.sc-ba-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}

.sc-ba-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.service-card:hover .sc-ba-img { transform: scale(1.05); }

.sc-ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  z-index: 2;
  transform: translateX(-50%);
}

.sc-ba-labels {
  position: absolute;
  bottom: 10px;
  left: 0; right: 0;
  display: flex;
  justify-content: space-around;
  z-index: 3;
  pointer-events: none;
}

.sc-ba-lbl {
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 20px;
}

.sc-ba-lbl.before { background: rgba(0,0,0,0.55); color: #fff; }
.sc-ba-lbl.after  { background: rgba(39,174,96,0.85); color: #fff; }

/* ---- End Service Card BA ---- */

.features-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.features-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .features-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .features-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .features-grid-4 { grid-template-columns: 1fr; }
  .features-grid-3 { grid-template-columns: 1fr; }
}

/* ---- Items Grid – 3 per row (We Take Almost Everything) ---- */
.items-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 8px;
}

.item-box {
  background: var(--light-grey);
  padding: 18px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
  border: 2px solid transparent;
}

.item-box:hover {
  background: var(--white);
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.item-box i {
  color: var(--red);
  font-size: 1.4rem;
  width: 24px;
  flex-shrink: 0;
  transition: var(--transition);
}

.item-box:hover i { color: var(--red-dark); }

@media (max-width: 768px) {
  .items-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .items-grid-3 { grid-template-columns: 1fr; }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.feature-content p {
  color: var(--grey);
  font-size: 0.88rem;
}

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}

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

.testimonial-card::before {
  content: '"';
  font-family: 'Poppins', sans-serif;
  font-size: 5rem;
  color: var(--red);
  opacity: 0.15;
  position: absolute;
  top: 10px;
  left: 16px;
  line-height: 1;
}

.stars {
  color: #f59e0b;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.testimonial-text {
  color: var(--dark-3);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.author-info strong {
  display: block;
  font-size: 0.92rem;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--grey);
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* ---- Contact Section ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  padding: 40px;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius);
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--white);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--red-light);
  margin-bottom: 4px;
}

.contact-item-text a { color: var(--white); }
.contact-item-text a:hover { color: var(--red-light); }

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--dark-3);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(224,32,32,0.1);
}

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

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

/* ---- Footer ---- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand .logo-text .brand-name { color: var(--white); }

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0.7;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.footer-links li a i {
  font-size: 0.7rem;
  color: var(--red);
}

/* Suburb Links Grid */
.suburb-links-section {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 32px 0;
}

.suburb-links-section h4 {
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.suburb-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.suburb-grid a {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  text-align: center;
  transition: var(--transition);
}

.suburb-grid a:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

/* Footer Bottom */
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom a { color: var(--red-light); }

/* ---- About Page ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-img-wrap img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--red);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.about-img-badge strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.about-img-badge span {
  font-size: 0.8rem;
  opacity: 0.9;
}

.about-content .section-tag { text-align: left; }
.about-content .section-title { text-align: left; }

.about-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
}

.about-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.about-list li i {
  color: var(--red);
  font-size: 0.9rem;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
}

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.team-avatar {
  width: 80px;
  height: 80px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
}

.team-card h4 { font-size: 1rem; margin-bottom: 4px; }
.team-card span { font-size: 0.85rem; color: var(--grey); }

/* ---- SEO Suburb Pages ---- */
.suburb-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--white);
  padding: 80px 0 50px;
  text-align: center;
}

.suburb-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 10px; }
.suburb-hero h1 span { color: var(--red); }
.suburb-hero p { opacity: 0.8; max-width: 600px; margin: 0 auto 20px; }

.suburb-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.suburb-sidebar {
  position: sticky;
  top: 90px;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 24px;
}

.sidebar-card-header {
  background: var(--red);
  color: var(--white);
  padding: 16px 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.sidebar-card-body {
  padding: 20px;
}

.sidebar-price-list {
  list-style: none;
}

.sidebar-price-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.sidebar-price-list li:last-child { border-bottom: none; }
.sidebar-price-list li strong { color: var(--red); }

.nearby-suburbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nearby-suburbs a {
  background: var(--light-grey);
  color: var(--dark);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  transition: var(--transition);
}

.nearby-suburbs a:hover {
  background: var(--red);
  color: var(--white);
}

.suburb-article h2 {
  font-size: 1.5rem;
  margin: 28px 0 12px;
  color: var(--dark);
}

.suburb-article p {
  color: var(--grey);
  margin-bottom: 16px;
  line-height: 1.8;
}

.suburb-article ul {
  list-style: none;
  margin: 12px 0 20px;
}

.suburb-article ul li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: var(--dark-3);
  font-size: 0.95rem;
}

.suburb-article ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

/* ---- FAQ ---- */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: var(--white);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.faq-question:hover { background: var(--light-grey); color: var(--red); }

.faq-question.active {
  background: var(--red);
  color: var(--white);
}

.faq-question i { transition: var(--transition); }
.faq-question.active i { transform: rotate(180deg); }

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.8;
}

.faq-answer.open {
  max-height: 300px;
  padding: 16px 24px;
}

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; height: 100%; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .suburb-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }

  .navbar-logo img { height: 78px; }
  .navbar-inner { height: 90px; }

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 0 32px;
    transition: right 0.4s ease;
    overflow-y: auto;
    z-index: 999;
  }

  .nav-links.open { right: 0; }

  .nav-links > li { width: 100%; }

  .nav-links > li > a {
    color: var(--white);
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.95rem;
  }

  .nav-links > li > a:hover,
  .nav-links > li > a.active {
    color: var(--red-light);
    border-bottom-color: rgba(255,255,255,0.08);
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    background: rgba(255,255,255,0.05);
    display: none;
  }

  .dropdown-menu.mobile-open { display: block; }

  .dropdown-menu li a {
    color: rgba(255,255,255,0.7);
    padding: 10px 32px;
    border-bottom-color: rgba(255,255,255,0.05);
  }

  .nav-cta { padding: 16px 24px; }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 998;
  }

  .nav-overlay.active { display: block; }

  .hero { min-height: 80vh; }
  .hero h1 { font-size: 2rem; }

  .hero-stats { gap: 16px; }
  .stat { padding: 12px 16px; }
  .stat-number { font-size: 1.5rem; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .suburb-content { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .suburb-grid { grid-template-columns: repeat(2, 1fr); }

  .topbar-contact { flex-direction: column; gap: 4px; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .suburb-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: scale(1); }
}

/* ---- Before & After Gallery ---- */
.ba-section {
  background: var(--light-grey);
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.ba-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.ba-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
}

.ba-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.ba-divider {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--red);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  font-family: 'Poppins', sans-serif;
}

.ba-labels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.ba-label {
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.ba-label.before {
  background: #f0f0f0;
  color: var(--grey);
}

.ba-label.after {
  background: var(--red);
  color: var(--white);
}

.ba-body {
  padding: 16px 20px;
}

.ba-body h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark);
}

.ba-body p {
  font-size: 0.85rem;
  color: var(--grey);
  margin: 0;
}

@media (max-width: 900px) {
  .ba-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 580px) {
  .ba-grid { grid-template-columns: 1fr; }
  .ba-images img { height: 160px; }
}

/* ---- Quote Popup Modal ---- */
.quote-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(3px);
}

.quote-modal-overlay.active {
  display: flex;
  animation: modalFadeIn 0.25s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.quote-modal {
  background: var(--white);
  border-radius: 16px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  animation: modalSlideUp 0.3s ease;
}

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

.quote-modal-header {
  background: var(--red);
  color: var(--white);
  padding: 28px 32px 20px;
  border-radius: 16px 16px 0 0;
  position: relative;
}

.quote-modal-header h2 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.quote-modal-header p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: rgba(255,255,255,0.2);
  border: none;
  color: var(--white);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1;
}

.modal-close:hover {
  background: rgba(255,255,255,0.35);
}

.quote-modal-body {
  padding: 28px 32px 32px;
}

.quote-modal-body .form-group {
  margin-bottom: 16px;
}

.quote-modal-body label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  font-family: 'Poppins', sans-serif;
}

.quote-modal-body input,
.quote-modal-body select,
.quote-modal-body textarea {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  transition: var(--transition);
  background: var(--white);
}

.quote-modal-body input:focus,
.quote-modal-body select:focus,
.quote-modal-body textarea:focus {
  border-color: var(--red);
  outline: none;
  box-shadow: 0 0 0 3px rgba(224,32,32,0.1);
}

.quote-modal-body textarea { resize: vertical; min-height: 90px; }

.quote-modal-body .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.quote-modal-body .btn-submit-quote {
  width: 100%;
  padding: 14px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 8px;
  transition: var(--transition);
}

.quote-modal-body .btn-submit-quote:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.quote-modal-body .btn-submit-quote:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.modal-success {
  display: none;
  text-align: center;
  padding: 24px 0 8px;
}

.modal-success i {
  font-size: 3rem;
  color: #22c55e;
  margin-bottom: 12px;
  display: block;
}

.modal-success h3 {
  color: var(--dark);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.modal-success p {
  color: var(--grey);
  font-size: 0.9rem;
}

.quote-modal-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.quote-modal-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--grey);
  font-weight: 600;
}

.quote-modal-trust span i {
  color: var(--red);
}

@media (max-width: 580px) {
  .quote-modal-header { padding: 20px 20px 16px; }
  .quote-modal-body { padding: 20px 20px 24px; }
  .quote-modal-body .form-row { grid-template-columns: 1fr; }
  .quote-modal-header h2 { font-size: 1.25rem; }
}

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  animation: fadeUp 0.6s ease forwards;
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-red { color: var(--red); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.hidden { display: none; }

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE OVERRIDES
   ============================================ */

/* --- Base: prevent horizontal scroll everywhere --- */
html, body { overflow-x: hidden; max-width: 100%; }
*, *::before, *::after { box-sizing: border-box; }

/* ── Tablet (≤1024px) ── */
@media (max-width: 1024px) {
  .container { padding: 0 16px; }

  /* Pricing grid */
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }

  /* Service detail cards */
  .service-detail-card { gap: 28px; }
  .service-detail-body { padding: 28px; }

  /* Suburb content */
  .suburb-content { grid-template-columns: 1fr; }
  .suburb-sidebar { position: static; }

  /* Hero stats */
  .hero-stats { gap: 12px; flex-wrap: wrap; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .suburb-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {
  /* Topbar */
  .topbar { padding: 8px 0; }
  .topbar-contact { flex-wrap: wrap; gap: 4px; font-size: 0.78rem; }
  .topbar-contact span { font-size: 0.78rem; }
  .topbar-phone a { font-size: 0.9rem; }

  /* Navbar */
  .navbar-inner { height: 80px; padding: 0 12px; }
  .navbar-logo img { height: 64px; }

  /* Hero */
  .hero { min-height: 70vh; padding: 60px 0 40px; }
  .hero h1 { font-size: clamp(1.5rem, 6vw, 2rem); line-height: 1.25; }
  .hero-content { max-width: 100%; }
  .hero-badge { font-size: 0.75rem; padding: 6px 14px; }
  .hero > .container > p { font-size: 0.9rem; }

  /* Hero CTA buttons */
  .hero-cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-cta .btn { text-align: center; justify-content: center; width: 100%; }

  /* Hero stats */
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 28px; }
  .stat { padding: 10px 8px; }
  .stat-number { font-size: 1.3rem; }
  .stat-label { font-size: 0.65rem; }

  /* Review bar */
  .review-bar-inner { gap: 8px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .review-bar-item { white-space: nowrap; font-size: 0.8rem; }

  /* Section headings */
  .section-title { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .section-subtitle { font-size: 0.9rem; }
  .section { padding: 48px 0; }

  /* Services grid */
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .service-card { flex-direction: column; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
  .pricing-card.featured { transform: scale(1); }
  .pricing-badge { font-size: 0.68rem; }

  /* Why split / about grid */
  .why-split { grid-template-columns: 1fr; gap: 28px; }
  .why-split img { height: 260px; border-radius: var(--radius); }
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-img-wrap { max-width: 100%; }

  /* Before & After */
  .ba-grid { grid-template-columns: 1fr; gap: 20px; }
  .ba-images img { height: 150px; }

  /* How it works */
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* CTA section */
  .cta-buttons { flex-direction: column; align-items: stretch; gap: 12px; }
  .cta-buttons .btn { text-align: center; }

  /* Areas grid */
  .areas-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }

  /* Service detail cards */
  .service-detail-card { grid-template-columns: 1fr !important; direction: ltr !important; }
  .service-detail-card.reverse { direction: ltr; }
  .service-detail-card img { height: 220px; }
  .service-detail-body { padding: 20px; }
  .service-detail-body h3 { font-size: 1.3rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .suburb-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .footer-bottom { text-align: center; }
  .footer-bottom p { font-size: 0.8rem; }

  /* Page hero */
  .page-hero { padding: 60px 0 36px; }
  .page-hero h1 { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  .breadcrumb { font-size: 0.8rem; flex-wrap: wrap; justify-content: center; }

  /* Suburb pages */
  .suburb-hero { padding: 60px 0 36px; }
  .suburb-content { grid-template-columns: 1fr; gap: 24px; }
  .suburb-sidebar { position: static; top: auto; }

  /* Gallery filter bar */
  .gallery-filter-bar { top: 80px; }
  .gallery-filter-bar .container { gap: 8px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .filter-btn { white-space: nowrap; font-size: 0.75rem; padding: 6px 13px; }
  .filter-label { display: none; }

  /* Gallery grid (gallery.html) */
  .gallery-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .gallery-card-wide { grid-column: span 1 !important; }
  .gallery-card-wide .img-wrap { height: 220px !important; }
  .gallery-card .img-wrap { height: 200px; }
  .ba-pair-images { height: 160px; }

  /* Gallery stats */
  .gallery-stats { gap: 24px; padding: 28px 0 12px; }
  .gallery-stats .gstat-num { font-size: 1.8rem; }

  /* Modal form */
  .quote-modal { max-width: 100%; margin: 0; }
  .quote-modal-header { padding: 18px 16px 14px; }
  .quote-modal-header h2 { font-size: 1.15rem; }
  .quote-modal-body { padding: 16px 16px 20px; }
  .quote-modal-body .form-row { grid-template-columns: 1fr; gap: 12px; }
  .quote-modal-trust { gap: 8px; }
  .quote-modal-trust span { font-size: 0.72rem; }

  /* Lightbox nav */
  .lightbox-nav.prev { left: 4px; }
  .lightbox-nav.next { right: 4px; }

  /* FAQ */
  .faq-question { padding: 14px 16px; font-size: 0.88rem; }
  .faq-answer.open { padding: 12px 16px; }
}

/* ── Small Mobile (≤480px) ── */
@media (max-width: 480px) {
  /* Topbar: hide middle spans, keep location + phone */
  .topbar-contact span:not(:first-child) { display: none; }
  .topbar-inner { gap: 4px; }

  /* Navbar */
  .navbar-inner { height: 72px; padding: 0 10px; }
  .navbar-logo img { height: 56px; }

  /* Hero */
  .hero h1 { font-size: 1.5rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Areas */
  .areas-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .suburb-grid { grid-template-columns: repeat(2, 1fr); }

  /* Buttons full-width */
  .btn { width: 100%; text-align: center; justify-content: center; }
  .hero-cta .btn, .cta-buttons .btn { width: 100%; }

  /* Section */
  .section { padding: 36px 0; }
  .section-title { font-size: 1.35rem; }

  /* Pricing badge */
  .pricing-card.featured { transform: none; }

  /* Gallery CTA strip */
  .gallery-cta-strip h2 { font-size: 1.4rem; }
  .gallery-cta-strip .btn { width: auto; }

  /* Service detail */
  .service-detail-card img { height: 180px; }
}

/* ── Extra-small (≤360px) ── */
@media (max-width: 360px) {
  .navbar-logo img { height: 48px; }
  .hero h1 { font-size: 1.3rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
  .stat-number { font-size: 1.1rem; }
  .btn { padding: 10px 16px; font-size: 0.82rem; }
  .topbar { font-size: 0.72rem; }
}

/* ── Prevent image overflow ── */
img { max-width: 100%; height: auto; }
iframe, video, embed { max-width: 100%; }

/* ── Smooth scrolling ── */
html { scroll-behavior: smooth; }

/* ── Footer SW Digital link ── */
.footer-bottom a { transition: color 0.2s; }
.footer-bottom a:hover { color: var(--red-light); }
