.elementor-7835 .elementor-element.elementor-element-d9d6070{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for container, class: .elementor-element-d9d6070 *//*
=======================================================================
  LURID AUTO REPAIR — Main Stylesheet
  File: lurid-auto-repair.css

  HOW TO USE IN WORDPRESS:
  Upload this file to your theme folder or child theme, then enqueue it
  in functions.php:

    wp_enqueue_style(
      'lurid-auto-repair',
      get_stylesheet_directory_uri() . '/lurid-auto-repair.css'
    );

  Or paste the contents into Appearance → Customize → Additional CSS.
=======================================================================
*/

/* ═══════════════════════════════════════
   1. DESIGN TOKENS (colors, fonts, sizes)
   To change brand colors — edit here only.
═══════════════════════════════════════ */
:root {
  /* Colors */
  --c-bg:        #0D0D0D;        /* Page background */
  --c-surface:   #161616;        /* Card / section background */
  --c-surface2:  #1E1E1E;        /* Hover state / alternate surface */
  --c-border:    rgba(255,255,255,0.07);
  --c-border-hi: rgba(255,255,255,0.12);
  --c-accent:    #E8500A;        /* Brand orange — change this to rebrand */
  --c-accent-hi: #FF6820;        /* Lighter orange for hover */
  --c-accent-lo: rgba(232,80,10,0.12);
  --c-text:      #FFFFFF;
  --c-text-2:    #A8A8A8;        /* Secondary text */
  --c-text-3:    #555555;        /* Muted / labels */
  --c-gold:      #E8B84B;        /* Star color */

  /* Typography */
  --f-head: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --f-body: 'DM Sans', 'Segoe UI', Arial, sans-serif;

  /* Layout */
  --r:    6px;      /* Border radius */
  --mw:   1160px;   /* Max content width */
  --nav-h: 132px;   /* Navbar height (72px bar + 60px top padding) */
}


/* ═══════════════════════════════════════
   2. RESET
═══════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--f-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }


/* ═══════════════════════════════════════
   3. LAYOUT HELPERS
═══════════════════════════════════════ */
.wrap {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: 110px 0; }


/* ═══════════════════════════════════════
   4. TYPOGRAPHY
═══════════════════════════════════════ */
.eyebrow {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent);
}

h1, h2, h3 {
  font-family: var(--f-head);
  text-transform: uppercase;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color:white !important;
}

h3 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}


/* ═══════════════════════════════════════
   5. BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 15px 30px;
  border-radius: var(--r);
  transition: all 0.22s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--c-accent);
  color: white !important;
}
.btn-primary:hover {
  background: var(--c-accent-hi);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232,80,10,0.35);
}

.btn-ghost {
  background: transparent;
  color: white!important;
  border: 1.5px solid var(--c-border-hi);
}
.btn-ghost:hover {
  border-color: var(--c-text);
  background: rgba(255,255,255,0.05);
}


/* ═══════════════════════════════════════
   6. NAVBAR
═══════════════════════════════════════ */
#nav {
  position: fixed;
  inset: 0 0 auto;
  height: var(--nav-h);
  z-index: 900;
  background: #000000;
  padding-top: 60px;          /* pushes bar content down 60px */
  transition: box-shadow 0.3s;
  display: flex;
  align-items: flex-end;       /* stick inner content to the bottom of the nav block */
}

#nav.scrolled {
  background: #000000;
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--c-border);
}

.nav-inner {
  width: 100%;
  height: 100px;               /* the actual visible bar height */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--f-head);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: white !important;
}
.nav-logo em {
  color: #ffffff;   /* all white — matches second image */
  font-style: normal;
}

.nav-links {
  list-style: none;
  display: flex;
  padding-top: 20px;
  gap: 36px;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-2);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--c-text); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 910;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  display: block;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(16px);
  flex-direction: column;
  padding: 40px 32px;
  gap: 4px;
  z-index: 899;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--f-head);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--c-text-2);
  padding: 14px 0;
  border-bottom: 1px solid var(--c-border);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--c-accent); }
.mobile-nav .btn-primary {
  margin-top: 24px;
  justify-content: center;
  font-size: 1rem;
  padding: 18px;
}


/* ═══════════════════════════════════════
   7. HERO
═══════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1619642751034-765dfdf7c58e?w=1800&q=80')
    center center / cover no-repeat;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,10,10,0.92) 40%, rgba(10,10,10,0.3) 100%),
    linear-gradient(to top, rgba(10,10,10,0.7) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 60px) 0 100px;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,80,10,0.18);
  border: 1px solid rgba(232,80,10,0.5);
  border-radius: 100px;
  padding: 6px 14px 6px 10px;
  margin-bottom: 32px;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,80,10,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(232,80,10,0); }
}
.hero-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
}

.hero-title { margin-bottom: 28px; color: var(--c-text); }
.hero-title em { font-style: italic; color: var(--c-accent); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--c-text-2);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--c-border-hi);
  flex-wrap: wrap;
}
.hero-stat-val {
  font-family: var(--f-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--c-text);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-val sup { font-size: 1.2rem; color: var(--c-gold); }
.hero-stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-3);
}


/* ═══════════════════════════════════════
   8. MARQUEE STRIP
═══════════════════════════════════════ */
.marquee-strip {
  background: var(--c-accent);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 36px;
  font-family: var(--f-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
}
.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════
   9. SERVICES SECTION
═══════════════════════════════════════ */
#services { background: var(--c-bg); }

.section-head { margin-bottom: 64px; }
.section-head .eyebrow { margin-bottom: 14px; display: block; }
.section-head h2 { color: var(--c-text); }
.section-head p {
  font-size: 1rem;
  color: var(--c-text-2);
  max-width: 500px;
  margin-top: 16px;
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  overflow: hidden;
}

.svc {
  background: var(--c-surface);
  padding: 40px 36px;
  position: relative;
  transition: background 0.25s;
}
.svc:hover { background: var(--c-surface2); }

.svc-icon {
  width: 48px;
  height: 48px;
  background: var(--c-accent-lo);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.25s;
}
.svc:hover .svc-icon { background: rgba(232,80,10,0.22); }
.svc-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--c-accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc h3 { color: var(--c-text); margin-bottom: 12px; font-size: 1.2rem; }
.svc p  { font-size: 0.9rem; color: var(--c-text-2); line-height: 1.7; }

.svc-arrow {
  position: absolute;
  bottom: 28px;
  right: 28px;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.25s;
}
.svc:hover .svc-arrow { opacity: 1; transform: translateX(0); }
.svc-arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--c-accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ═══════════════════════════════════════
   10. ABOUT SECTION
═══════════════════════════════════════ */
#about { background: var(--c-surface); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-media { position: relative; }

.about-img-wrap {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
}
.about-img-wrap::before {
  content: '';
  display: block;
  padding-top: 125%;
  background: linear-gradient(160deg, #1a1a1a 0%, #111 100%);
}
.about-img-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.about-img-icon { opacity: 0.12; }
.about-img-icon svg {
  width: 120px;
  height: 120px;
  stroke: #fff;
  fill: none;
  stroke-width: 1;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--c-accent);
  border-radius: var(--r);
  padding: 24px 28px;
  text-align: center;
}
.about-badge-val {
  font-family: var(--f-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.about-badge-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}

.about-text .eyebrow { margin-bottom: 16px; display: block; }
.about-text h2 { color: var(--c-text); margin-bottom: 24px; }
.about-text p {
  font-size: 0.97rem;
  color: var(--c-text-2);
  line-height: 1.8;
  margin-bottom: 18px;
}

.checklist { display: flex; flex-direction: column; gap: 14px; margin: 32px 0 40px; }
.check-row { display: flex; align-items: flex-start; gap: 14px; }
.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-icon svg {
  width: 10px;
  height: 10px;
  stroke: #fff;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.check-row p { font-size: 0.92rem; color: var(--c-text-2); line-height: 1.6; }


/* ═══════════════════════════════════════
   11. REVIEWS SECTION
═══════════════════════════════════════ */
#reviews { background: var(--c-bg); }

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
  flex-wrap: wrap;
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--c-surface);
  border: 1px solid var(--c-border-hi);
  border-radius: var(--r);
  padding: 16px 24px;
  flex-shrink: 0;
}
.google-badge-score {
  font-family: var(--f-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--c-text);
  line-height: 1;
}
.google-badge-stars { color: var(--c-gold); font-size: 1rem; letter-spacing: 2px; }
.google-badge-sub { font-size: 0.75rem; color: var(--c-text-3); margin-top: 2px; }
.google-badge-g { font-family: var(--f-head); font-size: 1.8rem; font-weight: 800; color: var(--c-text-3); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s, transform 0.2s;
}
.review-card:hover { border-color: var(--c-border-hi); transform: translateY(-4px); }

.review-stars { color: var(--c-gold); font-size: 0.9rem; letter-spacing: 2px; }
.review-quote {
  font-size: 0.92rem;
  color: var(--c-text-2);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--c-border);
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-accent-lo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-accent);
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.88rem; color: var(--c-text); }
.review-time { font-size: 0.75rem; color: var(--c-text-3); margin-top: 1px; }


/* ═══════════════════════════════════════
   12. CONTACT SECTION
═══════════════════════════════════════ */
#contact { background: var(--c-surface); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-text .eyebrow { display: block; margin-bottom: 16px; }
.contact-text h2 { color: var(--c-text); margin-bottom: 40px; }

.info-blocks { display: flex; flex-direction: column; gap: 8px; }
.info-block {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--c-border);
}
.info-block:last-child { border-bottom: none; }

.info-ico {
  width: 40px;
  height: 40px;
  background: var(--c-accent-lo);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-ico svg {
  width: 18px;
  height: 18px;
  stroke: var(--c-accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-3);
  margin-bottom: 4px;
}
.info-val { font-size: 1rem; color: var(--c-text); }
.info-val a { color: var(--c-text); transition: color 0.2s; }
.info-val a:hover { color: var(--c-accent); }

.hours-rows { display: flex; flex-direction: column; gap: 5px; }
.hours-row { display: flex; justify-content: space-between; gap: 16px; font-size: 0.9rem; }
.hours-day  { color: var(--c-text-2); }
.hours-time { color: var(--c-text); font-weight: 500; }
.hours-closed { color: var(--c-text-3); }

.contact-ctas { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }

.map-wrap {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: var(--c-surface2);
}
.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
  filter: grayscale(50%) invert(5%) contrast(1.1);
}
.map-label {
  padding: 14px 20px;
  font-size: 0.8rem;
  color: var(--c-text-3);
  display: flex;
  align-items: center;
  gap: 8px;
}
.map-label svg {
  width: 14px;
  height: 14px;
  stroke: var(--c-accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════
   13. CTA BAND
═══════════════════════════════════════ */
#cta {
  padding: 100px 0;
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(232,80,10,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-inner .eyebrow { display: block; text-align: center; margin-bottom: 16px; }
.cta-inner h2 { color: var(--c-text); margin-bottom: 16px; }
.cta-inner p { font-size: 1rem; color: var(--c-text-2); margin-bottom: 40px; line-height: 1.75; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }


/* ═══════════════════════════════════════
   14. FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-family: var(--f-head);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer-logo em { color: var(--c-accent); font-style: normal; }

.footer-links {
  list-style: none;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-3);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--c-text); }

.footer-copy { font-size: 0.78rem; color: var(--c-text-3); }


/* ═══════════════════════════════════════
   15. SCROLL REVEAL ANIMATION
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }


/* ═══════════════════════════════════════
   16. RESPONSIVE — Tablet (≤1024px)
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ═══════════════════════════════════════
   17. RESPONSIVE — Mobile (≤860px)
═══════════════════════════════════════ */
@media (max-width: 860px) {
  section { padding: 80px 0; }
  .wrap { padding: 0 20px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { bottom: -16px; right: 16px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-right .btn-ghost { display: none; }
  .hamburger { display: flex; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .reviews-header { flex-direction: column; align-items: flex-start; }
}


/* ═══════════════════════════════════════
   18. RESPONSIVE — Small Mobile (≤600px)
═══════════════════════════════════════ */
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .cta-btns { flex-direction: column; }
  .cta-btns .btn { justify-content: center; }
}/* End custom CSS */