/* ============================
   Mike's Auto Services & Towing
   Red & Silver Theme
   ============================ */

:root {
  --red: #c41230;
  --red-dark: #9e0e26;
  --red-light: #fff5f6;
  --dark: #111111;
  --charcoal: #1c1c1e;
  --charcoal-2: #282828;
  --silver: #c2c5ce;
  --silver-dark: #8d939f;
  --silver-light: #f2f3f5;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f1f3f5;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #6b7280;
  --gray-800: #374151;
  --text: #1a1a1a;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); line-height: 1.6; background: #fff; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Icons ── */
.icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.icon-xs { width: 14px; height: 14px; }
.icon-sm { width: 18px; height: 18px; }
.icon-md { width: 22px; height: 22px; }
.icon-lg { width: 32px; height: 32px; }
.icon-xl { width: 44px; height: 44px; }

/* ── Utility ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 5px; font-weight: 700;
  font-size: 1rem; cursor: pointer; transition: all .2s; border: none;
  text-decoration: none; letter-spacing: .01em;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(196,18,48,.35); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.7); }
.btn-outline:hover { background: #fff; color: var(--red-dark); border-color: #fff; }
.btn-dark { background: var(--charcoal); color: #fff; }
.btn-dark:hover { background: var(--dark); }

.section-label {
  display: inline-block; font-size: .72rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--red); margin-bottom: 8px;
}
.section-title { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; line-height: 1.2; color: var(--dark); }
.section-title span { color: var(--red); }
.section-subtitle { font-size: 1.05rem; color: var(--gray-600); margin-top: 12px; max-width: 600px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── Top Bar ── */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,.65);
  font-size: .82rem; padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar a { color: rgba(255,255,255,.75); transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 7px; }
.topbar-item .icon { color: var(--silver); opacity: .75; }
.topbar-phone { color: var(--silver) !important; font-weight: 600; }
.topbar-phone:hover { color: #fff !important; }

/* ── Header ── */
.header {
  background: var(--charcoal);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,.5);
  border-bottom: 2px solid var(--red);
}
.header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; padding-bottom: 12px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 44px; height: 44px; background: var(--red);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.logo-text { line-height: 1.2; }
.logo-text strong { display: block; color: #fff; font-size: 1rem; font-weight: 800; }
.logo-text span { font-size: .75rem; color: var(--silver); }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  color: rgba(255,255,255,.75); padding: 8px 13px; border-radius: 5px;
  font-size: .875rem; font-weight: 500; transition: all .2s;
}
.nav a:hover, .nav a.active { color: #fff; background: rgba(255,255,255,.08); }
.nav .nav-cta {
  background: var(--red); color: #fff; margin-left: 10px;
  padding: 9px 18px; display: flex; align-items: center; gap: 7px;
}
.nav .nav-cta:hover { background: var(--red-dark); }
.nav .nav-cta .icon { color: #fff; }

.nav-item { position: relative; }
.nav-item > a { display: flex; align-items: center; gap: 5px; }
.nav-item > a .icon { opacity: .5; transition: opacity .2s; }
.nav-item:hover > a .icon { opacity: 1; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border-radius: 6px; min-width: 250px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all .2s; z-index: 200;
  border-top: 3px solid var(--red);
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; color: var(--text);
  font-size: .85rem; border-radius: 0; background: none;
  border-bottom: 1px solid var(--gray-100);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--red-light); color: var(--red); }
.dropdown a .icon { color: var(--silver-dark); flex-shrink: 0; }
.dropdown a:hover .icon { color: var(--red); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: rgba(255,255,255,.08); border-radius: 5px;
}
.hamburger span { display: block; height: 2px; width: 22px; background: #fff; border-radius: 2px; }

/* ── Hero ── */
.hero {
  background: linear-gradient(130deg, #0a0a0a 0%, #1a1a1a 50%, #1e1e1e 100%);
  padding: 80px 0 70px; position: relative; overflow: hidden;
}
.hero .container { display: flex; align-items: center; gap: 40px; }
.hero-graphic {
  flex: 0 0 480px; max-width: 480px; position: relative; z-index: 1;
}
.hero-graphic img {
  width: 100%; height: 340px; object-fit: cover; object-position: center 60%;
  display: block; border-radius: 10px;
  border: 2px solid rgba(196,18,48,0.4);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
}
/* Fade image edges into dark hero bg */
.hero-graphic::before {
  content: ''; position: absolute; inset: 0; z-index: 2; border-radius: 10px; pointer-events: none;
  background: linear-gradient(to right, rgba(10,10,10,0.35) 0%, transparent 25%, transparent 75%, rgba(10,10,10,0.2) 100%),
              linear-gradient(to bottom, rgba(10,10,10,0.2) 0%, transparent 20%, transparent 80%, rgba(10,10,10,0.5) 100%);
}
/* Red badge overlay */
.hero-graphic-badge {
  position: absolute; bottom: 16px; left: 16px; z-index: 3;
  background: var(--red); color: #fff; font-size: .72rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 4px;
  display: flex; align-items: center; gap: 7px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(196,18,48,.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-stripe {
  position: absolute; top: 0; right: 0; bottom: 0; width: 40%;
  background: linear-gradient(135deg, transparent 0%, rgba(196,18,48,.04) 100%);
  border-left: 1px solid rgba(196,18,48,.1);
}
.hero-content { max-width: 680px; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(196,18,48,.15); border: 1px solid rgba(196,18,48,.3);
  color: #f08090; padding: 6px 14px; border-radius: 20px;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 900; color: #fff;
  line-height: 1.1; margin-bottom: 18px;
}
.hero h1 span { color: var(--red); }
.hero p { font-size: 1.05rem; color: rgba(255,255,255,.65); margin-bottom: 32px; max-width: 520px; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-trust { display: flex; gap: 28px; margin-top: 44px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.08); }
.hero-trust-item { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.6); font-size: .85rem; }
.hero-trust-item .icon { color: var(--silver); opacity: .7; }

/* ── Services Bar ── */
.services-bar { background: var(--red); padding: 0; }
.services-bar .container { display: flex; gap: 0; justify-content: center; flex-wrap: wrap; }
.services-bar-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.9); font-size: .8rem; font-weight: 600;
  padding: 14px 20px; border-right: 1px solid rgba(255,255,255,.2);
  letter-spacing: .03em;
}
.services-bar-item:last-child { border-right: none; }
.services-bar-item .icon { color: rgba(255,255,255,.75); }

/* ── About ── */
.about-strip { background: var(--silver-light); padding: 72px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap {
  background: linear-gradient(145deg, var(--charcoal) 0%, #222222 100%);
  border-radius: 12px; padding: 48px 36px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 16px; color: #fff;
  min-height: 380px; border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.about-img-icon { color: var(--silver); opacity: .6; margin-bottom: 4px; }
.about-img-wrap h3 { font-size: 1.4rem; font-weight: 800; }
.about-img-wrap p { color: var(--silver); font-size: .875rem; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; width: 100%; }
.about-stat {
  background: rgba(255,255,255,.06); border-radius: 8px; padding: 16px;
  border: 1px solid rgba(255,255,255,.08);
}
.about-stat strong { display: block; font-size: 1.6rem; font-weight: 900; color: var(--red); }
.about-stat span { font-size: .75rem; color: var(--silver); }
.about-text { }
.about-text p { color: var(--gray-600); margin-bottom: 16px; line-height: 1.8; }
.about-features { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.about-feature { display: flex; align-items: flex-start; gap: 14px; }
.about-feature-icon {
  width: 38px; height: 38px; background: var(--red-light); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); flex-shrink: 0; border: 1px solid rgba(196,18,48,.12);
}
.about-feature-text strong { display: block; font-size: .9rem; font-weight: 700; color: var(--dark); }
.about-feature-text span { font-size: .84rem; color: var(--gray-600); }

/* ── Services Grid ── */
.services-section { padding: 80px 0; background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.service-card {
  background: var(--gray-50); border-radius: 10px; padding: 30px 26px;
  border: 1px solid var(--gray-200); transition: all .25s; cursor: pointer;
  display: block; text-decoration: none;
}
.service-card:hover {
  background: #fff; border-color: var(--red);
  box-shadow: 0 8px 32px rgba(196,18,48,.1);
  transform: translateY(-3px);
}
.service-icon {
  width: 54px; height: 54px; background: var(--silver-light);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--charcoal); margin-bottom: 18px;
  transition: background .2s, color .2s;
  border: 1px solid var(--gray-200);
}
.service-card:hover .service-icon { background: var(--red); color: #fff; border-color: var(--red); }
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.service-card p { font-size: .85rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 16px; }
.service-link {
  font-size: .82rem; font-weight: 700; color: var(--red);
  display: flex; align-items: center; gap: 5px;
}
.service-link .icon { transition: transform .2s; }
.service-card:hover .service-link .icon { transform: translateX(3px); }

/* ── Why Choose ── */
.why-section { background: var(--charcoal); padding: 80px 0; }
.why-section .section-title { color: #fff; }
.why-section .section-subtitle { color: var(--silver); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 48px; }
.why-card { text-align: center; padding: 36px 20px; border-radius: 10px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); }
.why-card-icon {
  width: 68px; height: 68px; background: rgba(196,18,48,.1);
  border: 1px solid rgba(196,18,48,.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); margin: 0 auto 20px;
}
.why-card h3 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.why-card p { color: var(--silver); font-size: .875rem; line-height: 1.65; }

/* ── Reviews ── */
.reviews-section { padding: 80px 0; background: var(--silver-light); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.review-card {
  background: #fff; border-radius: 10px; padding: 28px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.review-stars { display: flex; gap: 2px; margin-bottom: 14px; color: #d4a017; }
.review-text { color: var(--gray-600); font-size: .9rem; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--charcoal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .95rem; flex-shrink: 0;
}
.review-author-info strong { display: block; font-size: .9rem; font-weight: 700; color: var(--dark); }
.review-author-info span { font-size: .78rem; color: var(--gray-400); }

/* ── Hours + Contact ── */
.contact-section { padding: 80px 0; background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
.contact-card h3 {
  font-size: 1.1rem; font-weight: 800; color: var(--dark);
  padding-bottom: 12px; border-bottom: 2px solid var(--red); margin-bottom: 20px;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--gray-100); }
.hours-table td { padding: 9px 0; font-size: .875rem; }
.hours-table td:first-child { color: var(--gray-600); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--dark); }
.hours-table tr.today td { color: var(--red); font-weight: 700; }
.hours-table tr.closed td:last-child { color: var(--gray-400); font-weight: 400; }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item-icon {
  width: 40px; height: 40px; background: var(--red-light); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); flex-shrink: 0; border: 1px solid rgba(196,18,48,.12);
}
.contact-item strong { display: block; font-size: .72rem; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 2px; }
.contact-item a, .contact-item span { font-size: .95rem; color: var(--dark); font-weight: 500; }
.contact-item a:hover { color: var(--red); }
.map-embed { width: 100%; height: 220px; border-radius: 8px; overflow: hidden; border: 1px solid var(--gray-200); }
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(130deg, var(--red) 0%, var(--red-dark) 100%);
  padding: 64px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,.04); pointer-events: none;
}
.cta-banner h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); font-weight: 900; color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Service Page Hero ── */
.page-hero {
  background: linear-gradient(130deg, #0a0a0a 0%, #1c1c1e 100%);
  padding: 56px 0 48px; border-bottom: 3px solid var(--red);
}
.page-hero .container { display: flex; align-items: center; gap: 48px; justify-content: space-between; }
.page-hero-text { flex: 1; min-width: 0; }
.page-hero-graphic {
  flex: 0 0 230px; width: 230px; opacity: .88; pointer-events: none;
}
.page-hero-graphic svg { width: 230px; height: 230px; display: block; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; color: rgba(255,255,255,.4); margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,.5); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .icon { color: rgba(255,255,255,.25); }
.page-hero h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 14px; }
.page-hero h1 span { color: var(--red); }
.page-hero p { color: rgba(255,255,255,.65); font-size: 1rem; max-width: 580px; margin-bottom: 28px; line-height: 1.7; }
.page-hero-meta { display: flex; gap: 24px; flex-wrap: wrap; }
.page-hero-meta-item { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.55); font-size: .82rem; }
.page-hero-meta-item .icon { color: var(--silver); opacity: .6; }

/* ── Service Layout ── */
.service-content { padding: 64px 0; }
.service-layout { display: grid; grid-template-columns: 1fr 340px; gap: 52px; align-items: start; }
.service-body h2 { font-size: 1.4rem; font-weight: 800; color: var(--dark); margin: 36px 0 12px; }
.service-body h2:first-child { margin-top: 0; }
.service-body p { color: var(--gray-600); margin-bottom: 16px; line-height: 1.8; }
.service-body ul { margin: 16px 0; padding-left: 0; display: flex; flex-direction: column; gap: 9px; }
.service-body ul li { display: flex; align-items: flex-start; gap: 10px; color: var(--gray-600); font-size: .9rem; }
.service-body ul li .icon { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.service-body a[href^="tel"] { color: var(--red); font-weight: 700; }

/* ── Sidebar ── */
.service-sidebar { position: sticky; top: 90px; }
.sidebar-card {
  background: var(--gray-50); border-radius: 10px; padding: 26px;
  border: 1px solid var(--gray-200); margin-bottom: 18px;
}
.sidebar-card.cta-card { background: var(--charcoal); border: none; text-align: center; }
.sidebar-card.cta-card h3 { color: #fff; font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.sidebar-card.cta-card p { color: var(--silver); font-size: .84rem; margin-bottom: 16px; }
.sidebar-card.cta-card .phone-big { color: var(--red); font-size: 1.4rem; font-weight: 900; display: block; margin-bottom: 4px; font-variant-numeric: tabular-nums; }
.sidebar-card h3 { font-size: .95rem; font-weight: 800; color: var(--dark); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--red); }
.sidebar-hours { display: flex; flex-direction: column; gap: 6px; }
.sidebar-hour { display: flex; justify-content: space-between; font-size: .84rem; }
.sidebar-hour .day { color: var(--gray-600); }
.sidebar-hour .time { font-weight: 600; color: var(--dark); }
.sidebar-hour.today .day, .sidebar-hour.today .time { color: var(--red); font-weight: 700; }
.sidebar-services { display: flex; flex-direction: column; gap: 4px; }
.sidebar-services a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px; border-radius: 7px; color: var(--gray-800);
  font-size: .85rem; transition: all .18s; background: #fff;
  border: 1px solid var(--gray-200);
}
.sidebar-services a:hover { background: var(--red-light); color: var(--red); border-color: rgba(196,18,48,.2); }
.sidebar-services a .icon { color: var(--gray-400); }
.sidebar-services a:hover .icon { color: var(--red); }

/* ── FAQ ── */
.faq-section { padding: 64px 0; background: var(--silver-light); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.faq-item { background: #fff; border-radius: 8px; padding: 24px; border: 1px solid var(--gray-200); }
.faq-item h3 { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.faq-item p { font-size: .875rem; color: var(--gray-600); line-height: 1.7; }

/* ── Footer ── */
.footer { background: var(--dark); color: rgba(255,255,255,.55); }
.footer-top { padding: 56px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: .875rem; line-height: 1.75; max-width: 280px; }
.footer-col h4 { color: var(--silver); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: .875rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--red); }
.footer-col ul li span { font-size: .875rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: .78rem;
}
.footer-bottom a:hover { color: var(--red); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.07); margin: 0; }

/* ── Divider line with red accent ── */
.section-divider { display: flex; align-items: center; gap: 16px; margin-bottom: 48px; }
.section-divider-line { flex: 1; height: 1px; background: var(--gray-200); }
.section-divider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .about-grid { grid-template-columns: 1fr; }
  .hero-graphic { flex: 0 0 360px; max-width: 360px; }
  .page-hero-graphic { flex: 0 0 190px; width: 190px; }
  .page-hero-graphic svg { width: 190px; height: 190px; }
}
@media (max-width: 860px) {
  .hero .container { flex-direction: column; gap: 0; }
  .hero-graphic { display: none; }
  .page-hero .container { display: block; }
  .page-hero-graphic { display: none; }
}
@media (max-width: 768px) {
  .topbar .container { justify-content: center; }
  .topbar-right { display: none; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--dark); flex-direction: column; padding: 12px; gap: 2px; border-top: 2px solid var(--red); z-index: 200; }
  .nav.open { display: flex; }
  .nav-item .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: rgba(255,255,255,.05); border-radius: 6px; margin-top: 4px; }
  .nav-item .dropdown a { color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.06); }
  .hamburger { display: flex; }
  .header { position: relative; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-bar-item { padding: 10px 12px; font-size: .78rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}
