/* ==========================================================================
   Printer Support Australia - Modern Design System & CSS Stylesheet
   Design Philosophy: High-Trust Branded Aesthetic, Dynamic Glassmorphism, 
   Vibrant Accent Colors, Mobile-First Lead Conversion Optimization
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand Color Palette */
  --primary-navy: #0F172A;
  --primary-blue: #0284C7;
  --primary-blue-hover: #0369A1;
  --accent-cyan: #06B6D4;
  --accent-emerald: #10B981;
  --accent-amber: #F59E0B;
  --accent-rose: #E11D48;
  
  /* Brand Specific Colors */
  --hp-blue: #0096D6;
  --canon-red: #CC0000;
  --brother-blue: #00205B;
  --epson-blue: #003399;

  /* Neutral Spectrum */
  --bg-dark: #090D16;
  --bg-card-dark: #1E293B;
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --text-main: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --text-white: #F8FAFC;
  --border-light: #E2E8F0;
  --border-dark: #334155;

  /* Shadows & Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.92);
  --glass-dark-bg: rgba(15, 23, 42, 0.85);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 30px rgba(0, 0, 0, 0.18);
  --shadow-glow: 0 0 20px rgba(2, 132, 199, 0.35);

  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
}

/* Reset & Base Setup with Strict Horizontal Overflow Prevention */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Top Emergency Announcement Bar */
.top-bar {
  background: #090D16;
  color: var(--text-white);
  padding: 0.5rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 101;
  overflow: hidden;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-emerald);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(16, 185, 129, 0.3);
  white-space: nowrap;
}

.abn-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(56, 189, 248, 0.12);
  color: #38BDF8;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(56, 189, 248, 0.25);
  white-space: nowrap;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-emerald);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.top-bar-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #38BDF8;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.top-bar-phone:hover {
  color: var(--bg-white);
}

/* Header & Sleek Navigation */
.navbar {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: var(--shadow-sm);
  width: 100%;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}

.logo-badge {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
  color: white;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.logo-text h1 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.logo-text span {
  font-size: 0.68rem;
  color: var(--primary-blue);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  white-space: nowrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary-blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}

/* Call Button Styles */
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0284C7, #0369A1);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-call:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

/* Dynamic Brand-Adaptive Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 60%, #0F2942 100%);
  color: var(--text-white);
  padding: 4rem 0 5rem;
  overflow: hidden !important;
  transition: background 0.6s ease, border-color 0.6s ease;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: background 0.6s ease;
}

/* Dynamic Brand Themes */
.hero-section.theme-hp {
  background: linear-gradient(135deg, #081726 0%, #002B47 60%, #004B7A 100%);
}
.hero-section.theme-hp::before {
  background: radial-gradient(circle, rgba(0, 150, 214, 0.35) 0%, rgba(0, 0, 0, 0) 70%);
}

.hero-section.theme-canon {
  background: linear-gradient(135deg, #1C0A0A 0%, #3B0D0D 60%, #5E1212 100%);
}
.hero-section.theme-canon::before {
  background: radial-gradient(circle, rgba(204, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 70%);
}

.hero-section.theme-brother {
  background: linear-gradient(135deg, #061024 0%, #0A1C40 60%, #003366 100%);
}
.hero-section.theme-brother::before {
  background: radial-gradient(circle, rgba(0, 163, 224, 0.35) 0%, rgba(0, 0, 0, 0) 70%);
}

.hero-section.theme-epson {
  background: linear-gradient(135deg, #081126 0%, #0D2054 60%, #15398A 100%);
}
.hero-section.theme-epson::before {
  background: radial-gradient(circle, rgba(0, 51, 153, 0.35) 0%, rgba(0, 0, 0, 0) 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-content h2 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.1rem;
  letter-spacing: -0.02em;
}

.hero-content h2 span {
  background: linear-gradient(135deg, #38BDF8, #818CF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 1.4rem;
  max-width: 520px;
}

/* Smart OS Auto-Detection Pill Badge */
.os-detector-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38BDF8;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  max-width: 100%;
}

/* Specialist Hero Image Badge Card */
.hero-specialist-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 1.5rem;
}

.specialist-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #38BDF8;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  flex-shrink: 0;
}

.specialist-info h5 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: white;
  font-weight: 700;
}

.specialist-info p {
  font-size: 0.78rem;
  color: #94A3B8;
  margin-bottom: 0;
}

/* Trust Badges Strip */
.trust-badges-inline {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #E2E8F0;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.06);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-item i {
  color: #38BDF8;
}

/* Brand Selector Grid */
.hero-card {
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-xl);
}

.hero-card-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.hero-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.2rem;
}

.hero-card-header p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.brand-btn {
  background: rgba(15, 23, 42, 0.6);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1rem 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  color: white;
  text-align: center;
}

.brand-btn img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-sm);
}

.brand-btn:hover {
  transform: translateY(-2px);
  border-color: #38BDF8;
  background: rgba(15, 23, 42, 0.95);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
}

.brand-subtitle {
  font-size: 0.72rem;
  color: var(--text-light);
}

/* Quick Model Search Bar */
.model-search-box {
  position: relative;
  margin-top: 1rem;
}

.model-search-input {
  width: 100%;
  padding: 12px 42px 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(15, 23, 42, 0.7);
  color: white;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.2s ease;
}

.model-search-input:focus {
  border-color: #38BDF8;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
  background: rgba(15, 23, 42, 0.95);
}

.model-search-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 1rem;
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #1E293B;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  z-index: 50;
  max-height: 200px;
  overflow-y: auto;
  display: none;
}

.suggestion-item {
  padding: 10px 16px;
  color: var(--text-white);
  cursor: pointer;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.suggestion-item:hover {
  background: var(--primary-blue);
}

/* Popular Model Chips */
.chip-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #E2E8F0;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chip-btn:hover {
  background: #0284C7;
  color: white;
  border-color: #38BDF8;
}

/* FAQ Category Filter Buttons */
.faq-filter-btn {
  background: white;
  border: 1px solid var(--border-light);
  color: var(--primary-navy);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.faq-filter-btn:hover, .faq-filter-btn.active {
  background: var(--primary-navy);
  color: white;
  border-color: var(--primary-navy);
  box-shadow: var(--shadow-md);
}

/* 30-Second Diagnostic Wizard Section */
.wizard-section {
  padding: 4.5rem 0;
  background: #0B132B;
  color: white;
  overflow: hidden;
}

.wizard-card {
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  max-width: 840px;
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
}

.wizard-steps-nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
}

.wizard-steps-nav::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.wiz-step-pill {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-light);
}

.wiz-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1E293B;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
}

.wiz-step-pill.active .wiz-num {
  background: var(--primary-blue);
  border-color: #38BDF8;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.5);
}

.wiz-step-pill.active {
  color: #38BDF8;
  font-weight: 700;
}

.wizard-content-step {
  display: none;
  animation: fadeIn 0.4s ease;
}

.wizard-content-step.active {
  display: block;
}

.wiz-grid-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.wiz-opt-btn {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1.15rem 0.85rem;
  color: white;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.wiz-opt-btn i {
  font-size: 1.4rem;
  color: #38BDF8;
}

.wiz-opt-btn:hover, .wiz-opt-btn.selected {
  border-color: #38BDF8;
  background: linear-gradient(145deg, rgba(2, 132, 199, 0.25), rgba(15, 23, 42, 0.9));
  box-shadow: 0 0 15px rgba(2, 132, 199, 0.3);
}

/* Real Success Stories / Solution Gallery */
.cases-section {
  padding: 4.5rem 0;
  background: #F1F5F9;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.case-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
}

.case-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}

.case-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hp-badge { background: rgba(0, 150, 214, 0.12); color: var(--hp-blue); }
.canon-badge { background: rgba(204, 0, 0, 0.12); color: var(--canon-red); }
.brother-badge { background: rgba(0, 32, 91, 0.12); color: var(--brother-blue); }
.epson-badge { background: rgba(0, 51, 153, 0.12); color: var(--epson-blue); }

.case-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.75rem;
}

.case-status-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F8FAFC;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  margin-bottom: 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.status-before { color: var(--accent-rose); }
.status-arrow { color: var(--text-muted); }
.status-after { color: var(--accent-emerald); }

.case-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 1.1rem;
  flex-grow: 1;
}

.case-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid #F1F5F9;
}

.case-loc {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.btn-case-cta {
  background: var(--primary-navy);
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-case-cta:hover {
  background: var(--primary-blue);
}

/* State Hub Switcher Grid */
.state-section {
  padding: 4.5rem 0;
  background: var(--bg-white);
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.state-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  transition: all 0.25s ease;
}

.state-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.state-card h5 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.state-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

/* Interactive Diagnostic Section */
.diagnostic-section {
  padding: 4.5rem 0;
  background-color: var(--bg-white);
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(2, 132, 199, 0.08);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 0.6rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Diagnostic Issues Grid */
.issues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.issue-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.issue-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.issue-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: #CBD5E1;
  background: white;
}

.issue-card:hover::after {
  opacity: 1;
}

.issue-icon {
  width: 50px;
  height: 50px;
  background: rgba(2, 132, 199, 0.1);
  color: var(--primary-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.issue-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.issue-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.btn-issue-solve {
  width: 100%;
  padding: 10px;
  background: var(--primary-navy);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-issue-solve:hover {
  background: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

/* Why Choose Us & Trust Seal Section */
.trust-banner-section {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, #0F172A, #1E293B);
  color: white;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.trust-image-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.trust-team-img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.trust-seal-overlay {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  background: white;
  padding: 4px;
}

.trust-seal-overlay img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.trust-text-box h3 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.trust-list {
  list-style: none;
  margin-top: 1rem;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.8rem;
  font-size: 0.92rem;
  color: #CBD5E1;
}

.trust-list i {
  color: #38BDF8;
  margin-top: 3px;
  font-size: 1rem;
}

/* How It Works Steps */
.how-it-works {
  padding: 4.5rem 0;
  background: #F1F5F9;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 1.75rem;
}

.step-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0 auto 1.1rem;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.3);
}

.step-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.4rem;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Australian Customer Testimonials & Interactive Feedback */
.reviews-section {
  padding: 4.5rem 0;
  background: var(--bg-white);
}

.rating-summary-banner {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.06), rgba(6, 182, 212, 0.06));
  border: 1px solid rgba(2, 132, 199, 0.2);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.rating-score {
  display: flex;
  align-items: center;
  gap: 10px;
}

.big-rating-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.rating-details span {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.review-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: var(--accent-amber);
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
}

.review-card p {
  font-style: italic;
  font-size: 0.9rem;
  color: #334155;
  margin-bottom: 1.1rem;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar-circle {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #0F172A, #38BDF8);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.reviewer-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-navy);
}

.reviewer-location {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Interactive Customer Feedback Box */
.feedback-box-card {
  background: #F8FAFC;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.feedback-box-card h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.4rem;
  text-align: center;
}

.feedback-box-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 1.25rem;
}

.star-rating-select {
  display: flex;
  justify-content: center;
  gap: 6px;
  font-size: 1.5rem;
  color: #CBD5E1;
  margin-bottom: 1.1rem;
  cursor: pointer;
}

.star-rating-select i.active {
  color: var(--accent-amber);
}

/* FAQ Accordion Section */
.faq-section {
  padding: 4.5rem 0;
  background: #F8FAFC;
}

.faq-container {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 0.85rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 1.1rem 1.35rem;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 1.35rem 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: none;
  border-top: 1px solid #F1F5F9;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-icon {
  transition: transform 0.2s ease;
  color: var(--primary-blue);
}

/* Mobile-First Dual-Tab Lead Generation Popup Modal with Pixel-Perfect Scroll Safety */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: white;
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 32px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transform: scale(0.95) translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-header {
  background: linear-gradient(135deg, #0F172A, #1E293B);
  color: white;
  padding: 1.25rem 1.5rem 1rem;
  position: relative;
  flex-shrink: 0;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  padding-right: 24px;
}

.modal-header p {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* Modal Tabs Navigation */
.modal-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  padding: 3px;
  border-radius: var(--radius-md);
  margin-top: 0.75rem;
}

.tab-btn {
  flex: 1;
  padding: 6px 8px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.tab-btn.active {
  background: var(--primary-blue);
  color: white;
  box-shadow: var(--shadow-sm);
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 12;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.modal-body {
  padding: 1.25rem 1.5rem 1.5rem;
  overflow-y: auto;
  flex-grow: 1;
}

.form-group {
  margin-bottom: 0.95rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 0.3rem;
}

.form-control {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #F8FAFC;
}

.form-control:focus {
  border-color: var(--primary-blue);
  background: white;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.btn-submit-lead {
  width: 100%;
  padding: 11px 16px;
  background: linear-gradient(135deg, #0284C7, #0369A1);
  color: white;
  font-weight: 800;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 0.3rem;
}

.btn-submit-lead:hover {
  background: linear-gradient(135deg, #0369A1, #075985);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

.form-privacy-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Live Floating Social Proof Toast */
.social-proof-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 970;
  max-width: 320px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-proof-toast.active {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 36px;
  height: 36px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--accent-emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.toast-content p {
  font-size: 0.8rem;
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 2px;
}

.toast-content span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Mobile Sticky Call Bar - Disabled as per request */
.mobile-call-bar {
  display: none !important;
}

/* Footer Section */
.footer {
  background: #090D16;
  color: var(--text-light);
  padding: 3.5rem 0 2rem;
  border-top: 1px solid #1E293B;
  font-size: 0.85rem;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand h4 {
  font-family: var(--font-heading);
  color: white;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.footer-brand p {
  color: var(--text-muted);
  max-width: 320px;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.footer-column h5 {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-disclaimer-box {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.75rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Responsive Rules & Mobile Top Bar / Navbar Refinement */
@media (max-width: 992px) {
  .hero-grid, .trust-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 0.85rem;
  }

  .top-bar {
    padding: 6px 0;
  }
  .top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 6px;
  }
  .top-bar-info {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .response-time-span,
  .abn-badge-pill {
    display: none !important;
  }
  .top-bar-phone {
    font-size: 0.8rem;
    white-space: nowrap;
    background: rgba(56, 189, 248, 0.15);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(56, 189, 248, 0.3);
  }

  .nav-container {
    padding: 0 0.25rem;
  }
  .brand-logo {
    gap: 6px;
  }
  .logo-badge {
    width: 32px;
    height: 32px;
    font-size: 1.05rem;
  }
  .logo-text h1 {
    font-size: 1rem;
  }
  .logo-text span {
    font-size: 0.62rem;
  }
  .nav-links {
    display: none;
  }
  .btn-call {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .hero-content h2 {
    font-size: 1.85rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  body {
    padding-bottom: 0;
  }

  .social-proof-toast {
    left: 16px;
    right: 16px;
    max-width: none;
    bottom: 76px;
  }

  .modal-overlay {
    padding: 0.75rem 0.5rem;
  }

  .modal-card {
    max-height: calc(100vh - 24px);
  }

  .modal-header {
    padding: 1rem 1.25rem 0.85rem;
  }

  .modal-body {
    padding: 1rem 1.25rem 1.25rem;
  }
}
