:root {
  --navy: #1a2744;
  --navy-dark: #0f1a2e;
  --navy-light: #2a3f66;
  --green: #3d8c35;
  --green-light: #4aa840;
  --green-dark: #2d6a27;
  --phantom-navy: #0c1d3d;
  --cta-orange: #f5a623;
  --cta-orange-hover: #e6950f;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #e9ecef;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  --text-primary: #2d3748;
  --text-secondary: #4a5568;
  --text-light: #718096;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.2);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 20px; }

/* ── TOP BAR ── */
.top-bar {
  background: var(--navy-dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: var(--white); }
.top-bar a:hover { color: var(--cta-orange); }
.top-bar-left { display: flex; align-items: center; gap: 20px; }
.top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar-item svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── HEADER ── */
.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}
.header-logos { display: flex; align-items: center; gap: 16px; }
.header-logos img { height: 44px; width: auto; }
.logo-divider { width: 1px; height: 30px; background: var(--light-gray); }
.header-logos .phantom-logo { height: 28px; opacity: 0.85; }

.nav { display: flex; align-items: center; gap: 8px; }
.nav a {
  padding: 8px 16px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav a:hover, .nav a.active { color: var(--green); background: rgba(61,140,53,0.06); }
.nav .btn-nav-cta {
  background: var(--green);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.nav .btn-nav-cta:hover { background: var(--green-dark); color: var(--white); }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(15,26,46,0.92) 0%, rgba(12,29,61,0.85) 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,26,46,0.9) 0%, rgba(12,29,61,0.78) 50%, rgba(26,39,68,0.7) 100%);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 50px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-content { color: var(--white); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(61,140,53,0.2);
  border: 1px solid rgba(61,140,53,0.4);
  color: #8ae67a;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.hero h1 span { color: var(--cta-orange); }
.hero p {
  font-size: 1.12rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  max-width: 540px;
}
.hero-features { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.9);
}
.hero-feature svg { width: 18px; height: 18px; color: var(--green-light); flex-shrink: 0; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── QUOTE FORM ── */
.quote-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-xl);
  min-width: 0;
  overflow: hidden;
}
.quote-form-card h2 {
  font-size: 1.4rem;
  color: var(--navy);
  text-align: center;
  margin-bottom: 4px;
}
.quote-form-card .form-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 24px;
}
.quote-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 12px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(61,140,53,0.1);
}
.form-group textarea { resize: vertical; min-height: 68px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  text-align: center;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-orange {
  background: var(--cta-orange);
  color: var(--white);
}
.btn-orange:hover { background: var(--cta-orange-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { background: var(--off-white); transform: translateY(-1px); }
.btn-full { width: 100%; }
.btn svg { width: 18px; height: 18px; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white);
  padding: 30px 0;
  border-bottom: 1px solid var(--light-gray);
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.trust-icon {
  width: 44px;
  height: 44px;
  background: rgba(61,140,53,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.trust-icon svg { width: 22px; height: 22px; }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); color: var(--white); }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header .overline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green);
  margin-bottom: 10px;
}
.section-dark .section-header .overline { color: var(--green-light); }
.section-header h2 {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--navy);
}
.section-dark .section-header h2 { color: var(--white); }
.section-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
}
.section-dark .section-header p { color: rgba(255,255,255,0.75); }

/* ── WHY PHANTOM SCREENS ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid transparent;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(61,140,53,0.15);
}
.benefit-icon {
  width: 52px;
  height: 52px;
  background: rgba(61,140,53,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--green);
}
.benefit-icon svg { width: 26px; height: 26px; }
.benefit-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}
.benefit-card p { color: var(--text-secondary); font-size: 0.95rem; }

/* Clickable service cards */
a.benefit-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
a.benefit-card:hover h3 { color: var(--green); }
.card-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
}
a.benefit-card:hover .card-link { color: var(--green-dark); }

/* ── APPLICATIONS / GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 18px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: var(--white);
}
.gallery-caption h3 { font-size: 0.95rem; font-weight: 600; }
.gallery-caption p { font-size: 0.8rem; color: rgba(255,255,255,0.8); margin-top: 2px; }

/* ── COMPARISON TABLE ── */
.comparison-wrapper { overflow-x: auto; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.comparison-table thead { background: var(--navy); color: var(--white); }
.comparison-table th {
  padding: 16px 20px;
  font-weight: 600;
  text-align: left;
  font-size: 0.95rem;
}
.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.93rem;
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover { background: rgba(61,140,53,0.03); }
.check { color: var(--green); font-weight: 700; }
.cross { color: #dc3545; font-weight: 700; }

/* ── PROCESS STEPS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: rgba(255,255,255,0.15);
}
.process-step { text-align: center; position: relative; }
.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(61,140,53,0.15);
  border: 2px solid var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-light);
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

/* ── SERVICE AREAS ── */
.areas-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.area-group { margin-bottom: 30px; }
.area-group h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green);
  display: inline-block;
}
.suburb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.suburb-tag {
  background: rgba(61,140,53,0.06);
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(61,140,53,0.12);
  transition: all var(--transition);
}
.suburb-tag:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.areas-map {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.areas-map iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: var(--radius-sm);
}

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-question {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  transition: color var(--transition);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}
.faq-question:hover { color: var(--green); }
.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--green);
}
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 24px 18px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 70px 0;
  text-align: center;
  color: var(--white);
}
.cta-section h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.cta-section p {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-about img.footer-logo {
  height: 40px;
  margin-bottom: 16px;
  background: var(--white);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}
.footer-about p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.footer h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--green-light); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}
.footer-contact svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--green-light); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--green-light); }
.footer-licenses { display: flex; gap: 20px; }

/* ── FLOATING CALL BUTTON ── */
.float-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 6px 24px rgba(61,140,53,0.4);
  transition: all var(--transition);
  animation: pulse-ring 2s infinite;
}
.float-call:hover {
  background: var(--green-dark);
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(61,140,53,0.5);
}
.float-call svg { width: 22px; height: 22px; }
.float-call-text { display: inline; }
@keyframes pulse-ring {
  0% { box-shadow: 0 6px 24px rgba(61,140,53,0.4), 0 0 0 0 rgba(61,140,53,0.3); }
  70% { box-shadow: 0 6px 24px rgba(61,140,53,0.4), 0 0 0 14px rgba(61,140,53,0); }
  100% { box-shadow: 0 6px 24px rgba(61,140,53,0.4), 0 0 0 0 rgba(61,140,53,0); }
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 28px;
  z-index: 998;
  width: 42px;
  height: 42px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--green); transform: translateY(-2px); }
.back-to-top svg { width: 20px; height: 20px; }

/* ── FORM SUCCESS ── */
.form-success {
  display: none;
  text-align: center;
  padding: 30px 20px;
}
.form-success.show { display: block; }
.form-success svg { width: 56px; height: 56px; color: var(--green); margin-bottom: 14px; }
.form-success h3 { color: var(--navy); font-size: 1.2rem; margin-bottom: 8px; }
.form-success p { color: var(--text-secondary); font-size: 0.92rem; }

/* ── INLINE FORM (used on sub-pages) ── */
.inline-form-section { background: var(--off-white); padding: 70px 0; }
.inline-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.inline-form-text h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}
.inline-form-text p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.inline-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-md);
}

/* ── CONTENT BLOCKS (sub-pages) ── */
.content-section h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}
.content-section h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  margin-top: 28px;
}
.content-section p {
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.content-section ul {
  margin: 14px 0 20px 0;
}
.content-section ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  color: var(--text-secondary);
}
.content-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}
.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin: 40px 0;
}
.content-with-image.reverse { direction: rtl; }
.content-with-image.reverse > * { direction: ltr; }
.content-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.content-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 50px 0;
  color: var(--white);
}
.page-hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.6);
}
.breadcrumbs a { color: rgba(255,255,255,0.6); }
.breadcrumbs a:hover { color: var(--white); }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
}
.testimonial-stars { color: var(--cta-orange); font-size: 1rem; margin-bottom: 12px; }
.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.7;
}
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.testimonial-loc { font-size: 0.8rem; color: var(--text-light); }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 1001;
  padding: 80px 30px 30px;
  box-shadow: var(--shadow-xl);
  transition: right 0.35s ease;
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  border-bottom: 1px solid var(--light-gray);
}
.mobile-nav a:hover { color: var(--green); }
.mobile-nav .btn {
  margin-top: 20px;
  width: 100%;
  justify-content: center;
}
.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-close svg { width: 24px; height: 24px; color: var(--text-primary); }
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-overlay.show { display: block; opacity: 1; }

/* ── RESPONSIVE ── */
/* The nav carries 5 service links + CTA (~930px) alongside the logos (~200px).
   Below 1200px that no longer fits the container, so hand over to the slide-out
   menu earlier than the old 768px breakpoint. */
@media (max-width: 1200px) {
  .nav { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-nav { display: block; }
}

@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 2.2rem; }
  .quote-form-card { max-width: 480px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-content { grid-template-columns: 1fr; }
  .content-with-image { grid-template-columns: 1fr; gap: 24px; }
  .content-with-image.reverse { direction: ltr; }
  .inline-form-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .top-bar .container { justify-content: center; }
  .top-bar-left, .top-bar-right { flex-wrap: wrap; justify-content: center; }
  .nav { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-nav { display: block; }
  .hero { min-height: auto; }
  .hero .container { padding-top: 40px; padding-bottom: 40px; }
  .hero h1 { font-size: 1.85rem; }
  .hero p { font-size: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 50px 0; }
  .section-header h2 { font-size: 1.6rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 20px; }
  .comparison-table { font-size: 0.85rem; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .float-call { padding: 12px 18px; font-size: 0.9rem; bottom: 16px; right: 16px; }
  .float-call-text { display: none; }
  .float-call { padding: 14px; border-radius: 50%; }
  .back-to-top { bottom: 80px; right: 20px; }
  .page-hero h1 { font-size: 1.7rem; }
  .cta-section h2 { font-size: 1.6rem; }
  .header-logos img { height: 36px; }
  .header-logos .phantom-logo { height: 22px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.55rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .quote-form-card { padding: 24px 20px; }
  .trust-bar .container { gap: 24px; }
  .trust-item { font-size: 0.82rem; }
  .benefit-card { padding: 24px 20px; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

/* ── PRINT ── */
@media print {
  .header, .float-call, .back-to-top, .mobile-nav, .mobile-overlay { display: none; }
  .hero { min-height: auto; background: var(--navy); }
  .section { padding: 30px 0; }
}
