/* TradieTools NZ — Official Style */

/* Font loaded via <link> in HTML head for performance — no @import */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1b2a4a;
  --blue:       #005ea2;
  --blue-dark:  #003d7a;
  --blue-light: #dbe8f5;
  --orange:     #f97316;
  --text:       #1b1b1b;
  --muted:      #5a5a5a;
  --border:     #b8b8b8;
  --border-lt:  #dcdcdc;
  --surface:    #f6f8fb;
  --bg:         #f6f6f6;
  --bg-stripe:  #eef0f2;
  --white:      #fff;
  --radius:     6px;
  --radius-lg:  6px;
  --font: 'Public Sans', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
}

/* ── Base ── */
body { font-family: var(--font); color: var(--text); line-height: 1.65; background: var(--white); font-size: 16px; }

a { color: var(--blue); text-decoration: underline; }
a:hover { color: var(--blue-dark); }

h1, h2, h3, h4 { line-height: 1.25; color: var(--text); font-weight: 700; }
h1 { font-size: 2rem; margin-bottom: 1rem; }
h2 { font-size: 1.4rem; margin: 2rem 0 .75rem; border-bottom: 2px solid var(--border-lt); padding-bottom: .35rem; }
h3 { font-size: 1.1rem; margin: 1.25rem 0 .5rem; }
h4 { font-size: .95rem; margin: 1rem 0 .4rem; }

p { margin-bottom: 1rem; }
ul, ol { margin: 0 0 1rem 1.5rem; }
li { margin-bottom: .3rem; }

table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: .92rem; }
th { background: var(--navy); color: var(--white); padding: .55rem .85rem; text-align: left; font-weight: 600; font-size: .85rem; letter-spacing: .02em; }
td { padding: .55rem .85rem; border-bottom: 1px solid var(--border-lt); vertical-align: top; }
tr:nth-child(even) td { background: var(--bg-stripe); }

/* ── Layout ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }
@media (max-width: 480px) { .container { padding: 0 1.25rem; } }

.page-layout { display: grid; grid-template-columns: 1fr 290px; gap: 3rem; padding-top: 2.5rem; padding-bottom: 4rem; align-items: start; }
@media (max-width: 780px) { .page-layout { grid-template-columns: 1fr; } }

/* ── Header ── */
.site-header { background: var(--navy); border-bottom: 3px solid var(--blue); position: relative; z-index: 200; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 80px; }

.logo { color: var(--white); font-size: 1.1rem; font-weight: 700; letter-spacing: -.01em; text-decoration: none; display: flex; align-items: center; gap: .4rem; padding: .4rem 0; white-space: nowrap; }
.logo:hover { opacity: .9; color: var(--white); }
.logo-img { height: 80px; width: auto; display: block; }

/* Desktop nav */
.main-nav { display: flex; align-items: stretch; }
.main-nav a { color: rgba(255,255,255,.82); font-size: .85rem; font-weight: 500; text-decoration: none; display: flex; align-items: center; padding: 0 .85rem; border-left: 1px solid rgba(255,255,255,.1); transition: background .15s, color .15s; letter-spacing: .01em; min-height: 58px; white-space: nowrap; }
.main-nav a:hover, .main-nav a.active { color: var(--white); background: rgba(255,255,255,.1); }
.nav-cta { background: var(--orange) !important; color: var(--white) !important; font-weight: 700 !important; padding: 0 1.1rem !important; letter-spacing: .01em; }
.nav-cta:hover { background: #e06010 !important; color: var(--white) !important; }
.nav-my-listing { color: rgba(255,255,255,.9) !important; font-weight: 600 !important; border-left: 1px solid rgba(255,255,255,.1); }
.nav-my-listing:hover { color: var(--white) !important; background: rgba(255,255,255,.1) !important; }

/* For Tradies dropdown */
.nav-dropdown { position: relative; display: flex; align-items: stretch; border-left: 1px solid rgba(255,255,255,.1); }
.nav-dropdown-btn { background: none; border: none; color: rgba(255,255,255,.82); font-size: .85rem; font-weight: 500; font-family: var(--font); cursor: pointer; padding: 0 .85rem; letter-spacing: .01em; white-space: nowrap; transition: background .15s, color .15s; min-height: 58px; }
.nav-dropdown-btn:hover, .nav-dropdown:hover .nav-dropdown-btn { color: #fff; background: rgba(255,255,255,.1); }
.nav-dropdown-menu { display: none; position: absolute; top: 100%; right: 0; min-width: 185px; background: #1b2a4a; border: 1px solid rgba(255,255,255,.12); border-top: 2px solid var(--orange); border-radius: 0 0 6px 6px; box-shadow: 0 8px 24px rgba(0,0,0,.35); z-index: 300; }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu.is-open { display: block; }
.nav-dropdown-menu a { display: block; color: rgba(255,255,255,.82); text-decoration: none; font-size: .85rem; padding: .65rem 1rem; border-bottom: 1px solid rgba(255,255,255,.07); transition: background .12s, color .12s; white-space: nowrap; }
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: rgba(255,255,255,.1); color: #fff; }

/* Hamburger button — hidden on desktop */
.nav-toggle { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; background: none; border: 2px solid rgba(255,255,255,.3); cursor: pointer; padding: .45rem .55rem; border-radius: var(--radius); margin-left: auto; flex-shrink: 0; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .22s ease, opacity .22s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 3px solid var(--blue);
    flex-direction: column;
    z-index: 199;
    box-shadow: 0 6px 20px rgba(0,0,0,.35);
  }
  .main-nav.is-open { display: flex; }

  .main-nav a {
    border-left: 4px solid transparent;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: .9rem 1.25rem;
    font-size: .97rem;
    min-height: unset;
  }
  .main-nav a:last-child { border-bottom: none; }
  .main-nav a:hover, .main-nav a.active {
    border-left-color: var(--blue);
    background: rgba(255,255,255,.07);
    color: #fff;
  }
  .nav-cta { border-left: 4px solid var(--orange) !important; background: rgba(249,115,22,.18) !important; padding: .9rem 1.25rem !important; font-size: .97rem !important; }
  .nav-cta:hover { background: rgba(249,115,22,.3) !important; border-left-color: var(--orange) !important; }

  /* Mobile dropdown — flat, inline */
  .nav-dropdown { flex-direction: column; border-left: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-dropdown-btn { text-align: left; border-left: 4px solid transparent; border-bottom: none; padding: .9rem 1.25rem; font-size: .97rem; min-height: unset; width: 100%; }
  .nav-dropdown-btn:hover { border-left-color: var(--blue); background: rgba(255,255,255,.07); color: #fff; }
  .nav-dropdown-menu { display: none; position: static; border: none; border-top: 1px solid rgba(255,255,255,.07); box-shadow: none; border-radius: 0; background: rgba(0,0,0,.2); }
  .nav-dropdown-menu.is-open { display: block !important; }
  .nav-dropdown:hover .nav-dropdown-menu { display: none; }
  .nav-dropdown-menu a { padding-left: 2rem; font-size: .9rem; border-left: 4px solid transparent; }
  .nav-dropdown-menu a:hover { border-left-color: var(--blue); }

  .logo { font-size: 1rem; }
  .logo-img { height: 60px; }
}

/* ── Breadcrumb ── */
.breadcrumb { background: var(--bg); border-bottom: 1px solid var(--border-lt); padding-top: .5rem; padding-bottom: .5rem; font-size: .82rem; color: var(--muted); }
.breadcrumb a { color: var(--blue); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── Hero ── */
.hero { background: var(--navy); color: var(--white); padding: 3.5rem 0; border-bottom: 4px solid var(--blue); }
.hero h1 { color: var(--white); font-size: 2.2rem; margin-bottom: .75rem; }
.hero p { font-size: 1.1rem; opacity: .88; margin-bottom: 1.5rem; max-width: 680px; }
.btn-primary { display: inline-block; background: var(--orange); color: var(--white); padding: .7rem 1.75rem; font-weight: 700; font-size: .95rem; text-decoration: none; border: 2px solid transparent; transition: background .15s; }
.btn-primary:hover { background: #9c4500; color: var(--white); }

/* ── Sections ── */
.section { margin: 2.5rem 0; }

/* ── Cards ── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.card { display: block; background: var(--white); padding: 1.35rem; transition: background .15s; text-decoration: none; border-left: 4px solid transparent; }
.card:hover { background: var(--blue-light); border-left-color: var(--blue); text-decoration: none; }
.card h3 { color: var(--blue); margin: 0 0 .5rem; font-size: 1rem; }
.card p { color: var(--muted); font-size: .88rem; margin: 0; }

/* ── Article list ── */
.article-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); }
.article-card { padding: 1.1rem 1.25rem; border-bottom: 1px solid var(--border-lt); }
.article-card:last-child { border-bottom: none; }
.article-card h3 { font-size: 1rem; margin: 0 0 .2rem; }
.article-card a { color: var(--blue); }
.article-card a:hover { color: var(--blue-dark); }

/* ── Article body ── */
.article-header { margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 2px solid var(--border-lt); }
.article-header h1 { font-size: 1.9rem; margin-bottom: .4rem; }
@media (max-width: 600px) { .article-header h1 { font-size: 1.5rem; line-height: 1.3; } }
.article-meta { color: var(--muted); font-size: .85rem; }

.article-body h2 { color: var(--navy); }
.article-body h3 { color: var(--blue); }
.article-body blockquote { border-left: 4px solid var(--blue); padding: .5rem 1rem; background: var(--bg); color: var(--muted); margin: 1.25rem 0; }
.article-body code { background: var(--bg); padding: .1rem .35rem; border: 1px solid var(--border-lt); font-size: .87em; font-family: 'Courier New', monospace; }
.article-body pre { background: #1c1c2e; color: #e8e8f0; padding: 1rem 1.25rem; overflow-x: auto; margin: 1.25rem 0; }
.article-body pre code { background: none; border: none; padding: 0; color: inherit; }

/* ── Tags ── */
.tags { display: flex; flex-wrap: wrap; gap: .35rem; margin: .5rem 0; }
.tag { background: var(--bg); border: 1px solid var(--border); padding: .15rem .6rem; font-size: .76rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; font-weight: 600; }

/* ── Sidebar ── */
.sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.sidebar-widget { background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--blue); padding: 1.1rem 1.25rem; }
.sidebar-widget h3 { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin: 0 0 .75rem; font-weight: 700; }
.sidebar-widget ul { margin: 0; padding: 0; list-style: none; }
.sidebar-widget li { border-bottom: 1px solid var(--border-lt); padding: .45rem 0; font-size: .88rem; }
.sidebar-widget li:last-child { border-bottom: none; }
.sidebar-widget a { text-decoration: none; }
.sidebar-widget a:hover { text-decoration: underline; }

/* ── CTA / Lead form ── */
.cta-box { background: var(--bg); border: 1px solid var(--border); border-left: 4px solid var(--blue); padding: 1.75rem 2rem; margin: 2rem 0; }
.cta-box h2, .cta-box h3 { color: var(--navy); margin-bottom: .5rem; }

.lead-form { display: flex; flex-direction: column; gap: .65rem; margin-top: 1rem; max-width: 480px; }
.lead-form input, .lead-form textarea { padding: .6rem .85rem; border: 2px solid var(--border); font-size: .95rem; font-family: var(--font); width: 100%; background: var(--white); }
.lead-form input:focus, .lead-form textarea:focus { outline: none; border-color: var(--blue); }
.lead-form button { background: var(--navy); color: var(--white); border: none; padding: .7rem 1.5rem; font-size: .95rem; font-weight: 700; cursor: pointer; font-family: var(--font); align-self: flex-start; letter-spacing: .02em; }
.lead-form button:hover { background: var(--blue-dark); }

/* ── Calculator ── */
.calculator-wrapper { background: var(--bg); border: 1px solid var(--border); border-top: 3px solid var(--blue); padding: 1.75rem; margin: 1.5rem 0; }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 540px) { .calc-grid { grid-template-columns: 1fr; } }
.calc-group { display: flex; flex-direction: column; gap: .35rem; }
.calc-group label { font-size: .82rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.calc-group input, .calc-group select { padding: .55rem .8rem; border: 2px solid var(--border); font-size: .95rem; font-family: var(--font); background: var(--white); }
.calc-group input:focus, .calc-group select:focus { outline: none; border-color: var(--blue); }
.calc-btn { background: var(--navy); color: var(--white); border: none; padding: .65rem 1.5rem; font-size: .95rem; font-weight: 700; cursor: pointer; margin-top: .5rem; font-family: var(--font); letter-spacing: .02em; }
.calc-btn:hover { background: var(--blue-dark); }
.calc-result { background: var(--white); border: 2px solid var(--blue); padding: 1.25rem; margin-top: 1.25rem; }
.calc-result h3 { color: var(--navy); margin: 0 0 .75rem; font-size: .88rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; }
.result-row { display: flex; justify-content: space-between; padding: .4rem 0; border-bottom: 1px solid var(--border-lt); font-size: .92rem; }
.result-row:last-child { border-bottom: none; font-weight: 700; font-size: 1rem; color: var(--navy); }
.result-highlight { color: var(--orange); font-weight: 700; }
.calc-tabs { display: flex; gap: 0; margin-bottom: 1.25rem; border-bottom: 2px solid var(--border); }
.calc-tab { padding: .5rem 1.25rem; cursor: pointer; border: none; background: none; font-size: .88rem; color: var(--muted); border-bottom: 3px solid transparent; margin-bottom: -2px; font-family: var(--font); font-weight: 600; }
.calc-tab.active { color: var(--blue); border-bottom-color: var(--blue); background: var(--blue-light); }

/* ── Lead paragraph ── */
.lead { font-size: 1.1rem; color: var(--muted); margin-bottom: 1.5rem; border-left: 4px solid var(--border); padding-left: 1rem; }

/* ── Notice / info box ── */
.notice { background: var(--blue-light); border-left: 4px solid var(--blue); padding: .85rem 1rem; margin: 1.25rem 0; font-size: .92rem; }

/* ── Ad banner ── */
.ad-banner { min-height: 90px; background: var(--bg); border: 1px dashed var(--border); margin: 1rem 0; }

/* ── Footer ── */
.site-footer { background: var(--navy); color: rgba(255,255,255,.72); padding: 2rem 0 1.5rem; font-size: .85rem; margin-top: 4rem; border-top: 3px solid var(--blue); }
.site-footer .container { display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: start; }
.site-footer p { margin-bottom: .35rem; }
.site-footer a { color: rgba(255,255,255,.65); }
.site-footer a:hover { color: rgba(255,255,255,.9); }
.disclosure { font-size: .76rem; opacity: .55; margin-top: .5rem; }
@media (max-width: 600px) { .site-footer .container { grid-template-columns: 1fr; } }

/* ── Paid listing cards (tier styling) ── */

.listing-card--paid { position: relative; border-radius: 0; border: 1px solid var(--border); padding: 1.25rem; background: var(--white); }

.listing-card--starter { border-left: 4px solid var(--blue); }

.listing-card--pro { border-left: 4px solid var(--orange); background: #fffdf8; box-shadow: 0 1px 4px rgba(0,0,0,.06); }

.listing-card--premium { border: 2px solid var(--orange); background: #fff8f0; box-shadow: 0 2px 8px rgba(249,115,22,.1); }

.listing-rank { position: absolute; top: 1rem; right: 1rem; background: var(--navy); color: var(--white); border-radius: 50%; width: 2rem; height: 2rem; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; }

.listing-card--premium .listing-rank { background: var(--orange); }

.listing-card--pro .listing-rank { background: var(--blue); }

.listing-logo { width: 52px; height: 52px; object-fit: contain; border: 1px solid var(--border-lt); background: var(--white); flex-shrink: 0; margin-right: 0.75rem; }

.listing-badge { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.74rem; font-weight: 700; padding: 0.15rem 0.5rem; margin-right: 0.35rem; letter-spacing: 0.02em; }

.listing-badge--verified { background: #dcfce7; color: #166534; }

.listing-badge--recommended { background: #fef3c7; color: #92400e; border: 1px solid #fcd34d; }

.listing-badge--featured { background: var(--blue-light); color: var(--blue-dark); }

.btn-quote-request { display: inline-block; background: var(--orange); color: var(--white); padding: 0.45rem 1rem; font-size: 0.82rem; font-weight: 700; text-decoration: none; border: 2px solid var(--orange); letter-spacing: 0.02em; margin-top: 0.5rem; }

.btn-quote-request:hover { background: #9c4500; border-color: #9c4500; color: var(--white); }

.listing-photos { display: flex; gap: 0.4rem; margin-top: 0.65rem; flex-wrap: nowrap; overflow-x: auto; }

.listing-photos img { width: 80px; height: 60px; object-fit: cover; border: 1px solid var(--border-lt); flex-shrink: 0; }

.listing-testimonial { background: var(--bg); border-left: 3px solid var(--orange); padding: 0.5rem 0.85rem; font-size: 0.85rem; font-style: italic; color: var(--muted); margin-top: 0.65rem; }

.listing-testimonial cite { display: block; font-style: normal; font-size: 0.78rem; margin-top: 0.2rem; color: var(--navy); font-weight: 600; }

.listing-social { display: flex; gap: 0.75rem; margin-top: 0.4rem; flex-wrap: wrap; }

.listing-social a { font-size: 0.8rem; color: var(--blue); text-decoration: none; }

.listing-social a:hover { text-decoration: underline; }

/* ============================================================
   TRADIE CARD SYSTEM — shared between /find/ and trade pages
   ============================================================ */

/* Card grid — pro/verified break to full width */
.tradie-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.tradie-grid .tradie-card.is-pro,
.tradie-grid .tradie-card.is-verified { grid-column: 1 / -1; }

/* Base card */
.tradie-card { background: var(--white); padding: 1.25rem; display: flex; flex-direction: column; gap: .65rem; border-left: 4px solid transparent; transition: border-color .15s, background .15s; position: relative; }
.tradie-card:hover { background: var(--blue-light); border-left-color: var(--blue); }
.tradie-card.tt-highlighted { background: #fffbeb; border-left-color: var(--orange); box-shadow: 0 0 0 2px var(--orange); }

/* Tier accents */
.tradie-card.is-verified { border-left: 5px solid #2563eb; }
.tradie-card.is-pro { border-left: 5px solid var(--orange); }

/* Avatar */
.tc-avatar { width: 48px; height: 48px; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.05rem; flex-shrink: 0; letter-spacing: -.01em; border-radius: 3px; }
.tc-avatar.trade-electrician { background: #b45309; }
.tc-avatar.trade-plumber     { background: #0369a1; }
.tc-avatar.trade-builder     { background: #1e3a5f; }
.tc-avatar.trade-painter     { background: #7c3aed; }
.tc-avatar.trade-roofer      { background: #374151; }
.tc-avatar.trade-landscaper  { background: #166534; }
.tc-avatar.trade-hvac        { background: #0e7490; }
.tc-avatar.trade-gasfitter   { background: #9a3412; }
.tc-avatar.trade-carpenter   { background: #78350f; }
.tc-avatar.trade-concreter   { background: #4b5563; }
/* plural slug variants (used by Jinja trade-city templates) */
.tc-avatar.trade-electricians { background: #b45309; }
.tc-avatar.trade-plumbers     { background: #0369a1; }
.tc-avatar.trade-builders     { background: #1e3a5f; }
.tc-avatar.trade-painters     { background: #7c3aed; }
.tc-avatar.trade-roofers      { background: #374151; }
.tc-avatar.trade-landscapers  { background: #166534; }
.tc-avatar.trade-gasfitters   { background: #9a3412; }
.tc-avatar.trade-carpenters   { background: #78350f; }
.tc-avatar.trade-concreters   { background: #4b5563; }

/* Header row */
.tc-top { display: flex; align-items: flex-start; gap: .85rem; }
.tc-info { flex: 1; min-width: 0; }
.tc-name { font-weight: 700; font-size: 1rem; color: var(--text); display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; }
.tc-name a { color: inherit; text-decoration: none; }
.tc-name a:hover { text-decoration: underline; color: var(--blue); }
.tc-trade { font-size: .85rem; color: var(--blue); font-weight: 600; margin-top: .1rem; }
.tc-location { font-size: .82rem; color: var(--muted); margin-top: .05rem; }

/* Badges */
.badge-verified { background: #2563eb; color: var(--white); font-size: .7rem; font-weight: 700; padding: .15rem .5rem; letter-spacing: .03em; white-space: nowrap; border-radius: 2px; }
.badge-pro { background: var(--orange); color: var(--white); font-size: .7rem; font-weight: 700; padding: .15rem .5rem; white-space: nowrap; border-radius: 2px; }

/* Meta row */
.tc-meta { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; font-size: .82rem; color: var(--muted); }
.tc-stars { color: #b45309; letter-spacing: 1px; }
.tc-rate { font-weight: 700; color: var(--text); }
.tc-exp  { color: var(--muted); }
.tc-locked-phone { font-size: .8rem; color: var(--muted); }
.tc-locked-phone a { color: var(--orange); font-weight: 600; text-decoration: none; }
.tc-locked-phone a:hover { text-decoration: underline; }

/* Action buttons */
.tc-actions { display: flex; gap: .5rem; }
.btn-call { flex: 1; background: #2563eb; color: var(--white); border: none; padding: .6rem; font-size: .9rem; font-weight: 700; cursor: pointer; font-family: var(--font); text-align: center; text-decoration: none; display: inline-block; border-radius: 2px; }
.btn-call:hover { background: var(--blue-dark); color: var(--white); }
.btn-quote { flex: 1; background: var(--navy); color: var(--white); border: none; padding: .6rem; font-size: .9rem; font-weight: 700; cursor: pointer; font-family: var(--font); text-align: center; border-radius: 2px; text-decoration: none; display: inline-block; }
.btn-quote:hover { background: var(--blue); color: var(--white); }
.btn-quote-full { width: 100%; background: var(--navy); color: var(--white); border: none; padding: .65rem; font-size: .9rem; font-weight: 700; cursor: pointer; font-family: var(--font); text-align: center; border-radius: 2px; text-decoration: none; display: block; }
.btn-quote-full:hover { background: var(--blue); color: var(--white); }

/* Verified card extras */
.tc-tagline { font-size: .85rem; color: var(--muted); font-style: italic; line-height: 1.4; }
.tc-services { display: flex; gap: .4rem; flex-wrap: wrap; }
.tc-service-tag { background: var(--bg); border: 1px solid var(--border); font-size: .75rem; padding: .2rem .55rem; color: var(--text); border-radius: 2px; }
.tc-verified-badge { font-size: .8rem; color: #16a34a; }
.tc-profile-link { font-size: .85rem; color: var(--blue); font-weight: 600; text-decoration: none; }
.tc-profile-link:hover { text-decoration: underline; }

/* Pro card 2-column layout */
.tc-pro-body { display: grid; grid-template-columns: 1fr 190px; gap: 1.5rem; padding-right: 2.5rem; }
@media (max-width: 620px) { .tc-pro-body { grid-template-columns: 1fr; padding-right: 0; } }
.tc-pro-main { display: flex; flex-direction: column; gap: .55rem; min-width: 0; }
.tc-pro-sidebar { display: flex; flex-direction: column; gap: .6rem; border-left: 1px solid var(--border); padding-left: 1.25rem; }
@media (max-width: 620px) { .tc-pro-sidebar { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: .75rem; } }
.tc-pro-name { font-size: 1.1rem; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.tc-pro-name a { color: inherit; text-decoration: none; }
.tc-pro-name a:hover { text-decoration: underline; color: var(--blue); }
.tc-pro-rating { display: flex; align-items: center; gap: .6rem; font-size: .875rem; color: var(--muted); flex-wrap: wrap; }
.tc-pro-rating .tc-stars { color: #b45309; }
.tc-pro-location { font-size: .85rem; color: var(--muted); }
.tc-description { font-size: .9rem; color: var(--text); line-height: 1.6; }
.tc-areas { font-size: .82rem; color: var(--muted); }
.tc-rank { position: absolute; top: 1rem; right: 1rem; width: 28px; height: 28px; border-radius: 50%; background: var(--blue); color: var(--white); font-size: .8rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.tc-sidebar-stat { font-size: .82rem; color: var(--muted); }
.tc-sidebar-stat strong { color: var(--text); font-size: .9rem; }
.tc-pro-actions { display: flex; flex-direction: column; gap: .45rem; }
.btn-call-direct { background: #2563eb; color: var(--white); border: none; padding: .6rem 1rem; font-size: .88rem; font-weight: 700; text-align: center; text-decoration: none; display: block; font-family: var(--font); border-radius: 2px; cursor: pointer; }
.btn-call-direct:hover { background: var(--blue-dark); color: var(--white); }
.tc-pro-links { display: flex; flex-direction: column; gap: .3rem; padding-top: .2rem; }
.tc-pro-links a { font-size: .82rem; color: var(--blue); text-decoration: none; font-weight: 600; }
.tc-pro-links a:hover { text-decoration: underline; }
