/*
  PROJECT: Garage Door Euless
  COLOR SCHEME: Option A - Navy + Gold - #0c1f3f + #f59e0b
  FONTS: Combo C - Montserrat + Open Sans
  LAYOUT: Style 3 - Split hero
*/
:root {
  --primary: #0c1f3f;
  --primary-2: #102a55;
  --accent: #f59e0b;
  --accent-hover: #d98705;
  --bg: #f8fafc;
  --text: #1e293b;
  --muted: #64748b;
  --line: #e2e8f0;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(12, 31, 63, 0.04);
  --shadow: 0 12px 30px rgba(12, 31, 63, 0.08);
  --shadow-lg: 0 20px 40px rgba(12, 31, 63, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: "Montserrat", Arial, sans-serif;
  --font-body: "Open Sans", Arial, sans-serif;
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
  border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-2);
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 8px 20px rgba(245, 158, 11, 0.25); }
  50% { box-shadow: 0 12px 28px rgba(245, 158, 11, 0.45); }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 42%, #ffffff 100%);
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
}
html, body { max-width: 100%; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
h1 { font-size: clamp(2.5rem, 4.5vw, 4.75rem); font-weight: 800; margin: 0 0 1.25rem; }
h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); font-weight: 800; margin-bottom: 1.25rem; }
h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.75rem; }
p { color: var(--muted); margin-bottom: 1.25rem; }

.container { max-width: 1200px; padding: 0 1.5rem; }

/* Utility Bar */
.utility-bar {
  background: var(--primary);
  color: var(--white);
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.utility-bar .container {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.utility-left, .utility-right { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.utility-bar a, .utility-bar span { color: rgba(255,255,255,0.9); font-weight: 700; transition: var(--transition); }
.utility-bar a:hover { color: var(--accent); }
.utility-right span {
  color: #111827;
  background: var(--accent);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

/* Premium Navbar (Glassmorphic) */
.navbar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 8px 32px rgba(12, 31, 63, 0.03);
  padding: 0.85rem 0;
  transition: var(--transition);
}
.navbar.scrolled { 
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 36px rgba(12, 31, 63, 0.1); 
  padding: 0.6rem 0;
}
.nav-main { gap: 1rem; }
.navbar-brand img { width: 150px; height: 50px; object-fit: contain; }
.main-menu { gap: 0.25rem; }

.nav-link {
  font-weight: 800;
  color: var(--primary);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 0.5rem 0.8rem !important;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0.8rem;
  right: 0.8rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: right;
}
.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-link.active, .dropdown-item.active { color: var(--accent) !important; }
.navbar-toggler { min-width: 44px; min-height: 44px; border: 1px solid var(--line); border-radius: 8px; }
.dropdown-menu { border: 1px solid var(--line); box-shadow: var(--shadow-lg); border-radius: 12px; min-width: 270px; padding: 0.6rem; animation: fadeSlideUp 0.25s ease-out; }
.dropdown-item { border-radius: 8px; font-weight: 700; padding: 0.6rem 0.9rem; color: var(--primary); }
.dropdown-item:hover { background: var(--bg); color: var(--accent); }

.nav-cta { flex-shrink: 0; }
.phone-cta {
  min-height: 50px;
  display: grid;
  align-content: center;
  background: var(--accent);
  color: #111827;
  border-radius: 8px;
  padding: 0.5rem 1.1rem;
  line-height: 1.1;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.2);
}
.phone-cta:hover { color: #111827; background: var(--accent-hover); transform: translateY(-2px); }
.phone-cta span { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; }
.phone-cta strong { font-size: 1.05rem; font-weight: 800; }

.btn { min-height: 46px; border-radius: 8px; font-weight: 800; letter-spacing: 0; padding: 0.6rem 1.5rem; transition: var(--transition); }
.btn-accent { background: var(--accent); color: #111827; border: 2px solid var(--accent); }
.btn-accent:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: #111827; transform: translateY(-2px); }
.btn-outline-primary { border: 2px solid var(--primary); color: var(--primary); background: var(--white); }
.btn-outline-primary:hover { background: var(--primary); color: var(--white); border-color: var(--primary); transform: translateY(-2px); }

/* Hero Section */
.hero-section { padding: 7rem 0 5rem; position: relative; overflow: hidden; }
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(255,255,255,0.96) 0 55%, rgba(239,246,255,0.93) 55% 100%),
    radial-gradient(circle at 85% 20%, rgba(245,158,11,0.18), transparent 32%);
  opacity: 1;
  pointer-events: none;
}
.hero-section .container { position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
  border-left: 3px solid var(--accent);
  padding-left: 0.5rem;
}
.hero-section .eyebrow { animation: fadeSlideUp 620ms ease 40ms both; }
.hero-section h1 { animation: fadeSlideUp 700ms ease 110ms both; }
.hero-copy { font-size: 1.1rem; color: #475569; max-width: 720px; animation: fadeSlideUp 760ms ease 170ms both; }
.hero-visual { position: relative; isolation: isolate; }
.hero-picture {
  display: block;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
  animation: fadeSlideUp 760ms ease 240ms both;
  transition: var(--transition);
}
.hero-picture:hover { transform: scale(1.01) translateY(-2px); }
.hero-picture img { aspect-ratio: 1200 / 760; object-fit: cover; width: 100%; }
.hero-proof {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  display: grid;
  gap: 0.15rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-left: 6px solid var(--accent);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  box-shadow: 0 20px 40px rgba(12, 31, 63, 0.2);
  animation: floatSoft 5.5s ease-in-out 1s infinite;
}
.hero-proof strong { color: var(--primary); font-family: var(--font-heading); font-size: 1.05rem; }
.hero-proof span { color: #334155; font-size: 0.95rem; line-height: 1.5; }

.row > * { min-width: 0; }
.power-row { display: flex; gap: 0.75rem; flex-wrap: wrap; margin: 1.75rem 0; }
.power-row span {
  background: var(--primary);
  color: var(--white);
  border-left: 5px solid var(--accent);
  border-radius: 6px;
  padding: 0.6rem 1rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}
.hero-actions, .cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-actions { animation: fadeSlideUp 760ms ease 230ms both; }
.hero-actions .btn-accent, .phone-cta, .mobile-call-bar { animation: ctaPulse 4.8s ease-in-out infinite; }

/* Section & Spacing */
.section { padding: 6rem 0; }
.section-heading { max-width: 780px; margin: 0 auto 3rem; text-align: center; }
.section-heading h2 { margin-bottom: 0.85rem; }
.section-heading p { font-size: 1.05rem; }
.intro-section { background: var(--white); }

/* Feature Grid */
.feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.feature-card, .service-card, .comparison-item, .coupon-shell {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.feature-card { padding: 1.5rem; min-height: 180px; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(245, 158, 11, 0.3); }
.feature-card span { display: block; color: var(--accent); font-weight: 800; font-size: 1.25rem; margin-bottom: 0.5rem; font-family: var(--font-heading); }

.content-band picture, .gallery-item, .comparison-item picture, .service-card picture {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}
.content-band img, .gallery-item img, .comparison-item img, .service-card img { width: 100%; object-fit: cover; transition: var(--transition); }
.content-band img { aspect-ratio: 760 / 560; }
.content-band img:hover { transform: scale(1.02); }
.comparison-item img { aspect-ratio: 900 / 620; }
.service-card img { aspect-ratio: 760 / 520; }
.alt-band { background: #eef3f9; }

/* Before/After Section */
.before-after { background: var(--white); }
.comparison-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.comparison-item { margin: 0; overflow: hidden; }
.comparison-item figcaption { padding: 1.25rem; color: var(--primary); font-weight: 800; font-size: 1.05rem; text-align: center; border-top: 1px solid var(--line); background: var(--bg); }
.comparison-item:hover img { transform: scale(1.02); }

/* Stats Band */
.stats-band { background: var(--primary); color: var(--white); padding: 3rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem; }
.stat-item { text-align: center; border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 1.5rem 1rem; background: rgba(255,255,255,0.02); }
.stat-item strong { display: block; color: var(--accent); font-family: var(--font-heading); font-size: 2.6rem; line-height: 1; margin-bottom: 0.25rem; }
.stat-item span:last-child { color: rgba(255,255,255,0.85); font-weight: 700; font-size: 0.95rem; }

/* Service Grid */
.service-grid-section { background: linear-gradient(180deg, var(--bg), #ffffff); }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.service-card { overflow: hidden; position: relative; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(12, 31, 63, 0.15); }
.service-card:hover img { transform: scale(1.03); }
.service-card a { display: block; height: 100%; color: inherit; }
.service-card h3, .service-card p { padding-left: 1.25rem; padding-right: 1.25rem; }
.service-card h3 { margin-top: 1.25rem; color: var(--primary); transition: var(--transition); }
.service-card:hover h3 { color: var(--accent); }
.service-card p { padding-bottom: 1.5rem; font-size: 0.95rem; }
.coupon-pill { display: inline-block; margin: 1.25rem 1.25rem 0; background: var(--accent); color: #111827; border-radius: 999px; padding: 0.35rem 0.9rem; font-weight: 800; font-size: 0.8rem; box-shadow: var(--shadow-sm); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1rem; }
.gallery-item { padding: 0; cursor: zoom-in; transition: var(--transition); overflow: hidden; border: 1px solid var(--line); }
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.gallery-item img { aspect-ratio: 4 / 3; }
.gallery-item:hover img { transform: scale(1.05); }

/* FAQ Accordion Styling */
.accordion-item { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; margin-bottom: 0.85rem; box-shadow: var(--shadow-sm); transition: var(--transition); }
.accordion-item:hover { box-shadow: var(--shadow); border-color: rgba(12, 31, 63, 0.12); }
.accordion-button { font-family: var(--font-heading); font-weight: 800; color: var(--primary); font-size: 1.05rem; min-height: 56px; padding: 1rem 1.25rem; }
.accordion-button:not(.collapsed) { background: #fffbf0; color: var(--primary); box-shadow: none; border-bottom: 1px solid var(--line); }
.accordion-button::after { background-size: 1rem; }

/* Ticket-Style Coupon Design */
.coupon-section { background: #eef3f9; }
.coupon-shell { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 2.5rem; 
  padding: 2.25rem; 
  align-items: center; 
  position: relative;
  overflow: hidden;
}
.coupon-shell::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 1px);
  border-left: 2px dashed var(--line);
  pointer-events: none;
}
.coupon-offer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0;
  margin: 1.25rem 0 0;
  list-style: none;
}
.coupon-offer-list li {
  background: #fffbf0;
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-left: 5px solid var(--accent);
  color: var(--primary);
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
  font-weight: 800;
  font-size: 0.9rem;
  transition: var(--transition);
}
.coupon-offer-list li:hover {
  transform: translateX(3px);
  background: #fff8e8;
  border-color: var(--accent);
}
.coupon-image { display: block; overflow: hidden; border-radius: 12px; }
.coupon-image img { border-radius: 12px; border: 1px solid var(--line); box-shadow: var(--shadow-lg); transition: var(--transition); }
.coupon-image:hover img { transform: scale(1.02); }

/* CTA Band */
.cta-band { background: var(--primary); padding: 3.5rem 0; position: relative; }
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 50%, rgba(245,158,11,0.08), transparent 25%);
  pointer-events: none;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; position: relative; z-index: 1; }
.cta-inner h2 { color: var(--white); margin-bottom: 0; }

/* Contact Section & Forms */
.contact-section { background: var(--white); }
.contact-list { display: grid; gap: 0.85rem; }
.contact-list a, .contact-list span {
  min-height: 46px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
}
.contact-list a:hover { color: var(--accent); padding-left: 4px; }
.contact-list span { color: var(--muted); }
.CUS { background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 1.75rem; box-shadow: var(--shadow-sm); }
.CUS fieldset { border: 0; padding: 0; margin: 0; }
.form-control { min-height: 48px; border-radius: 8px; border: 1px solid #cbd5e1; font-size: 1rem; padding: 0.5rem 0.9rem; transition: var(--transition); }
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15); outline: none; }
.service-textarea { min-height: 130px; resize: vertical; }
.btn-submit { width: 100%; max-width: 200px; margin: 0.5rem auto 0; display: block; }

/* Premium Site Footer */
.site-footer { background: var(--primary); color: var(--white); padding: 4.5rem 0 1.5rem; position: relative; }
.site-footer h2 { font-size: 1.15rem; color: var(--accent); margin-bottom: 1.1rem; font-family: var(--font-heading); font-weight: 800; }
.site-footer p, .site-footer li, .site-footer span { color: rgba(255,255,255,0.78); font-size: 0.95rem; }
.site-footer a { color: rgba(255,255,255,0.85); transition: var(--transition); }
.site-footer a:hover { color: var(--accent); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}
.footer-brand, .footer-panel {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1.5rem;
  background: rgba(255,255,255,0.03);
}
.footer-brand img { margin-bottom: 1.25rem; background: var(--white); border-radius: 8px; padding: 0.4rem; }
.footer-brand p { margin-bottom: 1.25rem; }
.footer-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  color: #111827 !important;
  background: var(--accent);
  border-radius: 8px;
  padding: 0.6rem 1.1rem;
  font-weight: 800;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}
.footer-phone:hover { background: var(--accent-hover); transform: translateY(-2px); }
.footer-estimate, .footer-text-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-weight: 800;
  transition: var(--transition);
}
.footer-estimate:hover, .footer-text-link:hover { border-color: var(--accent); color: var(--accent); background: rgba(255,255,255,0.02); }
.footer-contact-list li { display: grid; gap: 0.15rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-contact-list strong { color: var(--accent); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; font-family: var(--font-heading); }
.footer-link-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 1rem; }
.footer-link-columns a, .footer-quick-list a { display: inline-flex; min-height: 32px; align-items: center; }
.footer-location-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 0.75rem; }
.footer-lower {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.site-footer iframe { max-width: 100%; border: 0; border-radius: 8px; background: var(--white); box-shadow: var(--shadow-sm); }
.footer-map iframe { width: 100%; }
.footer-quick-panel { display: grid; align-content: start; }
.footer-quick-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.4rem 1rem !important; margin-bottom: 1.25rem !important; }
.social-list { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.social-list span { border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; padding: 0.4rem 0.65rem; font-size: 0.85rem; background: rgba(255,255,255,0.02); transition: var(--transition); cursor: default; }
.social-list span:hover { border-color: var(--accent); color: var(--accent); background: rgba(255,255,255,0.05); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 2.5rem; padding-top: 1.5rem; text-align: center; color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.mobile-call-bar { display: none; }

/* Lightbox Styling */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(12, 31, 63, 0.92);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(8px);
}
.lightbox:not([hidden]) { display: flex; }
.lightbox img { max-height: 82vh; border-radius: 12px; background: var(--white); box-shadow: var(--shadow-lg); transition: var(--transition); }
.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: var(--accent);
  color: #111827;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover { background: var(--accent-hover); transform: scale(1.05); }

.simple-page { min-height: 58vh; display: grid; place-items: center; padding: 6rem 0; background: var(--bg); }
.sitemap-list { columns: 2; list-style: square; color: var(--primary); }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 550ms cubic-bezier(0.4, 0, 0.2, 1), transform 550ms cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1199.98px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-lower { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 991.98px) {
  .utility-bar .container { align-items: flex-start; padding-top: 0.6rem; padding-bottom: 0.6rem; }
  .main-menu { align-items: stretch !important; padding: 0.8rem 0; }
  .nav-link { padding-left: 0.25rem !important; padding-right: 0.25rem !important; }
  .nav-link::after { left: 0.25rem; right: 0.25rem; }
  .nav-cta { padding-top: 0.85rem; border-top: 1px solid var(--line); }
  .phone-cta { width: 100%; text-align: center; }
  .hero-section { padding: 4rem 0; }
  .coupon-shell { grid-template-columns: 1fr; gap: 1.5rem; display: grid; padding: 1.5rem; }
  .coupon-shell::before { display: none; }
  .cta-inner { grid-template-columns: 1fr; display: grid; text-align: left; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767.98px) {
  body { font-size: 15px; padding-bottom: 68px; }
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.65rem; }
  .container { width: 100%; max-width: 100%; padding-left: 1rem; padding-right: 1rem; }
  .utility-bar { display: none; }
  .navbar .container { padding-left: 1.25rem; padding-right: 1.25rem; }
  .row { margin-left: 0; margin-right: 0; }
  .row > * { padding-left: 0; padding-right: 0; }
  .section { padding: 4rem 0; }
  .navbar-toggler { margin-left: auto; flex-shrink: 0; }
  .navbar-brand { min-width: 0; flex-shrink: 1; }
  .hero-section, .section, .site-footer, .cta-band { overflow-x: hidden; }
  .hero-picture, .hero-picture img { width: 100%; max-width: 100%; }
  .hero-section .row, .hero-section .col-lg-6, .power-row, .hero-actions, .hero-visual, .hero-proof {
    width: 100%;
    max-width: calc(100vw - 2rem);
    margin-left: auto;
    margin-right: auto;
  }
  .hero-section h1, .hero-copy, .hero-section .eyebrow {
    width: 100%;
    max-width: calc(100vw - 2rem);
  }
  .hero-picture {
    width: 100%;
    max-width: calc(100vw - 2rem);
  }
  .hero-proof { position: static; margin-top: 1rem; box-shadow: var(--shadow); }
  .hero-copy, p, .btn { overflow-wrap: anywhere; }
  .feature-grid, .comparison-grid, .service-grid, .gallery-grid, .footer-grid, .footer-lower { grid-template-columns: 1fr; }
  .footer-brand, .footer-panel { padding: 1.25rem; }
  .footer-link-columns, .footer-location-grid, .footer-quick-list { grid-template-columns: 1fr; }
  .power-row span { width: 100%; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .coupon-offer-list { grid-template-columns: 1fr; }
  .mobile-call-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    min-height: 58px;
    background: var(--accent);
    color: #111827;
    z-index: 2500;
    font-weight: 800;
    box-shadow: 0 -10px 30px rgba(12,31,63,0.18);
  }
  [id^="b_lgj3zwgn_"] > div,
  [id^="b_os866b1f_"] > div,
  [id^="b_yb256nu2_"] > div {
    bottom: 76px !important;
    right: 88px !important;
  }
  .i-embedded-chat {
    max-height: calc(100vh - 92px) !important;
  }
  .sitemap-list { columns: 1; }
}
