/* =============================================
   LEVKO APPLIANCE REPAIR — ORANGE COUNTY
   ============================================= */

:root {
  --blue:       #1a3c5e;
  --blue2:      #2d6a9f;
  --orange:     #e84118;
  --gold:       #f0a500;
  --dark:       #0f1c2a;
  --dark2:      #121c28;
  --light:      #f5f7fa;
  --white:      #ffffff;
  --gray:       #6b7280;
  --radius:     14px;
  --shadow:     0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.18);
  --transition: .25s ease;
  --header-h:   64px;
  --banner-h:   68px;
  --font-body:  'Inter', sans-serif;
  --font-head:  'Montserrat', sans-serif;
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: var(--banner-h);
}
img,video { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
button { cursor:pointer; font:inherit; border:none; background:none; }
ul { list-style:none; }

/* ─── Utility ──────────────────────────────── */
.container { max-width:1140px; margin:0 auto; padding:0 20px; }
.section { padding:80px 0; }
.section:nth-child(even) { background:var(--light); }

.sec-head { text-align:center; margin-bottom:48px; }
.sec-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem,3vw,2.4rem);
  font-weight: 900;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 12px;
}
.sec-head p { color:var(--gray); font-size:1.05rem; max-width:560px; margin:0 auto; }
.sec-head.light h2 { color:var(--white); }
.sec-head.light p  { color:rgba(255,255,255,.75); }

.sec-tag {
  display: inline-block;
  background: rgba(232,65,24,.12);
  color: var(--orange);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.sec-tag-dark {
  display: inline-block;
  background: rgba(240,165,0,.15);
  color: var(--gold);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ─── Buttons ──────────────────────────────── */
.btn-call-hero,
.btn-text-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-call-hero {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232,65,24,.4);
}
.btn-call-hero:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(232,65,24,.5); }
.btn-text-hero {
  background: var(--white);
  color: var(--blue);
  border: 2px solid rgba(255,255,255,.4);
}
.btn-text-hero:hover { transform:translateY(-2px); background:rgba(255,255,255,.92); }
.btn-insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  color: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}
.btn-insta:hover { transform:translateY(-2px); opacity:.9; }

/* ═══════════════════════════════════════
   TOP HEADER
═══════════════════════════════════════ */
.top-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--dark);
  height: var(--header-h);
  box-shadow: 0 2px 16px rgba(0,0,0,.35);
  transition: background var(--transition);
}
.th-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-wrap { display:flex; align-items:center; gap:12px; }
.logo-icon  { width:40px; height:40px; flex-shrink:0; }
.logo-name {
  display: block;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: .08em;
  line-height: 1.1;
}
.logo-tagline {
  display: block;
  font-size: .7rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
}
.btn-call-sm {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  padding: 9px 18px;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
}
.btn-call-sm:hover { background:#c9360f; transform:scale(1.03); }

/* ═══════════════════════════════════════
   HERO — PHOTO BACKGROUND
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-bg-new.webp');
  background-size: cover;
  background-position: center 55%;
  background-color: #1a2a3a; /* fallback while loading */
  transform: scale(1.04);
  animation: hero-zoom 18s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  from { transform:scale(1.04); }
  to   { transform:scale(1.09); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,14,26,.80) 0%,
    rgba(6,14,26,.46) 40%,
    rgba(6,14,26,.84) 100%
  );
}
@media (max-width: 600px) {
  .hero-photo { background-position: center 50%; }
}
.hero-body {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px 80px;
  max-width: 740px;
}
.hero-ratings {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.rating-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .82rem;
}
.rating-pill .stars { color:var(--gold); font-size:.9rem; letter-spacing:.05em; }
.rating-pill strong { font-weight:700; }
.pill-label { color:rgba(255,255,255,.7); }
.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
  animation: pulse-badge 2.4s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%,100% { box-shadow:0 0 0 0 rgba(232,65,24,.5); }
  50%      { box-shadow:0 0 0 10px rgba(232,65,24,0); }
}
.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem,6vw,3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.oc-highlight { color:var(--gold); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-btns .btn-text-hero {
  border-color: rgba(255,255,255,.5);
  color: var(--white);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
}
.hero-note { font-size:.85rem; color:rgba(255,255,255,.6); }
.hero-scroll-hint {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce-down 2s ease-in-out infinite;
  opacity: .65;
}
@keyframes bounce-down {
  0%,100% { transform:translateX(-50%) translateY(0); }
  50%      { transform:translateX(-50%) translateY(8px); }
}

/* Infinite marquee — inner div scrolls exactly one set (-50% of its own width) */
@keyframes ticker-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services-section { background:var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
  gap: 18px;
}
.svc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 16px 22px;
  border-radius: var(--radius);
  background: var(--light);
  border: 2px solid transparent;
  color: var(--blue);
  font-weight: 600;
  font-size: .95rem;
  text-align: center;
  line-height: 1.3;
  transition: all var(--transition);
  cursor: pointer;
}
.svc-card:hover {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  color: var(--orange);
}
.svc-icon-wrap {
  width: 70px; height: 70px;
  background: rgba(26,60,94,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.svc-card:hover .svc-icon-wrap { background:rgba(232,65,24,.1); }
.svc-svg { width:38px; height:38px; color:var(--blue); transition:color var(--transition); }
.svc-card:hover .svc-svg { color:var(--orange); }

/* ─── Service Drawer ───────────────────────── */
.svc-modal-bg {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1000;
  backdrop-filter: blur(3px);
}
.svc-modal-bg.active { display:block; }
.svc-drawer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1001;
  background: var(--white);
  border-radius: 20px 20px 0 0;
  padding: 32px 24px 40px;
  max-height: 88vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -8px 40px rgba(0,0,0,.2);
}
.svc-drawer.open { transform:translateY(0); }
.svc-drawer-close {
  position: absolute; top:16px; right:20px;
  background: var(--light);
  border-radius: 50%;
  width:36px; height:36px;
  display:flex; align-items:center; justify-content:center;
  font-size:1rem; color:var(--gray); cursor:pointer;
  transition: background var(--transition);
}
.svc-drawer-close:hover { background:#e5e7eb; }
.svc-drawer-icon {
  width:80px; height:80px;
  background:rgba(26,60,94,.08); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 16px; font-size:2rem;
}
.svc-drawer h3 {
  font-family:var(--font-head); font-size:1.6rem; font-weight:900;
  color:var(--blue); text-align:center; margin-bottom:10px;
}
.svc-drawer p {
  color:var(--gray); font-size:1rem; text-align:center;
  margin-bottom:18px; line-height:1.65;
  max-width:500px; margin-left:auto; margin-right:auto;
}
.svc-drawer ul {
  max-width:480px; margin:0 auto 24px;
  display:flex; flex-direction:column; gap:8px;
}
.svc-drawer ul li {
  display:flex; align-items:flex-start; gap:10px;
  color:var(--dark); font-size:.95rem;
}
.svc-drawer ul li::before { content:'✓'; color:var(--orange); font-weight:700; flex-shrink:0; }
.svc-drawer-btns { display:flex; justify-content:center; gap:14px; flex-wrap:wrap; }
@media (min-width:640px) {
  .svc-drawer {
    max-width:540px; left:50%; right:auto;
    transform:translateX(-50%) translateY(calc(100% + 90px));
    border-radius:var(--radius); bottom:90px;
  }
  .svc-drawer.open { transform:translateX(-50%) translateY(0); }
}

/* ═══════════════════════════════════════
   REVIEWS — AUTO-TICKER
═══════════════════════════════════════ */
.reviews-section { overflow:hidden; }
.overall-scores {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.os-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--light);
  border: 1px solid #e5e7eb;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .9rem;
}

/* Ticker container */
.ticker-viewport {
  overflow-x: scroll;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0 16px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  /* Fade edges */
  mask-image: linear-gradient(to right, transparent 0%, black 80px, black calc(100% - 80px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 80px, black calc(100% - 80px), transparent 100%);
}
.ticker-viewport::-webkit-scrollbar { display: none; }
.ticker-viewport:active { cursor: grabbing; }
.ticker-inner {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
  /* animation set dynamically by TickerEngine in app.js */
}

/* Review card */
.rev-card {
  width: 320px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid #e5e7eb;
}
.rev-card-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  background: #1a3c5e;
}
.rev-card-img img {
  width:100%; height:100%; object-fit:cover;
  transition: transform .4s ease;
}
.rev-card:hover .rev-card-img img { transform:scale(1.05); }
.rev-img-label {
  position: absolute;
  bottom: 10px; left: 12px;
  background: rgba(0,0,0,.65);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.rev-body { padding:16px 18px 20px; }
.rev-source {
  display: flex; align-items:center; gap:5px;
  font-size:.75rem; font-weight:600;
  margin-bottom:6px;
}
.google-s { color:#4285F4; }
.yelp-s   { color:#FF1A1A; }
.rev-stars { color:var(--gold); font-size:1rem; letter-spacing:.05em; margin-bottom:8px; }
.rev-text {
  font-size: .88rem;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rev-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
}
.rev-avatar {
  width:36px; height:36px; border-radius:50%;
  background:var(--blue); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:.78rem; flex-shrink:0;
}
.rev-footer strong { display:block; font-size:.88rem; }
.rev-footer span   { color:var(--gray); font-size:.78rem; }

/* ═══════════════════════════════════════
   COMBINED: WHY LEVKO + REAL REPAIRS
═══════════════════════════════════════ */
/* ─── Ticker Arrow Navigation ──────────────── */
.ticker-nav-wrap {
  overflow: hidden;
}

/* ─── Works / GIF Section ──────────────────── */
.works-section { background: var(--light); }
.works-ticker-vp {
  overflow-x: scroll;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  mask-image: linear-gradient(to right, transparent 0%, black 40px, black calc(100% - 40px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 40px, black calc(100% - 40px), transparent 100%);
}
.works-ticker-vp::-webkit-scrollbar { display: none; }
.works-ticker {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}
.work-card {
  flex-shrink: 0;
  width: 300px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.work-gif-wrap {
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: #111;
  position: relative;
}
.work-ig-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(0,0,0,.52);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 5px 9px 5px 7px;
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
}
.work-ig-btn:hover { background: rgba(193,53,132,.75); }
.work-ig-btn svg { flex-shrink: 0; }
.work-gif {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.work-label {
  padding: 12px 14px 14px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--blue);
  line-height: 1.4;
}
.work-label .work-title {
  display: block;
  margin-bottom: 6px;
}
.work-label .work-city {
  display: inline-block;
  font-weight: 600;
  font-size: .78rem;
  color: var(--orange);
  margin-right: 10px;
}
.work-label .work-time {
  display: inline-block;
  font-weight: 500;
  font-size: .75rem;
  color: var(--gray);
}
@media (max-width: 600px) {
  .work-card { width: 240px; }
  .work-gif-wrap { height: 300px; }
}

/* ─── Why Section (Trust Signals) ─────── */
.why-section {
  background: var(--dark2);
  padding-bottom: 60px;
}
.why-section .sec-head { margin-bottom: 32px; }
.why-ticker-vp {
  overflow-x: scroll;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  mask-image: linear-gradient(to right, transparent 0%, black 40px, black calc(100% - 40px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 40px, black calc(100% - 40px), transparent 100%);
  padding: 12px 0 20px;
}
.why-ticker-vp::-webkit-scrollbar { display: none; }
.why-ticker {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

/* ─── Repairs Section (Photo Cards) ─────── */
.repairs-section {
  background: var(--light);
  padding-bottom: 60px;
}
.repairs-section .sec-head { margin-bottom: 32px; }
.repairs-ticker-vp {
  overflow-x: scroll;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  mask-image: linear-gradient(to right, transparent 0%, black 40px, black calc(100% - 40px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 40px, black calc(100% - 40px), transparent 100%);
  padding: 12px 0 20px;
}
.repairs-ticker-vp::-webkit-scrollbar { display: none; }
.repairs-ticker {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}
.repairs-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 40px;
}

/* ─── Combined Section (legacy keep) ─────── */
.combined-section {
  background: var(--dark2);
  padding-bottom: 60px;
}
.combined-section .sec-head { margin-bottom: 32px; }
.combined-ticker-vp {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 40px, black calc(100% - 40px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 40px, black calc(100% - 40px), transparent 100%);
  padding: 12px 0 20px;
}
.combined-ticker {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

/* Feature card */
.combo-card {
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.feat-card {
  width: 260px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--white);
  transition: background var(--transition);
}
.feat-card:hover { background: rgba(255,255,255,.1); }
.combo-feat-icon { font-size: 2rem; }
.feat-card strong { font-size: 1.05rem; font-weight: 700; }
.feat-card p { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.6; }

/* Repair card */
.repair-card {
  width: 300px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.repair-img-wrap {
  position: relative;
  height: 170px;
  overflow: hidden;
  background: #1a3c5e;
}
.repair-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.repair-card:hover .repair-img-wrap img { transform: scale(1.05); }
.repair-badge {
  position: absolute;
  top: 10px; left: 12px;
  background: rgba(0,0,0,.65);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.repair-body { padding: 14px 16px 18px; }
.repair-body h4 { font-size: .95rem; font-weight: 700; color: var(--blue); margin-bottom: 6px; }
.repair-body p  { font-size: .84rem; color: var(--gray); line-height: 1.55; margin-bottom: 8px; }
.repair-meta    { font-size: .78rem; color: var(--orange); font-weight: 600; }

.combined-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 40px;
}
.combined-cta .btn-text-hero {
  color: var(--white);
  border-color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(4px);
}

/* ═══════════════════════════════════════
   SERVICE AREA — LEAFLET MAP
═══════════════════════════════════════ */
/* ═══════════════════════════════════════
   SERVICE AREA — LEAFLET MAP
═══════════════════════════════════════ */
.area-section {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}
#oc-map {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.leaflet-control-attribution { display: none !important; }
.leaflet-control-zoom        { display: none !important; }

.area-content-overlay {
  position: relative;
  z-index: 10;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5,12,24,.48);
  padding: 60px 20px;
}
.zip-panel {
  background: rgba(255,255,255,.97);
  border-radius: 20px;
  padding: 40px 36px;
  max-width: 560px;
  width: 100%;
  box-shadow: 0 16px 64px rgba(0,0,0,.45);
  text-align: center;
}
.zip-panel h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem,3vw,2rem);
  font-weight: 900;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 10px;
}
.zip-panel p { color: var(--gray); margin-bottom: 20px; }
.zip-input-wrap {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.zip-input {
  flex: 1;
  padding: 13px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color var(--transition);
  outline: none;
}
.zip-input:focus { border-color: var(--orange); }
.zip-btn {
  background: var(--orange);
  color: var(--white);
  padding: 13px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .95rem;
  transition: background var(--transition);
}
.zip-btn:hover { background: #c9360f; }
.zip-result { margin-bottom: 16px; }
.zip-yes {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 14px;
  text-align: left;
}
.zip-check {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(34,197,94,.8); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; flex-shrink: 0;
}
.zip-yes strong { display: block; font-size: .95rem; color: var(--dark); margin-bottom: 2px; }
.zip-yes span   { font-size: .85rem; color: var(--gray); }
.zip-action-btns { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.area-cities { margin-top: 16px; }
.cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  justify-content: center;
}
.cities-grid span {
  background: var(--light);
  border: 1px solid #e5e7eb;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer { background:var(--dark); color:var(--white); padding:60px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand p { color:rgba(255,255,255,.55); font-size:.9rem; line-height:1.7; margin-top:12px; }
.footer-logo-row { display:flex; align-items:center; gap:12px; }
.footer-name {
  display: block;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.footer-sub { display:block; font-size:.75rem; color:rgba(255,255,255,.45); }
.footer-contact-row { display:flex; gap:16px; flex-wrap:wrap; margin-top:16px; }
.footer-phone,.footer-sms {
  display:inline-flex; align-items:center; gap:6px;
  color:rgba(255,255,255,.8); font-weight:600; font-size:.9rem;
  transition:color var(--transition);
}
.footer-phone:hover,.footer-sms:hover { color:var(--orange); }
.footer-links-col h5 { font-size:.85rem; text-transform:uppercase; letter-spacing:.08em; color:rgba(255,255,255,.45); margin-bottom:16px; }
.footer-links-col ul li { margin-bottom:8px; }
.footer-links-col ul a { color:rgba(255,255,255,.65); font-size:.9rem; transition:color var(--transition); }
.footer-links-col ul a:hover { color:var(--orange); }
.footer-social-col h5 { font-size:.85rem; text-transform:uppercase; letter-spacing:.08em; color:rgba(255,255,255,.45); margin-bottom:16px; }
.social-icons { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:12px; }
.social-icon {
  width:42px; height:42px; border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  transition: background var(--transition), transform var(--transition);
}
.social-icon:hover { transform:translateY(-3px); }
.social-icon.yt { background:#FF0000; color:#fff; }
.social-icon.fb { background:#1877f2; color:#fff; }
.social-icon.tt { background:#000; color:#fff; }
.social-icon.ig { background:linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color:#fff; }
.social-caption { font-size:.8rem; color:rgba(255,255,255,.4); margin-bottom:20px; }
.footer-hours p { font-size:.9rem; color:rgba(255,255,255,.55); line-height:1.7; }
.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 20px;
  text-align: center;
}
.footer-bottom p { font-size:.82rem; color:rgba(255,255,255,.35); margin-bottom:6px; }
.footer-bottom a { color:rgba(255,255,255,.5); }
.footer-bottom a:hover { color:var(--orange); }
.footer-seo { display:flex; flex-wrap:wrap; gap:8px 16px; justify-content:center; }

/* ═══════════════════════════════════════
   STICKY BOTTOM BANNER
═══════════════════════════════════════ */
.sticky-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.08);
  height: var(--banner-h);
}
.sticky-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-text { display:flex; flex-direction:column; gap:2px; }
.sticky-free { font-weight:800; color:var(--white); font-size:.9rem; letter-spacing:.04em; }
.sticky-sub  { font-size:.75rem; color:rgba(255,255,255,.5); }
.sticky-btns { display:flex; gap:10px; flex-shrink:0; }
.sticky-call,.sticky-text-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .88rem;
  transition: transform var(--transition);
}
.sticky-call     { background:var(--orange); color:#fff; }
.sticky-text-btn { background:rgba(255,255,255,.1); color:#fff; border:1px solid rgba(255,255,255,.2); }
.sticky-call:hover,.sticky-text-btn:hover { transform:scale(1.04); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width:900px) {
  .footer-inner { grid-template-columns:1fr 1fr; }
  .footer-brand { grid-column:1/-1; }
}
@media (max-width:600px) {
  .section { padding:60px 0; }
  .footer-inner { grid-template-columns:1fr; gap:28px; }
  .ticker-viewport { mask-image:linear-gradient(to right, transparent 0%, black 20px, black calc(100% - 20px), transparent 100%); -webkit-mask-image:linear-gradient(to right, transparent 0%, black 20px, black calc(100% - 20px), transparent 100%); }
}

