/* Texaserv — Lone Star Dispatch design system */
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap");

:root {
  --ink: #0b1520;
  --navy: #12263a;
  --steel: #1e3a4c;
  --heat: #c41e3a;
  --heat-dark: #9e1830;
  --paper: #eef1f4;
  --paper-2: #f7f8fa;
  --line: #d5dce3;
  --muted: #5b6b7c;
  --ok: #1f7a4c;
  --whatsapp: #128c7e;
  --radius: 14px;
  --max: 1120px;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", sans-serif;
  --shadow-soft: 0 10px 30px rgba(11, 21, 32, 0.08);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.tx-body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(30, 58, 76, 0.08), transparent 55%),
    linear-gradient(180deg, var(--paper-2), var(--paper));
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.tx-wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

/* Header */
.tx-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 248, 250, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(213, 220, 227, 0.9);
}

.tx-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.tx-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.tx-brand img {
  height: 44px;
  width: auto;
  object-fit: contain;
  background: transparent !important;
  mix-blend-mode: normal;
}

.tx-brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.55rem, 2.2vw, 1.9rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--ink);
  text-transform: uppercase;
}

.tx-brand__name span { color: var(--heat); }

.tx-nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--steel);
}

.tx-nav a:hover { color: var(--heat); }

.tx-header__actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.tx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.72rem 1.15rem;
  min-height: 44px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.tx-btn:hover { transform: translateY(-1px); }
.tx-btn:active { transform: translateY(0); }

.tx-btn--heat {
  background: var(--heat);
  color: #fff;
  border-color: #a81931;
}

.tx-btn--heat:hover { background: var(--heat-dark); }

.tx-btn--ghost {
  background: transparent;
  color: var(--steel);
  border-color: var(--line);
}

.tx-btn--ghost:hover {
  border-color: var(--steel);
  color: var(--ink);
}

.tx-btn--wa {
  background: #25d366;
  color: #fff;
  border-color: #1ebe57;
}

.tx-btn--wa:hover { filter: brightness(0.96); }

.tx-btn--wa img {
  width: 18px;
  height: 18px;
  display: block;
}

/* Hero */
.tx-hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: var(--ink);
}

.tx-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.tx-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  animation: tx-ken 18s ease-out forwards;
}

.tx-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 21, 32, 0.28) 0%, rgba(11, 21, 32, 0.48) 42%, rgba(11, 21, 32, 0.88) 100%),
    linear-gradient(90deg, rgba(11, 21, 32, 0.62), rgba(11, 21, 32, 0.18) 72%);
}

.tx-hero__content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 5.5rem 0 3.5rem;
  animation: tx-rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.tx-hero__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 7.5vw, 4.6rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
}

.tx-hero__brand span { color: #ff6b7d; }

.tx-hero h1 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  letter-spacing: -0.01em;
  line-height: 1.25;
  max-width: 22ch;
  margin: 0 0 0.85rem;
}

.tx-hero__lead {
  max-width: 38ch;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 1.6rem;
}

.tx-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.tx-hero .tx-btn { min-height: 48px; }

.tx-btn--giant {
  font-size: 1.05rem;
  padding: 0.95rem 1.5rem;
  min-height: 56px;
  width: 100%;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.tx-btn--heat.tx-btn--giant { box-shadow: 0 10px 26px rgba(196, 30, 58, 0.4); }
.tx-btn--wa.tx-btn--giant { box-shadow: 0 10px 26px rgba(37, 211, 102, 0.35); }

@media (min-width: 520px) {
  .tx-btn--giant { width: auto; min-height: 52px; }
}

/* Sections */
.tx-section { padding: 4.25rem 0; }
.tx-section--tight { padding: 3rem 0; }
.tx-section--ink {
  background: var(--navy);
  color: #fff;
}

.tx-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--heat);
  margin: 0 0 0.55rem;
}

.tx-section--ink .tx-kicker { color: #ff8a9a; }

.tx-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.2vw, 2.45rem);
  letter-spacing: 0.01em;
  line-height: 1.12;
  margin: 0 0 0.7rem;
  text-transform: none;
}

.tx-section__lead {
  color: var(--muted);
  max-width: 52ch;
  margin: 0 0 2rem;
  line-height: 1.6;
}

.tx-section--ink .tx-section__lead { color: rgba(255, 255, 255, 0.78); }

.tx-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.tx-service {
  display: block;
  padding: 1.15rem 1.2rem;
  border-bottom: 2px solid var(--line);
  background: transparent;
  transition: border-color 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
}

.tx-service:hover {
  border-color: var(--heat);
  padding-left: 1.45rem;
}

.tx-service strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.tx-service span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.tx-steps {
  display: grid;
  gap: 1.5rem;
}

.tx-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.tx-step__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: #ff4d67;
  line-height: 1;
}

.tx-step h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.tx-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.tx-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.9rem;
}

.tx-cities a {
  font-weight: 600;
  color: var(--steel);
  border-bottom: 1px solid transparent;
}

.tx-cities a:hover {
  color: var(--heat);
  border-color: var(--heat);
}

.tx-section--ink .tx-cities a {
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.tx-section--ink .tx-cities a:hover {
  color: #fff;
  border-bottom-color: #ff4d67;
}

.tx-guides {
  display: grid;
  gap: 1rem;
}

.tx-article-grid {
  display: grid;
  gap: 1rem;
}

.tx-article {
  display: grid;
  grid-template-rows: 140px auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.tx-article:hover {
  border-color: rgba(196, 30, 58, 0.35);
  transform: translateY(-2px);
}

.tx-article__media {
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(18, 38, 58, 0.92), rgba(196, 30, 58, 0.55)),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.18), transparent 45%);
  color: #fff;
}

.tx-article__media--plumbing { background: linear-gradient(135deg, #1e3a4c, #2f6f8f); }
.tx-article__media--locksmith { background: linear-gradient(135deg, #12263a, #3d4f66); }
.tx-article__media--hvac { background: linear-gradient(135deg, #8a3b12, #c41e3a); }
.tx-article__media--electrical { background: linear-gradient(135deg, #5c4b12, #b08900); }
.tx-article__media--garage { background: linear-gradient(135deg, #1f3d4d, #355f72); }
.tx-article__media--towing { background: linear-gradient(135deg, #4a1520, #c41e3a); }

.tx-article__cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.92;
}

.tx-article__body {
  padding: 1rem 1.1rem 1.15rem;
  display: grid;
  gap: 0.4rem;
}

.tx-article__body strong {
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--ink);
}

.tx-article__body span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.tx-guide {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.tx-guide:last-child { border-bottom: 1px solid var(--line); }

.tx-guide strong {
  font-size: 1.05rem;
}

.tx-guide span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

@media (min-width: 720px) {
  .tx-article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 980px) {
  .tx-article-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* FAQ card styles defined in v1.9 polish block below */

/* Footer */
.tx-footer {
  margin-top: auto;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 0 5.5rem;
}

.tx-footer__grid {
  display: grid;
  gap: 1.5rem;
}

.tx-footer .tx-brand__name { color: #fff; }
.tx-footer a:hover { color: #fff; }

.tx-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.2rem;
  font-size: 0.92rem;
}

.tx-footer__fine {
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  max-width: 70ch;
}

/* Mobile call bar */
.tx-mobilebar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(247, 248, 250, 0.96);
  border-top: 1px solid var(--line);
}

.tx-mobilebar .tx-btn { width: 100%; border-radius: 12px; }

/* Hub / directory helpers */
.tx-panel {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.tx-dir-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.tx-dir-card h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.tx-dir-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tx-dir-links a {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--steel);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.1rem;
}

.tx-dir-links a:hover {
  color: var(--heat);
  border-color: var(--heat);
}

.tx-form {
  display: grid;
  gap: 0.85rem;
}

.tx-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.tx-form input,
.tx-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  font: inherit;
  background: #fff;
}

.tx-form input:focus,
.tx-form textarea:focus {
  outline: 2px solid rgba(196, 30, 58, 0.25);
  border-color: var(--heat);
}

.tx-contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .tx-contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* City page overrides (Next export shells) */
/* Hide only legacy floating Partner promo strips — keep nav/footer Partner links */
body.tx-city .tx-partner-strip,
body a[href="/partner/"].flex.sm\:hidden,
body > a[href="/partner/"].fixed,
body > a[href="/partner/"].absolute {
  display: none !important;
}

body.tx-city header.sticky,
body.bg-gray-50 > header.sticky {
  background: rgba(247, 248, 250, 0.94) !important;
  border-color: var(--line) !important;
  box-shadow: none !important;
}

body.tx-city header a[href^="tel:"],
body.bg-gray-50 header a[href^="tel:"] {
  background: var(--heat) !important;
  box-shadow: none !important;
  animation: none !important;
  border-color: #a81931 !important;
  border-radius: 999px !important;
  min-height: 44px !important;
  padding: 0.65rem 1rem !important;
  display: inline-flex !important;
  align-items: center !important;
}

body.tx-city header.sticky a[href="/"],
body.bg-gray-50 > header.sticky a[href="/"] {
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: var(--ink) !important;
}

body.tx-city header.sticky img,
body.bg-gray-50 > header.sticky img {
  height: 2.75rem !important;
}

/* Keep Partner visible in footer/nav; only hide Partner slot inside legacy bottom bars if it crowds Call */
body.tx-city .fixed.bottom-0 a[href="/partner/"] {
  display: none !important;
}

body.tx-city .text-yellow-400 {
  display: none !important;
}

#local-coverage,
#internal-links {
  font-family: var(--font-body);
}

/* Hide leftover decorative star rows on legacy city templates */
body.tx-city .text-yellow-400.text-2xl.mb-4.drop-shadow {
  display: none !important;
}

#local-coverage {
  background: var(--paper-2) !important;
}

#local-coverage .bg-slate-50,
#local-coverage .bg-blue-50,
#internal-links {
  background: #fff !important;
  border-color: var(--line) !important;
  box-shadow: none !important;
}

@keyframes tx-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes tx-ken {
  from { transform: scale(1.08); }
  to { transform: scale(1.02); }
}

@media (min-width: 720px) {
  .tx-nav { display: flex; }
  .tx-services { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .tx-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.75rem; }
  .tx-guides { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tx-dir-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tx-footer__grid { grid-template-columns: 1.4fr 1fr; }
  .tx-mobilebar { display: none; }
  .tx-footer { padding-bottom: 3rem; }
}

@media (min-width: 980px) {
  .tx-dir-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .tx-hero__content { padding: 7rem 0 4.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  .tx-hero__media img,
  .tx-hero__content,
  .tx-btn { animation: none !important; transition: none !important; }
}

/* ===== Modern polish pass ===== */
.tx-brand img {
  background: transparent !important;
  mix-blend-mode: normal;
}

.tx-quickbar {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
  overflow-x: auto;
  padding-bottom: 0.15rem;
  scrollbar-width: none;
}

.tx-quickbar::-webkit-scrollbar { display: none; }

.tx-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.tx-chip:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-1px); }
.tx-chip svg { width: 16px; height: 16px; flex-shrink: 0; }

@media (min-width: 640px) {
  .tx-quickbar { flex-wrap: wrap; overflow-x: visible; }
}

.tx-service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.tx-service-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1.15rem 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(11, 21, 32, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.tx-service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 30, 58, 0.28);
  box-shadow: 0 14px 30px rgba(11, 21, 32, 0.08);
}

.tx-service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #18344c 0%, #0f2233 100%);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}

.tx-service-card__icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tx-service-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.2rem;
}

.tx-service-card span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.tx-article {
  grid-template-rows: 170px auto;
  box-shadow: 0 10px 28px rgba(11, 21, 32, 0.06);
}

.tx-article__media {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: #12263a;
}

.tx-article__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.tx-article:hover .tx-article__media img { transform: scale(1.05); }

.tx-article__media .tx-article__cat {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(11, 21, 32, 0.78);
  backdrop-filter: blur(4px);
}

.tx-article__meta {
  font-size: 0.78rem;
  font-weight: 600;
  color: #7a8796;
  letter-spacing: 0.02em;
}

.tx-float-wa {
  position: fixed;
  right: 1rem;
  bottom: 5.4rem;
  z-index: 70;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: visible;
}

.tx-float-wa:hover {
  transform: scale(1.07);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.5);
}

.tx-float-wa img,
.tx-float-wa svg {
  width: 30px;
  height: 30px;
  display: block;
}

.tx-float-wa__pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: tx-pulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes tx-pulse {
  0% { transform: scale(0.92); opacity: 0.8; }
  70% { transform: scale(1.18); opacity: 0; }
  100% { opacity: 0; }
}

@media (min-width: 720px) {
  .tx-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tx-float-wa { bottom: 1.4rem; right: 1.4rem; }
  .tx-mobilebar { display: none; }
}

@media (min-width: 980px) {
  .tx-service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ===== v1.9 hybrid polish ===== */
.tx-trust {
  background:
    linear-gradient(180deg, #fff, #f4f7fa);
  border-bottom: 1px solid var(--line);
}

.tx-trust__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.25rem;
  padding: 1.15rem 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.tx-trust__inner strong {
  color: var(--navy);
  font-weight: 700;
  margin-right: 0.25rem;
}

.tx-section {
  position: relative;
}

.tx-faq details {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 0.65rem;
  padding: 0.15rem 0;
  overflow: hidden;
}

.tx-faq details[open] {
  box-shadow: 0 10px 24px rgba(11, 21, 32, 0.05);
}

.tx-faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  padding: 1rem 1.15rem;
}

.tx-faq summary::-webkit-details-marker { display: none; }

.tx-faq details p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  color: var(--muted);
  line-height: 1.6;
}

.tx-footer .tx-brand img {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}

@media (min-width: 720px) {
  .tx-trust__inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    padding: 1.35rem 0;
  }
}

/* ===== v2.0 coverage map + footer sitemap ===== */
.tx-coverage {
  display: grid;
  gap: 1.75rem;
  margin-top: 0.5rem;
}

.tx-coverage__map {
  background: linear-gradient(160deg, #16324a 0%, #0d1e2d 100%);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.tx-coverage__svg { width: 100%; height: auto; display: block; }

.tx-coverage__state {
  fill: rgba(255, 255, 255, 0.05);
  stroke: rgba(196, 30, 58, 0.6);
  stroke-width: 3;
  stroke-linejoin: round;
}

.tx-coverage__dot circle {
  fill: var(--heat);
  stroke: #fff;
  stroke-width: 2;
  transition: r 0.2s ease;
}

.tx-coverage__dot:hover circle { r: 9; }

.tx-coverage__dot text {
  fill: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  paint-order: stroke;
  stroke: rgba(9, 17, 26, 0.9);
  stroke-width: 4px;
  stroke-linejoin: round;
}

.tx-coverage__list { display: grid; gap: 1.1rem; align-content: start; }

.tx-coverage__search {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.8rem 1.1rem;
}

.tx-coverage__search svg { width: 18px; height: 18px; color: var(--muted); flex-shrink: 0; }

.tx-coverage__search input {
  border: none;
  outline: none;
  font: inherit;
  width: 100%;
  background: transparent;
  color: var(--ink);
}

.tx-coverage__empty {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

@media (min-width: 860px) {
  .tx-coverage { grid-template-columns: 1.1fr 1fr; align-items: center; }
}

/* Footer sitemap (homepage + locations) */
.tx-footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.tx-footer__top p { margin: 0; max-width: 46ch; }
.tx-footer__top .tx-brand { margin-bottom: 0; }

.tx-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.tx-footer__contact a:hover { color: #fff; }

.tx-footer__sitemap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 1.5rem;
}

.tx-footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.92rem;
}

.tx-footer__col h3 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 0.4rem;
  font-weight: 700;
}

.tx-footer__col a:hover { color: #fff; }

.tx-footer__bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.tx-footer__bottom .tx-footer__fine:first-child { margin-top: 0; }

@media (min-width: 720px) {
  .tx-footer__sitemap { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ===== v2.0 Emergency Command — hero CTAs + quick rail ===== */
.tx-hero__cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  width: min(100%, 420px);
}

.tx-hero__cta .tx-btn {
  min-height: 54px;
  font-size: 1.05rem;
  width: 100%;
  justify-content: center;
}

.tx-hero__cta .tx-btn--heat {
  box-shadow: 0 10px 28px rgba(196, 30, 58, 0.35);
}

.tx-quick-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 1.25rem;
  width: min(100%, 520px);
}

.tx-quick {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 72px;
  padding: 0.65rem 0.4rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.tx-quick:hover,
.tx-quick:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.tx-quick svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tx-live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.tx-live__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3dd68c;
  box-shadow: 0 0 0 0 rgba(61, 214, 140, 0.55);
  animation: tx-live 1.8s ease-out infinite;
}

@keyframes tx-live {
  0% { box-shadow: 0 0 0 0 rgba(61, 214, 140, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(61, 214, 140, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 214, 140, 0); }
}

.tx-mobilebar .tx-btn {
  min-height: 52px;
  font-size: 1rem;
  font-weight: 800;
}

.tx-cities a.is-hidden { display: none !important; }

.tx-dir-card.is-hidden { display: none !important; }

@media (max-width: 719px) {
  .tx-float-wa { display: none; }
  .tx-hero {
    min-height: min(92vh, 820px);
    align-items: flex-end;
  }
  .tx-hero__content { padding: 4.5rem 0 2.75rem; }
  .tx-hero h1 { max-width: 18ch; }
  body.tx-body { padding-bottom: 4.75rem; }
}

@media (min-width: 720px) {
  .tx-hero__cta {
    grid-template-columns: auto auto;
    width: auto;
  }
  .tx-hero__cta .tx-btn { width: auto; min-width: 200px; }
  .tx-quick-rail {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    width: min(100%, 640px);
  }
  .tx-quick { min-height: 84px; font-size: 0.82rem; }
}


/* ===== v2.1 mobile drawer / menu toggle ===== */
.tx-menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.tx-menu-toggle__bars {
  display: grid;
  gap: 5px;
  width: 18px;
}
.tx-menu-toggle__bars span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
@media (min-width: 720px) {
  .tx-menu-toggle { display: none; }
  #hdr-mail { display: inline-flex !important; }
}

.tx-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(11, 21, 32, 0.45);
}
.tx-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 95;
  width: min(340px, 88vw);
  height: 100%;
  background: #fff;
  border-left: 1px solid var(--line);
  transform: translateX(105%);
  transition: transform 0.22s ease;
  display: flex;
  flex-direction: column;
  padding: 1rem 1.1rem 1.5rem;
}
body.tx-drawer-open .tx-drawer { transform: translateX(0); }
body.tx-drawer-open { overflow: hidden; }

.tx-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}
.tx-drawer__head strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tx-drawer__close {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}
.tx-drawer__nav {
  display: grid;
  gap: 0.15rem;
}
.tx-drawer__nav a {
  display: block;
  padding: 0.85rem 0.35rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.tx-drawer__nav a:hover { color: var(--heat); }
.tx-drawer__cta {
  margin-top: 0.75rem !important;
  border: 1px solid var(--line) !important;
  border-radius: 12px !important;
  text-align: center !important;
  padding: 0.9rem !important;
  background: var(--paper-2);
}
.tx-drawer__call {
  margin-top: 0.55rem !important;
  border: 0 !important;
  border-radius: 12px !important;
  text-align: center !important;
  padding: 0.95rem !important;
  background: var(--heat) !important;
  color: #fff !important;
}

/* City chrome polish */
body.tx-city {
  padding-bottom: 4.75rem;
  font-family: var(--font-body);
}
@media (min-width: 720px) {
  body.tx-city { padding-bottom: 0; }
}
body.tx-city .tx-mobilebar { z-index: 80; }


/* ===== v2.2 article pages ===== */
.tx-article-hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.tx-article-hero__media {
  position: absolute;
  inset: 0;
}
.tx-article-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.tx-article-hero__content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 3rem;
}
.tx-article-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  margin: 0 0 0.75rem;
  max-width: 20ch;
  text-transform: none;
}
.tx-article-hero__meta {
  margin: 0;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}
.tx-article-layout {
  display: grid;
  gap: 1.75rem;
}
.tx-prose {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-soft);
}
.tx-prose h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin: 1.6rem 0 0.65rem;
}
.tx-prose h3 {
  font-size: 1.15rem;
  margin: 1.35rem 0 0.5rem;
}
.tx-prose p, .tx-prose li {
  color: var(--muted);
  line-height: 1.7;
}
.tx-prose a {
  color: var(--heat);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.tx-prose hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 1.75rem 0;
}
.tx-article-aside .tx-panel {
  position: sticky;
  top: 88px;
}
@media (min-width: 900px) {
  .tx-article-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    align-items: start;
  }
  .tx-prose { padding: 2rem 2.25rem; }
}

/* ===== v2.3 city branded chrome ===== */
body.tx-city--branded {
  background: var(--paper-2) !important;
  font-family: var(--font-body) !important;
  padding-bottom: 4.75rem;
  color: var(--ink) !important;
}
@media (min-width: 720px) {
  body.tx-city--branded { padding-bottom: 0; }
}

body.tx-city--branded .tx-legacy-header,
body.tx-city--branded .tx-legacy-footer,
body.tx-city--branded .tx-legacy-hide,
body.tx-city--branded > a[href="/partner/"].flex,
body.tx-city--branded > a[href="/partner/"] {
  display: none !important;
}

body.tx-city--branded #tx-brand-header {
  display: block !important;
  position: sticky;
  top: 0;
  z-index: 80;
}

body.tx-city--branded main > section:first-of-type,
body.tx-city--branded main > div > section:first-of-type {
  background: linear-gradient(165deg, #0b1520 0%, #12263a 55%, #1a3348 100%) !important;
  color: #fff !important;
  border: 0 !important;
  box-shadow: none !important;
}
body.tx-city--branded main > section:first-of-type h1,
body.tx-city--branded main > div > section:first-of-type h1 {
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  letter-spacing: 0.01em !important;
  color: #fff !important;
  text-shadow: none !important;
}
body.tx-city--branded main > section:first-of-type h1 span,
body.tx-city--branded main > section:first-of-type .text-cyan-300,
body.tx-city--branded main > section:first-of-type .text-blue-300,
body.tx-city--branded main > section:first-of-type .text-sky-300 {
  color: #ff8a9a !important;
}

body.tx-city--branded .animate-pulse,
body.tx-city--branded a[href^="tel:"].animate-pulse {
  animation: none !important;
  box-shadow: none !important;
}

body.tx-city--branded main > section:first-of-type [class*="rounded-full"] {
  border-radius: 999px !important;
  box-shadow: none !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  background: rgba(255,255,255,0.1) !important;
  color: #fff !important;
  font-weight: 700 !important;
}

body.tx-city--branded .tx-city-cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.4rem !important;
  min-height: 48px !important;
  padding: 0.75rem 1.2rem !important;
  border-radius: 999px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  border: 1px solid transparent !important;
  box-shadow: none !important;
  animation: none !important;
}
body.tx-city--branded .tx-city-cta--call {
  background: var(--heat) !important;
  color: #fff !important;
  border-color: #a81931 !important;
}
body.tx-city--branded .tx-city-cta--wa {
  background: #25d366 !important;
  color: #fff !important;
}

body.tx-city--branded #ts-seo-breadcrumbs,
body.tx-city--branded nav[aria-label="breadcrumb"] {
  background: #fff !important;
  border-bottom: 1px solid var(--line) !important;
}
body.tx-city--branded #ts-seo-breadcrumbs a {
  color: var(--heat) !important;
}

body.tx-city--branded main .bg-white,
body.tx-city--branded main .bg-slate-50,
body.tx-city--branded main .bg-blue-50 {
  background: #fff !important;
  border-color: var(--line) !important;
  box-shadow: 0 8px 24px rgba(11,21,32,0.05) !important;
  border-radius: 16px !important;
}

body.tx-city--branded #local-coverage,
body.tx-city--branded #internal-links {
  font-family: var(--font-body) !important;
}

body.tx-city--branded #tx-brand-footer {
  display: block !important;
  margin-top: 2rem;
}

body.tx-city--branded a[href="/partner/"] .text-base {
  display: none !important;
}
