/*
 * ============================================================
 * SHIRE BATHROOM RENOVATIONS — Main Stylesheet
 * ============================================================
 * To clone this site for a new location, change these 5 variables:
 *
 * 1. BUSINESS_NAME  → Update all text references
 * 2. LOCATION       → e.g. 'South Coast'
 * 3. PHONE_NUMBER   → e.g. '0412 345 678'
 * 4. DOMAIN         → e.g. 'southcoastbathroomrenovations.com.au'
 * 5. SUBURBS_LIST   → Update suburb pills section
 * ============================================================
 */

/* === VARIABLES & RESET === */
:root {
  --navy:       #1E3A5F;
  --teal:       #0E9E8E;
  --teal-dark:  #0b8478;
  --warm-white: #FAFAF8;
  --sand:       #E8E4DC;
  --charcoal:   #2D2D2D;
  --light-grey: #F4F4F2;
  --white:      #ffffff;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.12);
  --radius:     8px;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--charcoal);
  background-color: var(--warm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-dark); }

ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', serif;
  color: var(--navy);
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* === LAYOUT === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding { padding: 5rem 0; }
.section-padding-sm { padding: 3rem 0; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14,158,142,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

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

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.075rem;
}

.btn-full { width: 100%; justify-content: center; }

/* === NAVIGATION === */
#site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  transition: box-shadow var(--transition), background var(--transition);
}

#site-nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--navy) !important;
  font-weight: 400;
  text-decoration: none;
  line-height: 1.3;
  max-width: 210px;
}

.nav-logo span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.nav-links a {
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: var(--light-grey);
}

.nav-phone {
  color: var(--navy) !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-cta {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  color: var(--white);
  font-size: 1.5rem;
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  padding: 0.65rem 2rem;
  text-decoration: none;
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--teal); }

.mobile-menu .mobile-cta {
  margin-top: 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.mobile-menu .mobile-phone {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--teal) !important;
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem 0.5rem;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  background-color: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1552321554-5fefe8c9ef14?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  filter: brightness(0.38);
}

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

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 1.75rem;
  animation: bounce 2s infinite;
  z-index: 1;
  cursor: pointer;
  line-height: 1;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: 9rem 0 5rem;
  background: var(--navy);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
}

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

.page-hero h1 { color: var(--white); margin-bottom: 1rem; }

.page-hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--sand);
  padding: 3rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.trust-icon {
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-sm);
  color: var(--teal);
  font-size: 1.5rem;
}

.trust-item h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.trust-item p { font-size: 0.875rem; color: var(--charcoal); margin: 0; line-height: 1.5; }

/* === LEAD FORM === */
.lead-form-section { padding: 5rem 0; background: var(--warm-white); }

.lead-form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 3rem;
  border-top: 4px solid var(--teal);
  max-width: 760px;
  margin: 0 auto;
}

.lead-form-card h2 { margin-bottom: 0.5rem; }

.form-subtext { color: #666; margin-bottom: 2rem; font-size: 0.975rem; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--warm-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14,158,142,0.12);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%231E3A5F' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

.form-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--light-grey);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: #666;
  line-height: 1.5;
}

.form-note i { color: var(--teal); margin-top: 1px; flex-shrink: 0; }

/* Form states */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.form-success.visible { display: block; }

.success-icon {
  width: 72px;
  height: 72px;
  background: #e8f7f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--teal);
  font-size: 2rem;
}

.form-success h3 { font-size: 1.6rem; margin-bottom: 0.75rem; color: var(--navy); }
.form-success p { color: #666; }

/* === ABOUT SECTION === */
.about-section { padding: 5rem 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { color: var(--charcoal); margin-bottom: 1.25rem; }

.text-link {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* === SERVICES GRID === */
.services-section { padding: 5rem 0; background: var(--light-grey); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-header p { color: #666; font-size: 1.05rem; margin: 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition), border-top-color var(--transition);
  border-top: 3px solid transparent;
  text-decoration: none;
  display: block;
  color: inherit;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--teal);
  color: inherit;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(14,158,142,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--teal);
  font-size: 1.5rem;
}

.service-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; color: var(--navy); }
.service-card p { font-size: 0.9rem; color: #666; margin-bottom: 1.25rem; line-height: 1.6; }

.card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* === SUBURBS === */
.suburbs-section { background: var(--sand); padding: 5rem 0; }

.suburb-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.suburb-pill {
  display: inline-block;
  padding: 0.45rem 1rem;
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--teal);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
}

.suburb-pill:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-1px);
}

/* === FAQ === */
.faq-section { padding: 5rem 0; background: var(--white); }

.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid #eee; }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  gap: 1rem;
  transition: color var(--transition);
}

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

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--light-grey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform var(--transition), background var(--transition);
  color: var(--navy);
  font-style: normal;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--teal);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: #555;
  line-height: 1.75;
  font-size: 0.975rem;
}

.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 1.5rem; }

/* === FINAL CTA === */
.final-cta { background: var(--navy); padding: 5rem 0; text-align: center; }
.final-cta h2 { color: var(--white); margin-bottom: 1rem; }
.final-cta p { color: rgba(255,255,255,0.8); max-width: 640px; margin: 0 auto 2.5rem; font-size: 1.05rem; }

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* === FOOTER === */
#site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
  border-top: 3px solid var(--teal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand h3 { font-size: 1.2rem; color: var(--white); margin-bottom: 0.5rem; }

.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 1rem; line-height: 1.6; }

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--teal) !important;
  font-weight: 600;
  font-size: 1.05rem;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--teal); }

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* === CONTACT PAGE === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info h2 { margin-bottom: 1.5rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(14,158,142,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-detail h4 { font-family: 'DM Sans', sans-serif; font-size: 0.875rem; color: #888; font-weight: 600; margin-bottom: 0.25rem; }
.contact-detail p, .contact-detail a { font-size: 1rem; font-weight: 500; color: var(--charcoal); margin: 0; }

.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); margin-top: 2rem; }
.map-container iframe { width: 100%; height: 350px; border: none; display: block; }

/* === ABOUT PAGE === */
.about-page-section { padding: 5rem 0; }

.team-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-card { background: var(--light-grey); border-radius: var(--radius); padding: 2rem; text-align: center; }

.value-icon {
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--teal);
  font-size: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.value-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.value-card p { font-size: 0.9rem; color: #666; margin: 0; }

/* Stats bar */
.stats-bar { background: var(--navy); padding: 3.5rem 0; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 { font-size: 2.5rem; color: var(--teal); margin-bottom: 0.25rem; }
.stat-item p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin: 0; }

/* === SERVICE PAGE === */
.service-content { padding: 5rem 0; }

.service-body { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; align-items: start; }

.service-text h2 { margin-bottom: 1.25rem; margin-top: 2.5rem; }
.service-text h2:first-child { margin-top: 0; }
.service-text p { color: var(--charcoal); margin-bottom: 1.25rem; }

.why-points { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }

.why-point { display: flex; gap: 1rem; align-items: flex-start; }

.why-point-icon {
  width: 40px;
  height: 40px;
  background: rgba(14,158,142,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-point h4 { font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.why-point p { font-size: 0.875rem; color: #666; margin: 0; }

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

.sidebar-card { background: var(--light-grey); border-radius: var(--radius); padding: 2rem; margin-bottom: 1.5rem; border-top: 3px solid var(--teal); }
.sidebar-card h4 { font-family: 'DM Sans', sans-serif; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: #888; margin-bottom: 1rem; font-weight: 700; }
.sidebar-card ul li { margin-bottom: 0.6rem; }
.sidebar-card ul li a { color: var(--navy); font-size: 0.9rem; font-weight: 500; }
.sidebar-card ul li a:hover { color: var(--teal); }

/* === SUBURB PAGE === */
.suburb-nearby { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }

.suburb-services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.suburb-service-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--charcoal);
  padding: 0.75rem 1rem;
  background: var(--light-grey);
  border-radius: var(--radius);
}

.suburb-service-item i { color: var(--teal); }

/* === BREADCRUMB === */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }

/* === UTILITY === */
.text-teal { color: var(--teal); }
.text-navy { color: var(--navy); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Loading spinner */
.btn-loading { pointer-events: none; opacity: 0.8; }
.btn-loading::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 0.5rem;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 2.5rem; }
  .service-body { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .team-values { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-phone-desktop { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: 85vh; padding: 6rem 0 3rem; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .hero-buttons .btn { width: 100%; justify-content: center; max-width: 360px; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .about-image img { height: 260px; }

  .services-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .suburb-services-list { grid-template-columns: 1fr; }

  .team-values { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }

  .lead-form-card { padding: 2rem 1.5rem; }

  .section-padding { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 1.85rem; }
  .nav-logo { font-size: 1rem; }
  .lead-form-card { padding: 1.75rem 1.25rem; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
}
