/* ── NetSB Global Stylesheet ── */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand: #68BCE0;
  --brand-dark: #4aa8d0;
  --brand-light: #e8f5fb;
  --brand-mid: #b3dcf0;
  --text: #3a3a4a;
  --text-soft: #6b7280;
  --text-muted: #9ca3af;
  --border: #e5e9ef;
  --bg: #f4f7fa;
  --white: #ffffff;
  --green: #22c55e;
  --green-light: #dcfce7;
  --amber: #f59e0b;
  --amber-light: #fef3c7;
  --red: #ef4444;
  --red-light: #fee2e2;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06),0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 2px 8px rgba(0,0,0,0.07),0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08),0 2px 6px rgba(0,0,0,0.04);
}

body { font-family:'Nunito Sans',sans-serif; background:var(--white); color:var(--text); font-size:15px; line-height:1.6; }

/* ── NAV ── */
.site-nav { background:var(--white); padding:0 48px; height:120px; display:flex; align-items:center; border-bottom:1px solid var(--border); position:sticky; top:0; z-index:100; box-shadow:var(--shadow-sm); }
.site-nav-inner { max-width:1200px; width:100%; margin:0 auto; display:flex; align-items:center; justify-content:space-between; }
.logo { display:flex; align-items:center; gap:10px; text-decoration:none; }
.logo img { height:75px; width:auto; }
.logo-text { font-family:'Nunito',sans-serif; font-size:22px; font-weight:700; color:var(--text); letter-spacing:-0.3px; }
.logo-text span { color:var(--brand); }
.logo-icon { width:36px; height:36px; border-radius:50%; border:2px solid var(--brand); display:flex; align-items:center; justify-content:center; font-size:16px; color:var(--brand); font-weight:700; }
.nav-links { display:flex; align-items:center; gap:32px; }
.nav-links a { color:var(--text-soft); text-decoration:none; font-size:18px; font-weight:500; transition:color .15s; }
.nav-links a:hover,.nav-links a.active { color:var(--brand); }
.nav-links a.active { border-bottom:2px solid var(--brand); padding-bottom:2px; }
.nav-actions { display:flex; gap:10px; align-items:center; }
.nav-user { font-size:13.5px; color:var(--text-soft); font-weight:600; }

/* ── BUTTONS ── */
.btn { display:inline-flex; align-items:center; gap:6px; padding:9px 20px; border-radius:8px; font-family:'Nunito Sans',sans-serif; font-size:14px; font-weight:700; cursor:pointer; text-decoration:none; border:none; transition:all .15s; }
.btn-primary { background:var(--brand); color:var(--white); }
.btn-primary:hover { background:var(--brand-dark); box-shadow:0 4px 12px rgba(104,188,224,0.4); }
.btn-outline { background:transparent; color:var(--brand); border:1.5px solid var(--brand); }
.btn-outline:hover { background:var(--brand-light); }
.btn-ghost { background:var(--bg); color:var(--text-soft); border:1px solid var(--border); }
.btn-ghost:hover { background:var(--border); }
.btn-sm { padding:8px 16px; font-size:13.5px; }

/* ── FLASH MESSAGES ── */
.flash { padding:12px 20px; border-radius:8px; font-size:14px; font-weight:600; margin:12px 48px; }
.flash-success { background:var(--green-light); color:#16a34a; border:1px solid #bbf7d0; }
.flash-error   { background:var(--red-light);   color:#dc2626; border:1px solid #fecaca; }

/* ── HERO ── */
.dir-hero { background:url('../img/cyborg-2.jpg') right top/cover no-repeat; border-bottom:1px solid var(--border); overflow:hidden; position:relative; width:1300px; margin:auto; }
.dir-hero::before { content:''; position:absolute; inset:0; background:linear-gradient(90deg,rgba(255,255,255,.92) 0%,rgba(255,255,255,.75) 45%,rgba(255,255,255,.1) 75%,transparent 100%); z-index:0; pointer-events:none; }
.dir-hero-inner { max-width:1400px; margin:0 auto; min-height:480px; display:flex; align-items:center; position:relative; z-index:1; padding:30px 48px; }
.dir-hero-left { padding:72px 56px 72px 48px; position:relative; z-index:2; max-width:780px; }
.hero-badge { display:inline-flex; align-items:center; gap:6px; background:var(--brand-light); color:var(--brand-dark); font-size:12.5px; font-weight:700; padding:5px 14px; border-radius:20px; margin-bottom:22px; border:1px solid var(--brand-mid); letter-spacing:.3px; }
.dir-hero h1 { font-family:'Nunito',sans-serif; font-size:44px; font-weight:700; color:var(--text); line-height:1.18; margin-bottom:16px; letter-spacing:-.5px; }
.dir-hero h1 span { color:var(--brand); }
.dir-hero-left > p { font-size:16px; color:var(--text-soft); margin-bottom:34px; line-height:1.65; max-width:480px; }
.hero-stats { display:flex; gap:24px; margin-top:24px; flex-wrap:wrap; }
.hero-stat { display:flex; align-items:center; gap:6px; font-size:13px; color:var(--text-soft); }
.hero-stat strong { color:var(--text); font-weight:700; }

/* ── SEARCH BAR ── */
/* ── SEARCH BAR ── */
.search-wrap {
  background: var(--white);
  border-radius: 12px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-md);
  display: flex;
  overflow: hidden;
  max-width: 680px;
}
.search-wrap input[name="q"] {
  flex: 2;
  min-width: 140px;
  padding: 14px 16px;
  border: none;
  outline: none;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14.5px;
  color: var(--text);
  background: transparent;
}
.search-wrap .suburb-input {
  flex: 1;
  min-width: 110px;
  padding: 14px 12px;
  border: none;
  outline: none;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: transparent;
}
.search-wrap input::placeholder,
.search-wrap .suburb-input::placeholder { color: var(--text-muted); }
.search-divider { width: 1px; background: var(--border); margin: 10px 0; flex-shrink: 0; }
.search-wrap select {
  padding: 14px 6px;
  border: none;
  outline: none;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 12.5px;
  color: var(--text-soft);
  background: transparent;
  cursor: pointer;
  min-width: 90px;
  max-width: 110px;
  flex-shrink: 0;
}
.search-wrap .search-btn,
.search-btn {
  padding: 11px 20px;
  background: var(--brand);
  color: var(--white);
  border: none;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  margin: 6px;
  border-radius: 8px;
  transition: all .15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.search-wrap .search-btn:hover, .search-btn:hover { background: var(--brand-dark); }

/* ── OWNER STRIP ── */
.owner-strip {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  padding: 30px 48px;
}
.owner-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}
.owner-strip-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.owner-strip-actions .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.1);
}
.owner-strip-actions .btn-ghost:hover {
  background: rgba(255,255,255,0.2);
}

/* ── CAT STRIP ── */
.cat-strip { background:#fafafa; border-bottom:1px solid var(--border); padding:13px 0; }
.cat-strip-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 48px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 40px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-soft);
  transition: all .15s;
  text-decoration: none;
}
.cat-pill:hover { border-color:var(--brand); color:var(--brand-dark); background:var(--brand-light); }
.cat-pill.active { border-color:var(--brand); color:var(--white); background:var(--brand); }
.cat-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 40px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  border: 1.5px dashed var(--border);
  background: var(--white);
  color: var(--text-soft);
  transition: all .15s;
  font-family: 'Nunito Sans', sans-serif;
}
.cat-more-btn:hover { border-color:var(--brand); color:var(--brand); background:var(--brand-light); }

/* ── DIRECTORY BODY ── */
.dir-body { max-width:1200px; margin:0 auto; padding:32px 48px 120px; }
.results-top { display:flex; align-items:center; justify-content:space-between; margin-bottom:22px; }
.results-top h2 { font-size:16px; font-weight:700; color:var(--text); }
.results-top p { font-size:13.5px; color:var(--text-soft); margin-top:2px; }
.sort-sel { padding:8px 14px; border:1px solid var(--border); border-radius:8px; font-family:'Nunito Sans',sans-serif; font-size:13.5px; color:var(--text-soft); background:var(--white); cursor:pointer; outline:none; font-weight:600; }

/* ── GRID CARDS ── */
.listing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.grid-card { background:var(--white); border:1px solid var(--border); border-radius:14px; overflow:hidden; box-shadow:var(--shadow-sm); transition:all .18s; cursor:pointer; display:flex; flex-direction:column; text-decoration:none; color:inherit; animation:fadeUp .3s ease both; }
.grid-card:hover { border-color:var(--brand); box-shadow:0 6px 24px rgba(104,188,224,.18); transform:translateY(-2px); }
.grid-card:nth-child(2){animation-delay:.05s} .grid-card:nth-child(3){animation-delay:.1s} .grid-card:nth-child(4){animation-delay:.15s} .grid-card:nth-child(5){animation-delay:.2s} .grid-card:nth-child(6){animation-delay:.25s}
@keyframes fadeUp { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }
.card-band { height:6px; background:linear-gradient(90deg,var(--brand-mid),var(--brand)); }
.card-body { padding:20px; flex:1; display:flex; flex-direction:column; }
.card-top { display:flex; align-items:flex-start; gap:14px; margin-bottom:14px; }
.card-logo { width:56px; height:56px; border-radius:10px; background:var(--brand-light); border:1px solid var(--brand-mid); display:flex; align-items:center; justify-content:center; font-size:24px; flex-shrink:0; }
.card-head h3 { font-size:15px; font-weight:700; color:var(--text); margin-bottom:5px; line-height:1.3; }
.card-tags { display:flex; align-items:center; gap:6px; flex-wrap:wrap; }
.pill-cat { font-size:11.5px; font-weight:700; color:var(--brand-dark); background:var(--brand-light); padding:2px 9px; border-radius:20px; }
.pill-loc { font-size:12px; color:var(--text-soft); }
.card-desc { font-size:13.5px; color:var(--text-soft); line-height:1.55; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; margin-bottom:16px; flex:1; }
.card-footer { display:flex; align-items:center; justify-content:space-between; padding-top:14px; border-top:1px solid var(--border); flex-wrap:wrap; gap:6px; }
.badge-verified { display:flex; align-items:center; gap:5px; font-size:11.5px; font-weight:700; color:#16a34a; background:var(--green-light); padding:4px 10px; border-radius:20px; }
.badge-unverified { display:flex; align-items:center; gap:5px; font-size:11.5px; font-weight:600; color:var(--text-muted); background:var(--bg); padding:4px 10px; border-radius:20px; border:1px dashed var(--border); }
.star-row { font-size:12.5px; color:var(--amber); display:flex; align-items:center; gap:3px; }
.star-row em { color:var(--text-muted); font-style:normal; font-size:11.5px; }

/* ── TRUST CHIPS ── */
.trust-chips { display:flex; flex-wrap:wrap; gap:5px; margin-top:6px; }
.trust-chip { font-size:0.72rem; background:var(--bg); border:1px solid var(--border); border-radius:20px; padding:2px 8px; color:var(--text-soft); white-space:nowrap; }

/* ── LOAD MORE ── */
#load-more-btn { padding:12px 36px; font-size:1rem; border-radius:8px; }

/* ── LISTING PAGE ── */
.listing-hero { background:linear-gradient(105deg,var(--white) 0%,#f0f9ff 60%,#e4f4fc 100%); padding:40px 48px; border-bottom:1px solid var(--border); }
.breadcrumb { display:flex; align-items:center; gap:8px; margin-bottom:26px; font-size:13px; color:var(--text-muted); flex-wrap:wrap; }
.breadcrumb a { color:var(--brand); text-decoration:none; font-weight:600; }
.lp-header { display:flex; gap:22px; align-items:flex-start; max-width:1100px; margin:0 auto; }
.lp-logo { width:90px; height:90px; border-radius:14px; background:var(--white); border:2px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:38px; flex-shrink:0; box-shadow:var(--shadow); }
.lp-title { font-family:'Nunito',sans-serif; font-size:30px; font-weight:700; color:var(--text); margin-bottom:10px; letter-spacing:-.3px; }
.lp-badges { display:flex; align-items:center; gap:8px; flex-wrap:wrap; margin-bottom:10px; }
.lp-body { max-width:1100px; margin:0 auto; padding:36px 48px 120px; display:grid; grid-template-columns:1fr 300px; gap:28px; }
.section-card { background:var(--white); border:1px solid var(--border); border-radius:12px; padding:24px; margin-bottom:18px; box-shadow:var(--shadow-sm); }
.section-title { font-size:11px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--text-muted); margin-bottom:16px; padding-bottom:12px; border-bottom:1px solid var(--border); }
.section-card p { font-size:15px; line-height:1.75; color:var(--text-soft); }
.services-grid { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.svc-item { display:flex; align-items:center; gap:8px; font-size:13.5px; color:var(--text); padding:9px 13px; background:var(--bg); border-radius:8px; border:1px solid var(--border); font-weight:500; }
.svc-dot { width:7px; height:7px; border-radius:50%; background:var(--brand); flex-shrink:0; }
.gallery { display:grid; grid-template-columns:2fr 1fr 1fr; gap:8px; }
.gal-block { background:linear-gradient(135deg,var(--brand-light),#dbeeff); border-radius:8px; border:1px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:26px; color:var(--brand-mid); overflow:hidden; }
.gal-block.tall { height:180px; grid-row:span 2; }
.gal-block.sm { height:86px; }
.contact-sidebar { position:sticky; top:80px; align-self:start; }
.contact-card { background:var(--white); border:1px solid var(--border); border-radius:12px; padding:22px; box-shadow:var(--shadow); margin-bottom:16px; }
.contact-card h3 { font-size:15.5px; font-weight:700; color:var(--text); margin-bottom:16px; }
.cta-call { width:100%; padding:12px; background:var(--brand); color:var(--white); border:none; border-radius:8px; font-family:'Nunito Sans',sans-serif; font-size:14.5px; font-weight:700; cursor:pointer; margin-bottom:8px; transition:all .15s; display:flex; align-items:center; justify-content:center; gap:8px; text-decoration:none; }
.cta-call:hover { background:var(--brand-dark); }
.cta-email { width:100%; padding:11px; background:var(--brand-light); color:var(--brand-dark); border:1.5px solid var(--brand-mid); border-radius:8px; font-family:'Nunito Sans',sans-serif; font-size:14px; font-weight:700; cursor:pointer; margin-bottom:18px; transition:all .15s; display:flex; align-items:center; justify-content:center; gap:8px; text-decoration:none; }
.cta-email:hover { background:#d4ecf7; }
.contact-detail { display:flex; align-items:center; gap:12px; padding:10px 0; border-bottom:1px solid var(--border); font-size:13.5px; color:var(--text); }
.contact-detail:last-child { border:none; }
.contact-icon { width:32px; height:32px; border-radius:8px; background:var(--brand-light); display:flex; align-items:center; justify-content:center; font-size:15px; flex-shrink:0; }
.contact-detail a { color:var(--brand-dark); text-decoration:none; font-weight:600; }
.hours-row { display:flex; justify-content:space-between; padding:7px 0; font-size:13.5px; border-bottom:1px solid var(--bg); }
.hours-row .day { color:var(--text-soft); }
.hours-row .time { color:var(--text); font-weight:600; }
.hours-row .closed { color:var(--red); font-weight:600; }
.claim-box { background:var(--bg); border:1.5px dashed var(--border); border-radius:10px; padding:18px; text-align:center; }
.claim-box p { font-size:13px; color:var(--text-soft); margin-bottom:12px; line-height:1.5; }
.listing-content p { margin-bottom:12px; font-size:15px; line-height:1.75; color:var(--text-soft); }
.listing-content h2,.listing-content h3 { color:var(--text); font-family:'Nunito',sans-serif; margin:20px 0 10px; }
.listing-content ul,.listing-content ol { padding-left:20px; margin-bottom:12px; color:var(--text-soft); }

/* ── BLOG ── */
.blog-hero { background:linear-gradient(105deg,var(--white) 0%,#f0f9ff 60%,#e4f4fc 100%); padding:60px 48px; border-bottom:1px solid var(--border); text-align:center; }
.blog-hero-inner { max-width:700px; margin:0 auto; }
.blog-hero h1 { font-family:'Nunito',sans-serif; font-size:40px; font-weight:700; color:var(--text); line-height:1.2; margin-bottom:12px; }
.blog-hero h1 span { color:var(--brand); }
.blog-hero p { font-size:16px; color:var(--text-soft); }
.blog-body { max-width:1200px; margin:0 auto; padding:32px 48px 120px; }
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.blog-card { background:var(--white); border:1px solid var(--border); border-radius:14px; overflow:hidden; box-shadow:var(--shadow-sm); text-decoration:none; color:inherit; transition:all .18s; display:flex; flex-direction:column; }
.blog-card:hover { border-color:var(--brand); box-shadow:0 6px 24px rgba(104,188,224,.18); transform:translateY(-2px); }
.blog-card.featured { grid-column:span 3; display:grid; grid-template-columns:1fr 1fr; }
.blog-card-img { height:200px; overflow:hidden; background:var(--brand-light); display:flex; align-items:center; justify-content:center; }
.blog-card.featured .blog-card-img { height:100%; min-height:280px; }
.blog-card-img img { width:100%; height:100%; object-fit:cover; }
.blog-img-placeholder { font-size:48px; }
.blog-card-body { padding:22px; flex:1; display:flex; flex-direction:column; }
.blog-card-body h2 { font-family:'Nunito',sans-serif; font-size:18px; font-weight:700; color:var(--text); margin:10px 0 8px; line-height:1.3; }
.blog-card.featured .blog-card-body h2 { font-size:24px; }
.blog-card-body p { font-size:13.5px; color:var(--text-soft); line-height:1.55; flex:1; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; margin-bottom:16px; }
.blog-meta { display:flex; gap:16px; font-size:12px; color:var(--text-muted); margin-top:auto; }

/* ── POST PAGE ── */
.post-hero { background:linear-gradient(105deg,var(--white) 0%,#f0f9ff 60%); padding:48px; border-bottom:1px solid var(--border); }
.post-hero-inner { max-width:820px; margin:0 auto; }
.post-hero h1 { font-family:'Nunito',sans-serif; font-size:36px; font-weight:700; color:var(--text); line-height:1.2; margin:16px 0; }
.post-meta { display:flex; gap:20px; font-size:13px; color:var(--text-muted); margin-top:8px; }
.post-body { max-width:820px; margin:0 auto; padding:40px 48px 120px; }
.post-content { font-size:16px; line-height:1.8; color:var(--text); }
.post-content p { margin-bottom:18px; }
.post-content h2 { font-family:'Nunito',sans-serif; font-size:24px; font-weight:700; color:var(--text); margin:32px 0 14px; }
.post-content h3 { font-family:'Nunito',sans-serif; font-size:20px; font-weight:700; color:var(--text); margin:24px 0 10px; }
.post-content ul,.post-content ol { padding-left:24px; margin-bottom:18px; }
.post-content li { margin-bottom:6px; color:var(--text-soft); }
.post-content a { color:var(--brand-dark); font-weight:600; }
.post-content blockquote { border-left:3px solid var(--brand); padding-left:20px; margin:24px 0; color:var(--text-soft); font-style:italic; }
.post-related { margin-top:48px; padding-top:32px; border-top:1px solid var(--border); }
.post-related h3 { font-family:'Nunito',sans-serif; font-size:20px; font-weight:700; color:var(--text); margin-bottom:16px; }

/* ── FORMS ── */
.form-hero { background:linear-gradient(105deg,var(--white) 0%,#f0f9ff 60%); padding:60px 48px; border-bottom:1px solid var(--border); }
.form-hero-inner { max-width:700px; margin:0 auto; }
.form-hero h1 { font-family:'Nunito',sans-serif; font-size:36px; font-weight:700; color:var(--text); margin-bottom:12px; }
.form-hero h1 span { color:var(--brand); }
.form-hero p { font-size:16px; color:var(--text-soft); }
.form-body { max-width:800px; margin:0 auto; padding:36px 48px 120px; }
.listing-form .form-section { margin-bottom:32px; }
.form-section-title { font-family:'Nunito',sans-serif; font-size:18px; font-weight:700; color:var(--text); margin-bottom:20px; padding-bottom:12px; border-bottom:1px solid var(--border); }
.form-group { margin-bottom:16px; }
.form-group label { display:block; font-size:13.5px; font-weight:700; color:var(--text); margin-bottom:6px; }
.form-group label small { font-weight:400; color:var(--text-muted); }
.form-group input,.form-group select,.form-group textarea { width:100%; padding:11px 14px; border:1.5px solid var(--border); border-radius:8px; font-family:'Nunito Sans',sans-serif; font-size:14.5px; color:var(--text); outline:none; transition:border-color .15s; background:var(--white); }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { border-color:var(--brand); box-shadow:0 0 0 3px rgba(104,188,224,.15); }
.form-group textarea { resize:vertical; line-height:1.6; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.req { color:var(--red); }
.success-box { text-align:center; padding:60px 40px; }
.success-box h2 { font-family:'Nunito',sans-serif; font-size:28px; font-weight:700; color:var(--text); margin-bottom:12px; }
.success-box p { color:var(--text-soft); font-size:16px; }
.empty-state { text-align:center; padding:80px 40px; color:var(--text-soft); }
.empty-state h3 { font-size:20px; font-weight:700; color:var(--text); margin-bottom:8px; }

/* Quill override */
.ql-container.ql-snow { border:1.5px solid var(--border); border-top:0; border-radius:0 0 8px 8px; font-family:'Nunito Sans',sans-serif; font-size:14.5px; }
.ql-toolbar.ql-snow { border:1.5px solid var(--border); border-radius:8px 8px 0 0; background:var(--bg); }

/* ── AUTH ── */
.auth-wrap { display:flex; align-items:center; justify-content:center; min-height:calc(100vh - 120px); padding:40px; background:var(--bg); }
.auth-card { background:var(--white); border:1px solid var(--border); border-radius:16px; padding:40px; width:100%; max-width:420px; box-shadow:var(--shadow-md); }
.auth-logo { text-align:center; margin-bottom:28px; }
.auth-title { font-family:'Nunito',sans-serif; font-size:24px; font-weight:700; color:var(--text); margin-bottom:6px; text-align:center; }
.auth-sub { font-size:14px; color:var(--text-soft); text-align:center; margin-bottom:28px; }

/* ── PAGINATION ── */
.pagination { display:flex; justify-content:center; gap:6px; margin-top:32px; }
.page-btn { padding:8px 14px; border:1px solid var(--border); border-radius:8px; font-size:13.5px; font-weight:600; color:var(--text-soft); text-decoration:none; transition:all .15s; background:var(--white); }
.page-btn:hover,.page-btn.active { background:var(--brand); color:var(--white); border-color:var(--brand); }

/* ── FOOTER ── */
.site-footer { background:var(--text); color:rgba(255,255,255,.7); padding:60px 48px 0; margin-top:0; }
.footer-inner { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1fr 2fr; gap:60px; padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,.1); }
.footer-brand .logo-text { font-family:'Nunito',sans-serif; font-size:22px; font-weight:700; color:var(--white); margin-bottom:12px; }
.footer-brand .logo-text span { color:var(--brand); }
.footer-brand p { font-size:14px; line-height:1.6; }
.footer-links { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; }
.footer-links h4 { color:var(--white); font-size:13px; font-weight:700; letter-spacing:1px; text-transform:uppercase; margin-bottom:14px; }
.footer-links a { display:block; color:rgba(255,255,255,.6); text-decoration:none; font-size:14px; margin-bottom:8px; transition:color .15s; }
.footer-links a:hover { color:var(--brand); }
.footer-bottom { max-width:1200px; margin:0 auto; padding:20px 0; font-size:13px; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .owner-strip { padding:14px 20px; }
  .owner-strip-inner { flex-direction:column; align-items:flex-start; }
  .search-wrap { flex-wrap:wrap; max-width:100%; }
  .search-wrap select { min-width:80px; font-size:12px; }
  .suburb-input { min-width:100px; }
  .listing-grid { grid-template-columns:1fr; }
  .blog-grid { grid-template-columns:1fr; }
  .blog-card.featured { grid-column:span 1; grid-template-columns:1fr; }
  .dir-hero { width:100%; }
  .dir-hero-left { padding:40px 24px; }
  .lp-body { grid-template-columns:1fr; padding:24px; }
  .site-nav { padding:0 20px; height:80px; }
  .dir-body { padding:24px 20px 60px; }
}