/* ============================================================
   BULK BILLING DIRECTORY — shared stylesheet v2
   ============================================================ */

:root {
  --teal:        #0B6E72;
  --teal-dark:   #084E51;
  --teal-mid:    #0D8589;
  --teal-light:  #12A8AC;
  --teal-bg:     #EBF7F7;
  --teal-bg2:    #D4EEEE;
  --amber:       #C8860A;
  --amber-light: #FDF3E0;
  --amber-mid:   #E09A12;
  --slate:       #1A2B35;
  --slate-mid:   #3D5166;
  --slate-light: #6B7F8E;
  --slate-pale:  #A8B8C4;
  --off-white:   #F4F7F7;
  --white:       #FFFFFF;
  --border:      #D0E4E4;
  --border-light:#E5F0F0;
  --sponsored-bg:#FFFBF2;
  --promoted-bg: #FFF8EC;
  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 4px rgba(11,110,114,0.07);
  --shadow:      0 3px 16px rgba(11,110,114,0.10);
  --shadow-lg:   0 8px 36px rgba(11,110,114,0.14);
  --font-display:'Libre Baskerville', Georgia, serif;
  --font-body:   'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--slate);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 200;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 66px; gap: 16px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--teal); text-decoration: none;
  display: flex; align-items: center; gap: 11px; flex-shrink: 0;
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--teal); border-radius: 9px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-mark svg { width: 18px; height: 18px; }
.logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--slate-light); margin-top: 1px; line-height: 1;
}
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  font-size: 0.84rem; font-weight: 500;
  color: var(--slate-mid); text-decoration: none;
  padding: 7px 13px; border-radius: var(--radius-sm);
  transition: all 0.18s;
}
.nav-links a:hover { color: var(--teal); background: var(--teal-bg); }
.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  border-radius: 22px !important;
  padding: 8px 18px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--teal-dark) !important; }

/* ── HERO ── */
.hero {
  background: var(--teal-dark);
  padding: 72px 28px 64px;
  text-align: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 70% at 15% 60%, rgba(18,168,172,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 85% 25%, rgba(200,134,10,0.10) 0%, transparent 65%);
}
.hero-inner { position: relative; max-width: 680px; margin: 0 auto; }

/* Replace cheap pill with elegant rule + text */
.hero-kicker {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 28px;
}
.hero-kicker-line { flex: 1; max-width: 60px; height: 1px; background: rgba(255,255,255,0.25); }
.hero-kicker-text {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.3rem);
  font-weight: 700; font-style: normal;
  color: var(--white); line-height: 1.12;
  margin-bottom: 18px; letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; color: rgba(255,255,255,0.78); font-weight: 400; }
.hero h1 span { font-style: normal; color: var(--white); }
.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.65);
  max-width: 460px; margin: 0 auto 40px;
  font-weight: 400; line-height: 1.75;
}

/* ── SEARCH ── */
.search-wrap { max-width: 580px; margin: 0 auto; }
.search-box {
  display: flex; background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.24);
  overflow: hidden;
}
.search-icon { display: flex; align-items: center; padding: 0 18px; color: var(--slate-pale); }
.search-icon svg { width: 17px; height: 17px; }
#search-input {
  flex: 1; padding: 17px 6px;
  font-family: var(--font-body); font-size: 0.95rem;
  border: none; outline: none; color: var(--slate);
}
#search-input::placeholder { color: var(--slate-pale); }
#search-btn {
  background: var(--amber); color: var(--white);
  border: none; padding: 0 30px;
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 600;
  cursor: pointer; transition: background 0.18s; white-space: nowrap;
  letter-spacing: 0.03em;
}
#search-btn:hover { background: #A87008; }
.search-hint {
  margin-top: 14px; font-size: 0.76rem;
  color: rgba(255,255,255,0.42); text-align: center;
}
.search-hint a {
  color: rgba(255,255,255,0.6); text-decoration: none;
  margin: 0 5px; transition: color 0.15s;
}
.search-hint a:hover { color: rgba(255,255,255,0.88); }

/* ── STATS BAR ── */
.stats-bar { background: var(--white); border-bottom: 1px solid var(--border); }
.stats-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  display: flex; justify-content: center; flex-wrap: wrap;
}
.stat-item {
  display: flex; align-items: center; gap: 13px;
  padding: 20px 30px;
  border-right: 1px solid var(--border-light);
}
.stat-item:last-child { border-right: none; }
.stat-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--teal-bg);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.stat-icon svg { width: 17px; height: 17px; color: var(--teal); }
.stat-label { font-size: 0.72rem; color: var(--slate-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; }
.stat-value { font-size: 0.92rem; font-weight: 700; color: var(--slate); line-height: 1.25; }

/* ── AD SLOTS ── */
.ad-slot {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--slate-pale); font-size: 0.75rem;
  font-style: italic; letter-spacing: 0.04em;
}
.ad-slot-leaderboard { min-height: 90px; margin: 0; }
.ad-slot-rectangle { min-height: 250px; max-width: 300px; }
.ad-slot-inline { min-height: 90px; margin: 28px 0; }

/* ── PAGE WRAP ── */
.page-wrap { max-width: 1160px; margin: 0 auto; padding: 44px 28px 64px; }

/* ── SECTION TITLES ── */
.section-title {
  font-family: var(--font-display);
  font-size: 1.9rem; font-weight: 700;
  color: var(--slate); letter-spacing: -0.01em;
  line-height: 1.15;
}
.section-sub { font-size: 0.88rem; color: var(--slate-light); margin-top: 6px; }

/* ── SUBURB GRID ── */
.suburb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
  gap: 12px; margin-top: 24px;
}
.suburb-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 20px 22px;
  text-decoration: none; display: flex; flex-direction: column; gap: 6px;
  transition: all 0.2s; position: relative; overflow: hidden;
}
.suburb-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--teal); transform: scaleX(0);
  transition: transform 0.2s; transform-origin: left;
}
.suburb-card:hover { border-color: var(--teal-bg2); box-shadow: var(--shadow); transform: translateY(-2px); }
.suburb-card:hover::after { transform: scaleX(1); }
.suburb-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--slate); }
.suburb-count { font-size: 0.76rem; color: var(--slate-light); font-weight: 500; }
.suburb-count strong { color: var(--teal); font-weight: 700; }
.suburb-arrow {
  margin-top: 8px; display: flex; align-items: center; gap: 4px;
  font-size: 0.75rem; color: var(--teal); font-weight: 600;
}
.suburb-arrow svg { width: 13px; height: 13px; }

/* ── FILTER ROW ── */
.filter-row { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 22px; }
.filter-btn {
  background: var(--white); border: 1.5px solid var(--border);
  color: var(--slate-mid); padding: 7px 16px; border-radius: 22px;
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
  cursor: pointer; transition: all 0.18s; letter-spacing: 0.02em;
}
.filter-btn:hover { border-color: var(--teal); color: var(--teal); }
.filter-btn.active { background: var(--teal); border-color: var(--teal); color: var(--white); }

/* ── DIRECTORY HEADER ── */
.directory-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px; flex-wrap: wrap; gap: 10px;
}
.result-info { font-size: 0.83rem; color: var(--slate-light); }
.result-info strong { color: var(--slate); }

/* ── GP CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 16px;
}

/* PROMOTED — full width, top of page, one per suburb */
.card-promoted-wrap {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}
.card-promoted {
  background: var(--promoted-bg);
  border: 2px solid var(--amber);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  animation: fadeUp 0.3s ease both;
}
.card-promoted-left {}
.card-promoted-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 10px;
}
.card-promoted-label svg { width: 11px; height: 11px; }
.card-promoted-name {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  color: var(--slate); margin-bottom: 4px; line-height: 1.2;
}
.card-promoted-suburb {
  font-size: 0.75rem; font-weight: 600; color: var(--slate-light);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px;
}
.card-promoted-desc {
  font-size: 0.88rem; color: var(--slate-mid);
  line-height: 1.7; margin-bottom: 14px; max-width: 520px;
}
.card-promoted-address {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.82rem; color: var(--slate-light); margin-bottom: 14px;
}
.card-promoted-address svg { width: 13px; height: 13px; flex-shrink: 0; color: var(--slate-pale); }
.card-promoted-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.card-promoted-right {
  display: flex; flex-direction: column; gap: 10px;
  align-items: flex-end; min-width: 160px;
}
.card-promoted-hours {
  font-size: 0.78rem; color: var(--slate-mid);
  text-align: right; line-height: 1.6;
}
.card-promoted-hours strong { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--slate-light); margin-bottom: 3px; }
.card-promoted-phone {
  display: flex; align-items: center; gap: 7px;
  background: var(--teal); color: var(--white);
  padding: 11px 18px; border-radius: var(--radius-sm);
  text-decoration: none; font-weight: 700; font-size: 0.88rem;
  transition: background 0.18s; white-space: nowrap;
}
.card-promoted-phone:hover { background: var(--teal-dark); }
.card-promoted-phone svg { width: 14px; height: 14px; }
.card-promoted-verified {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.72rem; color: var(--slate-pale);
}
.card-promoted-verified-pip { width: 6px; height: 6px; border-radius: 50%; background: #34D399; }

/* SPONSORED SECTION */
.sponsored-section-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 10px; display: flex; align-items: center; gap: 8px;
}
.sponsored-section-label::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.cards-grid-sponsored {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 16px; margin-bottom: 24px;
}
.card-sponsored {
  background: var(--sponsored-bg);
  border: 1.5px solid #E8C97A;
  border-radius: var(--radius); padding: 22px 24px;
  position: relative; transition: box-shadow 0.2s, transform 0.2s;
  animation: fadeUp 0.3s ease both;
}
.card-sponsored:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card-sponsored-label {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 8px;
}

/* STANDARD CARDS */
.standard-section-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--slate-light);
  margin: 20px 0 10px; display: flex; align-items: center; gap: 8px;
}
.standard-section-label::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.gp-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 22px 24px;
  position: relative; transition: box-shadow 0.2s, transform 0.2s;
  animation: fadeUp 0.3s ease both;
}
.gp-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

/* Shared card elements */
.card-suburb-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal-mid); margin-bottom: 4px;
}
.card-name {
  font-family: var(--font-display);
  font-size: 1.12rem; font-weight: 700;
  color: var(--slate); margin-bottom: 4px; line-height: 1.25;
}
.card-address {
  display: flex; align-items: flex-start; gap: 6px;
  font-size: 0.81rem; color: var(--slate-light);
  margin-bottom: 12px; line-height: 1.4;
}
.card-address svg { width: 12px; height: 12px; flex-shrink: 0; margin-top: 2px; color: var(--slate-pale); }
.card-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.tag {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--teal-bg); color: var(--teal-dark);
  font-size: 0.72rem; font-weight: 600;
  padding: 4px 9px; border-radius: 8px;
}
.tag svg { width: 10px; height: 10px; }
.card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 13px; border-top: 1px solid var(--border-light);
  gap: 8px; flex-wrap: wrap;
}
.card-phone a {
  display: flex; align-items: center; gap: 6px;
  color: var(--teal); font-weight: 700; font-size: 0.84rem;
  text-decoration: none; transition: color 0.15s;
}
.card-phone a:hover { color: var(--teal-dark); }
.card-phone svg { width: 13px; height: 13px; }
.card-verified {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.72rem; color: var(--slate-pale);
}
.verified-pip { width: 6px; height: 6px; border-radius: 50%; background: #34D399; flex-shrink: 0; }

/* ── NO RESULTS ── */
.no-results {
  grid-column: 1/-1; text-align: center; padding: 70px 20px;
}
.no-results h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 10px; }
.no-results p { color: var(--slate-light); font-size: 0.9rem; }
.no-results a { color: var(--teal); font-weight: 700; }

/* ── TELEHEALTH SECTION ── */
.telehealth-section {
  margin: 52px 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.telehealth-inner { display: grid; grid-template-columns: 1fr 340px; }
.telehealth-content { padding: 40px 44px; }
.telehealth-eyebrow {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 12px;
}
.telehealth-content h2 {
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 700;
  margin-bottom: 10px; line-height: 1.2; color: var(--slate);
}
.telehealth-content p {
  font-size: 0.88rem; color: var(--slate-mid);
  margin-bottom: 24px; line-height: 1.75;
}
.telehealth-options { display: flex; flex-direction: column; gap: 8px; }
.telehealth-option {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 16px; background: var(--off-white);
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  text-decoration: none; transition: all 0.18s; gap: 12px;
}
.telehealth-option:hover { border-color: var(--teal); background: var(--teal-bg); }
.telehealth-option-info {}
.telehealth-option-name { font-weight: 700; font-size: 0.88rem; color: var(--slate); }
.telehealth-option-desc { font-size: 0.77rem; color: var(--slate-light); margin-top: 1px; }
.telehealth-arrow { color: var(--teal); flex-shrink: 0; }
.telehealth-arrow svg { width: 15px; height: 15px; }
.telehealth-panel {
  background: linear-gradient(160deg, var(--teal-dark) 0%, var(--teal-mid) 100%);
  padding: 40px 32px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
  position: relative; overflow: hidden;
}
.telehealth-panel::before {
  content: ''; position: absolute;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -80px; right: -80px;
}
.telehealth-panel-icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
}
.telehealth-panel-icon svg { width: 32px; height: 32px; color: var(--white); }
.telehealth-panel h3 {
  font-family: var(--font-display);
  font-size: 1.25rem; color: var(--white); text-align: center; line-height: 1.3;
}
.telehealth-panel p { font-size: 0.82rem; color: rgba(255,255,255,0.6); text-align: center; line-height: 1.7; }

/* ── CALCULATOR ── */
.calculator-section {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 44px;
  margin: 52px 0;
}
.calculator-section h2 {
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 700; margin-bottom: 8px;
}
.calculator-section p { font-size: 0.88rem; color: var(--slate-mid); margin-bottom: 28px; line-height: 1.7; }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.calc-inputs { display: flex; flex-direction: column; gap: 18px; }
.calc-group label {
  display: block; font-size: 0.73rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--slate-mid); margin-bottom: 7px;
}
.calc-group select,
.calc-group input {
  width: 100%; padding: 12px 14px;
  font-family: var(--font-body); font-size: 0.92rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  color: var(--slate); background: var(--off-white); outline: none;
  transition: border-color 0.18s;
}
.calc-group select:focus,
.calc-group input:focus { border-color: var(--teal); background: var(--white); }
.calc-btn {
  background: var(--teal); color: var(--white);
  border: none; padding: 13px 28px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 700;
  border-radius: var(--radius-sm); cursor: pointer;
  transition: background 0.18s; align-self: flex-start;
}
.calc-btn:hover { background: var(--teal-dark); }
.calc-result {
  background: var(--teal-bg); border: 1.5px solid var(--teal-bg2);
  border-radius: var(--radius); padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  justify-content: center;
}
.calc-result-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 14px; border-bottom: 1px solid var(--teal-bg2);
  font-size: 0.88rem;
}
.calc-result-row:last-child { border-bottom: none; padding-bottom: 0; }
.calc-result-row label { color: var(--slate-mid); font-weight: 500; }
.calc-result-row .value { font-weight: 700; color: var(--slate); font-size: 1rem; }
.calc-result-row.highlight .value { color: var(--teal); font-size: 1.3rem; }
.calc-result-row.saving .value { color: #16A34A; }
.calc-note {
  font-size: 0.75rem; color: var(--slate-light);
  line-height: 1.65; margin-top: 8px;
}

/* ── INFO PANELS ── */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 52px 0; }
.info-panel {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 32px 34px;
}
.info-panel h2 {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 700; margin-bottom: 14px; color: var(--slate);
}
.info-panel p { font-size: 0.87rem; color: var(--slate-mid); line-height: 1.77; margin-bottom: 12px; }
.info-panel p:last-child { margin-bottom: 0; }
.info-callout {
  background: var(--teal-bg); border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px; margin-top: 16px;
  font-size: 0.84rem; color: var(--slate); line-height: 1.68;
}
.info-callout strong { color: var(--teal-dark); }

/* ── FAQ ── */
.faq-section { margin: 52px 0; }
.faq-section h2 {
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 700; margin-bottom: 24px; color: var(--slate);
}
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.faq-item {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none;
  padding: 18px 22px; text-align: left;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 700;
  color: var(--slate); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  transition: background 0.18s;
}
.faq-q:hover { background: var(--off-white); }
.faq-q svg { width: 16px; height: 16px; color: var(--slate-light); flex-shrink: 0; transition: transform 0.25s; }
.faq-q.open svg { transform: rotate(45deg); color: var(--teal); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.85rem; color: var(--slate-mid); line-height: 1.75;
  padding: 0 22px;
}
.faq-a.open { max-height: 300px; padding: 0 22px 18px; }

/* ── MYMEDICARE GUIDE ── */
.guide-section {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-mid) 100%);
  border-radius: var(--radius-lg); padding: 44px;
  margin: 52px 0; color: var(--white);
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.guide-content h2 {
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 700; margin-bottom: 12px; line-height: 1.2;
}
.guide-content p { font-size: 0.88rem; color: rgba(255,255,255,0.72); line-height: 1.77; margin-bottom: 20px; }
.guide-steps { display: flex; flex-direction: column; gap: 12px; }
.guide-step {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,0.07); border-radius: var(--radius-sm);
  padding: 14px 18px;
}
.guide-step-num {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800; color: var(--white); flex-shrink: 0;
}
.guide-step-text { font-size: 0.84rem; color: rgba(255,255,255,0.8); line-height: 1.6; }
.guide-step-text strong { color: var(--white); }

/* ── LISTING SECTION ── */
.listing-section { margin: 52px 0; }
.listing-section h2 {
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 700; margin-bottom: 6px;
}
.listing-section p.lead { font-size: 0.88rem; color: var(--slate-mid); margin-bottom: 32px; line-height: 1.7; }
.listing-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 32px; }

.listing-form {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 34px;
}
.listing-form h3 {
  font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 22px; color: var(--slate);
}
.form-group { margin-bottom: 15px; }
.form-group label {
  display: block; font-size: 0.72rem; font-weight: 700;
  color: var(--slate-mid); letter-spacing: 0.09em;
  text-transform: uppercase; margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  font-family: var(--font-body); font-size: 0.9rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  color: var(--slate); background: var(--off-white); outline: none;
  transition: border-color 0.18s, background 0.18s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 85px; }
.form-submit {
  width: 100%; background: var(--teal); color: var(--white);
  border: none; padding: 14px;
  font-family: var(--font-body); font-size: 0.92rem; font-weight: 700;
  border-radius: var(--radius-sm); cursor: pointer;
  transition: background 0.18s; letter-spacing: 0.02em;
}
.form-submit:hover { background: var(--teal-dark); }
.form-note { font-size: 0.73rem; color: var(--slate-pale); margin-top: 10px; text-align: center; }

/* PLAN CARDS */
.plans-stack { display: flex; flex-direction: column; gap: 12px; }
.plan-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px;
}
.plan-card.plan-promoted {
  border-color: var(--amber); background: var(--promoted-bg);
}
.plan-card.plan-sponsored {
  border-color: #E8C97A; background: var(--sponsored-bg);
}
.plan-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 8px; gap: 12px;
}
.plan-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--slate); }
.plan-price { font-weight: 800; font-size: 0.9rem; color: var(--teal); white-space: nowrap; }
.plan-card.plan-promoted .plan-price { color: var(--amber); }
.plan-card.plan-sponsored .plan-price { color: #9A6F08; }
.plan-desc { font-size: 0.82rem; color: var(--slate-mid); line-height: 1.65; }
.plan-features { margin-top: 10px; display: flex; flex-direction: column; gap: 5px; }
.plan-feature {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.78rem; color: var(--slate-mid);
}
.plan-feature svg { width: 11px; height: 11px; color: var(--teal); flex-shrink: 0; }

/* ── SUBURB HERO ── */
.suburb-hero {
  background: var(--teal-dark); padding: 56px 28px 48px;
  position: relative; overflow: hidden;
}
.suburb-hero-bg {
  position: absolute; inset: 0; opacity: 1;
  background:
    radial-gradient(ellipse 55% 65% at 12% 55%, rgba(18,168,172,0.16) 0%, transparent 70%),
    radial-gradient(ellipse 45% 55% at 88% 28%, rgba(200,134,10,0.09) 0%, transparent 65%);
}
.suburb-hero-inner { position: relative; max-width: 1160px; margin: 0 auto; }
.suburb-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: rgba(255,255,255,0.52); margin-bottom: 18px;
}
.suburb-breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.15s; }
.suburb-breadcrumb a:hover { color: var(--white); }
.suburb-breadcrumb svg { width: 11px; height: 11px; }
.suburb-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 700; font-style: italic;
  color: var(--white); margin-bottom: 10px; line-height: 1.12;
}
.suburb-hero p { font-size: 0.95rem; color: rgba(255,255,255,0.66); max-width: 560px; margin-bottom: 24px; line-height: 1.77; }
.suburb-stats { display: flex; gap: 10px; flex-wrap: wrap; }
.suburb-stat {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-sm); padding: 10px 18px;
  color: var(--white); font-size: 0.82rem; font-weight: 600;
}
.suburb-stat span {
  display: block; font-size: 0.66rem; font-weight: 600;
  opacity: 0.6; text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 2px;
}

/* ── FOOTER ── */
footer { background: var(--slate); color: rgba(255,255,255,0.6); padding: 52px 28px 28px; margin-top: 64px; }
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 40px; }
.footer-brand .logo { color: var(--white); margin-bottom: 12px; display: inline-flex; }
.footer-brand .logo-mark { background: var(--teal-mid); }
.footer-brand p { font-size: 0.82rem; line-height: 1.72; max-width: 270px; }
.footer-col h4 {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--white); margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  font-size: 0.82rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-search { margin-bottom: 10px; }
.footer-search input {
  width: 100%; padding: 9px 12px;
  font-family: var(--font-body); font-size: 0.82rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm); color: var(--white); outline: none;
  transition: border-color 0.18s;
}
.footer-search input::placeholder { color: rgba(255,255,255,0.35); }
.footer-search input:focus { border-color: rgba(255,255,255,0.4); }
.footer-search-btn {
  margin-top: 6px; width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  padding: 8px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
  cursor: pointer; transition: all 0.18s;
}
.footer-search-btn:hover { background: rgba(255,255,255,0.18); color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.76rem; }
.footer-disclaimer { font-size: 0.71rem; color: rgba(255,255,255,0.32); max-width: 660px; line-height: 1.65; }

/* ── ANIMATION ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .telehealth-inner { grid-template-columns: 1fr; }
  .telehealth-panel { display: none; }
  .info-grid { grid-template-columns: 1fr; }
  .listing-grid { grid-template-columns: 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .guide-section { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .card-promoted { grid-template-columns: 1fr; }
  .card-promoted-right { align-items: flex-start; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .stat-item { padding: 14px 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid-sponsored { grid-template-columns: 1fr; }
  .suburb-grid { grid-template-columns: 1fr 1fr; }
  .search-box { flex-direction: column; }
  .search-icon { padding: 14px 16px 0; }
  #search-input { padding: 10px 16px 14px; }
  #search-btn { padding: 14px; }
  .calculator-section { padding: 28px 22px; }
  .telehealth-content { padding: 28px 24px; }
}
