/* ============================================================
   TIME APPLIANCE REPAIR — MAIN CSS
   Production-Ready | Mobile First | Charlotte NC
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700&family=Barlow:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --orange:       #F54E08;
  --orange-dark:  #D94207;
  --orange-light: #FF6B35;
  --orange-glow:  rgba(245, 78, 8, 0.15);
  --black:        #0A0A0A;
  --gray-900:     #111111;
  --gray-800:     #1A1A1A;
  --gray-700:     #2A2A2A;
  --gray-600:     #3A3A3A;
  --gray-500:     #6B6B6B;
  --gray-400:     #9A9A9A;
  --gray-300:     #C4C4C4;
  --gray-200:     #E5E5E5;
  --gray-100:     #F5F5F5;
  --white:        #FFFFFF;
  --success:      #22C55E;
  --warning:      #EAB308;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --font-ui:      'Inter', sans-serif;

  --nav-h:        72px;
  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    32px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.08);
  --shadow:       0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.18);
  --shadow-orange:0 8px 32px rgba(245,78,8,.35);

  --transition:   .25s cubic-bezier(.4,0,.2,1);
  --transition-slow: .45s cubic-bezier(.4,0,.2,1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--gray-900);
}

.display-1 { font-size: clamp(3rem, 7vw, 6rem); font-weight: 900; }
.display-2 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 800; }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { line-height: 1.7; color: var(--gray-600); }

.text-orange  { color: var(--orange); }
.text-white   { color: var(--white); }
.text-gray    { color: var(--gray-500); }
.text-dark    { color: var(--gray-900); }
.text-center  { text-align: center; }
.text-upper   { text-transform: uppercase; letter-spacing: .08em; }
.text-sm      { font-size: .875rem; }
.text-lg      { font-size: 1.125rem; }
.text-xl      { font-size: 1.25rem; }
.fw-600       { font-weight: 600; }
.fw-700       { font-weight: 700; }
.fw-800       { font-weight: 800; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-wide { max-width: 1400px; }
.container-narrow { max-width: 860px; }

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 120px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { flex-direction: column; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}

.btn:hover::after { background: rgba(255,255,255,.08); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245,78,8,.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--gray-900);
  transform: translateY(-2px);
}

.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--gray-900);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--gray-700);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--orange);
  font-weight: 800;
}
.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg { padding: 20px 44px; font-size: 1.15rem; }
.btn-sm { padding: 10px 20px; font-size: .875rem; }
.btn-xl { padding: 24px 56px; font-size: 1.25rem; }
.btn-full { width: 100%; }

.btn-phone {
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: .03em;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-orange);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-phone:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   BADGES & LABELS
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 12px;
  border-radius: 100px;
}
.badge-orange { background: var(--orange-glow); color: var(--orange); border: 1px solid rgba(245,78,8,.3); }
.badge-white  { background: rgba(255,255,255,.15); color: var(--white); border: 1px solid rgba(255,255,255,.25); }
.badge-dark   { background: var(--gray-900); color: var(--white); }
.badge-success{ background: rgba(34,197,94,.15); color: var(--success); border: 1px solid rgba(34,197,94,.3); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--orange);
  display: block;
  margin-bottom: 12px;
}
.section-title { color: var(--gray-900); }
.section-title span { color: var(--orange); }
.section-desc { color: var(--gray-500); max-width: 560px; margin: 16px auto 0; font-size: 1.05rem; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card-body { padding: 28px; }
.card-dark { background: var(--gray-900); color: var(--white); }
.card-orange { background: var(--orange); color: var(--white); }

/* Service Card */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 40px rgba(245,78,8,.12);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

/* Trust Card */
.trust-card {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.trust-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  border-color: var(--orange);
  transform: translateY(-4px);
}
.trust-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

/* Review Card */
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.stars { color: #FFC107; font-size: 1.1rem; letter-spacing: 2px; }
.reviewer-name { font-weight: 700; color: var(--gray-900); font-family: var(--font-display); font-size: 1.05rem; }
.reviewer-info { font-size: .85rem; color: var(--gray-400); }

/* ============================================================
   FORM STYLES
   ============================================================ */
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
  font-family: var(--font-body);
}
.form-label span { color: var(--orange); }

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  transition: all var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}
.form-control::placeholder { color: var(--gray-400); }

select.form-control { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }

textarea.form-control { resize: vertical; min-height: 100px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Lead Form Box */
.lead-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 24px 80px rgba(0,0,0,.2);
}
.lead-form-box .form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.lead-form-box .form-subtitle { font-size: .9rem; color: var(--gray-500); margin-bottom: 24px; }
.discount-note {
  background: var(--orange-glow);
  border: 1px solid rgba(245,78,8,.2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: .875rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;            /* highest — always on top */
  height: var(--nav-h);
  background: var(--black);
  transition: all var(--transition);
}
.nav.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo img {
  height: 44px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.85);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav-link.active { color: var(--orange); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius);
  padding: 12px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 2px;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  font-family: var(--font-body);
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-dropdown-item:hover { background: rgba(245,78,8,.15); color: var(--orange); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: .03em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone:hover { color: var(--orange); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--gray-900);
  z-index: 1090;            /* above CTA bar (1050), below nav header (1100) */
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-h) + 20px) 24px 32px;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-700);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav-link:hover { color: var(--orange); }

.mobile-nav-sub {
  padding: 8px 0 4px 16px;
  display: none;
}
.mobile-nav-sub.open { display: block; }
.mobile-nav-sub-link {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  padding: 10px 0;
  display: block;
  transition: color var(--transition);
}
.mobile-nav-sub-link:hover { color: var(--orange); }

.mobile-nav-cta { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }

/* ============================================================
   STICKY MOBILE CTA BAR
   Position: fixed, directly below the header (top: var(--nav-h))
   Always visible on mobile — never at bottom
   ============================================================ */
.sticky-mobile {
  display: none;            /* hidden on desktop; shown by media query */
  position: fixed;
  top: var(--nav-h);        /* sits flush below the black header */
  left: 0; right: 0;
  z-index: 1050;            /* above nav (1000), above mobile-nav overlay */
  background: var(--orange);
  box-shadow: 0 3px 12px rgba(0,0,0,0.3);
  /* NO bottom:0 — bar is at TOP */
}
.sticky-mobile-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 100%;
}

/* LEFT — CALL NOW */
.sticky-btn-call {
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  padding: 11px 10px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0px;
  line-height: 1.25;
  border-right: 1px solid rgba(255,255,255,0.25);
  -webkit-tap-highlight-color: transparent;
  transition: background var(--transition);
}
.sticky-btn-call:active  { background: var(--orange-dark); }
.sticky-btn-call .scta-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  opacity: .9;
  text-transform: uppercase;
}
.sticky-btn-call .scta-number {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .01em;
}

/* RIGHT — BOOK APPOINTMENT */
.sticky-btn-book {
  background: var(--orange-dark);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  padding: 11px 10px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0px;
  line-height: 1.25;
  cursor: pointer;
  border: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  transition: background var(--transition);
}
.sticky-btn-book:active { background: #b83a06; }
.sticky-btn-book .scta-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  opacity: .9;
}
.sticky-btn-book .scta-text {
  font-size: .92rem;
  font-weight: 900;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--gray-900);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 65% 50%, rgba(245,78,8,.12) 0%, transparent 60%),
    linear-gradient(135deg, var(--black) 0%, var(--gray-900) 50%, #1a1005 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 59px,
      rgba(255,255,255,.02) 59px,
      rgba(255,255,255,.02) 60px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 59px,
      rgba(255,255,255,.02) 59px,
      rgba(255,255,255,.02) 60px
    );
}

.hero-glow {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,78,8,.18) 0%, transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
}

.hero-badge { margin-bottom: 20px; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.0;
  color: var(--white);
  text-transform: uppercase;
}
.hero-title .accent { color: var(--orange); }
.hero-title .line2 { font-size: clamp(1.5rem, 3vw, 2.5rem); color: rgba(255,255,255,.75); font-weight: 600; text-transform: none; margin-top: 8px; display: block; }

.hero-desc {
  color: rgba(255,255,255,.72);
  font-size: 1.1rem;
  margin-top: 20px;
  max-width: 540px;
  line-height: 1.7;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  font-weight: 500;
}
.hero-feature-item .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
  align-items: center;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}
.hero-trust-stars { color: #FFC107; font-size: 1.05rem; }
.hero-trust-text { font-size: .9rem; color: rgba(255,255,255,.7); }
.hero-trust-text strong { color: var(--white); }

/* Emergency Bar */
.emergency-bar {
  background: var(--orange);
  padding: 10px 0;
  position: relative;
  z-index: 3;
}
.emergency-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.emergency-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.blink { animation: blink 1.2s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* Discount Banner */
.discount-banner {
  background: linear-gradient(135deg, #1a0800, #2d1000);
  border-top: 3px solid var(--orange);
  border-bottom: 1px solid rgba(245,78,8,.2);
  padding: 18px 0;
}
.discount-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  text-align: center;
}
.discount-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.discount-text .highlight { color: var(--orange); font-size: 1.4rem; }

/* ============================================================
   TRUST BAR / STATS
   ============================================================ */
.trust-bar {
  background: var(--orange);
  padding: 20px 0;
}
.trust-bar-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.trust-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.trust-bar-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.trust-bar-label {
  font-size: .8rem;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 600;
  margin-top: 3px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }

@media(max-width:1100px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   BRANDS SECTION
   ============================================================ */
.brands-section { background: var(--gray-900); }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.brand-chip {
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: all var(--transition);
  cursor: default;
}
.brand-chip:hover {
  background: var(--gray-700);
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

/* Premium Brand Logos */
.premium-brands { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 24px; }
.premium-brand {
  background: linear-gradient(135deg, var(--gray-800), var(--gray-700));
  border: 1px solid var(--gray-600);
  border-radius: var(--radius-sm);
  padding: 12px 22px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: all var(--transition);
}
.premium-brand:hover {
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: 0 4px 20px rgba(245,78,8,.2);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--gray-100); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
}
.why-item:last-child { border-bottom: none; }
.why-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--orange-glow);
  border: 1px solid rgba(245,78,8,.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.why-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--gray-900); }
.why-desc { font-size: .9rem; color: var(--gray-500); margin-top: 4px; }

/* ============================================================
   AREAS SECTION
   ============================================================ */
.areas-section { background: var(--white); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.area-chip {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-800);
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.area-chip:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}
.area-chip .area-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); transition: background var(--transition); }
.area-chip:hover .area-dot { background: var(--white); }

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews-section { background: var(--gray-900); }
.reviews-slider { position: relative; overflow: hidden; }
.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform var(--transition-slow);
}
.reviews-track .review-card { min-width: 360px; background: var(--gray-800); border-color: var(--gray-700); }
.reviews-track .review-card p { color: rgba(255,255,255,.8); }
.reviews-track .reviewer-name { color: var(--white); }

.slider-controls { display: flex; gap: 12px; justify-content: center; margin-top: 32px; }
.slider-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gray-700);
  border: 1px solid var(--gray-600);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.slider-btn:hover { background: var(--orange); border-color: var(--orange); }

.google-rating {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}
.g-logo { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; }
.g-logo span:nth-child(1) { color: #4285F4; }
.g-logo span:nth-child(2) { color: #EA4335; }
.g-logo span:nth-child(3) { color: #FBBC04; }
.g-logo span:nth-child(4) { color: #4285F4; }
.g-logo span:nth-child(5) { color: #34A853; }
.g-logo span:nth-child(6) { color: #EA4335; }
.g-rating-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 900; color: var(--white); }
.g-stars { color: #FFC107; font-size: 1.3rem; }

/* ============================================================
   PROCESS / HOW IT WORKS
   ============================================================ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-grid::before {
  content: '';
  position: absolute;
  top: 40px; left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  z-index: 0;
}
.process-item { text-align: center; position: relative; z-index: 1; }
.process-num {
  width: 80px; height: 80px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: var(--shadow-orange);
  position: relative;
}
.process-num::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(245,78,8,.3);
}
.process-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--gray-900); margin-bottom: 8px; }
.process-desc { font-size: .9rem; color: var(--gray-500); }

/* ============================================================
   WARRANTY SECTION
   ============================================================ */
.warranty-section {
  background: linear-gradient(135deg, var(--gray-900) 0%, #1a0800 50%, var(--gray-900) 100%);
  position: relative;
  overflow: hidden;
}
.warranty-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,78,8,.15) 0%, transparent 70%);
}
.warranty-badge-big {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--white);
  box-shadow: 0 0 60px rgba(245,78,8,.5);
  text-align: center;
  line-height: 1.1;
}
.warranty-badge-big .num { font-size: 2rem; }
.warranty-badge-big .label { font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-question {
  width: 100%;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  transition: color var(--transition);
  background: none;
  border: none;
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  width: 28px; height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
  color: var(--gray-500);
}
.faq-item.open .faq-icon { background: var(--orange); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-answer-inner { padding: 0 0 20px; color: var(--gray-600); line-height: 1.7; font-size: .95rem; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--orange);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23fff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-title { color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; }
.cta-desc { color: rgba(255,255,255,.9); font-size: 1.1rem; margin-top: 12px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: rgba(255,255,255,.75);
  padding: 80px 0 0;
}
.footer-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo img { height: 48px; width: auto; }
.footer-desc { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.6); margin-top: 16px; max-width: 280px; }
.footer-phone {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange);
  margin-top: 20px;
  display: block;
  transition: color var(--transition);
}
.footer-phone:hover { color: var(--orange-light); }
.footer-email { font-size: .9rem; color: rgba(255,255,255,.6); margin-top: 8px; display: block; }
.footer-h { font-family: var(--font-display); font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--white); margin-bottom: 20px; }
.footer-link {
  display: block;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  padding: 5px 0;
  transition: color var(--transition);
}
.footer-link:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 60px;
  padding: 24px;
  max-width: 1300px;
  margin: 60px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: .8rem; color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-legal a:hover { color: var(--orange); }

/* Social Links */
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
}
.social-link:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: .85rem;
  color: var(--gray-500);
  padding: 16px 0;
}
.breadcrumb a { color: var(--orange); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--orange-dark); }
.breadcrumb-sep { color: var(--gray-400); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--gray-900);
  padding: calc(var(--nav-h) + 48px) 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(245,78,8,.1) 0%, transparent 60%);
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); }
.page-hero .badge { margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 600px; margin-top: 16px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse-orange {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,78,8,.5); }
  50% { box-shadow: 0 0 0 12px rgba(245,78,8,0); }
}

.animate-fade-up { animation: fadeInUp .6s ease both; }
.animate-fade { animation: fadeIn .6s ease both; }
.animate-slide-left { animation: slideInLeft .6s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }
.delay-5 { animation-delay: .5s; }

.pulse-orange { animation: pulse-orange 2.5s ease infinite; }

/* Scroll triggered */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   MISC COMPONENTS
   ============================================================ */
.divider { height: 1px; background: var(--gray-200); margin: 48px 0; }
.divider-dark { background: var(--gray-700); }

.alert-bar {
  background: var(--success);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}
.alert-bar.show { display: flex; }

/* Warranty badge mini */
.warranty-mini {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--success);
  background: rgba(34,197,94,.1);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(34,197,94,.25);
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .lead-form-box { max-width: 640px; }
  .hero-form-col { order: -1; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .why-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --nav-h:      64px;
    --cta-bar-h:  46px;   /* height of the sticky CTA bar */
    --header-total: calc(var(--nav-h) + var(--cta-bar-h));
  }

  .section { padding: 60px 0; }
  .section-lg { padding: 80px 0; }

  /* Hide desktop nav links; show hamburger */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Show sticky CTA bar below header */
  .sticky-mobile { display: block !important; }

  /* Push ALL page content below header + CTA bar */
  body {
    padding-top: 0;
    padding-bottom: 0;
  }

  /* The mobile-nav overlay must clear the sticky bars */
  .mobile-nav {
    padding-top: calc(var(--nav-h) + var(--cta-bar-h) + 16px);
  }

  /* Hero already has padding-top: var(--nav-h) — extend it for CTA bar */
  .hero {
    padding-top: calc(var(--nav-h) + var(--cta-bar-h));
  }

  /* Page hero inner pages */
  .page-hero {
    padding-top: calc(var(--nav-h) + var(--cta-bar-h) + 32px);
  }

  /* Emergency bar (homepage) sits after both fixed bars */
  .emergency-bar {
    margin-top: calc(var(--nav-h) + var(--cta-bar-h));
  }

  /* General sections that need top clearance */
  .trust-bar { /* trust bar follows emergency bar, no extra margin needed */ }

  .hero-title { font-size: clamp(2.4rem, 8vw, 3.4rem); }
  .hero-inner { padding: 40px 20px 60px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  .lead-form-box { padding: 24px 20px; }
  .form-grid { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { text-align: center; justify-content: center; }

  .emergency-inner { flex-direction: column; gap: 8px; text-align: center; }
  .discount-inner { flex-direction: column; gap: 12px; }

  .reviews-track .review-card { min-width: calc(100vw - 48px); }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .google-rating { flex-direction: column; gap: 8px; }
  .sticky-mobile-inner { grid-template-columns: 1fr 1fr; }
}

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

/* ============================================================
   SERVICE CARD WITH 3D APPLIANCE IMAGE
   ============================================================ */
.service-card-v2 {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 0;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card-v2::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card-v2:hover {
  border-color: var(--orange);
  box-shadow: 0 12px 40px rgba(245,78,8,.14);
  transform: translateY(-5px);
}
.service-card-v2:hover::before { transform: scaleX(1); }

.service-card-v2 .card-img {
  background: linear-gradient(135deg, #f8f9fb, #eef0f4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px 12px;
  height: 140px;
  position: relative;
  overflow: hidden;
}
.service-card-v2 .card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(238,240,244,0.8));
}
.service-card-v2 .card-img img {
  max-height: 120px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
  transition: transform var(--transition);
}
.service-card-v2:hover .card-img img {
  transform: translateY(-4px) scale(1.04);
}
.service-card-v2 .card-body-inner {
  padding: 16px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-v2 h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--gray-900);
}
.service-card-v2 p {
  font-size: .82rem;
  color: var(--gray-500);
  flex: 1;
  line-height: 1.5;
}
.service-card-v2 .card-link {
  color: var(--orange);
  font-weight: 700;
  font-size: .82rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 10px;
  display: inline-block;
  transition: gap var(--transition);
}
.service-card-v2:hover .card-link { gap: 4px; }

/* Services grid with image cards */
.services-grid-v2 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media(max-width:1100px) { .services-grid-v2 { grid-template-columns: repeat(4,1fr); } }
@media(max-width:768px)  { .services-grid-v2 { grid-template-columns: repeat(2,1fr); gap:14px; } }
@media(max-width:480px)  { .services-grid-v2 { grid-template-columns: repeat(2,1fr); } }

/* ============================================================
   LOCATION PAGES GRID
   ============================================================ */
.location-services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
}
@media(max-width:768px) { .location-services-grid { grid-template-columns: 1fr 1fr; } }

.location-service-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--gray-700);
  font-weight: 500;
  transition: all var(--transition);
}
.location-service-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(245,78,8,.25);
}
.location-service-link .lsl-icon {
  width: 36px; height: 36px;
  min-width: 36px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.location-service-link:hover .lsl-icon { background: rgba(255,255,255,0.2); }
.location-service-link .lsl-icon img {
  width: 26px; height: 26px;
  object-fit: contain;
}

/* Master areas page */
.city-block { margin-bottom: 48px; }
.city-block-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gray-200);
}
.city-block-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
}
.city-block-state {
  font-size: .85rem;
  color: var(--gray-400);
  font-weight: 500;
}
.city-services-list {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 8px;
}
@media(max-width:768px) { .city-services-list { grid-template-columns: 1fr 1fr; } }

.city-service-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  font-size: .875rem;
  color: var(--gray-700);
  font-weight: 500;
  transition: all var(--transition);
  border: 1px solid transparent;
}
.city-service-item:hover {
  background: var(--white);
  border-color: var(--orange);
  color: var(--orange);
  transform: translateX(3px);
}
.city-service-item::before {
  content: '→';
  color: var(--orange);
  font-weight: 700;
  font-size: .8rem;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.city-service-item:hover::before { opacity: 1; }

/* ============================================================
   BRAND LOGO GRID
   ============================================================ */

/* Section background */
.brands-section {
  background: var(--gray-900);
  overflow: hidden;
}

/* Tier label divider */
.brand-tier-label {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(255,255,255,.35);
  text-align: center;
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-tier-label::before,
.brand-tier-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.1);
}

/* Logo card */
.brand-logo-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  min-height: 84px;
  text-decoration: none;
}
.brand-logo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}
.brand-logo-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(245,78,8,.45);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
}
.brand-logo-card:hover::before {
  background: rgba(255,255,255,.03);
}

/* Logo image inside card */
.brand-logo-card img {
  width: 100%;
  max-width: 130px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);        /* white on dark bg */
  opacity: 0.75;
  transition: opacity var(--transition), filter var(--transition), transform var(--transition);
}
.brand-logo-card:hover img {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(245,78,8,.4));
  transform: scale(1.05);
}

/* Premium tier cards — slightly larger */
.brand-logo-card.tier-premium {
  min-height: 92px;
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
}
.brand-logo-card.tier-premium img {
  max-width: 150px;
  height: 46px;
}

/* Service label below logo */
.brand-service-label {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.35);
  text-align: center;
  transition: color var(--transition);
  line-height: 1;
}
.brand-logo-card:hover .brand-service-label {
  color: var(--orange);
}

/* Grid layouts */
.brands-logo-grid-premium {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}
.brands-logo-grid-standard {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

/* Disclaimer */
.brand-disclaimer {
  text-align: center;
  font-size: .72rem;
  color: rgba(255,255,255,.3);
  line-height: 1.6;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.07);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.brand-disclaimer a {
  color: rgba(255,255,255,.45);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Responsive */
@media (max-width: 1024px) {
  .brands-logo-grid-premium  { grid-template-columns: repeat(4, 1fr); }
  .brands-logo-grid-standard { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .brands-logo-grid-premium  { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .brands-logo-grid-standard { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .brand-logo-card { min-height: 72px; padding: 14px 10px; }
  .brand-logo-card img { height: 32px; max-width: 110px; }
  .brand-logo-card.tier-premium img { height: 36px; max-width: 120px; }
}
@media (max-width: 480px) {
  .brands-logo-grid-premium  { grid-template-columns: repeat(2, 1fr); }
  .brands-logo-grid-standard { grid-template-columns: repeat(3, 1fr); gap: 7px; }
  .brand-logo-card img { height: 28px; }
}
