/* ============================================================
   Checkered Flag Plumbing - Racing Theme
   Brand: #0693e3 primary, #9b51e0 secondary
   Fonts: Russo One (display) + Jost (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Russo+One&family=Jost:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:       #0693e3;
  --primary-dark:  #0576bb;
  --primary-light: #38b6f7;
  --secondary:     #9b51e0;
  --dark:          #0b0f14;
  --dark2:         #141a22;
  --dark3:         #1e2735;
  --mid:           #2c3647;
  --light:         #f0f6fc;
  --white:         #ffffff;
  --text-dark:     #1a1f29;
  --text-muted:    #6b7a94;
  --red:           #e63946;
  --green:         #2ea043;
  --font-display:  'Russo One', sans-serif;
  --font-body:     'Jost', sans-serif;
  --radius:        8px;
  --shadow:        0 4px 24px rgba(0,0,0,.25);
  --shadow-lg:     0 12px 48px rgba(0,0,0,.4);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

/* ---- Skip Link ---- */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--primary); color: var(--white);
  padding: .5rem 1rem; border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700; z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 0; color: var(--white); }

/* ---- Checkered Flag Pattern ---- */
.checkered-bg {
  background-image:
    repeating-conic-gradient(rgba(6,147,227,.08) 0% 25%, transparent 0% 50%);
  background-size: 24px 24px;
}
.checkered-strip {
  height: 8px;
  background-image:
    repeating-conic-gradient(var(--primary) 0% 25%, var(--dark) 0% 50%);
  background-size: 16px 16px;
}
.checkered-strip-sm {
  height: 4px;
  background-image:
    repeating-conic-gradient(var(--primary) 0% 25%, var(--dark) 0% 50%);
  background-size: 8px 8px;
}

/* ---- Navigation ---- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(11, 15, 20, .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(6,147,227,.2);
  transition: background .3s;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: .875rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  display: flex; align-items: center; gap: .75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 52px; width: auto;
  filter: drop-shadow(0 2px 6px rgba(6,147,227,.3));
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: color .2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: .6rem 1.4rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--primary-dark) !important; transform: translateY(-1px); color: var(--white) !important; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-mobile {
  display: none; flex-direction: column;
  background: rgba(11,15,20,.98);
  border-top: 1px solid rgba(6,147,227,.15);
  padding: 1.5rem;
  gap: 1rem;
}
.nav-mobile a {
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: 1.05rem;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-mobile a:hover { color: var(--primary); }
.nav-mobile .nav-cta {
  display: block; text-align: center;
  padding: .875rem; border-radius: var(--radius);
  margin-top: .5rem; font-size: 1rem;
}

/* ---- Hero ---- */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--dark);
  padding-top: 76px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
  opacity: .35;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,15,20,.92) 40%, rgba(6,147,227,.1) 100%);
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: repeating-conic-gradient(rgba(6,147,227,.04) 0% 25%, transparent 0% 50%);
  background-size: 32px 32px;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 4rem 1.5rem;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(6,147,227,.15);
  border: 1px solid rgba(6,147,227,.3);
  border-radius: 100px;
  padding: .35rem 1rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
  animation: fadeInDown .6s ease both;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1.05;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 1rem;
  animation: fadeInUp .7s ease .1s both;
}
.hero h1 .accent { color: var(--primary); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.75);
  margin-bottom: 2rem;
  max-width: 600px;
  animation: fadeInUp .7s ease .2s both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  animation: fadeInUp .7s ease .3s both;
}
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--primary); color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark); color: var(--white);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(6,147,227,.4);
}
.btn-outline {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-outline:hover {
  border-color: var(--white); background: rgba(255,255,255,.08);
  color: var(--white); transform: translateY(-2px);
}
.btn-red {
  background: var(--red); color: var(--white);
}
.btn-red:hover {
  background: #c1121f; color: var(--white);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(230,57,70,.4);
}
.hero-trust {
  margin-top: 3rem;
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  animation: fadeInUp .7s ease .4s both;
}
.trust-item {
  display: flex; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.75);
  font-size: .875rem;
  font-weight: 500;
}
.trust-item .icon { color: var(--primary); font-size: 1.1rem; }

/* ---- Page Header (inner pages) ---- */
.page-header {
  background: var(--dark);
  padding: 7rem 1.5rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-conic-gradient(rgba(6,147,227,.05) 0% 25%, transparent 0% 50%);
  background-size: 28px 28px;
}
.page-header-content { position: relative; z-index: 1; }
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .75rem;
}
.page-header h1 .accent { color: var(--primary); }
.page-header p {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  max-width: 600px; margin: 0 auto;
}
.breadcrumb {
  display: flex; justify-content: center; gap: .5rem;
  margin-bottom: 1rem;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { color: var(--primary-light); }

/* ---- Stats Band ---- */
.stats-band {
  background: var(--dark2);
  padding: 3rem 1.5rem;
  position: relative;
  border-top: 4px solid var(--primary);
}
.stats-band::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background-image: repeating-conic-gradient(var(--primary) 0% 25%, var(--dark2) 0% 50%);
  background-size: 8px 8px;
}
.stats-grid {
  max-width: 1000px; margin: 0 auto;
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 2.5rem 4rem;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--primary);
  display: block;
  line-height: 1;
  margin-bottom: .25rem;
}
.stat-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: rgba(255,255,255,.55);
}

/* ---- Section layout ---- */
.section { padding: 5rem 1.5rem; }
.section-dark { background: var(--dark); color: var(--white); }
.section-dark2 { background: var(--dark2); color: var(--white); }
.section-mid { background: var(--dark3); color: var(--white); }
.section-light { background: var(--light); }
.section-white { background: var(--white); }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .75rem;
  line-height: 1.1;
}
.section-dark .section-header h2,
.section-dark2 .section-header h2,
.section-mid .section-header h2 { color: var(--white); }
.section-header h2 .accent { color: var(--primary); }
.section-header p {
  font-size: 1.05rem;
  max-width: 600px; margin: 0 auto;
  color: var(--text-muted);
}
.section-dark .section-header p,
.section-dark2 .section-header p,
.section-mid .section-header p { color: rgba(255,255,255,.65); }
.divider {
  width: 60px; height: 4px;
  background: var(--primary);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ---- Service Cards ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border-left: 4px solid var(--primary);
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.13);
  border-color: var(--secondary);
}
.service-card-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(6,147,227,.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.service-card-icon svg { color: var(--primary); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-dark);
  margin-bottom: .5rem;
}
.service-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Dark variant service cards */
.service-card-dark {
  background: var(--dark3);
  border-left: 4px solid var(--primary);
}
.service-card-dark h3 { color: var(--white); }
.service-card-dark p { color: rgba(255,255,255,.65); }
.service-card-dark .service-card-icon { background: rgba(6,147,227,.15); }

/* ---- Testimonials ---- */
.testimonials-section { position: relative; overflow: hidden; }
.tc-wrapper {
  max-width: 800px; margin: 0 auto;
  position: relative; overflow: hidden;
}
.tc-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.tc-slide {
  min-width: 100%;
  padding: 2.5rem 2rem;
  text-align: center;
}
.tc-quote {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  font-style: italic;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.5rem;
  position: relative;
}
.tc-quote::before {
  content: '\201C';
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--primary);
  opacity: .4;
  position: absolute; top: -1rem; left: -.5rem;
  line-height: 1;
}
.tc-stars { color: #fbbf24; font-size: 1.1rem; margin-bottom: .5rem; letter-spacing: 2px; }
.tc-author { font-weight: 700; color: var(--primary); font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; }
.tc-source { font-size: .8rem; color: rgba(255,255,255,.45); margin-top: .2rem; }
.tc-dots {
  display: flex; justify-content: center; gap: .5rem;
  margin-top: 1.5rem;
}
.tc-dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: none; background: rgba(255,255,255,.3);
  cursor: pointer; transition: background .3s, transform .3s;
  padding: 0;
}
.tc-dot.active { background: var(--primary); transform: scale(1.3); }

/* ---- Emergency CTA Band ---- */
.emergency-band {
  background: linear-gradient(135deg, #8b0000, #c1121f);
  padding: 3rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.emergency-band::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-conic-gradient(rgba(255,255,255,.04) 0% 25%, transparent 0% 50%);
  background-size: 20px 20px;
}
.emergency-band-content { position: relative; z-index: 1; }
.emergency-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 100px;
  padding: .3rem .9rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ffc9c9;
  margin-bottom: 1rem;
}
.emergency-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.emergency-band p { color: rgba(255,255,255,.8); margin-bottom: 1.5rem; }
.emergency-phone {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: opacity .2s;
}
.emergency-phone:hover { opacity: .85; color: var(--white); }

/* ---- About snippet ---- */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.about-text .accent { color: var(--primary); }
.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.about-img-wrap {
  position: relative; border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
  width: 100%; height: 420px; object-fit: cover;
}
.about-img-badge {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  background: var(--primary);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  font-family: var(--font-display);
}
.about-img-badge .big { font-size: 2.5rem; display: block; line-height: 1; }
.about-img-badge .small { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; opacity: .9; }
.owner-card {
  display: flex; align-items: center; gap: 1rem;
  background: var(--light);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
  border-left: 4px solid var(--primary);
}
.owner-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  flex-shrink: 0;
}
.owner-name { font-weight: 700; color: var(--text-dark); }
.owner-title { font-size: .85rem; color: var(--text-muted); }

/* ---- Service Area Map ---- */
.map-section { padding: 4rem 1.5rem; }
.map-section .container > h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: .5rem;
  color: var(--white);
}
.map-section .container > p {
  text-align: center;
  color: rgba(255,255,255,.65);
  margin-bottom: 2rem;
}
#service-area-map {
  height: 380px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(6,147,227,.25);
}
.area-cities {
  margin-top: 2rem;
  display: flex; flex-wrap: wrap; gap: .5rem;
  justify-content: center;
}
.area-city {
  background: rgba(6,147,227,.1);
  border: 1px solid rgba(6,147,227,.25);
  border-radius: 100px;
  padding: .3rem .85rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary-light);
  letter-spacing: .05em;
}

/* ---- Promise Cards ---- */
.promise-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.promise-card {
  text-align: center; padding: 2rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(6,147,227,.06);
  border: 1px solid rgba(6,147,227,.15);
  transition: background .25s, border-color .25s;
}
.promise-card:hover { background: rgba(6,147,227,.12); border-color: rgba(6,147,227,.3); }
.promise-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(6,147,227,.15);
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.promise-card h3 {
  font-family: var(--font-display);
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--white);
  margin-bottom: .5rem;
}
.promise-card p { font-size: .875rem; color: rgba(255,255,255,.6); }

/* ---- FAQ Accordion ---- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(6,147,227,.2);
  padding: .25rem 0;
}
.faq-item:first-child { border-top: 1px solid rgba(6,147,227,.2); }
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  color: var(--white);
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary:hover { color: var(--primary); }
.faq-chevron { transition: transform .3s; flex-shrink: 0; margin-left: 1rem; color: var(--primary); }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer { padding: 0 0 1.25rem; line-height: 1.75; color: rgba(255,255,255,.7); font-size: .975rem; }

/* ---- Before/After Slider ---- */
.ba-section { padding: 4rem 1.5rem; }
.ba-title { text-align: center; margin-bottom: 2rem; }
.ba-slider {
  position: relative; overflow: hidden;
  max-width: 760px; margin: 0 auto;
  border-radius: 12px;
  aspect-ratio: 16/9;
  user-select: none;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(6,147,227,.2);
}
.ba-before {
  position: absolute; top: 0; left: 0;
  width: 50%; height: 100%; overflow: hidden;
}
.ba-before img {
  width: var(--ba-full-w, 100%); height: 100%;
  object-fit: cover; display: block;
}
.ba-after {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.ba-handle {
  position: absolute; top: 0; left: 50%;
  width: 4px; height: 100%;
  background: var(--primary);
  cursor: ew-resize; transform: translateX(-50%); z-index: 2;
  box-shadow: 0 0 12px rgba(6,147,227,.5);
}
.ba-handle-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 44px; height: 44px;
  background: var(--primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 12px rgba(0,0,0,.3);
  color: white; font-size: 1rem; font-weight: 700;
}
.ba-label {
  position: absolute; top: 1rem;
  background: rgba(0,0,0,.6); color: white;
  padding: .25rem .75rem; border-radius: 100px;
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em;
}
.ba-label-before { left: 1rem; }
.ba-label-after { right: 1rem; }

/* ---- Gallery Grid ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: .75rem;
}
.gallery-img {
  width: 100%; height: 220px; object-fit: cover;
  border-radius: var(--radius); cursor: pointer;
  transition: transform .3s, brightness .3s;
}
.gallery-img:hover { transform: scale(1.03); filter: brightness(1.1); }
#lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.92);
  align-items: center; justify-content: center;
  cursor: zoom-out;
}
#lightbox-img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain; border-radius: 4px;
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,.1); border: none;
  color: white; font-size: 1.75rem; cursor: pointer;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }

/* ---- Contact Form ---- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 4rem; align-items: start;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.contact-detail {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-detail-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(6,147,227,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); flex-shrink: 0;
}
.contact-detail-text strong { display: block; color: var(--white); font-size: .95rem; margin-bottom: .2rem; }
.contact-detail-text span, .contact-detail-text a { color: rgba(255,255,255,.65); font-size: .9rem; }
.contact-detail-text a:hover { color: var(--primary); }
.contact-form-wrap {
  background: var(--dark3);
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid rgba(6,147,227,.15);
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600; font-size: .85rem;
  text-transform: uppercase; letter-spacing: .06em;
  color: rgba(255,255,255,.7);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .75rem 1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(6,147,227,.2);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: border-color .2s, background .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: rgba(6,147,227,.08);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select option { background: var(--dark2); color: var(--white); }
.form-success {
  display: none;
  text-align: center; padding: 2rem;
  color: var(--green);
  font-size: 1.1rem; font-weight: 600;
}
.form-error-msg { color: var(--red); font-size: .85rem; margin-top: .5rem; }

/* ---- Hours Table ---- */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(6,147,227,.1); }
.hours-table td { padding: .65rem 0; font-size: .9rem; color: rgba(255,255,255,.75); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--primary-light); }

/* ---- Floating CTA ---- */
.floating-cta {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 500;
  background: var(--primary); color: white;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(6,147,227,.5);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.floating-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(6,147,227,.65);
  color: white;
}
@media (min-width: 768px) {
  .floating-cta { width: 64px; height: 64px; bottom: 2rem; right: 2rem; }
}

/* ---- Footer ---- */
.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(6,147,227,.15);
  padding: 3.5rem 1.5rem 1.5rem;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand img { height: 52px; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .9rem; line-height: 1.7; max-width: 300px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--primary);
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { color: rgba(255,255,255,.6); font-size: .9rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-col address { font-style: normal; color: rgba(255,255,255,.55); font-size: .875rem; line-height: 1.8; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
  font-size: .8rem; color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--primary); }
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--primary); color: white; }

/* ---- Reveal Animations ---- */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }
.reveal:nth-child(5) { transition-delay: .4s; }
.reveal:nth-child(6) { transition-delay: .5s; }

/* ---- Keyframes ---- */
@keyframes fadeInDown { from { opacity:0; transform:translateY(-16px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInUp   { from { opacity:0; transform:translateY(20px);  } to { opacity:1; transform:translateY(0); } }

/* ---- Stars ---- */
.stars { color: #fbbf24; letter-spacing: 2px; }

/* ---- License badge ---- */
.license-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(6,147,227,.12);
  border: 1px solid rgba(6,147,227,.25);
  border-radius: 100px;
  padding: .35rem 1rem;
  font-size: .8rem; font-weight: 600;
  color: var(--primary-light);
  margin-top: 1rem;
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.font-display { font-family: var(--font-display); }
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero h1 { font-size: 2.2rem; }
  .stats-grid { gap: 2rem; }
  .stat-number { font-size: 2.25rem; }
  .section { padding: 3.5rem 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .hero { min-height: 80vh; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .contact-form-wrap { padding: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, .reveal { transition: none !important; animation: none !important; }
}
