/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #1a1a2e;
  line-height: 1.6;
  background: #fff;
}
a { color: #2563eb; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a2e;
  text-decoration: none;
}
.logo:hover { text-decoration: none; }
.logo span { color: #f59e0b; }
.nav-links { display: flex; gap: 24px; list-style: none; align-items: center; }
.nav-links a { color: #4b5563; font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: #2563eb; text-decoration: none; }
.nav-cta {
  background: #f59e0b !important;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700 !important;
  font-size: 15px;
  transition: background 0.2s;
}
.nav-cta:hover { background: #d97706 !important; text-decoration: none !important; }

/* Mobile nav */
.mobile-toggle { display: none; cursor: pointer; font-size: 24px; }
@media (max-width: 768px) {
  .mobile-toggle { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    gap: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 200;
  }
  .nav-links.open { display: flex; }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f2439 100%);
  color: #fff;
  padding: 80px 0 60px;
  text-align: center;
}
.hero h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero h1 span { color: #f59e0b; }
.hero p {
  font-size: 20px;
  opacity: 0.9;
  max-width: 640px;
  margin: 0 auto 32px;
}
.hero-cta {
  display: inline-block;
  background: #f59e0b;
  color: #fff;
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  transition: background 0.2s;
}
.hero-cta:hover { background: #d97706; text-decoration: none; color: #fff; }
.hero-trust {
  margin-top: 24px;
  font-size: 14px;
  opacity: 0.7;
}
.breadcrumb { opacity: 0.8; margin-bottom: 8px; font-size: 14px; }
.breadcrumb a { color: #f59e0b; }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== SECTIONS ===== */
.section { padding: 64px 0; }
.section-alt { background: #f9fafb; }
.section-title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: #6b7280;
  font-size: 17px;
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow 0.2s;
}
.service-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.service-card .icon { font-size: 48px; margin-bottom: 16px; }
.service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.service-card p { color: #6b7280; font-size: 15px; }

/* ===== HOW IT WORKS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  counter-reset: step;
}
.step { text-align: center; position: relative; }
.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #2563eb;
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 16px;
}
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step p { color: #6b7280; font-size: 15px; }

/* ===== COST TABLE ===== */
.cost-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.cost-table th {
  background: #1e3a5f;
  color: #fff;
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
}
.cost-table td {
  padding: 12px 20px;
  border-bottom: 1px solid #e5e7eb;
}
.cost-table tr:last-child td { border-bottom: none; }
.cost-table tr:nth-child(even) { background: #f9fafb; }

/* ===== FAQ ===== */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e5e7eb; padding: 20px 0; }
.faq-question {
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: #9ca3af;
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
  display: none;
  padding-top: 12px;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ===== FORM SECTION ===== */
.form-section {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f2439 100%);
  color: #fff;
  padding: 64px 0;
}
.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.form-text h2 { font-size: 32px; font-weight: 800; margin-bottom: 16px; }
.form-text p { opacity: 0.9; font-size: 17px; margin-bottom: 24px; }
.form-benefits { list-style: none; }
.form-benefits li { padding: 6px 0; font-size: 15px; }
.form-benefits li::before { content: '✓ '; color: #f59e0b; font-weight: 700; }
.form-embed { min-width: 0; }

/* Inline form styles */
.lead-form-box {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  color: #1a1a2e;
}
.form-badge-inline {
  text-align: center;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 600;
  color: #2e7d32;
  background: #e8f5e9;
  padding: 8px;
  border-radius: 8px;
}
.urgency-bar {
  background: #fef3c7;
  border: 1px solid #f59e0b;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #92400e;
  text-align: center;
}
.form-field {
  margin-bottom: 12px;
}
.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #333;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: #fafafa;
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #2563eb;
  background: #fff;
}
.form-field textarea { resize: vertical; min-height: 60px; }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.form-row-2 .form-field { margin-bottom: 0; }
.form-submit-btn {
  width: 100%;
  padding: 14px;
  background: #f59e0b;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit-btn:hover { background: #d97706; }
.form-submit-btn:active { transform: scale(0.98); }
.form-trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
  font-size: 12px;
  color: #888;
}
.form-success {
  display: none;
  text-align: center;
  padding: 32px 16px;
}
.form-success .check { font-size: 48px; margin-bottom: 12px; }
.form-success h3 { font-size: 20px; margin-bottom: 8px; }
.form-success p { color: #666; }

@media (max-width: 768px) {
  .form-wrapper { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 16px; }
  .section-title { font-size: 24px; }
  .hero { padding: 48px 0 36px; }
  .section { padding: 40px 0; }
}

/* ===== CITIES GRID ===== */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.city-link {
  display: block;
  padding: 14px 16px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: #1a1a2e;
  font-weight: 600;
  transition: all 0.2s;
  text-decoration: none;
}
.city-link:hover {
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  border-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
}
.testimonial .stars { color: #f59e0b; font-size: 18px; margin-bottom: 12px; }
.testimonial p { font-style: italic; color: #4b5563; margin-bottom: 12px; line-height: 1.7; }
.testimonial .author { font-weight: 700; font-size: 14px; }
.testimonial .location { color: #9ca3af; font-size: 13px; }

/* ===== FOOTER ===== */
.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 48px 0 24px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}
.footer-grid h4 { color: #fff; font-size: 16px; margin-bottom: 12px; }
.footer-grid ul { list-style: none; }
.footer-grid li { padding: 4px 0; }
.footer-grid a { color: #94a3b8; }
.footer-grid a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 24px;
  text-align: center;
}
.footer-bottom a { color: #94a3b8; }
.footer-bottom a:hover { color: #fff; }

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.blog-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  background: #fff;
  text-decoration: none;
  color: inherit;
  display: block;
}
.blog-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
  text-decoration: none;
}
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, #1e3a5f, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}
.blog-card-body { padding: 24px; }
.blog-card-body .tag {
  display: inline-block;
  background: #eff6ff;
  color: #2563eb;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}
.blog-card-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: #1a1a2e; }
.blog-card-body p { color: #6b7280; font-size: 14px; line-height: 1.6; }
.blog-card-body .read-more {
  display: inline-block;
  margin-top: 12px;
  color: #2563eb;
  font-weight: 600;
  font-size: 14px;
}

/* ===== BLOG ARTICLE ===== */
.article-content {
  max-width: 780px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  color: #374151;
}
.article-content h2 {
  font-size: 26px;
  font-weight: 800;
  color: #1a1a2e;
  margin: 40px 0 16px;
}
.article-content h3 {
  font-size: 21px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 32px 0 12px;
}
.article-content p { margin-bottom: 16px; }
.article-content ul, .article-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}
.article-content li { margin-bottom: 8px; }
.article-content strong { color: #1a1a2e; }
.article-meta {
  text-align: center;
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 32px;
}

/* ===== CONTENT BODY (city pages) ===== */
.content-body {
  max-width: 780px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
}
.content-body p { margin-bottom: 16px; }
.content-body h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 28px 0 12px;
}
.suburb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
  font-size: 14px;
}
@media (max-width: 768px) {
  .suburb-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== INLINE CTA BOX ===== */
.inline-cta {
  background: linear-gradient(135deg, #1e3a5f, #0f2439);
  color: #fff;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  margin: 32px 0;
}
.inline-cta h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.inline-cta p { opacity: 0.9; margin-bottom: 16px; }
.inline-cta a {
  display: inline-block;
  background: #f59e0b;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
}
.inline-cta a:hover { background: #d97706; text-decoration: none; }

/* ===== COMPARISON TABLE ===== */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  font-size: 15px;
}
.compare-table th {
  background: #1e3a5f;
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}
.compare-table td {
  padding: 10px 16px;
  border-bottom: 1px solid #e5e7eb;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) { background: #f9fafb; }
