/* ══════════════════════════════════════════════════════════════════
   Wrkbid SEO Landing Pages (Phase 1B) — shared stylesheet for
   /vendors/{city}, /{service}, /{service}/{city}
   Reuses the same visual language as public/css/articles.css so these
   pages read as part of the same site, not a bolted-on directory.
   ══════════════════════════════════════════════════════════════════ */

/* ── Breadcrumb header (same gradient as .article-header) ── */
.seo-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
    padding: 32px 20px 26px;
}
.seo-header .breadcrumb { margin-bottom: 0; }
.seo-header .breadcrumb-item a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.84rem;
}
.seo-header .breadcrumb-item a:hover { color: #87cb00; }
.seo-header .breadcrumb-item.active {
    color: rgba(255,255,255,0.38);
    font-size: 0.84rem;
}
.seo-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.25); }

/* ── Hero (green left-border accent, per the site's UI Design System) ── */
.seo-hero {
    border-left: 4px solid #87cb00;
    background: #fff;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,.07);
    padding: 1.5rem 1.75rem;
    margin-bottom: 1.5rem;
}
.seo-hero h1 {
    font-size: 1.65rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 0.4rem;
}
@media (max-width: 576px) { .seo-hero h1 { font-size: 1.3rem; } }
.seo-stat-row {
    display: flex;
    gap: 1.75rem;
    flex-wrap: wrap;
    margin-top: 0.65rem;
}
.seo-stat { display: flex; flex-direction: column; }
.seo-stat b {
    font-size: 1.1rem;
    font-weight: 800;
    color: #5f8f00;
    font-variant-numeric: tabular-nums;
}
.seo-stat span {
    color: #aaa;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
}

/* ── Panel card (matches the site's .panel-card pattern) ── */
.seo-panel {
    background: #fff;
    border: 1px solid #e4e8ed;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,.07);
    padding: 1.5rem 1.75rem;
    margin-bottom: 1.25rem;
}
.seo-section-label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6b6b6b;
    border-bottom: 2px solid #87cb00;
    display: inline-block;
    padding-bottom: 0.3rem;
    margin: 0 0 1rem;
}
.seo-intro-copy {
    font-size: 1rem;
    line-height: 1.75;
    color: #2d2d2d;
    margin: 0;
}

/* ── Vendor listing grid (read-only — no selection checkbox, unlike
     the internal selectVendor.blade.php vendor-card) ── */
.seo-vendor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media (max-width: 640px) { .seo-vendor-grid { grid-template-columns: 1fr; } }
.seo-vendor-card {
    border: 1px solid #e4e8ed;
    border-radius: 10px;
    padding: 1rem 1.1rem;
    background: #fafbf8;
}
.seo-vendor-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
}
.seo-vendor-name { font-weight: 800; font-size: 0.95rem; margin: 0; color: #1a1a2e; }
.seo-vendor-loc { font-size: 0.76rem; color: #aaa; margin-top: 0.15rem; }
.seo-badge-verified {
    background: #eef1ff;
    color: #3a4fb0;
    font-size: 0.62rem;
    font-weight: 800;
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.seo-stars { color: #e8a400; font-size: 0.85rem; letter-spacing: 1px; margin-top: 0.4rem; }
.seo-vendor-meta {
    display: flex;
    gap: 0.9rem;
    margin-top: 0.5rem;
    font-size: 0.78rem;
    color: #666;
}
.seo-vendor-meta b { color: #1a1a2e; font-variant-numeric: tabular-nums; }

/* ── Cross-link grid (browse by category / browse by city) ── */
.seo-link-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
}
@media (max-width: 640px) { .seo-link-grid { grid-template-columns: 1fr; } }
.seo-link-chip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #e4e8ed;
    border-radius: 8px;
    padding: 0.6rem 0.85rem;
    text-decoration: none;
    color: #1a1a2e;
    font-weight: 700;
    font-size: 0.86rem;
    background: #fff;
    transition: 0.15s;
}
.seo-link-chip:hover { border-color: #87cb00; background: #f2fae0; color: #1a1a2e; }
.seo-link-chip small { color: #aaa; font-weight: 600; font-variant-numeric: tabular-nums; }

/* ── Sidebar CTA (reuses the articles system's sidebar-cta-card look) ── */
.seo-cta-card {
    background: #f0f8e8;
    border: 1px solid #c8e8a0 !important;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}
.seo-cta-card h5 { font-weight: 800; color: #1a1a2e; font-size: 1rem; margin-bottom: 0.4rem; }
.seo-cta-card p { font-size: 0.87rem; color: #666; margin-bottom: 1.1rem; }

/* ── FAQ accordion (matches the About page's accordion styling) ── */
.seo-faq-accordion .accordion-button {
    font-weight: 600;
    color: #1a1a2e;
    background: #fff;
}
.seo-faq-accordion .accordion-button:not(.collapsed) {
    color: #5f8f00;
    background-color: #f2fae0;
    box-shadow: none;
}
.seo-faq-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(135, 203, 0, 0.2);
}
