/* =========================================================
   11 Pros Appliance Repair — Design System v2
   Spec: DESIGN-SPEC-11PROS.md
   ========================================================= */

/* ── Keyframes ── */
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* ── CSS Custom Properties ── */
:root {
  --black:    #0a0a0a;
  --white:    #ffffff;
  --yellow:   #f5c800;
  --blue:     #1a3c6e;
  --blue-lt:  #2452a0;

  --grey:     #f4f4f4;
  --grey-md:  #d8d8d8;

  --divider:      1px solid #e2e2e2;
  --divider-dark: 1px solid rgba(255,255,255,.10);
  --border:       2px solid var(--black);

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.22s cubic-bezier(.4,0,.2,1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,.10);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: #e8e8e8;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  max-width: 1440px;
  margin: 0 auto;
  box-shadow: 0 0 60px rgba(0,0,0,.35);
  overflow-x: hidden;
  width: 100%;
}

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }

/* =========================================================
   BUTTON SYSTEM
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .84rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  line-height: 1;
  text-decoration: none;
}
.btn:hover  { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }
.btn:active { transform: translateY(0); box-shadow: none; }

.btn-yellow  { background: #f5c800; color: #0a0a0a; border-color: rgba(0,0,0,.15); }
.btn-yellow:hover  { background: #e6bb00; }

.btn-black   { background: #0a0a0a; color: #fff; border-color: #0a0a0a; }
.btn-black:hover   { background: #2a2a2a; }

.btn-blue    { background: #1a3c6e; color: #fff; border-color: #1a3c6e; }
.btn-blue:hover    { background: #2452a0; }

.btn-white   { background: #fff; color: #0a0a0a; border-color: rgba(0,0,0,.18); }
.btn-white:hover   { background: #f5c800; }

.btn-outline { background: transparent; color: #0a0a0a; border: 2px solid #0a0a0a; }
.btn-outline:hover { background: #0a0a0a; color: #fff; }

.btn-full  { width: 100%; justify-content: center; }
.btn.sm    { padding: 10px 20px; font-size: .78rem; }

/* ── Legacy button class aliases (backwards-compat with older pages) ── */
.btn-primary { background: var(--yellow); color: var(--black); border-color: rgba(0,0,0,.15); }
.btn-primary:hover { background: #e6bb00; }
.btn-ghost   { background: transparent; color: var(--black); border: 2px solid #e2e2e2; }
.btn-ghost:hover { background: var(--black); color: #fff; border-color: var(--black); }
.btn-block, .btn-full { display: flex; width: 100%; justify-content: center; }
.btn-sm  { padding: 10px 18px; font-size: .76rem; }
.btn-lg  { padding: 16px 32px; font-size: .88rem; }

/* =========================================================
   LABEL TAGS
   ========================================================= */
.label-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 14px;
}
.label-tag.blue   { background: var(--blue);  color: var(--white); }
.label-tag.black  { background: var(--black); color: var(--white); }
.label-tag.white  { background: var(--white); color: var(--black); }

/* =========================================================
   TOP BAR
   ========================================================= */
.topbar {
  background: var(--blue);
  padding: 9px 0;
  display: none;
}
@media(min-width:601px) { .topbar { display: block; } }

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: .8rem;
  color: rgba(255,255,255,.80);
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.topbar-inner i { margin-right: 5px; color: rgba(255,255,255,.60); }
.topbar-phone { color: var(--yellow) !important; font-weight: 900; }
.topbar-phone i { color: var(--yellow) !important; }
.topbar-hide-mobile { display: none; }
@media(min-width:900px) { .topbar-hide-mobile { display: inline; } }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.header {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.5); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 16px;
}

/* Logo */
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img   { height: 64px; width: auto; max-width: 320px; object-fit: contain; display: block; }
.logo-full  { display: block; }
.logo-icon  { display: none; }
@media(max-width:768px) {
  .logo-full { display: none; }
  .logo-icon { display: block; height: 76px; width: auto; max-width: 90px; border-radius: 8px; }
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav a {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 800;
  color: rgba(255,255,255,.75) !important;
  padding: 8px 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-radius: 3px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav a:hover    { background: var(--yellow); color: var(--black) !important; }
.nav a.active   { background: var(--yellow); color: var(--black) !important; }

.nav-cta {
  background: var(--yellow) !important;
  color: var(--black) !important;
  margin-left: 6px;
  border-radius: 4px !important;
}
.nav-cta:hover { background: var(--white) !important; color: var(--black) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 4px;
  padding: 8px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media(max-width:768px) {
  .hamburger { display: flex; }

  /* Hidden by default, revealed by .open */
  .nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    flex-direction: column;
    align-items: stretch;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 40px;
    z-index: 998;
    box-shadow: 0 8px 24px rgba(0,0,0,.6);
  }
  .nav.open { display: flex; }

  /* The ul uses display:contents so we style items directly */
  .nav ul { display: contents; }
  .nav li  { display: block; width: 100%; }

  .nav a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .nav li:last-child a { border-bottom: none; }

  /* Schedule CTA pill */
  .nav-cta {
    margin: 12px 16px 0 !important;
    border-radius: 6px !important;
    border-bottom: none !important;
  }

  /* Services sub-dropdown: static, indented */
  .nav-has-dropdown .nav-dropdown {
    position: static !important;
    display: none;
    background: rgba(255,255,255,.06);
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0;
    min-width: unset;
  }
  .nav-has-dropdown.open .nav-dropdown { display: block; }
  .nav-has-dropdown .nav-dropdown li a {
    padding: 12px 32px;
    font-size: .7rem;
    opacity: .85;
    border-bottom: 1px solid rgba(255,255,255,.05);
  }
}

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
  background: var(--blue);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 5px; height: 100%;
  background: var(--yellow);
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.page-hero h1 span { color: var(--yellow); }
.page-hero p { color: rgba(255,255,255,.80); font-size: 1rem; max-width: 560px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.breadcrumb a { color: var(--yellow); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: .6rem; }

/* =========================================================
   HOMEPAGE HERO
   ========================================================= */
.hero-section {
  position: relative;
  height: calc(var(--vh, 1vh) * 100 - 84px);
  max-height: 900px;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hs-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hs-cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}
.hs-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(10,10,10,.88) 0%,
      rgba(10,10,10,.65) 42%,
      rgba(10,10,10,.15) 70%,
      rgba(10,10,10,.05) 100%),
    linear-gradient(to top,
      rgba(10,10,10,.45) 0%,
      transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}

/* LEFT */
.hero-left { flex: 1; max-width: 560px; }

.hc-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hc-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50px;
  padding: 7px 14px;
  height: 36px;
}
.hc-badge > i { font-size: .9rem; color: var(--yellow); }
.hc-badge-google {
  background: rgba(255,255,255,.95);
  border-color: transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
}
.hc-badge-google:hover {
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  transform: translateY(-1px);
}
.hc-badge-stars  { font-size: .68rem; color: #f59e0b; letter-spacing: 1px; }
.hc-badge-label  { font-size: .68rem; font-weight: 600; color: var(--white); line-height: 1.2; }
.hc-badge-google .hc-badge-label { color: var(--black); }

.hero-eyebrow {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--yellow);
  margin-bottom: 14px;
}
.hero-eyebrow i { margin-right: 5px; }

.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: .95;
  color: var(--white);
  margin-bottom: 32px;
}
.hero-h1 em { font-style: normal; color: var(--yellow); }

.hero-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 16px 32px;
  border-radius: 50px;
  margin-bottom: 16px;
  transition: all var(--transition);
}
.hero-phone-btn:hover { background: var(--white); transform: translateY(-2px); }
.hero-sub { font-size: .78rem; color: rgba(255,255,255,.55); }

/* RIGHT — hero card */
.hero-card {
  width: 360px;
  flex-shrink: 0;
  background: var(--blue);
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.hc-form-waiver {
  font-size: .72rem;
  color: rgba(255,255,255,.65);
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 14px;
}
.hc-form-waiver i { color: var(--yellow); margin-right: 5px; }

.hc-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}
.hc-tab {
  flex: 1;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.14);
  border-radius: 50px;
  padding: 10px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all var(--transition);
}
.hc-tab i { font-size: .78rem; }
.hc-tab:hover { background: rgba(255,255,255,.14); color: var(--white); }
.hc-tab.active {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.hc-tab-pane              { display: none !important; flex-direction: column; gap: 10px; }
.hc-tab-pane.active       { display: flex !important; }
.hc-tab-pane form         { display: flex; flex-direction: column; gap: 10px; }

.hero-card.hc-submitted .hc-form-waiver { display: none !important; }\n.hero-card.hc-submitted .hc-tabs       { display: none !important; }
.hero-card.hc-submitted .hc-tab-pane   { display: none !important; }
.hero-card.hc-submitted .hc-warranty-note { display: none !important; }
.hero-card.hc-submitted .hc-success    { display: block !important; }

/* Warranty note at bottom of hero card */
.hc-warranty-note {
  margin-top: 14px;
  font-size: .71rem;
  color: rgba(255,255,255,.55);
  text-align: center;
  font-family: var(--font-body);
  line-height: 1.5;
}
.hc-warranty-note i { color: var(--yellow); margin-right: 4px; }

/* Submit button inside hero card — larger & bolder */
.hc-submit-btn {
  font-family: var(--font-head) !important;
  font-size: .78rem !important;
  font-weight: 900 !important;
  letter-spacing: .06em !important;
  padding: 14px 20px !important;
  border-radius: 8px !important;
  margin-top: 2px;
}

.hc-success {
  display: none;
  text-align: center;
  padding: 32px 16px;
  color: var(--white);
}
.hc-success i { font-size: 2.5rem; color: var(--yellow); margin-bottom: 14px; display: block; }
.hc-success strong { font-family: var(--font-head); font-size: 1rem; font-weight: 900; text-transform: uppercase; display: block; margin-bottom: 8px; }
.hc-success p { font-size: .82rem; color: rgba(255,255,255,.65); }
.hc-reset-note { margin-top: 14px !important; font-size: .7rem !important; color: rgba(255,255,255,.35) !important; }
.hc-countdown { color: var(--yellow); font-weight: 700; }

.hc-field { display: flex; flex-direction: column; gap: 0; }
.hc-field input,
.hc-field select,
.hc-field textarea {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 5px;
  padding: 10px 13px;
  font-size: .82rem;
  color: var(--white);
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition);
}
.hc-field input::placeholder,
.hc-field textarea::placeholder { color: rgba(255,255,255,.35); }
.hc-field input:focus,
.hc-field select:focus,
.hc-field textarea:focus {
  border-color: var(--yellow);
  background: rgba(255,255,255,.12);
}
.hc-field select option { background: var(--blue); color: var(--white); }
.hc-err { display: block; font-size: .68rem; color: #ff6b6b; margin-top: 3px; min-height: 1em; }

/* ── Hero responsive ── */
@media(max-width:680px) {
  .hero-section {
    height: auto;
    min-height: 100dvh;
    max-height: none;
    padding: 40px 0 32px;
    align-items: flex-start;
  }
  .hs-overlay {
    background:
      linear-gradient(to bottom,
        rgba(10,10,10,.80) 0%,
        rgba(10,10,10,.75) 60%,
        rgba(10,10,10,.60) 100%);
  }
  .hero-content {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }
  .hero-left { max-width: 100%; }
  .hero-h1 { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .hero-card { width: 100%; }
}

/* =========================================================
   SERVICES TILE GRID
   ========================================================= */
.tile-section {
  background: var(--grey);
  border-top: var(--divider);
  border-bottom: var(--divider);
  padding: 80px 0;
}
.tile-header-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 24px;
  border-bottom: var(--divider);
  padding-bottom: 24px;
  margin-bottom: 28px;
}
.tile-header-row h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
}

.service-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grey-md);
  border-radius: 6px;
  overflow: hidden;
}

.svc-tile {
  padding: 32px 28px;
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}
.svc-tile:hover          { background: var(--yellow); }
.svc-tile:hover .svc-num { color: rgba(0,0,0,.35); }
.svc-tile:hover p        { color: #333; }

.svc-num {
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 900;
  color: var(--grey-md);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 16px;
}
.svc-icon-wrap { margin-bottom: 20px; color: var(--blue); }
.svc-icon-wrap i { font-size: 2.4rem; }

.svc-tile h3 {
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 10px;
  color: var(--black);
}
.svc-tile p {
  font-size: .85rem;
  color: #555;
  line-height: 1.6;
}
.tile-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--black);
  transition: gap var(--transition);
}
.tile-link:hover { gap: 12px; }

/* Blue accent tile */
.svc-tile-accent { background: var(--blue); color: var(--white); }
.svc-tile-accent:hover { background: var(--blue) !important; }
.svc-tile-accent .svc-num { color: rgba(255,255,255,.35); }
.svc-tile-accent h3 { color: var(--white); }
.svc-tile-accent p { color: rgba(255,255,255,.75); }
.svc-tile-accent .svc-icon-wrap { color: rgba(255,255,255,.85); }
.svc-tile-accent .tile-link { color: var(--yellow); }
.svc-tile-accent:hover .svc-num  { color: rgba(255,255,255,.45) !important; }
.svc-tile-accent:hover h3        { color: var(--white) !important; }
.svc-tile-accent:hover p         { color: rgba(255,255,255,.85) !important; }
.svc-tile-accent:hover .svc-icon-wrap { color: rgba(255,255,255,.85) !important; }
.svc-tile-accent:hover .tile-link { color: var(--yellow) !important; }

/* Yellow accent tile */
.svc-tile-yellow { background: var(--yellow); color: var(--black); }
.svc-tile-yellow .svc-num { color: rgba(0,0,0,.30); }
.svc-tile-yellow .tile-link { color: var(--black); }
.svc-tile-yellow:hover { background: var(--black) !important; color: var(--white) !important; }
.svc-tile-yellow:hover p        { color: rgba(255,255,255,.75) !important; }
.svc-tile-yellow:hover .tile-link { color: var(--yellow) !important; }
.svc-tile-yellow:hover .svc-num { color: rgba(255,255,255,.25) !important; }
.svc-tile-yellow:hover h3       { color: var(--white) !important; }

@media(max-width:1024px) { .service-tiles { grid-template-columns: repeat(2,1fr); } }
@media(max-width:768px)  { .service-tiles { grid-template-columns: 1fr; } }

/* =========================================================
   FEATURE STRIP — WHY US
   ========================================================= */
.feature-strip { background: var(--black); }
.feature-strip-header { padding: 48px 0 0; }
.feature-strip-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.10);
  padding-bottom: 32px;
}
.feature-strip-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: var(--white);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  padding-bottom: 48px;
}
.feat-box {
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.feat-bg-num {
  position: absolute;
  top: -10px; right: -10px;
  font-family: var(--font-head);
  font-size: 7rem;
  font-weight: 900;
  color: var(--white);
  opacity: .03;
  pointer-events: none;
  transition: opacity var(--transition);
}
.feat-box:hover .feat-bg-num { opacity: .07; }

.feat-icon {
  width: 48px; height: 48px;
  background: var(--yellow);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feat-icon i { font-size: 1.2rem; color: var(--black); }

.feat-box h3 {
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 10px;
}
.feat-box p { font-size: .85rem; color: rgba(255,255,255,.60); line-height: 1.65; }

.feat-box.accent-tile { background: #1a1a1a; }
.feat-box.accent-tile h3 { color: var(--yellow); }

@media(max-width:1024px) { .feature-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:480px)  { .feature-grid { grid-template-columns: 1fr; } }

/* =========================================================
   SERVICE AREA SECTION
   ========================================================= */
.area-section { background: var(--white); border-top: var(--divider); padding: 80px 0; }
.area-section-head { margin-bottom: 32px; }
.area-section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.area-left {
  background: var(--white);
  border-right: var(--divider);
  padding: 48px 40px;
}
.area-left h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--yellow);
}
.area-left p { font-size: .9rem; color: #555; line-height: 1.7; margin-bottom: 24px; }

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.area-chip {
  background: var(--grey);
  color: var(--black);
  padding: 6px 14px;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 20px;
  border: 1px solid var(--grey-md);
  transition: all var(--transition);
  text-decoration: none;
  display: inline-block;
}
.area-chip:hover { background: var(--yellow); }

.area-right {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.area-right iframe {
  width: 100%; height: 100%;
  border: none;
  min-height: 420px;
  display: block;
}
.map-gmb-link {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(26,60,110,.95);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.map-gmb-link span {
  font-family: var(--font-head);
  font-size: .72rem;
  color: var(--yellow);
  text-transform: uppercase;
  font-weight: 900;
}
.map-gmb-link a {
  color: var(--white);
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 900;
}
.map-gmb-link a:hover { color: var(--yellow); }

@media(max-width:1024px) {
  .area-grid { grid-template-columns: 1fr; }
  .area-left { border-right: none; border-bottom: var(--divider); }
}

/* =========================================================
   BRANDS SECTION
   ========================================================= */
.brands-section { background: var(--black); padding: 72px 0; }
.brands-section .label-tag.yellow-alt { background: var(--yellow); color: var(--black); }
.brands-section h2 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: clamp(1.8rem,3vw,2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.brands-sub { color: rgba(255,255,255,.5); font-size: .92rem; margin-bottom: 0; }

.brands-logo-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  margin-top: 40px;
}
.brand-logo-card {
  background: #ffffff;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  transition: all .25s ease;
}
.brand-logo-card:hover {
  background: #ffffff;
  border-color: var(--yellow);
  box-shadow: 0 0 0 2px var(--yellow);
  transform: translateY(-3px);
}
.brand-logo-card span {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #333;
  text-align: center;
  letter-spacing: .04em;
}

.brands-cta { margin-top: 36px; text-align: center; }
.brands-cta p { color: rgba(255,255,255,.45); font-size: .88rem; margin-bottom: 16px; }

@media(max-width:1024px) { .brands-logo-grid { grid-template-columns: repeat(4,1fr); } }
@media(max-width:768px)  { .brands-logo-grid { grid-template-columns: repeat(3,1fr); } }
@media(max-width:480px)  {
  .brands-logo-grid { grid-template-columns: repeat(2,1fr); }
  .brand-logo-card  { min-height: 64px; }
}

/* =========================================================
   BLOG SECTION
   ========================================================= */
.blog-section { background: var(--grey); padding: 80px 0; }
.blog-section h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem,3vw,2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.blog-section-sub { font-size: .9rem; color: #555; margin-bottom: 0; }
.blog-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
  flex-wrap: wrap;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-card-img-wrap { width: 100%; height: 200px; overflow: hidden; background: var(--blue); flex-shrink: 0; }
.blog-card-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.blog-card:hover .blog-card-img { transform: scale(1.05); }
.blog-card-img-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg,#1a3c6e,#2452a0); }
.blog-card-img-ph i { font-size: 2.5rem; color: rgba(255,255,255,.25); }
.blog-card-skeleton { background: var(--grey); border-radius: 10px; min-height: 380px; animation: shimmer 1.5s infinite; }
@keyframes shimmer {
  0%   { opacity: 1; }
  50%  { opacity: .5; }
  100% { opacity: 1; }
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-size: .65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.blog-card-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.25;
  margin-bottom: 10px;
  color: var(--black);
}
.blog-card-excerpt { font-size: .87rem; color: rgba(0,0,0,.60); line-height: 1.70; flex: 1; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: var(--divider);
  font-size: .78rem;
  color: rgba(0,0,0,.40);
}
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--blue);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.blog-card-link:hover { color: var(--black); }

@media(max-width:768px) { .blog-grid { grid-template-columns: 1fr; } }

/* =========================================================
   SERVICE PAGES (service-page-layout, sidebar, problems)
   ========================================================= */

/* Two-column layout: main content + sidebar */
.service-page-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
  padding: 56px 0 72px;
}

/* Main content column */
.service-content h2 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--black);
  margin: 36px 0 12px;
}
.service-content h2:first-child { margin-top: 0; }
.service-content p  { font-size: .93rem; color: #444; line-height: 1.75; margin-bottom: 14px; }
.service-content ul { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 8px; }
.service-content ul li { font-size: .9rem; color: #444; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.service-content ul li i { color: var(--yellow); margin-top: 3px; flex-shrink: 0; }

/* Problems grid */
.service-problems {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 16px 0 28px;
}
.problem-item {
  background: var(--grey);
  border-radius: 6px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.problem-item strong { font-size: .85rem; font-weight: 700; color: var(--black); }
.problem-item span   { font-size: .78rem; color: #666; }

/* Map block */
.map-block-compact {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e2e2e2;
  margin: 20px 0 32px;
}
.map-block-compact iframe {
  width: 100%;
  height: 280px;
  display: block;
  border: none;
}
.map-block-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: var(--grey);
  font-size: .82rem;
  color: #555;
  gap: 12px;
}
.map-block-footer a { color: var(--blue); font-weight: 600; text-decoration: none; }
.map-block-footer a:hover { text-decoration: underline; }

/* Sidebar */
.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}
.sidebar-card {
  background: var(--white);
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}
.sidebar-card h4 {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--black);
  margin: 0 0 12px;
}
.cta-card {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.cta-card h4 { color: var(--white); }
.cta-card p  { font-size: .83rem; color: rgba(255,255,255,.65); margin: 0 0 14px; line-height: 1.55; }
.phone-big {
  display: block;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--yellow);
  text-decoration: none;
  margin-bottom: 14px;
  letter-spacing: -.02em;
}
.phone-big:hover { color: #fff; }
.btn-block { width: 100%; text-align: center; justify-content: center; }
.btn-sm { font-size: .78rem; padding: 8px 14px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 900;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 11px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: #e0b400; transform: translateY(-1px); }

/* Sidebar service links */
.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .85rem;
  color: #444;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background .18s, color .18s;
}
.sidebar-links a i { color: var(--blue); font-size: .85rem; width: 16px; text-align: center; }
.sidebar-links a:hover { background: var(--grey); color: var(--black); }
.sidebar-links a.active { background: var(--yellow); color: var(--black); font-weight: 700; }
.sidebar-links a.active i { color: var(--black); }

/* Responsive: stack on tablet/mobile */
@media(max-width:900px) {
  .service-page-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .service-problems { grid-template-columns: 1fr; }
}
@media(max-width:600px) {
  .service-page-layout { padding: 36px 0 48px; gap: 28px; }
  .map-block-compact iframe { height: 200px; }
  .map-block-footer { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band { background: var(--yellow); padding: 64px 0; }
.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.1;
}
.cta-band p { color: rgba(0,0,0,.60); font-size: .95rem; margin-top: 8px; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

@media(max-width:768px) {
  .cta-band-inner { grid-template-columns: 1fr; }
  .cta-btns .btn { width: 100%; justify-content: center; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: #0d0d0d; border-top: var(--divider); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  border-bottom: var(--divider-dark);
}
.footer-col {
  border-right: var(--divider-dark);
  padding: 40px 32px;
}
.footer-col:last-child { border-right: none; }

.footer-logo-img {
  height: 90px;
  width: auto;
  max-width: 360px;
  object-fit: contain;
  filter: brightness(1.05);
  margin-bottom: 16px;
}
.footer-col p { font-size: .84rem; color: rgba(255,255,255,.45); line-height: 1.7; }
.footer-phone { color: var(--yellow) !important; font-family: var(--font-head); font-size: .95rem; font-weight: 900; }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.35);
  border-bottom: var(--divider-dark);
  padding-bottom: 10px;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: .84rem;
  color: rgba(255,255,255,.50);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--yellow); }
.footer-col ul a i { font-size: .55rem; color: var(--yellow); }

.footer-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .83rem;
  color: rgba(255,255,255,.50);
  margin-bottom: 10px;
}
.footer-info-item i { color: var(--yellow); }

.footer-cta-box {
  background: var(--blue);
  border-radius: 8px;
  padding: 20px;
  margin-top: 16px;
}
.footer-cta-box p {
  font-size: .8rem;
  margin-bottom: 12px;
  color: rgba(255,255,255,.65) !important;
}

.footer-bottom {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-bottom p {
  font-size: .72rem;
  color: rgba(255,255,255,.22);
  font-family: var(--font-head);
  text-align: center;
}

@media(max-width:1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col { border-right: none; border-bottom: var(--divider-dark); }
  .footer-col:last-child { border-bottom: none; }
}
@media(max-width:768px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   FLOATING CALL BUTTON
   ========================================================= */
.float-call {
  display: flex;
  position: fixed;
  bottom: 24px;
  right: max(24px, calc(50% - 720px + 24px));
  z-index: 1100;
  background: var(--yellow);
  color: var(--black);
  border: none;
  border-radius: 50px;
  padding: 14px 24px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
  text-decoration: none;
  cursor: pointer;
}
.float-call--visible { opacity: 1; pointer-events: auto; }
.float-call:hover { background: var(--black); color: var(--yellow); transform: translateY(-2px); }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .60s ease, transform .60s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .06s; }
.reveal-d2 { transition-delay: .12s; }
.reveal-d3 { transition-delay: .18s; }
.reveal-d4 { transition-delay: .24s; }
.reveal-d5 { transition-delay: .30s; }
.reveal-d6 { transition-delay: .36s; }

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-img-panel {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.about-img-panel img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-img-tag {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--yellow);
  padding: 14px 20px;
}
.about-img-tag strong {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--black);
  display: block;
}
.about-img-tag span {
  font-size: .75rem;
  color: rgba(0,0,0,.65);
}
.about-text-panel {
  padding: 48px 44px;
  background: var(--white);
}
.about-text-panel h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem,2.5vw,2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.01em;
  margin-bottom: 16px;
}
.about-text-panel p { font-size: .92rem; color: #444; line-height: 1.75; margin-bottom: 14px; }

.about-feats {
  border-radius: 6px;
  overflow: hidden;
  border: var(--divider);
  margin-top: 28px;
}
.about-feat-row {
  display: flex;
  align-items: stretch;
  border-bottom: var(--divider);
}
.about-feat-row:last-child { border-bottom: none; }
.about-feat-icon {
  width: 52px;
  background: var(--blue);
  border-right: var(--divider);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-feat-icon i { color: var(--yellow); font-size: 1rem; }
.about-feat-text {
  padding: 12px 16px;
  font-size: .85rem;
  color: #444;
}
.about-feat-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--black);
  margin-bottom: 2px;
}

@media(max-width:1024px) {
  .about-split { grid-template-columns: 1fr; }
  .about-img-panel { min-height: 300px; }
}

/* Stats row */
.stats-row { background: var(--black); padding: 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
}
.stat-box {
  padding: 44px 28px;
  text-align: center;
  background: var(--black);
}
.stat-box:nth-child(odd) { background: var(--blue); }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(1.8rem,3vw,3rem);
  font-weight: 900;
  color: var(--yellow);
  display: block;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.55);
}
@media(max-width:768px) { .stats-grid { grid-template-columns: repeat(2,1fr); } }

/* =========================================================
   REVIEWS SECTION
   ========================================================= */
.reviews-section { background: var(--white); padding: 80px 0; border-top: var(--divider); }
.reviews-section h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem,3vw,2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 40px;
}
.review-card {
  background: var(--grey);
  border-radius: 8px;
  padding: 28px 24px;
  border: 1px solid var(--grey-md);
  transition: box-shadow .25s, transform .25s;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: .88rem; color: #444; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px; height: 40px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: .88rem; font-weight: 700; color: var(--black); }
.review-author span   { font-size: .78rem; color: #777; }
.google-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .7rem;
  color: #777;
  margin-top: 3px;
}
@media(max-width:768px) { .reviews-grid { grid-template-columns: 1fr; } }

/* =========================================================
   CONTACT & SCHEDULE FORMS
   ========================================================= */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
.form-grid > * { min-width: 0; }
.form-main {
  background: var(--white);
  border-right: var(--divider);
  padding: 44px 40px;
}
.form-sidebar {
  background: var(--grey);
  padding: 36px 28px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group label {
  font-family: var(--font-head);
  font-size: .70rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #555;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--grey-md);
  border-radius: 5px;
  font-size: .92rem;
  font-family: var(--font-body);
  outline: none;
  background: var(--white);
  color: var(--black);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,60,110,.10);
}

.contact-tabs {
  display: flex;
  gap: 4px;
  background: var(--grey);
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 28px;
}
.contact-tab {
  flex: 1;
  padding: 10px;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  border: none;
  border-radius: 5px;
  background: transparent;
  cursor: pointer;
  color: #777;
  transition: all var(--transition);
}
.contact-tab.active {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 1px 4px rgba(0,0,0,.12);
}
.contact-tab-pane { display: none; }
.contact-tab-pane.active { display: block; }

@media(max-width:860px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-sidebar { display: none; }
  .form-main { border-right: none; padding: 32px 24px; }
}

/* =========================================================
   CITY / AREA PAGES
   ========================================================= */
.areas-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 5px 13px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* FAQ accordion */
.faq-block { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 32px; }
.faq-item {
  border: 1px solid #e2e2e2;
  border-radius: 7px;
  overflow: hidden;
  background: var(--white);
}
.faq-q {
  padding: 16px 20px;
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 800;
  color: var(--black);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}
.faq-a {
  padding: 0 20px 16px 20px;
  font-size: .87rem;
  color: #555;
  line-height: 1.7;
  border-top: 1px solid #f0f0f0;
  padding-top: 12px;
}

/* Internal links block (used in service + city pages) */
.internal-links-block {
  background: var(--grey);
  border-radius: 6px;
  padding: 20px 24px;
  margin: 32px 0;
  border: 1px solid #e2e2e2;
}
.internal-links-block h3 {
  font-size: 1rem;
  color: var(--black);
  margin-bottom: 10px;
  font-family: var(--font-head);
  font-weight: 800;
}
.internal-links-block p { font-size: .88rem; color: #444; margin-bottom: 8px; }
.internal-links-block a { color: var(--blue); font-weight: 600; text-decoration: underline; }

/* =========================================================
   PRIVACY POLICY PAGE
   ========================================================= */
.policy-wrap {
  max-width: 800px;
  margin: 56px auto;
  padding: 0 24px 80px;
}
.policy-last-updated {
  font-size: .82rem;
  color: #888;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: var(--divider);
}
.policy-section { margin-bottom: 40px; }
.policy-section h2 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--black);
  margin-bottom: 12px;
}
.policy-section p, .policy-section li { font-size: .9rem; color: #444; line-height: 1.75; }
.policy-section ul { padding-left: 20px; margin: 10px 0; }
.policy-section li { margin-bottom: 6px; }

/* =========================================================
   BLOG POST PAGE
   ========================================================= */
.blog-post-hero {
  background: var(--black);
  padding: 56px 0 40px;
  border-bottom: 3px solid var(--yellow);
}
.bp-cat {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.blog-post-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem,3.5vw,2.8rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  max-width: 820px;
  margin-bottom: 18px;
}
.bp-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap;
}
.bp-meta i { margin-right: 5px; color: var(--yellow); }
.blog-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  font-family: var(--font-head);
  text-decoration: none;
  margin-bottom: 20px;
  transition: color var(--transition);
}
.blog-back:hover { color: var(--yellow); }

.blog-post-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 0 80px;
}
.blog-post-body h2 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: var(--divider);
}
.blog-post-body h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--blue);
  margin: 28px 0 10px;
}
.blog-post-body p { color: rgba(0,0,0,.72); line-height: 1.85; margin-bottom: 18px; font-size: .97rem; }
.blog-post-body ul { margin: 0 0 18px 20px; list-style: disc; }
.blog-post-body ul li { font-size: .95rem; color: rgba(0,0,0,.72); line-height: 1.7; margin-bottom: 6px; }

.blog-callout {
  background: var(--grey);
  border-left: 4px solid var(--yellow);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.blog-callout p { margin: 0; color: #444; }

.blog-related { background: var(--grey); padding: 64px 0; border-top: var(--divider); }
.blog-related h2 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 28px;
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
  gap: 12px;
  margin-top: 32px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4/3;
  background: var(--grey);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* =========================================================
   UTILITY / MISC
   ========================================================= */
.section-intro {
  max-width: 620px;
}
.section-intro h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem,3vw,2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.section-intro p { font-size: .92rem; color: #555; line-height: 1.7; }

.text-yellow { color: var(--yellow); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-0  { margin-bottom: 0; }

/* Toast (form feedback) */
#toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--black);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  white-space: nowrap;
}
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
#toast.success { background: #16a34a; }
#toast.error   { background: #dc2626; }

/* Shimmer skeleton */
.skeleton {
  background: linear-gradient(90deg, var(--grey-md) 25%, #ececec 50%, var(--grey-md) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

/* =========================================================
   MOBILE OVERFLOW / DISTORTION FIXES  (≤ 768px)
   ========================================================= */

/* ── 1. Global overflow guard ── */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; width: 100%; }

  /* Ensure containers never bust out of viewport */
  .container { padding: 0 16px; }

  /* All images are contained */
  img { max-width: 100%; height: auto; }
}

/* ── 2. Mobile nav — handled in the block above ── */
@media (max-width: 768px) {
  .header-inner { height: 64px; }
  .logo-icon { height: 56px !important; }
}

/* ── 3. Tile section header row — stack on mobile ── */
@media (max-width: 768px) {
  .tile-header-row {
    grid-template-columns: 1fr;   /* single column, no overflow */
    gap: 16px;
  }
  .tile-header-row > a,
  .tile-header-row .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ── 4. Feature strip header — stack on mobile ── */
@media (max-width: 768px) {
  .feature-strip-header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .feature-strip-header .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── 5. Section headers with side buttons — stack on mobile ── */
@media (max-width: 768px) {
  /* Any flex/grid row that puts a heading + button side by side */
  .section-head-row,
  .section-header-row {
    flex-direction: column;
    gap: 14px;
  }
  .section-head-row .btn,
  .section-header-row .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── 6. Hero card — tighter padding on small phones ── */
@media (max-width: 400px) {
  .hero-card { padding: 20px 16px; }
  .hc-tab { font-size: .65rem; padding: 9px 8px; gap: 4px; }
  .hc-tab i { display: none; }    /* hide icon on very small screens, keep text */
}

/* ── 7. Stats grid — 2 cols already set, ensure no overflow ── */
@media (max-width: 480px) {
  .stat-box { padding: 32px 16px; }
  .stat-num { font-size: clamp(1.6rem, 7vw, 2.2rem); }
}

/* ── 8. Reviews grid — single col, full width cards ── */
@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; gap: 14px; }
  .review-card  { padding: 22px 18px; }
}

/* ── 9. Footer — single column, no border overflow ── */
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col  { padding: 28px 20px; border-right: none; }
}

/* ── 10. Float call button — clear of bottom browser bar ── */
@media (max-width: 768px) {
  .float-call {
    bottom: 16px;
    right: 16px;
    left: 16px;
    width: auto;
    border-radius: 50px;
    justify-content: center;
  }
}

/* ── 11. CTA band — tighter on mobile ── */
@media (max-width: 768px) {
  .cta-band { padding: 48px 0; }
  .cta-band h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
}

/* ── 12. Blog grid, gallery grid — single col ── */
@media (max-width: 768px) {
  .blog-grid    { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 13. Service tiles — single col, no left/right cut ── */
@media (max-width: 480px) {
  .service-tiles { grid-template-columns: 1fr; border-radius: 0; }
  .svc-tile      { padding: 24px 20px; }
}

/* ── 14. Area / map sections ── */
@media (max-width: 768px) {
  .area-grid { grid-template-columns: 1fr; }
  .area-left { border-right: none; border-bottom: var(--divider); }
  .city-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* ── 15. Page hero — padding reduction on small screens ── */
@media (max-width: 480px) {
  .page-hero { padding: 44px 0 36px; }
  .page-hero h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
}

/* ── 16. Prevent any element wider than viewport ── */
@media (max-width: 768px) {
  * { max-width: 100vw; }
  /* Exclude elements that legitimately need overflow-x */
  body, html, .nav, .hero-section, .hs-bg, img,
  .hs-cover-img, video { max-width: none; }
}
