/* ═══════════════════════════════════════════════════
   EPPING MAINTENANCE SERVICES — SHARED STYLESHEET
   ═══════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { background: #0a0a0a; scroll-behavior: smooth; }

/* ── CSS VARIABLES ── */
:root {
  --bg:     #000000;
  --card:   #0d0d0d;
  --card2:  #111111;
  --darker: #050505;
  --green:  #4ecb71;
  --blue:   #3ab8d4;
  --lime:   #b8e830;
  --grad:   linear-gradient(110deg, var(--blue) 0%, var(--green) 55%, var(--lime) 100%);
  --line:   rgba(78,203,113,0.18);
  --text:   #edfaf2;
  --muted:  #6daa84;
  --radius: 18px;
  --nav-h:  68px;
}

/* ── iOS GLOBAL RESET ── */
*, *::before, *::after {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
input, textarea, select, button, a {
  -webkit-touch-callout: default;
}

/* ── TYPOGRAPHY ── */
body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  padding-top: var(--nav-h);
}
h1, h2, h3, h4, h5 { font-family: 'DM Sans', sans-serif; line-height: 1.22; }
a { color: inherit; }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── NAVIGATION ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  height: var(--nav-h);
  background: rgba(0,0,0,0.9);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-brand {
  display: flex; align-items: center; gap: 0.7rem;
  text-decoration: none; flex-shrink: 0;
}
.nav-brand img { height: 42px; width: auto; mix-blend-mode: screen; }
.nav-brand-text { display: flex; flex-direction: column; }
.nav-brand-name {
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-weight: 900;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1.2;
}
.nav-brand-sub { font-size: 0.65rem; color: var(--muted); font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 0.15rem; }
.nav-links > a {
  color: var(--text); text-decoration: none; font-weight: 800; font-size: 0.85rem;
  padding: 0.45rem 0.7rem; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links > a:hover, .nav-links > a.active { color: var(--green); background: rgba(78,203,113,0.08); }

/* Dropdowns */
.nav-dd { position: relative; display: inline-flex; align-items: center; }
.nav-dd-label {
  color: var(--text); font-weight: 800; font-size: 0.85rem;
  padding: 0.45rem 0.2rem 0.45rem 0.7rem; border-radius: 8px 0 0 8px;
  text-decoration: none; font-family: 'Nunito', sans-serif;
  transition: color 0.2s, background 0.2s;
}
.nav-dd-label:hover { color: var(--green); background: rgba(78,203,113,0.08); }
.nav-dd-btn {
  color: var(--text); font-weight: 800; font-size: 0.85rem;
  padding: 0.45rem 0.6rem 0.45rem 0.2rem; border-radius: 0 8px 8px 0;
  background: none; border: none; cursor: pointer;
  font-family: 'Nunito', sans-serif;
  display: flex; align-items: center; gap: 0.3rem;
  transition: color 0.2s, background 0.2s;
}
.nav-dd-btn:hover { color: var(--green); background: rgba(78,203,113,0.08); }
.nav-dd-btn .chevron { font-size: 0.65rem; transition: transform 0.2s; }
.nav-dd.open .chevron { transform: rotate(180deg); }
.nav-dd-menu {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  background: #0e0e0e; border: 1px solid var(--line); border-radius: 14px;
  padding: 0.5rem; z-index: 500;
  box-shadow: 0 20px 50px rgba(0,0,0,0.7);
  animation: ddDrop 0.18s ease;
}
.nav-dd.open .nav-dd-menu { display: block; }
@keyframes ddDrop { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.nav-dd-menu.wide { min-width: 460px; display: none; grid-template-columns: 1fr 1fr; gap: 0.15rem; }
.nav-dd.open .nav-dd-menu.wide { display: grid; }
.nav-dd-menu a {
  display: block; padding: 0.5rem 0.9rem; border-radius: 8px;
  color: var(--text); text-decoration: none; font-size: 0.84rem; font-weight: 700;
  transition: background 0.15s, color 0.15s; white-space: nowrap;
}
.nav-dd-menu a:hover { background: rgba(78,203,113,0.12); color: var(--green); }
.nav-dd-menu .dd-section {
  font-size: 0.67rem; font-weight: 900; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--muted); padding: 0.5rem 0.9rem 0.2rem; grid-column: 1/-1;
}
.nav-phone {
  color: var(--green); text-decoration: none; font-weight: 900; font-size: 0.88rem;
  font-family: 'DM Sans', sans-serif;
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.65rem 1.1rem; min-height: 44px; border-radius: 50px;
  border: 1.5px solid rgba(78,203,113,0.35);
  transition: background 0.2s, border-color 0.2s;
  touch-action: manipulation; white-space: nowrap; flex-shrink: 0;
}
.nav-phone:hover { background: rgba(78,203,113,0.1); border-color: var(--green); }
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  min-width: 44px; min-height: 44px; padding: 0.6rem; z-index: 100; flex-shrink: 0;
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2.5px;
  background: var(--text); border-radius: 2px; transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: #050505;
  border-bottom: 1px solid var(--line);
  z-index: 999; padding: 0.5rem 1.5rem 2rem;
  max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.open { display: block; animation: mSlide 0.22s ease; }
@keyframes mSlide { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.mobile-nav a {
  display: flex; align-items: center; color: var(--text); text-decoration: none;
  font-weight: 800; font-size: 1rem;
  min-height: 48px; padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:active { color: var(--green); }
.mob-section {
  font-size: 0.66rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); padding: 1rem 0 0.3rem; margin-top: 0.25rem;
  border-top: 1px solid var(--line);
}
.mob-sub {
  min-height: 44px !important; padding: 0.6rem 0 0.6rem 1rem !important;
  font-size: 0.9rem !important; color: rgba(237,250,242,0.75) !important;
  border-bottom: none !important; display: flex !important; align-items: center !important;
}
/* Mobile nav accordion */
.mob-accordion {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: none; border: none; border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--green); font-weight: 900; font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  font-family: 'Nunito', sans-serif; cursor: pointer;
  min-height: 48px; padding: 0.75rem 0;
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
.mob-acc-chev { font-size: 0.65rem; transition: transform 0.25s; display: inline-block; }
.mob-accordion.open .mob-acc-chev { transform: rotate(180deg); }
.mob-acc-body { display: none; }
.mob-acc-body.open { display: block; }
.mob-sub:active { color: var(--green) !important; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1.5rem, 6vw, 4rem) clamp(2.5rem, 6vw, 4rem);
  background: var(--darker);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 60% at 50% 0%, rgba(78,203,113,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.ph-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(78,203,113,0.09) 1px, transparent 1px);
  background-size: 36px 36px;
}
.page-hero > * { position: relative; z-index: 1; }
@keyframes phLogoPopIn {
  from { opacity: 0; transform: scale(0.82); }
  to   { opacity: 1; transform: scale(1); }
}
.ph-logo { display: flex; justify-content: center; margin-bottom: 1.5rem; }
.ph-logo img {
  width: min(420px, 80vw); height: auto;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 60px rgba(78,203,113,0.45))
          drop-shadow(0 0 25px rgba(58,184,212,0.35))
          drop-shadow(0 20px 50px rgba(0,0,0,0.5));
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  opacity: 0;
  animation: phLogoPopIn 0.9s cubic-bezier(.34,1.56,.64,1) 0.2s forwards;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 0.4rem; flex-wrap: wrap;
  font-size: 0.77rem; color: var(--muted); font-weight: 700;
  margin-bottom: 1.1rem;
}
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb .bc-sep { opacity: 0.4; }
.breadcrumb .bc-cur { color: var(--green); }
.page-hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem); font-weight: 900; margin-bottom: 0.8rem;
  font-family: 'DM Sans', sans-serif; line-height: 1.1; letter-spacing: -0.02em;
}
.page-hero .ph-sub {
  font-size: clamp(0.93rem, 1.9vw, 1.08rem); color: var(--muted);
  max-width: 600px; margin: 0 auto 1.75rem; font-weight: 700;
}
.ph-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── TRUST BAR ── */
.trust-bar {
  display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; align-items: center;
  padding: 1.4rem clamp(1.5rem, 5vw, 3rem);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: #070707;
}
.tb-item {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 0.84rem; font-weight: 800; color: var(--muted);
}
.tb-item .tbi { font-size: 1.1rem; }

/* ── SECTIONS ── */
.section {
  max-width: 1200px; margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 5vw, 3rem);
}
.section-bg {
  background: #070707; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.section-bg .section { padding-top: clamp(3rem, 7vw, 5rem); padding-bottom: clamp(3rem, 7vw, 5rem); }
.section-label {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.75rem; font-weight: 800; color: var(--green);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.9rem;
}
.section-label::before { content: ''; display: block; width: 22px; height: 2px; background: var(--green); border-radius: 2px; }
.section-h2 {
  font-size: clamp(1.75rem, 3.5vw, 3.2rem); font-weight: 900; margin-bottom: 0.9rem;
  font-family: 'DM Sans', sans-serif; line-height: 1.1; letter-spacing: -0.02em;
}
.section-intro {
  font-size: clamp(0.97rem, 1.8vw, 1.08rem); color: var(--muted);
  max-width: 700px; margin-bottom: 2.5rem; font-weight: 700; line-height: 1.72;
}

/* ── FEATURE GRID ── */
.feature-grid {
  display: grid; gap: 1.15rem;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.feature-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover { border-color: rgba(78,203,113,0.35); transform: translateY(-2px); }
.fc-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(78,203,113,0.1); border: 1px solid rgba(78,203,113,0.2);
  border-radius: 11px; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.fc-body h3 { font-size: 0.93rem; font-weight: 800; margin-bottom: 0.3rem; }
.fc-body p { font-size: 0.84rem; color: var(--muted); font-weight: 600; line-height: 1.62; }

/* ── SERVICE LINK CARDS ── */
.svc-card-grid {
  display: grid; gap: 1.1rem;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
}
.svc-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem; text-decoration: none; display: block;
  transition: border-color 0.2s, transform 0.2s;
}
.svc-card:hover { border-color: rgba(78,203,113,0.4); transform: translateY(-2px); }
.svc-card-emoji { font-size: 1.6rem; margin-bottom: 0.6rem; display: block; }
.svc-card-title { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: 0.4rem; }
.svc-card-desc { font-size: 0.84rem; color: var(--muted); font-weight: 600; line-height: 1.6; margin-bottom: 0.7rem; }
.svc-card-link { font-size: 0.8rem; font-weight: 800; color: var(--green); }

/* ── PROBLEMS GRID ── */
.problems-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}
.prob-item {
  background: rgba(203,78,78,0.05); border: 1px solid rgba(203,78,78,0.15);
  border-radius: 12px; padding: 1.2rem;
  display: flex; gap: 0.75rem; align-items: flex-start;
}
.prob-item .pi { font-size: 1.2rem; flex-shrink: 0; }
.prob-item h4 { font-size: 0.88rem; font-weight: 800; margin-bottom: 0.22rem; }
.prob-item p { font-size: 0.8rem; color: var(--muted); font-weight: 600; line-height: 1.58; }

/* ── PROCESS STEPS ── */
.steps-grid {
  display: grid; gap: 1.15rem;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
}
.step-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem;
}
.step-num {
  font-family: 'DM Sans', sans-serif; font-size: 2.2rem; font-weight: 900;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1; margin-bottom: 0.5rem;
}
.step-title { font-size: 0.93rem; font-weight: 800; margin-bottom: 0.38rem; }
.step-desc { font-size: 0.84rem; color: var(--muted); font-weight: 600; line-height: 1.62; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0.7rem; max-width: 800px; }
.faq-item {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.05rem 1.35rem; cursor: pointer;
  font-weight: 800; font-size: 0.93rem; transition: color 0.2s;
  -webkit-user-select: none; user-select: none; gap: 1rem;
}
.faq-q:hover { color: var(--green); }
.faq-icon {
  width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%;
  background: rgba(78,203,113,0.12); display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--green); font-weight: 900;
  transition: transform 0.25s; line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none; padding: 0 1.35rem 1.1rem;
  font-size: 0.88rem; color: var(--muted); font-weight: 600; line-height: 1.75;
}
.faq-item.open .faq-a { display: block; animation: fadeIn 0.2s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ── BLOG CARDS ── */
.blog-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
}
.blog-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; text-decoration: none; display: flex; flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.blog-card:hover { border-color: rgba(78,203,113,0.4); transform: translateY(-3px); }
.blog-card-img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block;
  background: var(--card2);
}
.blog-card-placeholder {
  width: 100%; aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, #0a1a0f 0%, #15281c 100%);
}
.blog-card-body { padding: 1.35rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat {
  font-size: 0.67rem; font-weight: 900; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--green); margin-bottom: 0.55rem;
}
.blog-card-title {
  font-family: 'DM Sans', sans-serif; font-size: 1.02rem; font-weight: 800;
  color: var(--text); margin-bottom: 0.55rem; line-height: 1.35;
}
.blog-card-excerpt {
  font-size: 0.84rem; color: var(--muted); font-weight: 600;
  line-height: 1.65; flex: 1; margin-bottom: 0.9rem;
}
.blog-card-meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.74rem; color: var(--muted); font-weight: 700;
}
.blog-card-meta .bc-more { color: var(--green); }

/* Blog filter */
.blog-filter { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.bf-btn {
  padding: 0.42rem 0.95rem; border-radius: 50px;
  border: 1px solid var(--line); background: none;
  color: var(--muted); font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 0.8rem; cursor: pointer;
  transition: all 0.2s;
}
.bf-btn:hover, .bf-btn.active {
  background: rgba(78,203,113,0.12); color: var(--green); border-color: rgba(78,203,113,0.35);
}

/* Blog search */
.blog-search-wrap { position: relative; max-width: 460px; margin-bottom: 1.75rem; }
.blog-search {
  width: 100%; padding: 0.7rem 1rem 0.7rem 2.7rem;
  background: var(--card); border: 1px solid var(--line); border-radius: 50px;
  color: var(--text); font-family: 'Nunito', sans-serif;
  font-size: 0.88rem; font-weight: 700; outline: none;
  transition: border-color 0.2s;
}
.blog-search:focus { border-color: rgba(78,203,113,0.5); }
.blog-search-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }

/* Blog post */
.post-body {
  max-width: 760px; margin: 0 auto;
}
.post-body h2 { font-size: 1.45rem; font-weight: 900; margin: 2rem 0 0.7rem; }
.post-body h3 { font-size: 1.1rem; font-weight: 800; margin: 1.4rem 0 0.5rem; color: var(--green); }
.post-body p { margin-bottom: 1.15rem; font-size: 0.96rem; line-height: 1.8; color: rgba(237,250,242,0.85); font-weight: 600; }
.post-body ul, .post-body ol { margin: 0 0 1.15rem 1.5rem; }
.post-body li { margin-bottom: 0.45rem; font-size: 0.94rem; color: rgba(237,250,242,0.85); font-weight: 600; line-height: 1.7; }
.post-body strong { color: var(--text); }
.post-callout {
  background: rgba(78,203,113,0.08); border-left: 3px solid var(--green);
  border-radius: 0 12px 12px 0; padding: 1.1rem 1.4rem; margin: 1.5rem 0;
  font-size: 0.93rem; font-weight: 700;
}

/* ── PROJECT GALLERY ── */
.projects-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.project-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.2s;
}
.project-card:hover { border-color: rgba(78,203,113,0.4); }
.ba-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; position: relative; }
.ba-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; background: #111; }
.ba-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, #0d1a10, #1a2e1f);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--muted);
}
.ba-label {
  position: absolute; bottom: 8px;
  font-size: 0.62rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(0,0,0,0.75); color: var(--text); padding: 3px 8px; border-radius: 4px;
}
.ba-label.before { left: 8px; }
.ba-label.after { right: 8px; }
.project-info { padding: 1.2rem; }
.project-info h3 { font-size: 0.97rem; font-weight: 800; margin-bottom: 0.3rem; }
.project-suburb {
  font-size: 0.72rem; color: var(--green); font-weight: 800;
  margin-bottom: 0.55rem; text-transform: uppercase; letter-spacing: 0.06em;
}
.project-info p { font-size: 0.84rem; color: var(--muted); font-weight: 600; line-height: 1.6; }

/* ── AREAS GRID ── */
.areas-grid {
  display: grid; gap: 0.7rem;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
}
.area-tile {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  padding: 0.9rem 1rem; text-align: center; text-decoration: none;
  display: flex; flex-direction: column; gap: 0.25rem; align-items: center;
  transition: border-color 0.2s, background 0.2s;
}
.area-tile:hover { border-color: rgba(78,203,113,0.4); background: rgba(78,203,113,0.05); }
.area-tile-name { font-size: 0.88rem; font-weight: 800; color: var(--text); }
.area-tile-post { font-size: 0.7rem; color: var(--muted); font-weight: 700; }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid; gap: 1.2rem;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
}
.review-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem;
}
.review-stars { color: #f5c518; font-size: 0.95rem; margin-bottom: 0.7rem; letter-spacing: 0.1em; }
.review-text {
  font-size: 0.88rem; color: rgba(237,250,242,0.85); line-height: 1.72;
  margin-bottom: 1rem; font-weight: 600; font-style: italic;
}
.review-author { font-size: 0.8rem; font-weight: 900; color: var(--text); }
.review-suburb { font-size: 0.73rem; color: var(--muted); font-weight: 700; }

/* ── CTA SECTION ── */
.cta-section {
  background: #070707; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 3rem);
  text-align: center;
}
.cta-section h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 900; margin-bottom: 0.7rem; }
.cta-section p { font-size: 1rem; color: var(--muted); font-weight: 700; margin-bottom: 1.7rem; max-width: 550px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--green); color: #000;
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 0.95rem;
  padding: 0.85rem 2rem; border-radius: 50px; text-decoration: none;
  border: none; cursor: pointer; touch-action: manipulation;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--lime); transform: translateY(-2px); }
.btn-primary:active { transform: scale(0.97); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: none; color: var(--green);
  border: 1.5px solid rgba(78,203,113,0.4);
  font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 0.95rem;
  padding: 0.85rem 2rem; border-radius: 50px; text-decoration: none;
  cursor: pointer; touch-action: manipulation;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.btn-outline:hover { background: rgba(78,203,113,0.1); border-color: var(--green); transform: translateY(-2px); }
.btn-sms-mobile {
  display: none; align-items: center; gap: 0.45rem;
  background: rgba(78,203,113,0.1); border: 1px solid rgba(78,203,113,0.35);
  color: var(--green); text-decoration: none;
  padding: 0.85rem 1.8rem; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 0.95rem;
  touch-action: manipulation; transition: background 0.2s, transform 0.15s;
}

/* ── FOOTER ── */
.site-footer {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 0.7rem;
  padding: 2.5rem 2rem max(2rem, calc(1rem + env(safe-area-inset-bottom)));
  border-top: 1px solid var(--line); background: var(--darker);
}
.footer-logo { height: 64px; width: auto; mix-blend-mode: screen; margin-bottom: 0.25rem; }
.footer-name {
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 800;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.footer-links {
  display: flex; gap: 1.4rem; flex-wrap: wrap; justify-content: center; margin: 0.25rem 0;
}
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.8rem; font-weight: 700; transition: color 0.2s; }
.footer-links a:hover { color: var(--green); }
.footer-copy { font-size: 0.76rem; color: var(--muted); font-weight: 600; }
.footer-abn { font-size: 0.7rem; color: var(--muted); font-weight: 600; opacity: 0.7; }

/* ── CONTACT SHEET ── */
#contact-sheet-overlay {
  display: none; position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.65);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  align-items: flex-end; justify-content: center;
  /* Safe area for iPhone home bar */
  padding: 0 1rem max(1.5rem, calc(0.75rem + env(safe-area-inset-bottom)));
}
#contact-sheet-overlay.open { display: flex; }
.contact-sheet {
  background: #1c1c1e; border: 1px solid rgba(78,203,113,0.18);
  border-radius: 20px; padding: 1.5rem 1.5rem 1rem;
  width: 100%; max-width: 420px; text-align: center;
  animation: slideUp 0.28s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes slideUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cs-label { font-size: 0.74rem; color: var(--muted); font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 0.3rem; }
.cs-number { font-family: 'DM Sans', sans-serif; font-size: 1.4rem; font-weight: 900; color: var(--text); margin-bottom: 1.35rem; }
.cs-btns { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 0.7rem; }
.cs-call, .cs-sms {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.95rem; border-radius: 14px;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem;
  text-decoration: none; touch-action: manipulation; transition: opacity 0.15s, transform 0.15s;
}
.cs-call:active, .cs-sms:active { opacity: 0.75; transform: scale(0.97); }
.cs-call { background: var(--green); color: #000; }
.cs-sms { background: rgba(78,203,113,0.12); border: 1px solid rgba(78,203,113,0.3); color: var(--green); }
.cs-cancel {
  display: block; width: 100%; padding: 0.85rem;
  background: rgba(255,255,255,0.07); border: none; border-radius: 14px;
  color: var(--muted); font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 0.95rem; cursor: pointer; touch-action: manipulation;
}

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: 0.07s; }
.fade-up.d2 { transition-delay: 0.14s; }
.fade-up.d3 { transition-delay: 0.21s; }
.fade-up.d4 { transition-delay: 0.28s; }
.fade-up.d5 { transition-delay: 0.35s; }
.fade-up.d6 { transition-delay: 0.42s; }
.section-fade { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.section-fade.visible { opacity: 1; transform: translateY(0); }

/* ── INFO BOX ── */
.info-box {
  background: rgba(78,203,113,0.07); border: 1px solid rgba(78,203,113,0.2);
  border-radius: 12px; padding: 0.95rem 1.2rem;
  font-size: 0.88rem; font-weight: 700;
  display: flex; gap: 0.7rem; align-items: flex-start;
  color: rgba(237,250,242,0.85);
}
.info-box .ib-icon { flex-shrink: 0; margin-top: 0.05rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-brand-sub { display: none; }
}
@media (max-width: 600px) {
  .nav-brand-text { display: none !important; }
  .nav-phone { font-size: 0.78rem; padding: 0.5rem 0.7rem; }
}
@media (max-width: 700px) {
  .feature-grid, .svc-card-grid, .problems-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(auto-fill, minmax(125px, 1fr)); }
  .btn-sms-mobile { display: inline-flex; }
  .ph-btns { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; margin: 0 auto; }
  .cta-btns { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; margin: 0 auto; }
  .ph-logo img { width: min(220px, 55vw); }
  .btn-primary, .btn-outline, .btn-sms-mobile {
    width: 100%; justify-content: center; min-height: 52px;
    font-size: 1rem; padding: 0.9rem 1.5rem;
  }
  .nav-phone { font-size: 0.8rem; padding: 0.55rem 0.8rem; }
}
@media (max-width: 420px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ── BLOG CARD (alternate structure) ── */
.bc-icon {
  font-size: 2.5rem; padding: 1.2rem 1.35rem 0.3rem;
  display: block;
}
.bc-body { padding: 0.5rem 1.35rem 1.35rem; flex: 1; display: flex; flex-direction: column; }
.bc-meta { display: flex; gap: 0.7rem; align-items: center; margin-bottom: 0.55rem; flex-wrap: wrap; }
.bc-cat {
  font-size: 0.67rem; font-weight: 900; letter-spacing: 0.09em; text-transform: uppercase; color: var(--green);
}
.bc-date { font-size: 0.7rem; color: var(--muted); font-weight: 700; }
.blog-card h2 {
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 800;
  color: var(--text); margin-bottom: 0.6rem; line-height: 1.35;
}
.blog-card h2 a { text-decoration: none; color: inherit; }
.blog-card h2 a:hover { color: var(--green); }
.blog-card p { font-size: 0.84rem; color: var(--muted); font-weight: 600; line-height: 1.65; flex: 1; margin-bottom: 1rem; }
.bc-read { color: var(--green); font-size: 0.82rem; font-weight: 800; text-decoration: none; }
.bc-read:hover { text-decoration: underline; }

/* ── PROJECT CARD (full structure) ── */
.pc-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.85rem 1.1rem 0.6rem;
  border-bottom: 1px solid var(--line);
}
.pc-tag { font-size: 0.72rem; font-weight: 800; color: var(--green); letter-spacing: 0.04em; }
.pc-loc { font-size: 0.7rem; color: var(--muted); font-weight: 700; }
.ba-panel { position: relative; overflow: hidden; }
.ba-panel img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.project-card:hover .ba-panel img { transform: scale(1.04); }
.ba-panel .ba-label {
  position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
  font-size: 0.6rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(0,0,0,0.75); color: var(--text); padding: 2px 7px; border-radius: 4px;
  white-space: nowrap; z-index: 1;
}
.ba-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, #0d1a10, #1a2e1f);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.35rem; padding: 0.8rem;
}
.bap-icon { font-size: 2rem; }
.bap-label { font-size: 0.65rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.07em; color: var(--green); }
.bap-desc { font-size: 0.66rem; color: var(--muted); font-weight: 600; text-align: center; line-height: 1.5; }
.pc-desc { padding: 1rem 1.1rem 1.2rem; }
.pc-desc h3 { font-size: 0.95rem; font-weight: 800; margin-bottom: 0.4rem; }
.pc-desc p { font-size: 0.82rem; color: var(--muted); font-weight: 600; line-height: 1.65; }

/* ── AREA TILE INNER ── */
.at-name { font-size: 0.88rem; font-weight: 800; color: var(--text); }
.at-dist { font-size: 0.7rem; color: var(--muted); font-weight: 700; }

/* ── POST RELATED ── */
.post-related {
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
}
.post-related h3 { font-size: 1rem; font-weight: 800; margin-bottom: 0.75rem; }
.post-related ul { margin-left: 1.2rem; }
.post-related li { margin-bottom: 0.5rem; }
.post-related a { color: var(--green); font-weight: 700; font-size: 0.9rem; }
.post-related a:hover { text-decoration: underline; }

/* ── NAV ACTIVE ── */
.nav-active { color: var(--green) !important; }
.nav-links .nav-active { border-bottom: 2px solid var(--green); padding-bottom: 2px; }

/* ── iOS SPECIFIC FIXES ── */
/* Prevent input zoom on focus (iOS zooms when font-size < 16px) */
@supports (-webkit-touch-callout: none) {
  input, select, textarea {
    font-size: max(16px, 1em) !important;
  }
  /* Fix 100vh including hidden browser chrome on iOS Safari */
  .page-hero {
    min-height: -webkit-fill-available;
  }
}
/* Nav safe area for notched iPhones in landscape */
.site-nav {
  padding-left: max(1.2rem, env(safe-area-inset-left));
  padding-right: max(1.2rem, env(safe-area-inset-right));
}
/* Smooth momentum scrolling for any overflow containers */
.nav-dd-menu, .mobile-nav {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

/* Related services block (blog posts) */
.related-services-block { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 1.5rem 2rem; margin: 2rem 0; }
.rel-svc-links { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }
.rel-svc-link { display: inline-flex; align-items: center; background: rgba(78,203,113,0.1); border: 1px solid var(--line); color: var(--green); text-decoration: none; padding: 0.5rem 1rem; border-radius: 8px; font-weight: 800; font-size: 0.88rem; transition: background 0.2s, transform 0.15s; }
.rel-svc-link:hover { background: rgba(78,203,113,0.2); transform: translateY(-1px); }