/* ========================================
   HARRINGTON ROOFING V4 — DESIGN SYSTEM
   Eastern Melbourne Roof Specialists
   ======================================== */

/* CSS RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { line-height: 1.6; -webkit-font-smoothing: antialiased; }
img, picture, video, canvas { display: block; max-width: 100%; }
svg { max-width: 100%; }
svg:not(.icon-block) { display: inline-block; vertical-align: middle; flex-shrink: 0; }
input, button, textarea, select { font: inherit; }
button { cursor: pointer; border: none; background: none; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* CUSTOM PROPERTIES */
:root {
  /* Colours */
  --primary: #004A7F;
  --secondary: #FF6B35;
  --accent: #FFB503;
  --dark: #1a1a2e;
  --text: #4A4A4A;
  --text-light: #6C757D;
  --light: #F8F9FA;
  --white: #FFFFFF;
  --border: #E5E5E5;
  --success: #198754;
  --danger: #DC3545;
  
  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  
  /* Spacing (8px scale) */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-8: 64px;
  --space-10: 80px;
  
  /* Shadows */
  --shadow-card: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-header: 0 2px 8px rgba(0,0,0,0.1);
  
  /* Layout */
  --container-max: 1200px;
  --section-padding: 80px 0;
  --border-radius: 6px;
  --transition: 0.2s ease;
}

/* TYPOGRAPHY */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--dark);
  font-weight: 700;
}

h1 { font-size: 48px; font-weight: 800; }
h2 { font-size: 36px; font-weight: 700; }
h3 { font-size: 24px; font-weight: 600; }
h4 { font-size: 20px; font-weight: 600; }

p { margin-bottom: var(--space-2); }
strong { font-weight: 600; }

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
  body { font-size: 15px; }
}

/* GRID SYSTEM */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-2);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(var(--space-1) * -1);
}

.col { flex: 1; padding: 0 var(--space-1); min-width: 0; }
.col-2 { flex: 0 0 50%; max-width: 50%; padding: 0 var(--space-1); }
.col-3 { flex: 0 0 33.333%; max-width: 33.333%; padding: 0 var(--space-1); }
.col-4 { flex: 0 0 25%; max-width: 25%; padding: 0 var(--space-1); }

@media (max-width: 768px) {
  .col-2, .col-3, .col-4 { flex: 0 0 100%; max-width: 100%; }
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  border-radius: var(--border-radius);
  transition: all var(--transition);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: #e65a28;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
  background: #003a64;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
}

.header.sticky {
  box-shadow: var(--shadow-header);
}

.utility-bar {
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  padding: 10px 0;
}

.utility-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-3);
  text-align: center;
}

.utility-bar a {
  color: var(--white);
  font-weight: 500;
}

.utility-bar a:hover {
  color: var(--accent);
}

.utility-bar strong {
  color: var(--accent);
}

.main-nav {
  padding: var(--space-2) 0;
  background: var(--white);
  position: relative;
}

.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav-menu a {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  transition: color var(--transition);
}

.nav-menu a:hover {
  color: var(--secondary);
}

.nav-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow-card);
  border-radius: var(--border-radius);
  padding: var(--space-2);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition);
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: var(--space-1);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-1);
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--dark);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
  .utility-bar { font-size: 11px; padding: 8px 0; }
  .utility-bar .container { flex-direction: column; gap: 4px; }
  .utility-bar a { font-size: 12px; }
  
  .hamburger { display: flex; }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-2);
    box-shadow: var(--shadow-card);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .nav-menu.active {
    max-height: 500px;
    opacity: 1;
  }
  
  .nav-menu a { padding: var(--space-2) 0; }
  
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: var(--space-2);
  }
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: var(--space-10) 0;
  background: linear-gradient(135deg, var(--primary) 0%, #003560 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-2);
  line-height: 1.1;
}

.hero-highlight {
  display: block;
  color: var(--accent);
  font-size: 1.2em;
  margin-top: 8px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto var(--space-4);
  opacity: 0.95;
}

.hero-cta {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-4);
}

.trust-badges {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  font-size: 15px;
}

.trust-badges span::before {
  content: '✓';
  color: var(--success);
  margin-right: 8px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .hero { min-height: 500px; padding: var(--space-6) 0; }
  .hero-subtitle { font-size: 16px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .trust-badges { flex-direction: column; align-items: center; gap: var(--space-2); }
}

/* TRUST BAR */
.trust-bar {
  background: var(--light);
  padding: var(--space-5) 0;
}

.stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
  display: block;
}

.stat-label {
  font-size: 14px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* SECTIONS */
section {
  padding: var(--section-padding);
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-6);
}

.section-subtitle {
  color: var(--secondary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-1);
}

@media (max-width: 768px) {
  section { padding: var(--space-6) 0; }
}

/* CARDS */
.card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: var(--space-3);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  margin-bottom: var(--space-2);
}

.card-text {
  color: var(--text);
  margin-bottom: var(--space-2);
  flex: 1;
}

.card-bullets {
  margin: var(--space-2) 0;
}

.card-bullets li {
  padding: 6px 0;
  position: relative;
  padding-left: 20px;
}

.card-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

/* IMAGE PLACEHOLDER */
.image-placeholder {
  background: #e9ecef;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3);
  color: var(--text-light);
  font-size: 14px;
  font-style: italic;
  border: 2px dashed var(--border);
}

/* TRUST CARDS */
.trust-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-3);
}

.trust-card {
  text-align: center;
  padding: var(--space-4);
}

.trust-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-2);
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

/* BEFORE/AFTER */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-3);
}

.before-after-pair {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.before-after-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}

.before-after-caption {
  padding: var(--space-2);
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
}

/* TESTIMONIALS */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-3);
}

.testimonial {
  background: var(--white);
  padding: var(--space-4);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 18px;
  margin-bottom: var(--space-2);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--space-2);
  color: var(--text);
}

.testimonial-author {
  font-weight: 600;
  color: var(--dark);
}

.testimonial-location {
  font-size: 14px;
  color: var(--text-light);
}

/* SERVICE AREAS */
.suburb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  margin-bottom: var(--space-3);
}

.suburb-tag {
  background: var(--light);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  color: var(--text);
}

/* CTA BANNER */
.cta-banner {
  background: var(--primary);
  color: var(--white);
  padding: var(--space-6) 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: var(--space-2);
}

.cta-phone {
  display: block;
  font-size: 36px;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--accent);
  margin-bottom: var(--space-4);
}

/* FORM */
.quote-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: var(--space-4);
  border-radius: var(--border-radius);
}

.form-group {
  margin-bottom: var(--space-3);
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--border-radius);
  font-size: 15px;
  transition: border-color var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
}

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

.form-error {
  color: var(--danger);
  font-size: 14px;
  margin-top: 6px;
}

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

.faq-item {
  background: var(--white);
  margin-bottom: var(--space-2);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.faq-question {
  width: 100%;
  padding: var(--space-3);
  text-align: left;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--secondary);
  transition: transform var(--transition);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 0 var(--space-3) var(--space-3);
  color: var(--text);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* FOOTER */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: var(--space-6) 0 var(--space-3);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: var(--space-2);
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: var(--space-1);
}

.footer-section a:hover {
  color: var(--accent);
}

.footer-links a {
  display: block;
  padding: 6px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-3);
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* CHAT WIDGET */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.chat-bubble {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-hover);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.chat-bubble:hover {
  background: var(--secondary);
  transform: scale(1.1);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.chat-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  display: none;
  overflow: hidden;
}

.chat-window.active {
  display: block;
  animation: slideUp 0.3s ease;
}

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

.chat-header {
  background: var(--primary);
  color: var(--white);
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
}

.chat-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 24px;
  height: 24px;
}

.chat-close:hover {
  opacity: 0.8;
}

.chat-body {
  padding: 20px;
}

.chat-message {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.6;
}

.chat-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-btn {
  padding: 12px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--dark);
  text-align: left;
}

.chat-btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

.chat-areas {
  margin-top: 12px;
  padding: 12px;
  background: var(--light);
  border-radius: 6px;
}

.areas-title {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 14px;
}

.areas-list {
  list-style: none;
  font-size: 14px;
  color: var(--text);
}

.areas-list li {
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.areas-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

@media (max-width: 768px) {
  .chat-widget {
    bottom: 16px;
    right: 16px;
  }

  .chat-bubble {
    width: 56px;
    height: 56px;
  }

  .chat-window {
    width: calc(100vw - 32px);
    right: -8px;
  }
}

/* TOP BAR (subpages — alias for utility-bar) */
.top-bar {
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
  padding: var(--space-1) 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 4px;
}

.top-bar-phone,
.top-bar-email {
  color: var(--white);
}

.top-bar-phone:hover,
.top-bar-email:hover {
  color: var(--accent);
}

.top-bar-divider {
  color: rgba(255,255,255,0.4);
  margin: 0 8px;
}

.top-bar-right {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

@media (max-width: 768px) {
  .top-bar { font-size: 12px; }
  .top-bar-inner { flex-direction: column; gap: 4px; text-align: center; }
  .top-bar-email { display: none; }
  .top-bar-divider { display: none; }
}

/* BREADCRUMB */
.breadcrumb {
  padding: var(--space-2) 0;
  font-size: 14px;
  color: var(--text-light);
  background: var(--light);
  border-bottom: 1px solid var(--border);
}

.breadcrumb a {
  color: var(--primary);
}

.breadcrumb a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

/* PAGE HERO (subpages) */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #003560 100%);
  color: var(--white);
  padding: var(--space-6) 0;
  text-align: center;
}

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

.page-hero .hero-subtitle {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* INTRO TEXT */
.intro-text {
  max-width: 800px;
  margin: 0 auto var(--space-4);
  font-size: 17px;
  line-height: 1.7;
  text-align: center;
}

/* SECTION (generic padding for subpages) */
.section {
  padding: var(--section-padding);
}

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

/* ACTIVE NAV LINK */
.nav-menu a.active {
  color: var(--secondary);
}

/* QUOTE MODAL */
.quote-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-2);
}

.quote-modal-overlay.active {
  display: flex;
}

.quote-modal {
  background: var(--white);
  border-radius: 12px;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
  animation: slideUp 0.3s ease;
}

.quote-modal-header {
  background: var(--primary);
  color: var(--white);
  padding: var(--space-3);
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quote-modal-header h3 {
  color: var(--white);
  font-size: 18px;
  margin: 0;
}

.quote-modal-close {
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

.quote-modal-body {
  padding: var(--space-3);
}

.quote-modal-body .form-group {
  margin-bottom: var(--space-2);
}

.quote-modal-body .form-label {
  font-size: 14px;
  margin-bottom: 4px;
}

.quote-modal-body .form-control {
  padding: 10px 12px;
  font-size: 14px;
}

.quote-modal-body .btn {
  width: 100%;
  margin-top: var(--space-1);
}

/* SVG ICON ALIGNMENT */
.utility-bar svg,
.footer svg,
.chat-btn svg,
.btn svg,
.hero-badge svg,
.trust-badges svg {
  display: inline-block;
  vertical-align: -2px;
  margin-right: 6px;
  flex-shrink: 0;
}

.trust-icon svg {
  display: block;
  margin: 0 auto;
}

.utility-bar a,
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.utility-bar a svg,
.footer-links a svg {
  margin-right: 0;
}

.chat-btn {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* SUBURB AUTOCOMPLETE */
.suburb-autocomplete {
  position: relative;
}

.suburb-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 2px solid var(--primary);
  border-top: none;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  max-height: 200px;
  overflow-y: auto;
  z-index: 100;
  display: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.suburb-suggestions.active {
  display: block;
}

.suburb-suggestion {
  padding: 10px 12px;
  cursor: pointer;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.suburb-suggestion:last-child {
  border-bottom: none;
}

.suburb-suggestion:hover,
.suburb-suggestion.highlighted {
  background: var(--light);
  color: var(--primary);
}

.suburb-suggestion .postcode {
  color: var(--text-light);
  font-size: 12px;
  font-weight: 600;
}

.suburb-match {
  color: var(--secondary);
  font-weight: 600;
}

/* UTILITIES */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mt-4 { margin-top: var(--space-4); }

/* PRINT STYLES */
@media print {
  .header, .mobile-call-btn, .cta-banner { display: none; }
  body { font-size: 12pt; }
  section { page-break-inside: avoid; }
}
