/*
Theme Name: Texas Plumbing Directory
Theme URI: https://texasplumbingdirectory.com
Author: Texas Plumbing Directory
Author URI: https://texasplumbingdirectory.com
Description: Professional plumbing directory theme for Houston, TX. Features transparent pricing, TDLR verification, lead generation, and premium listings for plumbers.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: texas-plumbing
Tags: business, directory, local-business, plumbing
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
*/

/* ===== CSS VARIABLES ===== */
:root {
  --navy: #0B1D35;
  --navy-mid: #132D4F;
  --blue: #1A6FC4;
  --blue-light: #2E8AE6;
  --blue-pale: #E8F2FC;
  --sky: #F0F7FF;
  --orange: #E8712A;
  --orange-hover: #D4601B;
  --orange-light: #FFF4ED;
  --green: #1B9E5A;
  --green-light: #E6F9EF;
  --green-dark: #158A4C;
  --gold: #F5A623;
  --gold-light: #FEF7E8;
  --red: #D93025;
  --text: #1A2332;
  --text-mid: #3D4F63;
  --text-light: #6B7D92;
  --border: #DDE4EC;
  --bg: #FAFBFD;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(11,29,53,0.06);
  --shadow-md: 0 4px 16px rgba(11,29,53,0.08);
  --shadow-lg: 0 8px 32px rgba(11,29,53,0.12);
  --shadow-xl: 0 16px 48px rgba(11,29,53,0.14);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}

/* ===== RESET ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-font-smoothing:antialiased}
body{font-family:'DM Sans',-apple-system,BlinkMacSystemFont,sans-serif;color:var(--text);background:var(--bg);line-height:1.6;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit;transition:all .2s}
.container{max-width:1200px;margin:0 auto;padding:0 24px}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.05)}}
@keyframes countPulse{0%{transform:scale(1)}50%{transform:scale(1.08)}100%{transform:scale(1)}}
.animate{opacity:0}.animate.visible{animation:fadeUp .65s ease forwards}
.animate-delay-1{animation-delay:.1s}.animate-delay-2{animation-delay:.2s}
.animate-delay-3{animation-delay:.3s}.animate-delay-4{animation-delay:.4s}
.fade-in{animation:fadeUp .6s ease forwards}

/* ===== TOP BAR ===== */
.top-bar{background:var(--navy);color:rgba(255,255,255,.85);font-size:13px;padding:8px 0;letter-spacing:.02em}
.top-bar .container{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:8px}
.top-bar a{color:var(--gold);font-weight:600}.top-bar a:hover{color:#fff}
.top-bar-left{display:flex;gap:20px;align-items:center}
.top-bar-right{display:flex;gap:16px;align-items:center}
.live-dot{width:7px;height:7px;background:var(--green);border-radius:50%;display:inline-block;margin-right:5px;animation:pulse 2s infinite}

/* ===== HEADER ===== */
.site-header{background:var(--white);border-bottom:1px solid var(--border);position:sticky;top:0;z-index:100;box-shadow:var(--shadow-sm)}
.site-header .container{display:flex;justify-content:space-between;align-items:center;padding-top:14px;padding-bottom:14px}
.logo{display:flex;align-items:center;gap:10px}
.logo-icon{width:42px;height:42px;background:linear-gradient(135deg,var(--blue),var(--navy));border-radius:var(--radius-sm);display:flex;align-items:center;justify-content:center;color:white;font-size:20px;box-shadow:0 2px 8px rgba(26,111,196,.3)}
.logo-text{font-family:'Playfair Display',serif;font-weight:700;font-size:20px;color:var(--navy);line-height:1.15}
.logo-text span{color:var(--blue)}
.logo-sub{font-family:'DM Sans',sans-serif;font-size:11px;color:var(--text-light);font-weight:500;letter-spacing:.08em;text-transform:uppercase}

/* Navigation */
.main-nav{display:flex;align-items:center;gap:8px}
.main-nav a,.main-nav .menu-item a{padding:8px 16px;font-size:14.5px;font-weight:500;color:var(--text-mid);border-radius:var(--radius-sm);transition:all .2s}
.main-nav a:hover,.main-nav .menu-item a:hover{color:var(--blue);background:var(--blue-pale)}
.main-nav .current-menu-item a{color:var(--blue);background:var(--blue-pale);font-weight:600}
.nav-cta,.main-nav .menu-item-cta a{background:var(--orange)!important;color:var(--white)!important;font-weight:600!important;padding:10px 20px!important;border-radius:var(--radius-sm)!important;box-shadow:0 2px 8px rgba(232,113,42,.3)}
.nav-cta:hover,.main-nav .menu-item-cta a:hover{background:var(--orange-hover)!important;transform:translateY(-1px)}
/* WordPress menu reset */
.main-nav ul{list-style:none;display:flex;gap:4px;margin:0;padding:0}
.main-nav li{margin:0}

.mobile-menu-toggle{display:none;background:none;border:none;cursor:pointer;padding:8px}
.mobile-menu-toggle svg{width:26px;height:26px;color:var(--navy)}

/* ===== BREADCRUMB ===== */
.breadcrumb{padding:14px 0;font-size:13.5px;color:var(--text-light);background:var(--white);border-bottom:1px solid var(--border)}
.breadcrumb a{color:var(--blue);font-weight:500}.breadcrumb a:hover{text-decoration:underline}
.breadcrumb .sep{margin:0 8px;color:var(--border)}

/* ===== SECTION HELPERS ===== */
.section-label{display:inline-block;font-size:12px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--blue);background:var(--blue-pale);padding:5px 14px;border-radius:100px;margin-bottom:14px}
.section-title{font-family:'Playfair Display',serif;font-size:36px;font-weight:700;color:var(--navy);margin-bottom:10px;line-height:1.2}
.section-sub{font-size:17px;color:var(--text-light);max-width:600px;line-height:1.6}
.section-header{text-align:center;margin-bottom:56px}
.section-header .section-sub{margin:10px auto 0}

/* ===== BUTTONS ===== */
.btn{display:inline-flex;align-items:center;gap:8px;padding:14px 28px;border-radius:var(--radius-sm);font-size:15px;font-weight:600;cursor:pointer;transition:all .25s;border:none;font-family:inherit}
.btn-primary{background:var(--orange);color:white;box-shadow:0 3px 12px rgba(232,113,42,.35)}
.btn-primary:hover{background:var(--orange-hover);transform:translateY(-1px)}
.btn-secondary{background:var(--white);color:var(--blue);border:2px solid var(--blue)}
.btn-secondary:hover{background:var(--blue-pale)}
.btn-green{background:var(--green);color:white;box-shadow:0 2px 8px rgba(27,158,90,.3)}
.btn-green:hover{background:var(--green-dark);transform:translateY(-1px)}

/* ===== BADGES ===== */
.badge{display:inline-flex;align-items:center;gap:5px;padding:4px 10px;border-radius:100px;font-size:11.5px;font-weight:700;letter-spacing:.03em}
.badge-verified{background:var(--green-light);color:var(--green)}
.badge-featured{background:var(--gold-light);color:#B8860B}
.badge-emergency{background:#FDE8E8;color:var(--red)}
.badge-premium{background:var(--blue-pale);color:var(--blue)}
.badge-available{background:var(--green-light);color:var(--green)}

/* ===== SERVICE TAGS ===== */
.service-tag{padding:5px 10px;background:var(--bg);border:1px solid var(--border);border-radius:100px;font-size:12px;color:var(--text-mid);font-weight:500}
.service-tag.emergency{background:#FDE8E8;border-color:rgba(217,48,37,.15);color:var(--red)}

/* ===== AREA TAGS ===== */
.area-tag{padding:10px 20px;background:var(--white);border:1px solid var(--border);border-radius:100px;font-size:14px;font-weight:500;color:var(--text-mid);transition:all .2s}
.area-tag:hover{border-color:var(--blue);color:var(--blue);background:var(--blue-pale)}

/* ===== CARDS ===== */
.content-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden}
.card-header{padding:20px 24px;border-bottom:1px solid var(--border);display:flex;align-items:center;justify-content:space-between}
.card-header h2{font-size:19px;font-weight:700;color:var(--navy);display:flex;align-items:center;gap:8px}
.card-body{padding:24px}

/* ===== HOMEPAGE: HERO ===== */
.hero{background:linear-gradient(168deg,var(--navy) 0%,var(--navy-mid) 55%,#184474 100%);padding:72px 0 64px;position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;top:-50%;left:-25%;width:150%;height:200%;background:radial-gradient(ellipse at 30% 20%,rgba(26,111,196,.15) 0%,transparent 60%),radial-gradient(ellipse at 80% 80%,rgba(232,113,42,.08) 0%,transparent 50%);pointer-events:none}
.hero::after{content:'';position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.02) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.02) 1px,transparent 1px);background-size:48px 48px;pointer-events:none}
.hero .container{position:relative;z-index:2;display:grid;grid-template-columns:1fr 420px;gap:48px;align-items:center}
.hero-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);padding:6px 14px;border-radius:100px;font-size:13px;color:rgba(255,255,255,.85);margin-bottom:20px;backdrop-filter:blur(4px);animation:fadeIn .6s ease}
.hero-badge strong{color:var(--gold)}
.hero h1{font-family:'Playfair Display',serif;font-size:46px;font-weight:800;color:var(--white);line-height:1.15;margin-bottom:18px;animation:fadeUp .8s ease}
.hero h1 em{font-style:normal;color:var(--gold);position:relative}
.hero h1 em::after{content:'';position:absolute;bottom:2px;left:0;right:0;height:3px;background:var(--gold);opacity:.4;border-radius:2px}
.hero-sub{font-size:18px;color:rgba(255,255,255,.75);line-height:1.7;margin-bottom:28px;max-width:540px;animation:fadeUp .8s ease .15s both}

/* Hero Search */
.hero-search{background:var(--white);border-radius:var(--radius-lg);padding:8px;display:flex;gap:8px;box-shadow:var(--shadow-xl);animation:fadeUp .8s ease .3s both;max-width:560px}
.hero-search select,.hero-search input{flex:1;padding:14px 16px;border:1px solid var(--border);border-radius:var(--radius-sm);font-size:15px;font-family:inherit;color:var(--text);background:var(--bg);outline:none;transition:border-color .2s;min-width:0}
.hero-search select:focus,.hero-search input:focus{border-color:var(--blue)}
.hero-search select{max-width:200px;cursor:pointer}
.hero-search-btn{background:var(--orange);color:white;border:none;padding:14px 28px;border-radius:var(--radius-sm);font-size:15px;font-weight:600;cursor:pointer;white-space:nowrap;transition:all .2s;box-shadow:0 2px 8px rgba(232,113,42,.35)}
.hero-search-btn:hover{background:var(--orange-hover);transform:translateY(-1px)}

.hero-trust{display:flex;gap:24px;margin-top:20px;animation:fadeUp .8s ease .45s both}
.hero-trust-item{display:flex;align-items:center;gap:7px;font-size:13.5px;color:rgba(255,255,255,.7)}
.hero-trust-item svg{flex-shrink:0}

/* Hero Stats Card */
.hero-card{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);border-radius:var(--radius-xl);padding:32px;backdrop-filter:blur(12px);animation:fadeUp .8s ease .3s both}
.hero-card-title{color:rgba(255,255,255,.6);font-size:12px;text-transform:uppercase;letter-spacing:.1em;font-weight:600;margin-bottom:20px}
.stats-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.stat-item{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);border-radius:var(--radius-md);padding:18px 16px;text-align:center}
.stat-number{font-family:'Playfair Display',serif;font-size:32px;font-weight:700;color:var(--white);line-height:1}
.stat-number.gold{color:var(--gold)}.stat-number.green{color:#4ADE80}
.stat-label{font-size:12px;color:rgba(255,255,255,.55);margin-top:6px;line-height:1.3}
.hero-card-cta{display:block;text-align:center;margin-top:20px;padding:12px;background:rgba(245,166,35,.15);border:1px solid rgba(245,166,35,.3);border-radius:var(--radius-sm);color:var(--gold);font-size:13.5px;font-weight:600;transition:all .2s}
.hero-card-cta:hover{background:rgba(245,166,35,.25)}

/* ===== PROOF BAR ===== */
.proof-bar{background:var(--white);border-bottom:1px solid var(--border);padding:18px 0}
.proof-bar .container{display:flex;justify-content:center;align-items:center;gap:40px;flex-wrap:wrap}
.proof-item{display:flex;align-items:center;gap:10px;font-size:14px;color:var(--text-mid);font-weight:500}
.proof-icon{width:36px;height:36px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:16px}
.proof-icon.blue{background:var(--blue-pale);color:var(--blue)}
.proof-icon.green{background:var(--green-light);color:var(--green)}
.proof-icon.orange{background:var(--orange-light);color:var(--orange)}

/* ===== HOW IT WORKS ===== */
.how-it-works{padding:80px 0;background:var(--white)}
.steps-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;position:relative}
.steps-grid::before{content:'';position:absolute;top:48px;left:calc(16.66% + 40px);right:calc(16.66% + 40px);height:2px;background:linear-gradient(90deg,var(--blue-pale),var(--blue),var(--blue-pale));z-index:0}
.step-card{text-align:center;position:relative;z-index:1}
.step-number{width:72px;height:72px;border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 20px;font-size:28px;font-weight:700;color:var(--white);background:linear-gradient(135deg,var(--blue),var(--navy));box-shadow:0 4px 16px rgba(26,111,196,.3)}
.step-card h3{font-size:19px;font-weight:700;color:var(--navy);margin-bottom:8px}
.step-card p{font-size:15px;color:var(--text-light);line-height:1.6;max-width:300px;margin:0 auto}

/* ===== SERVICES ===== */
.services-section{padding:80px 0;background:var(--bg)}
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.service-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-md);padding:28px 24px;transition:all .3s;cursor:pointer;position:relative;overflow:hidden}
.service-card::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--blue),var(--blue-light));transform:scaleX(0);transition:transform .3s}
.service-card:hover{border-color:var(--blue);box-shadow:var(--shadow-md);transform:translateY(-3px)}
.service-card:hover::before{transform:scaleX(1)}
.service-icon{font-size:28px;margin-bottom:14px;display:block}
.service-card h3{font-size:17px;font-weight:700;color:var(--navy);margin-bottom:6px}
.service-card .price-range{font-size:14px;font-weight:600;color:var(--green);margin-bottom:8px}
.service-card p{font-size:14px;color:var(--text-light);line-height:1.5}

/* ===== PRICING SECTION ===== */
.pricing-section{padding:80px 0;background:var(--white)}
.pricing-layout{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}
.pricing-features{list-style:none;display:flex;flex-direction:column;gap:14px}
.pricing-features li{display:flex;align-items:flex-start;gap:12px;font-size:15.5px;color:var(--text-mid);line-height:1.5}
.pricing-features li svg{flex-shrink:0;margin-top:3px}
.pricing-features li strong{color:var(--navy)}
.pricing-table-card{background:var(--bg);border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-md)}
.pricing-table-header{background:var(--navy);color:var(--white);padding:18px 24px;display:flex;justify-content:space-between;align-items:center}
.pricing-table-header h3{font-size:16px;font-weight:600}
.pricing-table-header span{font-size:12px;background:rgba(255,255,255,.15);padding:4px 10px;border-radius:100px}
.pricing-table{width:100%;border-collapse:collapse}
.pricing-table td{padding:14px 24px;font-size:14.5px;border-bottom:1px solid var(--border)}
.pricing-table tr:last-child td{border-bottom:none}
.pricing-table td:first-child{color:var(--text-mid);font-weight:500}
.pricing-table td:last-child{text-align:right;font-weight:700;color:var(--green)}
.pricing-table tr:nth-child(even){background:var(--white)}

/* ===== TRUST ===== */
.trust-section{padding:80px 0;background:linear-gradient(180deg,var(--bg) 0%,var(--white) 100%)}
.trust-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:20px}
.trust-card{text-align:center;padding:28px 16px;background:var(--white);border:1px solid var(--border);border-radius:var(--radius-md);transition:all .3s}
.trust-card:hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}
.trust-icon{width:52px;height:52px;border-radius:var(--radius-sm);margin:0 auto 14px;display:flex;align-items:center;justify-content:center;font-size:24px}
.trust-icon.bg-blue{background:var(--blue-pale)}.trust-icon.bg-green{background:var(--green-light)}.trust-icon.bg-orange{background:var(--orange-light)}
.trust-card h4{font-size:14.5px;font-weight:700;color:var(--navy);margin-bottom:5px;line-height:1.3}
.trust-card p{font-size:13px;color:var(--text-light);line-height:1.4}

/* ===== TESTIMONIALS ===== */
.testimonials{padding:80px 0}
.testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.testimonial-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-md);padding:28px}
.testimonial-stars{color:var(--gold);font-size:16px;margin-bottom:12px;letter-spacing:2px}
.testimonial-card blockquote{font-size:15px;color:var(--text-mid);line-height:1.65;font-style:italic;margin-bottom:16px}
.testimonial-author{font-size:14px;font-weight:600;color:var(--navy)}
.testimonial-location{font-size:13px;color:var(--text-light)}

/* ===== PLUMBER CTA ===== */
.plumber-cta{padding:80px 0;background:linear-gradient(135deg,var(--navy) 0%,#1A3F6B 100%);position:relative;overflow:hidden}
.plumber-cta::before{content:'';position:absolute;top:-50%;right:-20%;width:60%;height:200%;background:radial-gradient(ellipse,rgba(232,113,42,.1) 0%,transparent 60%);pointer-events:none}
.plumber-cta .container{position:relative;z-index:2;display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}
.plumber-cta h2{font-family:'Playfair Display',serif;font-size:36px;font-weight:700;color:var(--white);line-height:1.2;margin-bottom:16px}
.plumber-cta h2 em{font-style:normal;color:var(--gold)}
.plumber-cta>div p{font-size:17px;color:rgba(255,255,255,.7);line-height:1.65;margin-bottom:28px}
.plumber-benefits{list-style:none;display:flex;flex-direction:column;gap:12px}
.plumber-benefits li{display:flex;align-items:center;gap:10px;font-size:15px;color:rgba(255,255,255,.85)}
.plumber-benefits li svg{flex-shrink:0}

/* ===== AREAS ===== */
.areas{padding:64px 0;background:var(--bg)}
.areas-tags{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;margin-top:32px}

/* ===== FOOTER ===== */
.site-footer{background:var(--navy);padding:56px 0 0;color:rgba(255,255,255,.6)}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:40px;padding-bottom:40px;border-bottom:1px solid rgba(255,255,255,.08)}
.footer-brand .logo-text{color:white;font-size:18px}
.footer-brand .logo-text span{color:var(--gold)}
.footer-brand p{margin-top:12px;font-size:14px;line-height:1.6;max-width:280px}
.site-footer h4{color:var(--white);font-size:14px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;margin-bottom:16px}
.site-footer ul{list-style:none;display:flex;flex-direction:column;gap:10px}
.site-footer ul a{font-size:14px;color:rgba(255,255,255,.55);transition:color .2s}
.site-footer ul a:hover{color:var(--gold)}
.footer-bottom{padding:20px 0;display:flex;justify-content:space-between;align-items:center;font-size:13px;flex-wrap:wrap;gap:12px}
/* WordPress footer menu */
.site-footer .menu{list-style:none;display:flex;flex-direction:column;gap:10px;margin:0;padding:0}

/* ===== LISTING CARDS (Directory page) ===== */
.listing-card{background:var(--white);border:1.5px solid var(--border);border-radius:var(--radius-lg);padding:24px;transition:all .3s;position:relative;overflow:hidden}
.listing-card:hover{border-color:var(--blue);box-shadow:var(--shadow-md);transform:translateY(-2px)}
.listing-card.featured{border-color:var(--gold);box-shadow:0 0 0 1px rgba(245,166,35,.2),var(--shadow-md)}
.listing-card.featured::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--gold),var(--orange))}
.listing-top{display:flex;gap:18px;align-items:flex-start}
.listing-avatar{width:72px;height:72px;border-radius:var(--radius-md);background:var(--blue-pale);display:flex;align-items:center;justify-content:center;font-size:30px;flex-shrink:0;border:2px solid var(--white);box-shadow:var(--shadow-sm)}
.listing-info{flex:1;min-width:0}
.listing-badges{display:flex;gap:6px;flex-wrap:wrap;margin-bottom:5px}
.listing-name{font-size:19px;font-weight:700;color:var(--navy);margin-bottom:2px;line-height:1.25;display:block}
.listing-name:hover{color:var(--blue)}
.listing-tagline{font-size:13.5px;color:var(--text-light);margin-bottom:8px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.listing-meta{display:flex;align-items:center;gap:14px;flex-wrap:wrap;margin-bottom:12px}
.listing-rating{display:flex;align-items:center;gap:5px}
.listing-rating-score{font-weight:800;color:var(--navy);font-size:15px}
.listing-rating-stars{color:var(--gold);font-size:13px;letter-spacing:1px}
.listing-rating-count{font-size:13px;color:var(--text-light)}
.listing-meta-item{display:flex;align-items:center;gap:4px;font-size:13px;color:var(--text-light)}
.listing-services{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:14px}
.listing-bottom{display:flex;justify-content:space-between;align-items:center;padding-top:14px;border-top:1px solid var(--border);gap:12px;flex-wrap:wrap}
.listing-price{display:flex;align-items:baseline;gap:6px}
.listing-price-label{font-size:12px;color:var(--text-light)}
.listing-price-val{font-size:17px;font-weight:800;color:var(--green)}
.listing-price-note{font-size:12px;color:var(--text-light)}
.listing-actions{display:flex;gap:8px}
.listing-btn{padding:10px 18px;border-radius:var(--radius-sm);font-size:13.5px;font-weight:600;cursor:pointer;transition:all .2s;border:none;font-family:inherit;display:flex;align-items:center;gap:6px}
.btn-call-sm{background:var(--orange);color:white;box-shadow:0 2px 6px rgba(232,113,42,.25)}
.btn-call-sm:hover{background:var(--orange-hover);transform:translateY(-1px)}
.btn-profile-sm{background:var(--white);color:var(--blue);border:1.5px solid var(--blue)!important}
.btn-profile-sm:hover{background:var(--blue-pale)}
.sponsored-label{position:absolute;top:12px;right:16px;font-size:10px;color:var(--text-light);text-transform:uppercase;letter-spacing:.06em;font-weight:600}

/* ===== FILTER BAR ===== */
.filter-bar{background:var(--white);border-bottom:1px solid var(--border);padding:16px 0;position:sticky;top:62px;z-index:90;box-shadow:var(--shadow-sm)}
.filter-bar .container{display:flex;gap:10px;align-items:center;flex-wrap:wrap}
.filter-group{display:flex;align-items:center;gap:6px}
.filter-group label{font-size:12px;font-weight:700;color:var(--text-light);text-transform:uppercase;letter-spacing:.05em;white-space:nowrap}
.filter-select{padding:9px 32px 9px 12px;border:1.5px solid var(--border);border-radius:var(--radius-sm);font-size:14px;font-family:inherit;color:var(--text);background:var(--bg) url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236B7D92' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 12px center;appearance:none;cursor:pointer;outline:none}
.filter-btn{padding:9px 18px;background:var(--blue);color:white;border:none;border-radius:var(--radius-sm);font-size:14px;font-weight:600;cursor:pointer;font-family:inherit}
.filter-btn:hover{background:var(--navy)}

/* ===== PAGINATION ===== */
.pagination{display:flex;justify-content:center;align-items:center;gap:6px;margin-top:32px}
.page-numbers{width:40px;height:40px;display:flex;align-items:center;justify-content:center;border:1px solid var(--border);border-radius:var(--radius-sm);font-size:14px;font-weight:600;color:var(--text-mid);background:var(--white);transition:all .2s}
.page-numbers:hover{border-color:var(--blue);color:var(--blue)}
.page-numbers.current{background:var(--blue);color:white;border-color:var(--blue)}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px){
  .hero .container{grid-template-columns:1fr}
  .hero-card{display:none}
  .hero h1{font-size:38px}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .trust-grid{grid-template-columns:repeat(3,1fr)}
  .pricing-layout{grid-template-columns:1fr}
  .plumber-cta .container{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:repeat(2,1fr)}
  .testimonials-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  .top-bar{display:none}
  .main-nav{display:none}
  .mobile-menu-toggle{display:block}
  .hero{padding:48px 0}
  .hero h1{font-size:30px}
  .hero-sub{font-size:16px}
  .hero-search{flex-direction:column}
  .hero-search select{max-width:100%}
  .hero-trust{flex-direction:column;gap:10px}
  .steps-grid{grid-template-columns:1fr;gap:28px}
  .steps-grid::before{display:none}
  .services-grid{grid-template-columns:1fr}
  .trust-grid{grid-template-columns:repeat(2,1fr)}
  .testimonials-grid{grid-template-columns:1fr}
  .section-title{font-size:28px}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;text-align:center}
  .filter-bar .container{flex-direction:column;align-items:stretch}
  .listing-top{flex-direction:column}
  .listing-bottom{flex-direction:column;align-items:flex-start}
  .listing-actions{width:100%}
  .listing-actions .listing-btn{flex:1;justify-content:center}
}
