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

:root {
  --bg: #0a0e1a;
  --bgElevated: #111827;
  --bgCard: #151c2c;
  --accent: #0047AB;
  --accentGlow: #2563eb;
  --secondary: #D21F3C;
  --secondaryGlow: #ef4444;
  --highlight: #f59e0b;
  --text: #f1f5f9;
  --textMuted: #94a3b8;
  --dark: #0f172a;
  --border: #1e293b;
  --gradientHero: linear-gradient(135deg, #0a0e1a 0%, #0f172a 50%, #1a1035 100%);
  --gradientCta: linear-gradient(135deg, #0047AB 0%, #D21F3C 100%);
  --overlayDark: rgba(10, 14, 26, 0.85);
  --overlayMedium: rgba(10, 14, 26, 0.6);
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'JetBrains Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }
.section-label {
  text-align: center;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-headline {
  text-align: center;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text);
}
.section-subtext {
  text-align: center;
  font-size: 1.125rem;
  color: var(--textMuted);
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  text-decoration: none;
  gap: 0.5rem;
}
.btn-primary {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(210, 31, 60, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(210, 31, 60, 0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 71, 171, 0.3);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 71, 171, 0.4);
}

/* Emergency Sticky Bar */
.emergency-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--secondary);
  color: #fff;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  animation: pulse-bar 2s ease-in-out infinite;
}
.emergency-bar a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.emergency-bar .phone-icon { font-size: 1.1rem; }
@keyframes pulse-bar {
  0%, 100% { box-shadow: 0 2px 10px rgba(210, 31, 60, 0.3); }
  50% { box-shadow: 0 2px 20px rgba(210, 31, 60, 0.6); }
}

/* Navigation */
.site-nav {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s ease;
  background: transparent;
}
.site-nav.scrolled {
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.6rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text);
  letter-spacing: 0.05em;
}
.nav-logo span { color: var(--secondary); }
.nav-links { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--textMuted);
  transition: color 0.3s;
  letter-spacing: 0.02em;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-cta {
  background: var(--secondary) !important;
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 0.375rem;
  font-weight: 600 !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    flex-direction: column;
    background: var(--dark);
    padding: 5rem 2rem;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    gap: 1.5rem;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.125rem; }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6rem;
  overflow: hidden;
}
/* old hero-video-wrap and hero-overlay rules removed — replaced by .hero__video and .hero__overlay above */
.hero-keyframe {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}
.hero-content h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.hero-content .hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--textMuted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Hero — matches Oh Sir Fox flat structure for reliable GSAP pin + scrub */
.hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,14,26,0.4), rgba(10,14,26,0.7));
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

/* Trust Bar */
.trust-bar {
  background: var(--bgElevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--textMuted);
}
.trust-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 71, 171, 0.15);
  border-radius: 0.5rem;
  color: var(--accent);
  font-size: 1.125rem;
}

/* Services - Sticky Cards */
.services-section { padding: 6rem 0 2rem; }
.sticky-cards-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem 12rem;
}
.service-sticky-card {
  position: sticky;
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  transition: transform 0.1s ease;
  will-change: transform;
  border: 1px solid var(--border);
  background: var(--bgCard);
}
.service-sticky-card:nth-child(1) { top: 100px; z-index: 1; }
.service-sticky-card:nth-child(2) { top: 120px; z-index: 2; }
.service-sticky-card:nth-child(3) { top: 140px; z-index: 3; }
.service-sticky-card:nth-child(4) { top: 160px; z-index: 4; }
.service-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.service-card-title {
  font-size: 1.75rem;
  font-weight: 400;
}
.service-card-desc {
  color: var(--textMuted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.service-feature-tag {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--textMuted);
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
  transition: gap 0.3s;
}
.service-card-link:hover { gap: 0.75rem; }

/* Guided Walkthrough */
.walkthrough-section { padding: 6rem 0; }
.walkthrough-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.walkthrough-card {
  background: var(--bgCard);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.walkthrough-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.walkthrough-card-front {
  padding: 2.5rem 2rem;
  text-align: center;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.walkthrough-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.walkthrough-card-title {
  font-size: 1.5rem;
  font-weight: 400;
}
.walkthrough-card-tap {
  font-size: 0.75rem;
  color: var(--textMuted);
  font-family: var(--font-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.walkthrough-card-steps {
  display: none;
  padding: 0 2rem 2rem;
}
.walkthrough-card.expanded .walkthrough-card-steps { display: block; }
.walkthrough-card.expanded .walkthrough-card-tap { display: none; }
.walkthrough-step {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.walkthrough-step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-accent);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 28px;
}
.step-text {
  font-size: 0.9375rem;
  color: var(--textMuted);
  line-height: 1.6;
}
.walkthrough-footer-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Stats / Odometer */
.stats-section {
  background: var(--bgElevated);
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
.stat-item { padding: 2rem 1rem; }
.stat-value {
  font-family: var(--font-accent);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.stat-value .odometer-digits {
  display: flex;
  overflow: hidden;
  height: 1.15em;
}
.odo-digit {
  display: inline-block;
  overflow: hidden;
  height: 1.15em;
  position: relative;
}
.odo-strip {
  display: flex;
  flex-direction: column;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.odo-strip span {
  display: block;
  height: 1.15em;
  line-height: 1.15;
}
.stat-suffix {
  font-size: 0.65em;
  opacity: 0.7;
  margin-left: 2px;
}
.stat-label {
  font-size: 0.875rem;
  color: var(--textMuted);
  font-weight: 500;
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Process - Sticky Stack */
.process-section { padding: 6rem 0; }
.process-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  align-items: start;
}
.process-visual {
  position: sticky;
  top: 140px;
}
.process-visual-inner {
  background: var(--bgCard);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 3rem;
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.process-visual-step {
  font-family: var(--font-accent);
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.2;
}
.process-visual-title {
  font-size: 1.5rem;
  margin-top: 1rem;
}
.process-cards { display: flex; flex-direction: column; gap: 2rem; padding: 2rem 0 10rem; }
.process-card {
  padding: 2rem;
  border-radius: 1rem;
  background: var(--bgCard);
  border: 1px solid var(--border);
  opacity: 0.4;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.process-card.active {
  opacity: 1;
  transform: translateY(0);
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 12px 40px rgba(0,0,0,0.2);
}
.process-card-step {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.process-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.process-card p {
  color: var(--textMuted);
  line-height: 1.7;
  font-size: 0.9375rem;
}
@media (max-width: 768px) {
  .process-stack { grid-template-columns: 1fr; }
  .process-visual { position: relative; top: 0; }
}

/* Before/After Gallery - Horizontal Scroll */
.gallery-section { overflow: hidden; position: relative; }
.gallery-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.gallery-track {
  display: flex;
  gap: 2rem;
  padding: 0 5vw;
  will-change: transform;
}
.gallery-card {
  flex-shrink: 0;
  width: clamp(320px, 40vw, 480px);
  height: 60vh;
  border-radius: 1.25rem;
  overflow: hidden;
  position: relative;
  background: var(--bgCard);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: transform 0.3s;
}
.gallery-card:hover { transform: translateY(-4px); }
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--dark) 0%, transparent 60%);
}
.gallery-card-content { position: relative; z-index: 2; }
.gallery-card-badge {
  font-family: var(--font-accent);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.gallery-card h3 { font-size: 1.375rem; margin-bottom: 0.375rem; }
.gallery-card p { font-size: 0.875rem; color: var(--textMuted); }
.gallery-progress {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-progress.visible { opacity: 1; }
.gallery-progress-bar {
  width: 120px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 1px;
  overflow: hidden;
}
.gallery-progress-fill {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 0.1s;
}
.gallery-progress-label {
  font-family: var(--font-accent);
  font-size: 0.6875rem;
  color: var(--textMuted);
  letter-spacing: 0.08em;
}

/* Testimonials - Marquee */
.testimonials-section {
  padding: 6rem 0;
  overflow: hidden;
}
.testimonial-marquee-row {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  padding: 0.75rem 0;
}
.testimonial-marquee-row + .testimonial-marquee-row { margin-top: 0.75rem; }
.testimonial-card-inline {
  display: inline-flex;
  flex-direction: column;
  background: var(--bgCard);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  margin: 0 0.75rem;
  min-width: 360px;
  max-width: 400px;
  white-space: normal;
  flex-shrink: 0;
}
.testimonial-stars {
  color: var(--highlight);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}
.testimonial-quote {
  font-size: 0.9375rem;
  color: var(--textMuted);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
}
.testimonial-name { font-weight: 600; font-size: 0.875rem; }
.testimonial-loc {
  font-size: 0.75rem;
  color: var(--textMuted);
}

/* Why Choose Us */
.why-section { padding: 6rem 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.why-card {
  background: var(--bgCard);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
}
.why-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: rgba(0, 71, 171, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--accent);
}
.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 400;
}
.why-card p {
  font-size: 0.875rem;
  color: var(--textMuted);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* Service Areas */
.areas-section { padding: 6rem 0; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.area-card {
  background: var(--bgCard);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
}
.area-card h3 {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 400;
}
.area-towns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.area-town {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  padding: 0.25rem 0.625rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--textMuted);
}

/* FAQ Accordion */
.faq-section { padding: 6rem 0; }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  padding: 1.5rem 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--accent); }
.faq-toggle {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  font-size: 1.25rem;
  color: var(--textMuted);
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer-inner {
  padding: 0 0 1.5rem;
  color: var(--textMuted);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* Blog Preview */
.blog-section { padding: 6rem 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.blog-card {
  background: var(--bgCard);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s;
}
.blog-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.blog-card-image {
  height: 200px;
  background: var(--bgElevated);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-image .placeholder-icon { font-size: 3rem; opacity: 0.2; }
.blog-card-content { padding: 1.5rem; }
.blog-category {
  font-family: var(--font-accent);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.blog-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 400;
  line-height: 1.3;
}
.blog-card p {
  font-size: 0.875rem;
  color: var(--textMuted);
  line-height: 1.6;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 1rem;
  transition: gap 0.3s;
}
.blog-read-more:hover { gap: 0.75rem; }

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section.gradient-bg {
  background: var(--gradientCta);
}
.cta-section .section-headline { color: #fff; }
.cta-section .section-subtext { color: rgba(255,255,255,0.8); }
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Footer */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}
.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.footer-brand .dba {
  font-size: 0.8125rem;
  color: var(--textMuted);
  margin-bottom: 1rem;
}
.footer-brand .address,
.footer-brand .phone,
.footer-brand .email {
  font-size: 0.875rem;
  color: var(--textMuted);
  margin-bottom: 0.375rem;
}
.footer-brand .phone { color: var(--secondary); font-weight: 600; }
.footer-brand .certs {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.footer-cert {
  font-family: var(--font-accent);
  font-size: 0.6875rem;
  padding: 0.25rem 0.625rem;
  background: rgba(0, 71, 171, 0.15);
  border: 1px solid rgba(0, 71, 171, 0.3);
  border-radius: 999px;
  color: var(--accent);
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--textMuted);
  padding: 0.25rem 0;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--textMuted);
}
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--textMuted);
  font-size: 0.875rem;
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Service Pages */
.service-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  background: var(--gradientHero);
  position: relative;
}
.service-hero-content {
  max-width: 700px;
  padding: 0 1.5rem;
}
.service-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.service-hero .hero-sub {
  color: var(--textMuted);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.service-detail-section { padding: 6rem 0; }
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.service-detail-card {
  background: var(--bgCard);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
}
.service-detail-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.service-detail-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  font-weight: 400;
}
.service-detail-card p {
  font-size: 0.9375rem;
  color: var(--textMuted);
  line-height: 1.7;
}

/* About Page */
.about-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0 4rem;
  background: var(--gradientHero);
  text-align: center;
}
.about-content-section {
  padding: 4rem 0;
  max-width: 800px;
  margin: 0 auto;
}
.about-content-section p {
  font-size: 1.0625rem;
  color: var(--textMuted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding: 0 1.5rem;
}
.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}
.cert-card {
  background: var(--bgCard);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}
.cert-card:hover { border-color: var(--accent); }
.cert-card .cert-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.cert-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.cert-card p {
  font-size: 0.8125rem;
  color: var(--textMuted);
}

/* Contact Form */
.contact-section { padding: 6rem 0; }
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.contact-form {
  background: var(--bgCard);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--textMuted);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(210, 31, 60, 0.4);
}
.contact-info-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-info-item {
  background: var(--bgCard);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
}
.contact-info-item h3 {
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.contact-info-item p {
  font-size: 0.9375rem;
  color: var(--textMuted);
  line-height: 1.6;
}
.contact-info-item a {
  color: var(--secondary);
  font-weight: 600;
}
@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* Page Hero (generic for inner pages) */
.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0 3rem;
  background: var(--gradientHero);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.125rem;
  color: var(--textMuted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Emergency Page */
.emergency-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #0a0e1a 0%, #1a0a0a 100%);
  text-align: center;
}
.emergency-hero h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--secondary);
}
.emergency-phone {
  font-family: var(--font-accent);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin: 1.5rem 0;
}
.emergency-phone a {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--secondary);
  border-radius: 0.5rem;
  transition: all 0.3s;
}
.emergency-phone a:hover {
  background: var(--secondary);
}

/* Testimonials Page Grid */
.testimonials-grid-section { padding: 4rem 0; }
.testimonials-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.testimonial-page-card {
  background: var(--bgCard);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
}
.testimonial-page-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* Review CTA */
.review-cta {
  padding: 4rem 0;
  text-align: center;
}

/* Blog Listing */
.blog-listing-section { padding: 4rem 0; }
.blog-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 0 1.5rem;
}
.blog-cat-btn {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--textMuted);
  cursor: pointer;
  transition: all 0.3s;
}
.blog-cat-btn:hover,
.blog-cat-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Particle effects */
.particle {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
}

/* Fade-up utility */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 0.75rem 1.5rem;
  font-size: 0.8125rem;
  color: var(--textMuted);
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumbs a { color: var(--accent); }
.breadcrumbs span { margin: 0 0.5rem; }
