.filter-box {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin: 30px 0;
}

.filter-box input,
.filter-box select,
.filter-box button {
    padding: 13px 14px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
}

.filter-box button {
    background: #111827;
    color: #ffffff;
    border-color: #111827;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.filter-box button:hover {
    background: #1f2937;
    border-color: #1f2937;
}


/* ===== Business Grid ===== */

.business-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;

    margin-top: 40px;
}

/* ===== Card ===== */

.business-card {
    background: #ffffff;

    border: 1px solid #e5e7eb;
    display: grid;
    border-radius: 24px;

    padding: 28px;

    transition: 0.3s ease;

    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.business-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);

    border-color: #dbeafe;
}

/* ===== Top ===== */

.business-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    margin-bottom: 18px;
}

.business-industry {
    display: inline-block;

    padding: 6px 12px;

    border-radius: 999px;

    background: #eff6ff;

    color: #2563eb;

    font-size: 12px;
    font-weight: 700;

    margin-bottom: 14px;
}

.business-top h2 {
    font-size: 24px;
    color: #111827;
}

/* ===== Verified ===== */

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

    padding: 8px 12px;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 700;
}

/* ===== Meta ===== */

.business-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;

    margin-bottom: 18px;
}

.business-meta span {
    background: #f8fafc;

    padding: 8px 12px;

    border-radius: 10px;

    font-size: 13px;

    color: #475569;
}

/* ===== Description ===== */

.business-description {
    font-size: 15px;

    line-height: 1.7;

    color: #6b7280;

    margin-bottom: 24px;
}

/* ===== Contact ===== */

.business-contact {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    padding-top: 18px;

    border-top: 1px solid #f1f5f9;

    margin-bottom: 24px;
}

.business-contact div {
    font-size: 14px;
    color: #475569;
}

/* ===== Buttons ===== */

.business-actions {
    display: flex;
    gap: 14px;
}

.view-profile-btn {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 14px;

    border-radius: 12px;

    border: 1px solid #d1d5db;

    text-decoration: none;

    color: #111827;

    font-weight: 700;

    transition: 0.25s ease;
}

.view-profile-btn:hover {
    background: #f8fafc;
}

.get-quote-btn {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 14px;

    border-radius: 12px;

    background: #111827;

    color: #ffffff;

    text-decoration: none;

    font-weight: 700;

    transition: 0.25s ease;
}

.get-quote-btn:hover {
    background: #1f2937;
}
/* ===== Page shell ===== */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #111827;
    background: #f8fafc;
}

.page-navbar {
    height: 76px;
    padding: 0 48px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-link {
    color: #111827;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.page-nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.page-nav-links a {
    color: #111827;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.page-nav-links .primary-link {
    padding: 11px 18px;
    border-radius: 10px;
    background: #2563eb;
    color: #ffffff;
}

.page-container {
    width: min(1180px, calc(100% - 48px));
    margin: 42px auto 80px;
}

.narrow-container {
    max-width: 860px;
}

.page-heading span {
    display: inline-block;
    margin-bottom: 10px;
    padding: 7px 14px;
    border-radius: 999px;
    background: #eaf3ff;
    color: #2563eb;
    font-size: 12px;
    font-weight: 800;
}

.page-heading h1 {
    margin: 0 0 10px;
    font-size: 42px;
}

.page-heading p {
    margin: 0;
    color: #6b7280;
}

.result-summary {
    margin: 8px 0 20px;
    color: #475569;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.result-summary a,
.back-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 700;
}

.empty-state,
.profile-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.empty-state a {
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;
}

.profile-card {
    margin-top: 20px;
}

.profile-card h1 {
    margin: 14px 0 16px;
    font-size: 40px;
}

.profile-meta {
    margin-bottom: 22px;
}

.profile-description {
    color: #475569;
    font-size: 17px;
    line-height: 1.7;
}

.profile-info-grid {
    margin: 28px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.profile-info-grid div {
    background: #f8fafc;
    border-radius: 16px;
    padding: 18px;
}

.profile-info-grid p {
    margin: 8px 0 0;
    color: #475569;
}

.profile-actions {
    display: flex;
    gap: 14px;
}

.success-card {
    border-color: #bbf7d0;
}

.demo-warning {
    margin-top: 18px;
    padding: 14px 16px;
    background: #fff7ed;
    color: #9a3412;
    border-radius: 12px;
    font-size: 14px;
}

@media (max-width: 900px) {
    .page-navbar {
        height: auto;
        padding: 20px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .page-nav-links,
    .result-summary,
    .profile-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-box,
    .business-grid,
    .profile-info-grid {
        grid-template-columns: 1fr;
    }

    .profile-page-top {
        margin-bottom: 18px;
    }

    .profile-back-link {
        margin-left: 0;
    }

}

/* ===== Extra search and demo-data UI ===== */
.quick-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: -10px 0 24px;
}

.quick-filter-row a {
    display: inline-block;
    padding: 9px 12px;
    border-radius: 999px;
    background: #eef2ff;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.quick-filter-row a:hover {
    background: #dbeafe;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.tag-row span {
    padding: 7px 10px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    font-size: 12px;
    font-weight: 700;
}

.area-line {
    margin: -4px 0 18px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
}

.profile-subheading {
    margin: 28px 0 12px;
    color: #111827;
    font-size: 18px;
}

.profile-tags {
    margin-bottom: 24px;
}

.empty-state {
    grid-column: 1 / -1;
}

.single-action {
    max-width: 280px;
}

.session-listing-note {
    margin-top: 12px;
    color: #2563eb;
    font-weight: 700;
    font-size: 14px;
}


.profile-cover-image {
    width: 100%;
    height: 220px;
    border-radius: 20px;
    object-fit: cover;
    margin-bottom: 22px;
    border: 1px solid #e5e7eb;
}

.profile-title-row {
    display: flex;
    gap: 16px;
    align-items: center;
}

.profile-logo-image {
    width: 76px;
    height: 76px;
    border-radius: 18px;
    object-fit: cover;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
}

@media (max-width: 700px) {
    .profile-title-row {
        align-items: flex-start;
        flex-direction: column;
    }
}


.profile-page-top {
    margin-bottom: 20px;
}

.profile-back-link {
    display: inline-block;
    margin: 0 0 14px 2px;
}

.profile-search-shell {
    padding: 24px 26px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.profile-search-shell__header {
    margin-bottom: 14px;
}

.profile-search-shell__header span {
    display: inline-block;
    margin-bottom: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: #eaf3ff;
    color: #2563eb;
    font-size: 12px;
    font-weight: 800;
}

.profile-search-shell__header p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

.profile-search-form {
    margin: 0;
    grid-template-columns: 1.15fr 1fr 1fr 1fr auto;
    align-items: center;
}

.profile-search-form input,
.profile-search-form select,
.profile-search-form button {
    min-height: 50px;
}

.profile-search-form input,
.profile-search-form select {
    width: 100%;
}

.profile-search-form button {
    min-width: 132px;
}
