/* ==========================================================================
   PressureWashingDir.com - Master UI Design System
   Identity: Plus Jakarta Sans • Navy & Electric Cyan • Emerald Green & Gold
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Primary Color Palette from Brand Identity */
    --color-navy: #0B192C;
    --color-slate-navy: #1E293B;
    --color-blue: #0284C7;
    --color-blue-hover: #0369A1;
    --color-cyan: #38BDF8;
    --color-green: #16A34A;
    --color-green-hover: #15803D;
    --color-amber: #F59E0B;
    --color-amber-dark: #D97706;
    
    /* Surfaces & Borders */
    --bg-page: #F8FAFC;
    --bg-card: #FFFFFF;
    --border-light: #E2E8F0;
    --border-card: #CBD5E1;
    
    /* Typography Colors */
    --text-heading: #0B192C;
    --text-body: #334155;
    --text-muted: #64748B;
    --text-light: #94A3B8;

    /* Shadows & Radii */
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.07), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --shadow-lg: 0 10px 25px -5px rgb(0 0 0 / 0.08), 0 8px 10px -6px rgb(0 0 0 / 0.04);
    --shadow-float: 0 16px 36px -8px rgba(11, 25, 44, 0.14);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 9999px;
    
    --max-width: 1240px;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-body);
    background-color: var(--bg-page);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    color: var(--color-blue);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--color-blue-hover);
}

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.brand-logo-link {
    display: flex;
    align-items: center;
}

.brand-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.site-nav a {
    color: var(--color-slate-navy);
    font-weight: 600;
    font-size: 15px;
}

.site-nav a:hover {
    color: var(--color-blue);
}

.btn-add-biz {
    background: var(--color-blue);
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(2, 132, 199, 0.25);
}

.btn-add-biz:hover {
    background: var(--color-blue-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
}

/* ==========================================================================
   Full-Bleed Hero Banner
   ========================================================================== */
.hero-banner {
    position: relative;
    background: #0B192C url('/assets/images/pressure-bg.webp') no-repeat right 30%;
    background-size: cover;
    padding: 100px 0 70px;
    min-height: 520px;
    display: flex;
    align-items: center;
}

/* Left-to-Right Gradient Fade */
.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0.98) 42%, rgba(255, 255, 255, 0.78) 58%, rgba(255, 255, 255, 0.15) 85%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text-content {
    max-width: 600px;
    margin-bottom: 36px;
}

.hero-text-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.text-blue {
    color: var(--color-blue);
    display: inline;
}

.hero-text-content p {
    font-size: 1.15rem;
    color: var(--text-body);
    line-height: 1.6;
    font-weight: 500;
}

/* Floating Search Bar */
.search-floating-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 36px rgba(11, 25, 44, 0.12);
    padding: 10px 16px;
    position: relative;
    z-index: 50;
    margin: 0;
    max-width: 100%;
}

.search-form-grid {
    display: grid;
    grid-template-columns: 1.3fr 1.6fr 1.1fr auto;
    gap: 12px;
    align-items: center;
}

.search-field-group {
    padding: 8px 16px;
    border-right: 1px solid var(--border-light);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.search-field-group:last-of-type {
    border-right: none;
}

.search-field-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.6px;
    margin-bottom: 2px;
}

.search-field-input, .search-field-select {
    width: 100%;
    border: none;
    outline: none;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-heading);
    background: transparent;
    padding: 4px 0;
    box-shadow: none;
}

.search-field-input:focus, .search-field-select:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

.search-field-select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230284c7' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 4px center;
    background-size: 14px;
    padding-right: 24px;
}

.search-field-input::placeholder {
    color: #94A3B8;
    font-weight: 500;
}

.btn-search {
    background: var(--color-blue);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-search:hover {
    background: var(--color-blue-hover);
    transform: translateY(-1px);
}

.search-results-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    max-height: 360px;
    overflow-y: auto;
    display: none;
    z-index: 100;
}

.search-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-heading);
    transition: background 0.15s ease;
}

.search-result-item:hover {
    background: #F0F9FF;
    color: var(--color-blue);
}

.search-result-badge {
    font-size: 12px;
    font-weight: 700;
    background: #E0F2FE;
    color: var(--color-blue);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}

/* ==========================================================================
   Trust Bar Standalone Section
   ========================================================================== */
.trust-bar-section {
    background: #ffffff;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 24px 0;
}

.trust-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.trust-icon-circle.blue {
    background: #E0F2FE;
    color: var(--color-blue);
}

.trust-icon-circle.gold {
    background: #FEF3C7;
    color: var(--color-amber-dark);
}

.trust-icon-circle.green {
    background: #DCFCE7;
    color: var(--color-green);
    font-weight: 800;
}

.trust-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-navy);
}

.trust-item span {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}

/* ==========================================================================
   Popular Services Horizontal Selector
   ========================================================================== */
.services-section {
    padding: 40px 0 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.service-box {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 18px 14px;
    text-align: center;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-sm);
}

.service-box:hover {
    border-color: var(--color-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.service-box-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #F0F9FF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--color-blue);
}

.service-box-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-navy);
}

/* ==========================================================================
   2-Column Layout with Sticky Sidebar
   ========================================================================== */
.layout-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: flex-start;
}

.main-column {
    min-width: 0;
}

.sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 96px;
}

.sidebar-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-sm);
}

.sidebar-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 4px;
}

.sidebar-card-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.nearby-cities-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.nearby-city-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: #F8FAFC;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--color-navy);
    transition: all 0.15s ease;
}

.nearby-city-item:hover {
    background: #F0F9FF;
    border-color: var(--color-blue);
    transform: translateX(3px);
}

.nearby-city-item strong {
    display: block;
    font-size: 13.5px;
    color: var(--color-navy);
}

.nearby-city-item span {
    font-size: 11.5px;
    color: var(--text-muted);
}

.nearby-city-arrow {
    color: var(--color-blue);
    font-weight: 800;
}

.sidebar-view-all {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-blue);
    text-align: right;
    margin-top: 8px;
}

/* Sidebar Recent Posts Loop */
.sidebar-posts-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 14px;
}

.sidebar-post-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.sidebar-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-post-thumb {
    width: 68px;
    height: 68px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: #0B192C;
}

.sidebar-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-post-info {
    flex: 1;
    min-width: 0;
}

.sidebar-post-tag {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-blue);
    background: #E0F2FE;
    padding: 2px 7px;
    border-radius: var(--radius-pill);
    display: inline-block;
    margin-bottom: 4px;
}

.sidebar-post-title {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.35;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-post-title:hover {
    color: var(--color-blue);
}

.sidebar-post-date {
    font-size: 11px;
    color: var(--text-light);
}

.contractor-cta-card {
    background: linear-gradient(145deg, #F0F9FF 0%, #E0F2FE 100%);
    border: 1.5px solid #BAE6FD;
}

/* ==========================================================================
   Services Sectors 2x2 Grid
   ========================================================================== */
.services-sector-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.sector-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.sector-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-blue);
    transform: translateY(-2px);
}

.sector-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-light);
}

.sector-icon {
    font-size: 28px;
    width: 48px;
    height: 48px;
    background: #F0F9FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sector-title {
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.25;
}

.sector-subtitle {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--color-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-top: 2px;
}

.sector-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.sector-checklist li {
    font-size: 13.5px;
    color: var(--text-body);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.45;
}

.check-icon {
    color: var(--color-green);
    font-weight: 800;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ==========================================================================
   3-Step Contractor Hiring Process
   ========================================================================== */
.hiring-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.hiring-step-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all 0.2s ease;
}

.hiring-step-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-blue);
    transform: translateY(-2px);
}

.step-num-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--color-navy);
    color: var(--color-amber);
    font-size: 15px;
    font-weight: 800;
    border-radius: 10px;
    margin-bottom: 14px;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.step-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   Business Profile Specific Components
   ========================================================================== */
.btn-directions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #0B192C;
    color: #ffffff !important;
    font-size: 13.5px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    text-align: center;
    transition: all 0.2s ease;
}

.btn-directions:hover {
    background: var(--color-blue);
    transform: translateY(-1px);
}

/* Data Accuracy Notice */
.data-accuracy-banner {
    background: #FFFBEB;
    border: 1px solid #FDE68A;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.btn-request-changes {
    background: #0B192C;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.btn-request-changes:hover {
    background: var(--color-blue);
}

/* Other Contractors Grid (3-Columns) */
.other-contractors-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
}

.other-contractor-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.2s ease;
    min-width: 0;
    overflow: hidden;
}

.other-contractor-card:hover {
    border-color: var(--color-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.other-contractor-title {
    font-size: 13.5px;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-check-contractor {
    display: block;
    background: #F0F9FF;
    border: 1px solid #BAE6FD;
    color: var(--color-blue) !important;
    font-size: 12.5px;
    font-weight: 700;
    text-align: center;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    transition: all 0.15s ease;
}

.btn-check-contractor:hover {
    background: var(--color-blue);
    color: #ffffff !important;
    border-color: var(--color-blue);
}

/* Recommendations Box */
.recommendations-box {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.recommendation-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.rec-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.rec-num {
    width: 28px;
    height: 28px;
    background: #E0F2FE;
    color: var(--color-blue);
    font-size: 13px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.disclaimer-card {
    background: #F8FAFC;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 16px 20px;
}

/* ==========================================================================
   Contractor Listing Cards
   ========================================================================== */
.contractor-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 24px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 24px;
    position: relative;
    transition: all 0.2s ease;
}

.contractor-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-card);
}

.contractor-card.featured {
    border: 2px solid #FEF3C7;
    background: #FFFFFA;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.08);
}

.card-image-wrap {
    width: 130px;
    height: 130px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    background: #0B192C;
}

.contractor-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-ribbon {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-navy);
    color: var(--color-amber);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    padding: 3px 0;
    letter-spacing: 0.5px;
}

.card-main-content {
    display: flex;
    flex-direction: column;
}

.top-pro-badge {
    font-size: 11px;
    font-weight: 800;
    color: var(--color-amber-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.contractor-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-navy);
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.25;
}

.verified-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: var(--color-blue);
    color: #ffffff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: bold;
}

.service-subtext {
    font-size: 13px;
    color: var(--text-muted);
    margin: 4px 0 10px;
}

/* Rating Row & Larger Stars */
.rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars-gold {
    color: var(--color-amber);
    letter-spacing: 2px;
    font-size: 22px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.rating-score {
    font-size: 15px;
    font-weight: 800;
    color: var(--color-navy);
}

.reviews-count-text {
    font-size: 13px;
    color: var(--color-blue);
    font-weight: 600;
}

.trust-badges-row {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-body);
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.trust-badge-item.verified {
    color: var(--color-green);
}

.location-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.pill-tags-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.pill-tag {
    font-size: 12px;
    font-weight: 600;
    background: #F1F5F9;
    color: var(--text-body);
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-light);
}

.actions-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-call-now {
    background: var(--color-green);
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 6px rgba(22, 163, 74, 0.25);
    transition: all 0.2s ease;
}

.btn-call-now:hover {
    background: var(--color-green-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.35);
}

.btn-quote-outline {
    background: #ffffff;
    border: 1.5px solid var(--color-blue);
    color: var(--color-blue) !important;
    font-size: 14px;
    font-weight: 700;
    padding: 11px 20px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.btn-quote-outline:hover {
    background: #F0F9FF;
}

/* Full Review Display at Card Bottom */
.card-review-bottom {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.review-author-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-navy);
    margin-bottom: 6px;
}

.review-author-line strong {
    font-weight: 800;
}

.review-sep {
    color: var(--text-light);
}

.stars-gold-review {
    color: var(--color-amber);
    letter-spacing: 1px;
    font-size: 15px;
    line-height: 1;
}

.review-full-text {
    font-size: 13.5px;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

/* ==========================================================================
   Blog Cards & Guides Styling
   ========================================================================== */
.blog-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(11, 25, 44, 0.09);
    border-color: #BAE6FD;
}

.blog-card-img-link {
    display: block;
    height: 220px;
    overflow: hidden;
    background: #0B192C;
    position: relative;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.06);
}

.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta-badge {
    font-size: 11px;
    font-weight: 800;
    color: var(--color-blue);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

.blog-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-blue);
    background: #E0F2FE;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    margin-bottom: 10px;
    align-self: flex-start;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.35;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.blog-title a {
    color: var(--color-navy);
    transition: color 0.2s ease;
}

.blog-card:hover .blog-title a,
.blog-title a:hover {
    color: var(--color-blue);
}

.blog-excerpt {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 18px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-light);
    padding-top: 14px;
    font-size: 13px;
    color: var(--text-light);
}

.blog-read-more {
    font-size: 13px;
    font-weight: 800;
    color: var(--color-blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.read-arrow {
    transition: transform 0.2s ease;
    display: inline-block;
}

.blog-card:hover .read-arrow {
    transform: translateX(4px);
}

/* ==========================================================================
   Editorial Blog Article Content Typography (Roofing Bonita Springs Style)
   ========================================================================== */
.blog-article-content {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-body);
}

.blog-article-content h2 {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--color-navy);
    margin: 36px 0 14px;
    padding-bottom: 8px;
    border-bottom: 1.5px solid var(--border-light);
    line-height: 1.3;
}

.blog-article-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-navy);
    margin: 26px 0 10px;
    line-height: 1.35;
}

.blog-article-content p {
    margin-bottom: 20px;
}

.blog-article-content ul,
.blog-article-content ol {
    margin: 16px 0 24px 24px;
    padding-left: 8px;
}

.blog-article-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.blog-article-content strong {
    color: var(--color-navy);
    font-weight: 700;
}

.blog-article-content blockquote {
    background: #F8FAFC;
    border-left: 4px solid var(--color-blue);
    padding: 20px 24px;
    margin: 28px 0;
    border-radius: 0 10px 10px 0;
    font-size: 15.5px;
    color: var(--color-navy);
    font-style: italic;
    line-height: 1.7;
}

.blog-table-wrap {
    overflow-x: auto;
    margin: 32px 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    background: #ffffff;
}

.blog-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    font-size: 14.5px;
    text-align: left;
}

.blog-table thead tr {
    background: #0B192C;
    color: #ffffff;
}

.blog-table th {
    padding: 14px 18px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
    border-bottom: 2px solid #0284C7;
}

.blog-table td {
    padding: 14px 18px;
    color: var(--text-body);
    border-bottom: 1px solid var(--border-light);
    line-height: 1.5;
}

.blog-table tbody tr:nth-child(even) {
    background: #F8FAFC;
}

.blog-table tbody tr:hover {
    background: #F0F9FF;
}

.blog-table strong {
    color: var(--color-navy);
    font-weight: 800;
}

/* ==========================================================================
   Section & Grids
   ========================================================================== */
.section {
    padding: 48px 0;
}

.section-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 28px;
}

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

.card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 22px;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-blue);
}

.card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 4px;
}

.card-meta {
    font-size: 13px;
    color: var(--text-muted);
}

/* State Shape Cards */
.state-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.state-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(11, 25, 44, 0.08);
    border-color: #BAE6FD;
}

.state-shape-wrap {
    width: 46px;
    height: 46px;
    background: #F0F9FF;
    border: 1px solid #BAE6FD;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.state-shape-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: invert(36%) sepia(91%) saturate(1450%) hue-rotate(178deg) brightness(92%) contrast(98%);
    transition: all 0.25s ease;
}

.state-card:hover .state-shape-wrap {
    background: var(--color-blue);
    border-color: var(--color-blue);
}

.state-card:hover .state-shape-img {
    filter: brightness(0) invert(1);
    transform: scale(1.08);
}

.state-badge-code {
    font-size: 11px;
    font-weight: 800;
    color: var(--color-navy);
    background: #F1F5F9;
    padding: 3px 8px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.5px;
}

.city-stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-pill);
    padding: 4px 10px;
    font-size: 12px;
    color: var(--text-body);
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

.city-stat-badge strong {
    color: var(--color-navy);
    font-weight: 800;
}

/* Map Container */
.map-container {
    height: 380px;
    width: 100%;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    margin: 24px 0;
    background: #e2e8f0;
}

/* Sort Pills */
.sort-pills {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.sort-pill {
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 700;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-pill);
    color: var(--text-muted);
}

.sort-pill.active {
    background: var(--color-navy);
    color: #ffffff;
    border-color: var(--color-navy);
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin: 20px 0;
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: var(--text-muted);
}

.breadcrumbs a:hover {
    color: var(--color-blue);
}

.breadcrumbs span {
    color: var(--text-light);
}

/* FAQs */
.faq-item {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-q {
    padding: 16px 20px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-main);
}

.faq-a {
    padding: 0 20px 16px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ==========================================================================
   State Page Styles (Option 1 Authority Hub)
   ========================================================================== */
.state-stats-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
    margin-bottom: 14px;
}

.state-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-pill);
    padding: 6px 14px;
    font-size: 13px;
    color: var(--text-body);
    box-shadow: var(--shadow-sm);
}

.state-stat-pill strong {
    color: var(--color-navy);
    font-weight: 800;
}

.state-search-box {
    margin-top: 20px;
}

.state-filter-input {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
    font-family: var(--font-main);
    color: var(--text-heading);
    background: #ffffff;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    outline: none;
    transition: all 0.2s ease;
}

.state-filter-input:focus {
    border-color: var(--color-blue);
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

/* Top Metros Grid */
.top-metros-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.metro-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 18px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.2s ease;
}

.metro-card:hover {
    border-color: var(--color-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.metro-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.25;
}

.metro-badge {
    font-size: 11px;
    font-weight: 800;
    color: var(--color-blue);
    background: #E0F2FE;
    padding: 3px 8px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

.btn-metro-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #F0F9FF;
    border: 1.5px solid #BAE6FD;
    color: var(--color-blue) !important;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-metro-link:hover {
    background: var(--color-blue);
    color: #ffffff !important;
    border-color: var(--color-blue);
    transform: translateY(-1px);
}

/* Alphabet Jump Bar */
.az-nav-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
    background: #ffffff;
    padding: 12px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.az-nav-btn {
    min-width: 32px;
    height: 32px;
    border: 1px solid var(--border-light);
    background: #F8FAFC;
    color: var(--color-navy);
    font-size: 13px;
    font-weight: 800;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    font-family: var(--font-main);
}

.az-nav-btn:hover:not(.disabled) {
    background: #E0F2FE;
    color: var(--color-blue);
    border-color: var(--color-blue);
}

.az-nav-btn.active {
    background: var(--color-navy);
    color: #ffffff;
    border-color: var(--color-navy);
}

.az-nav-btn.disabled {
    opacity: 0.35;
    cursor: not-allowed;
    background: transparent;
}

/* A-Z Letter Groups */
.az-letter-group {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.az-letter-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.az-letter-badge {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--color-navy);
    color: var(--color-amber);
    font-size: 16px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.az-cities-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px 16px;
}

.az-city-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    background: #F8FAFC;
    border: 1px solid transparent;
    color: var(--color-navy);
    font-size: 13.5px;
    transition: all 0.15s ease;
}

.az-city-link:hover {
    background: #F0F9FF;
    border-color: var(--color-blue);
    color: var(--color-blue);
    transform: translateX(2px);
}

.az-city-name {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.az-city-count {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    background: #ffffff;
    padding: 2px 6px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-light);
    margin-left: 6px;
    flex-shrink: 0;
}

/* Footer */
.site-footer {
    background: #ffffff;
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
    padding: 60px 0 30px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 105px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    margin-bottom: 18px;
}

.footer-col h4 {
    color: var(--color-navy);
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--color-blue);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
}

/* ==========================================================================
   Floating Cookie Consent Banner
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 480px;
    z-index: 99999;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 36px rgba(11, 25, 44, 0.18);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.cookie-banner.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-banner-inner {
    padding: 22px;
}

.cookie-banner-text {
    margin-bottom: 18px;
}

.cookie-banner-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-cookie-primary {
    background: var(--color-blue);
    color: #ffffff;
    border: none;
    font-size: 13.5px;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--font-main);
    transition: all 0.2s ease;
}

.btn-cookie-primary:hover {
    background: var(--color-blue-hover);
    transform: translateY(-1px);
}

.btn-cookie-secondary {
    background: #F8FAFC;
    color: var(--text-body);
    border: 1px solid var(--border-light);
    font-size: 13.5px;
    font-weight: 700;
    padding: 9px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--font-main);
    transition: all 0.2s ease;
}

.btn-cookie-secondary:hover {
    background: #F1F5F9;
}

/* ==========================================================================
   Blog & Article Content Styling
   ========================================================================== */
.blog-article-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-body);
}

.blog-article-content p {
    margin-bottom: 1.5rem;
}

.blog-article-content h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-top: 2.25rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-article-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

/* Article Lists (Unordered & Numbered) */
.blog-article-content ul,
.blog-article-content ol {
    margin: 1.25rem 0 1.75rem 0;
    padding-left: 1.5rem;
}

.blog-article-content ul {
    list-style-type: disc;
}

.blog-article-content ol {
    list-style-type: decimal;
}

.blog-article-content li {
    margin-bottom: 0.65rem;
    padding-left: 0.35rem;
    line-height: 1.7;
    color: var(--text-body);
    font-size: 1.02rem;
}

.blog-article-content li::marker {
    color: var(--color-blue);
    font-weight: 700;
}

.blog-article-content li strong {
    color: var(--color-navy);
}

.blog-article-content blockquote {
    border-left: 4px solid var(--color-blue);
    background: #F1F5F9;
    padding: 16px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--color-slate-navy);
}

.blog-article-content a.blog-link {
    color: var(--color-blue);
    text-decoration: underline;
    font-weight: 600;
}

.blog-article-content a.blog-link:hover {
    color: var(--color-blue-hover);
}

.blog-table-wrap {
    overflow-x: auto;
    margin: 1.75rem 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.blog-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14.5px;
    text-align: left;
    background: #ffffff;
}

.blog-table th {
    background: #F8FAFC;
    color: var(--color-navy);
    font-weight: 700;
    padding: 12px 16px;
    border-bottom: 2px solid var(--border-light);
}

.blog-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-body);
}

.blog-table tr:last-child td {
    border-bottom: none;
}

.blog-table tr:nth-child(even) td {
    background: #FAFBFD;
}

/* Responsive */
@media (max-width: 1024px) {
    .layout-with-sidebar { grid-template-columns: 1fr; }
    .sidebar-column { position: static; }
    .services-sector-grid { grid-template-columns: 1fr; }
    .hiring-steps-grid { grid-template-columns: 1fr; }
    .other-contractors-grid { grid-template-columns: repeat(2, 1fr); }
    .top-metros-grid { grid-template-columns: repeat(2, 1fr); }
    .az-cities-list { grid-template-columns: repeat(2, 1fr); }
    .search-form-grid { grid-template-columns: 1fr 1fr; }
    .search-field-group { border-right: none; border-bottom: 1px solid var(--border-light); }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .site-nav { display: none; }
    .contractor-card { grid-template-columns: 1fr; }
    .card-image-wrap { width: 90px; height: 90px; }
    .other-contractors-grid { grid-template-columns: 1fr; }
    .top-metros-grid { grid-template-columns: 1fr; }
    .az-cities-list { grid-template-columns: 1fr; }
    .search-form-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-text-content h1 { font-size: 2.2rem; }
    .hero-banner { padding: 60px 0 40px; }
}
