/* ============================================
   Leicester Locksmiths — Main Stylesheet
   Design system: Navy + Orange + White
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --navy: #0d1729;
  --navy-2: #1a2742;
  --navy-3: #243554;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --orange-light: #fff7ed;
  --orange-pale: #ffedd5;
  --green: #059669;
  --green-light: #d1fae5;
  --white: #ffffff;
  --off-white: #f8fafc;
  --grey-100: #f1f5f9;
  --grey-200: #e2e8f0;
  --grey-400: #94a3b8;
  --grey-500: #64748b;
  --grey-600: #475569;
  --grey-800: #1e293b;
  --body-text: #334155;
  --heading-text: #0d1729;

  --font-head: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  --radius: 10px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.07), 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.10), 0 4px 8px rgba(0, 0, 0, 0.06);
  --shadow-orange: 0 8px 24px rgba(249, 115, 22, 0.30);

  --max-w: 1180px;
  --section-py: 80px;
  --section-py-sm: 56px;

  --transition: 0.22s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--body-text);
  background: var(--white);
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--heading-text);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.08; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-orange { color: var(--orange); }
.text-muted { color: var(--grey-600); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

/* --- Layout Utilities --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-py) 0;
}

.section--grey {
  background: var(--off-white);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section--navy h2,
.section--navy h3,
.section--navy h4 {
  color: var(--white);
}

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c2410c;
  margin-bottom: 12px;
}

.section-header {
  max-width: 620px;
  margin-bottom: 48px;
}

.section-header.center {
  margin: 0 auto 48px;
  text-align: center;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--grey-600);
  margin-top: 12px;
}

.section-header.on-dark p { color: var(--grey-400); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.40);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-outline-dark {
  border: 2px solid var(--navy);
  color: var(--navy);
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Phone CTA button — special styling */
.btn-phone {
  background: var(--orange);
  color: var(--white);
  font-size: 1.15rem;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-orange);
  transition: all var(--transition);
}

.btn-phone:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(249, 115, 22, 0.45);
}

/* ============================================
   HEADER & NAV
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.04);
  transition: background var(--transition), box-shadow var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}

.logo-main {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--grey-800);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
}

.nav-link:hover {
  color: var(--orange);
  background: var(--orange-pale);
}

.nav-link.active {
  color: var(--orange);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--grey-800);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  cursor: pointer;
  background: none;
  border: none;
}

.nav-dropdown-toggle:hover,
.nav-dropdown:hover .nav-dropdown-toggle {
  color: var(--orange);
  background: var(--orange-pale);
}

.nav-dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 16px 8px 8px;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  transform-origin: top center;
  transform: translateX(-50%) translateY(-4px);
}

/* Bridge the gap so moving the mouse down into the menu doesn't lose hover */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--grey-800);
  transition: all var(--transition);
}

.dropdown-item:hover {
  background: var(--orange-pale);
  color: var(--orange-dark);
}

.dropdown-item .icon {
  width: 32px;
  height: 32px;
  background: var(--orange-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}

.dropdown-item .icon svg {
  width: 16px;
  height: 16px;
}

.header-phone {
  margin-left: auto;
}

.header-phone a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-orange);
}

.header-phone a:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.header-phone svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 99;
  overflow-y: auto;
  padding: 24px;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--grey-200);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-link {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  padding: 14px 16px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.mobile-nav-link:hover {
  background: var(--orange-pale);
  color: var(--orange-dark);
}

.mobile-nav-sub {
  padding-left: 16px;
}

.mobile-nav-sub .mobile-nav-link {
  font-size: 0.95rem;
  color: var(--grey-600);
}

.mobile-nav-divider {
  height: 1px;
  background: var(--grey-200);
  margin: 8px 0;
}

.mobile-nav-phone {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mobile-nav-phone a {
  width: 100%;
  justify-content: center;
  font-size: 1.2rem;
  padding: 16px;
}

/* ============================================
   HERO — HOMEPAGE
   ============================================ */

.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(249, 115, 22, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(249, 115, 22, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Decorative geometric shapes */
.hero-deco {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  pointer-events: none;
}

.hero-deco-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 60px solid rgba(249, 115, 22, 0.07);
}

.hero-deco-ring-inner {
  position: absolute;
  inset: 80px;
  border-radius: 50%;
  border: 30px solid rgba(249, 115, 22, 0.05);
}

.hero-deco-dot {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-content {
  position: relative;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.30);
  color: var(--orange);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--orange);
}

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 48px;
}

.hero-phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  padding: 18px 36px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.40);
  transition: all var(--transition);
  letter-spacing: -0.01em;
}

.hero-phone-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(249, 115, 22, 0.50);
}

.hero-phone-cta svg {
  width: 22px;
  height: 22px;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.80);
}

.trust-pill-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-pill-check svg {
  width: 10px;
  height: 10px;
  color: #34d399;
}

/* ============================================
   STATS BAR
   ============================================ */

.stats-bar {
  background: var(--navy-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 32px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 16px 24px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.10);
}

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ============================================
   SERVICES GRID
   ============================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.28s cubic-bezier(0.34, 1.2, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange) 0%, color-mix(in srgb, var(--orange) 60%, var(--navy)) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.service-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 28px rgba(0,0,0,0.10), 0 2px 8px rgba(249,115,22,0.06);
  transform: translateY(-4px);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--orange-dark);
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--orange);
  color: var(--white);
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--grey-600);
  margin-bottom: 16px;
}

.service-card-link {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.service-card:hover .service-card-link {
  gap: 10px;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange) 100%);
  border-top: 2px dashed rgba(249, 115, 22, 0.30);
}

.step-item {
  padding: 24px 32px;
  text-align: center;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-orange);
}

.step-item h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.step-item p {
  font-size: 0.9rem;
  color: var(--grey-600);
}

/* ============================================
   TRUST SIGNALS
   ============================================ */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-card {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--grey-200);
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trust-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}

.trust-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--green);
}

.trust-icon svg {
  width: 28px;
  height: 28px;
}

.trust-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.trust-card p {
  font-size: 0.85rem;
  color: var(--grey-600);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  color: #f59e0b;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--body-text);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}

.testimonial-area {
  font-size: 0.8rem;
  color: var(--grey-600);
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-phone-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  transition: color var(--transition);
}

.cta-phone-big:hover {
  color: var(--orange);
}

.cta-phone-big svg {
  width: 36px;
  height: 36px;
  color: var(--orange);
}

.cta-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  display: block;
  margin-top: 4px;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.70);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-main { color: var(--white); }
.footer-brand .logo-sub { color: var(--orange); }

.footer-brand p {
  font-size: 0.88rem;
  margin-top: 14px;
  line-height: 1.7;
  max-width: 280px;
  color: rgba(255,255,255,0.55);
}

.footer-phone {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
  transition: color var(--transition);
}

.footer-phone:hover { color: var(--orange-dark); }
.footer-phone svg { width: 18px; height: 18px; }

.footer-col h5 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--orange); }

.footer-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.footer-area-tag {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
}

.footer-area-tag:hover {
  background: rgba(249, 115, 22, 0.20);
  color: var(--orange);
}

/* Light-card variant: used where the tag sits on a light background (e.g. contact-info-card) instead of the dark footer */
.footer-area-tag--light {
  color: var(--grey-800);
  background: var(--grey-100);
}

.footer-area-tag--light:hover {
  background: var(--orange-pale);
  color: var(--orange-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */

.page-hero {
  background: var(--navy);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(249, 115, 22, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin-bottom: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.breadcrumb a:hover { color: var(--orange); }
.breadcrumb svg { width: 12px; height: 12px; }

/* ============================================
   ABOUT PAGE SPECIFICS
   ============================================ */

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-story-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--body-text);
}

.about-visual {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  color: var(--white);
}

.about-visual-stat {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.about-visual-stat:last-child {
  border-bottom: none;
}

.about-visual-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  min-width: 80px;
}

.about-visual-label {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.credential-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.credential-icon {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 16px;
}

.credential-icon svg { width: 24px; height: 24px; }

.credential-card h4 { margin-bottom: 6px; font-size: 1rem; }
.credential-card p { font-size: 0.88rem; color: var(--grey-600); }

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-tag {
  background: var(--off-white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--grey-800);
  transition: all var(--transition);
}

.area-tag:hover {
  background: var(--orange-pale);
  border-color: var(--orange);
  color: var(--orange-dark);
}

/* ============================================
   EMERGENCY PAGE SPECIFICS
   ============================================ */

.emergency-hero {
  background: var(--navy);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

.emergency-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 40%, rgba(249, 115, 22, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(249, 115, 22, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.emergency-hero-inner {
  position: relative;
}

.emergency-hero-content {
  position: relative;
  max-width: 700px;
}

.emergency-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.30);
  color: #fca5a5;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.emergency-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  animation: pulse 1.5s infinite;
}

.emergency-hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.emergency-phone-block {
  background: var(--orange);
  border-radius: var(--radius-xl);
  padding: 32px 40px;
  margin: 36px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.emergency-phone-block h3 {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.emergency-phone-num {
  color: var(--white);
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity var(--transition);
}

.emergency-phone-num:hover { opacity: 0.85; }
.emergency-phone-num svg { width: 32px; height: 32px; }

.emergency-phone-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.80);
  font-weight: 500;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.contact-info-block {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: var(--white);
}

.contact-info-block h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.contact-info-block > p {
  color: rgba(255,255,255,0.60);
  margin-bottom: 32px;
}

.contact-phone-big {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  transition: opacity var(--transition);
}

.contact-phone-big:hover { opacity: 0.85; }
.contact-phone-big svg { width: 28px; height: 28px; }

.contact-hours {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.contact-hours h4 {
  color: rgba(255,255,255,0.50);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-hours p {
  color: rgba(255,255,255,0.70);
  font-size: 0.95rem;
}

.contact-hours .always-open {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.contact-form h3 {
  margin-bottom: 6px;
}

.contact-form > p {
  color: var(--grey-600);
  font-size: 0.92rem;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.10);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ============================================
   SERVICE PAGE SPECIFICS
   ============================================ */

.service-detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.service-sidebar {
  position: sticky;
  top: 88px;
}

.sidebar-cta {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 32px;
  color: var(--white);
  margin-bottom: 20px;
}

.sidebar-cta h4 { color: var(--white); margin-bottom: 8px; }
.sidebar-cta p { font-size: 0.88rem; color: rgba(255,255,255,0.60); margin-bottom: 20px; }

.sidebar-services {
  background: var(--off-white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-xl);
  padding: 24px;
}

.sidebar-services h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-600);
  margin-bottom: 12px;
}

.sidebar-service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--grey-800);
  transition: all var(--transition);
}

.sidebar-service-link:hover,
.sidebar-service-link.active {
  background: var(--orange-pale);
  color: var(--orange-dark);
}

.sidebar-service-link svg { width: 14px; height: 14px; }

.content-body h2 { margin: 40px 0 16px; }
.content-body h2:first-child { margin-top: 0; }
.content-body p { font-size: 1rem; line-height: 1.75; color: var(--body-text); }

.highlight-box {
  background: var(--orange-light);
  border: 1px solid var(--orange-pale);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 28px 0;
}

.highlight-box p { font-size: 0.95rem; color: var(--grey-800); }

.feature-list {
  list-style: none;
  margin: 20px 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--grey-200);
  font-size: 0.95rem;
}

.feature-list li:last-child { border-bottom: none; }

.feature-list-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.feature-list-check svg { width: 12px; height: 12px; }

/* ============================================
   INLINE PHONE CTA (repeating sections)
   ============================================ */

.inline-cta {
  background: var(--orange-light);
  border: 1px solid var(--orange-pale);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
}

.inline-cta p {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

/* ============================================
   MISC COMPONENTS
   ============================================ */

.divider {
  height: 1px;
  background: var(--grey-200);
  margin: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  color: var(--green);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.two-col-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ============================================
   RESPONSIVE — TABLET (max 900px)
   ============================================ */

@media (max-width: 900px) {
  :root { --section-py: 56px; }

  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-phone a { font-size: 0.9rem; padding: 8px 16px; }

  .hero { min-height: auto; padding: 64px 0 56px; }
  .hero-deco { display: none; }
  .hero h1 { font-size: 2.2rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item::before { display: none; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .about-story { grid-template-columns: 1fr; gap: 40px; }
  .credentials-grid { grid-template-columns: 1fr 1fr; }

  .contact-layout { grid-template-columns: 1fr; }
  .service-detail-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }

  .emergency-phone-block { flex-direction: column; text-align: center; }
  .inline-cta { flex-direction: column; text-align: center; }

  .two-col-content { grid-template-columns: 1fr; gap: 32px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   RESPONSIVE — MOBILE (max 600px)
   ============================================ */

@media (max-width: 600px) {
  :root { --section-py: 48px; }

  .container { padding: 0 16px; }

  .header-inner { height: 60px; }
  .mobile-nav { top: 60px; }
  .logo-main { font-size: 1.1rem; }
  .header-phone a { font-size: 0.82rem; padding: 8px 14px; gap: 6px; }

  .hero { padding: 48px 0 44px; }
  .hero h1 { font-size: 1.95rem; }
  .hero-sub { font-size: 1rem; }
  .hero-phone-cta { font-size: 1.1rem; padding: 14px 24px; }
  .hero-trust-row { gap: 12px; }
  .trust-pill { font-size: 0.78rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .credentials-grid { grid-template-columns: 1fr; }

  .emergency-phone-num { font-size: 1.8rem; }
  .form-row { grid-template-columns: 1fr; }

  .grid-3 { grid-template-columns: 1fr; }
  .cta-phone-big { font-size: 1.6rem; }
}

/* ============================================
   IMAGES — Full-bleed hero photo, page-hero background, about block
   ============================================ */

/* HOMEPAGE HERO — full-height photo pinned to the right edge */
.hero {
  position: relative;
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero-photo {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 48%;
  z-index: 1;
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--navy) 0%,
    rgba(13, 23, 41, 0.75) 40%,
    rgba(13, 23, 41, 0.20) 100%
  );
}

@media (max-width: 900px) {
  .hero-photo { width: 100%; opacity: 0.18; }
  .hero-photo-overlay { background: none; }
}

@media (max-width: 600px) {
  .hero-photo { display: none; }
}

/* PAGE HEROES — full-bleed background photo with dark overlay */
.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.page-hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 23, 41, 0.90) 0%,
    rgba(13, 23, 41, 0.65) 60%,
    rgba(13, 23, 41, 0.45) 100%
  );
}

.page-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.6) brightness(0.85);
}

/* EMERGENCY HERO — same background photo treatment */
.emergency-hero {
  position: relative;
  overflow: hidden;
}

.emergency-hero .container {
  position: relative;
  z-index: 2;
}

/* ABOUT — photo with gradient-overlay stats */
.about-img-block {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(0,0,0,0.14);
}

.about-img-block img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.about-img-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(13,23,41,0.94) 0%, rgba(13,23,41,0.4) 60%, transparent 100%);
  padding: 40px 24px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.about-img-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.about-img-stat span {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.58);
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.4;
}

/* Content section images */
.content-img-block {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.content-img-block img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .about-img-block img { height: 300px; }
  .about-img-stats { grid-template-columns: repeat(3, 1fr); padding: 24px 16px 16px; }
  .about-img-stat strong { font-size: 1.2rem; }
}

/* ============================================
   MOBILE STICKY CALL BAR
   ============================================ */

.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 10px 16px 10px;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
  safe-area-inset-bottom: env(safe-area-inset-bottom);
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
}

.mobile-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.40);
  width: 100%;
  min-height: 52px;
  letter-spacing: -0.01em;
}

.mobile-call-bar a svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .mobile-call-bar { display: block; }
  body { padding-bottom: 80px; }
  /* So mobile nav doesn't get hidden behind the call bar */
  .mobile-nav { bottom: 80px; }
}

/* ============================================
   HEADER SCROLL STATE
   ============================================ */

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12), 0 1px 0 rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.97);
}

.site-header.scrolled .header-inner {
  height: 58px;
}

/* ============================================
   TRUST STRIP
   ============================================ */

.trust-strip {
  background: var(--off-white);
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  padding: 16px 0;
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 28px;
  font-family: var(--font-head);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--grey-800);
  position: relative;
}

.trust-strip-item + .trust-strip-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--grey-200);
}

.trust-strip-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--orange);
}

.trust-strip-item .stars {
  color: #f59e0b;
  letter-spacing: -1px;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .trust-strip-inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding: 0 4px; }
  .trust-strip-inner::-webkit-scrollbar { display: none; }
  .trust-strip-item { white-space: nowrap; padding: 8px 20px; }
}

/* ============================================
   TESTIMONIAL SOURCE BADGE
   ============================================ */

.testimonial-source {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-200);
  font-size: 0.75rem;
  color: var(--grey-400);
  font-weight: 500;
}

.testimonial-source svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: #4285F4;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--off-white);
}

.faq-question[aria-expanded="true"] {
  background: var(--off-white);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--grey-400);
  transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--orange);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--grey-600);
}

.faq-answer.open {
  display: block;
}

/* ============================================
   ABOUT PAGE IMPROVEMENTS
   ============================================ */

.about-page-hero-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.14);
  height: 100%;
  min-height: 400px;
}

.about-page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   EMERGENCY REPEATING CTA BLOCK
   ============================================ */

.emergency-mid-cta {
  background: var(--orange);
  border-radius: var(--radius-xl);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin: 48px 0;
}

.emergency-mid-cta p {
  color: rgba(255,255,255,0.90);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.emergency-mid-cta a {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.emergency-mid-cta a svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 600px) {
  .emergency-mid-cta { flex-direction: column; text-align: center; padding: 24px; }
  .emergency-mid-cta a { font-size: 1.3rem; }
}

/* ============================================
   EMERGENCY PAGE HERO
   ============================================ */

.emergency-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.emergency-hero .page-hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0;
  box-shadow: none;
}

.emergency-hero .page-hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13,23,41,0.92) 45%, rgba(13,23,41,0.55) 100%);
}

.emergency-hero .page-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.emergency-hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 80px;
}

.emergency-hero-inner {
  max-width: 680px;
}

.emergency-hero-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.emergency-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.35);
  color: var(--orange);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.emergency-tag-dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 1.4s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.emergency-phone-block {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  margin-top: 36px;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}

.emergency-phone-block h3 {
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.emergency-phone-num {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.emergency-phone-num svg {
  width: 28px;
  height: 28px;
  color: var(--orange);
  flex-shrink: 0;
}

.emergency-phone-note {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin: 4px 0;
  padding-left: 18px;
  position: relative;
}

.emergency-phone-note::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.78rem;
}

@media (max-width: 900px) {
  .emergency-hero { min-height: 520px; }
  .emergency-phone-num { font-size: 1.6rem; }
}

@media (max-width: 600px) {
  .emergency-hero .container { padding-top: 90px; padding-bottom: 56px; }
  .emergency-phone-block { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px; }
  .emergency-phone-num { font-size: 1.4rem; }
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-hero {
  background: var(--navy);
  padding: 100px 0 72px;
  position: relative;
}

.contact-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-hero-text h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.contact-phone-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}

.contact-phone-label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 12px;
}

.contact-phone-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 24px;
}

.contact-phone-link svg {
  width: 32px;
  height: 32px;
  color: var(--orange);
  flex-shrink: 0;
}

.contact-phone-facts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--grey-100);
  padding-top: 20px;
}

.contact-phone-facts li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--grey-600);
  font-weight: 500;
}

.contact-phone-facts li svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: flex-start;
}

.contact-form-col {}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: var(--off-white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-xl);
  padding: 28px;
}

.contact-info-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  align-items: center;
}

.hours-day {
  font-size: 0.9rem;
  color: var(--grey-600);
}

.hours-time {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-head);
  text-align: right;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group label span {
  color: var(--orange);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  width: 100%;
  min-height: 48px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.btn-orange:hover {
  background: #ea6c0a;
  transform: translateY(-1px);
}

@media (max-width: 1000px) {
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-info-col { flex-direction: row; flex-wrap: wrap; }
  .contact-info-card { flex: 1; min-width: 240px; }
}

@media (max-width: 900px) {
  .contact-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-hero { padding: 90px 0 56px; }
  .contact-phone-link { font-size: 1.7rem; }
}

@media (max-width: 600px) {
  .contact-info-col { flex-direction: column; }
  .contact-phone-link { font-size: 1.5rem; }
}

@media (max-width: 767px) {
  .trust-pill--hide-mobile { display: none; }
}

/* --- Brand Logos Strip & New Components --- */
.brand-logos-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border: 2px solid var(--grey-200);
  border-radius: 6px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--grey-800);
  letter-spacing: 0.04em;
  background: var(--white);
}

.mid-cta-band {
  background: var(--navy);
  padding: 48px 0;
  text-align: center;
}

.mid-cta-band h2 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.mid-cta-band p {
  color: rgba(255,255,255,0.65);
  margin-top: 16px;
  font-size: 0.95rem;
}

.footer-postcodes {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
  line-height: 1.6;
}

/* Areas nav dropdown: same component as Services, taller list needs a scroll cap */
.dropdown-menu--areas {
  max-height: 70vh;
  overflow-y: auto;
}

/* Coverage / map section on suburb pages */
.coverage-section {
  padding: 48px 0;
  background: var(--grey-100);
}

.coverage-heading {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.coverage-heading .em { color: var(--orange); }

.coverage-cols {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 24px;
  align-items: stretch;
}

.coverage-details {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--white);
}

.coverage-details h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.coverage-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.92rem;
}

.coverage-detail-row .lbl { color: rgba(255,255,255,0.55); }
.coverage-detail-row .val { color: var(--white); font-weight: 600; }

.coverage-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  transition: background var(--transition);
}

.coverage-call-btn:hover { background: var(--orange-dark); }

.coverage-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 860px) {
  .coverage-cols { grid-template-columns: 1fr; }
  .coverage-map { min-height: 280px; }
}
