/**
 * BizConnect - Modern SaaS Stylesheet
 */

:root {
    --primary: #2563EB;
    --primary-hover: #1D4ED8;
    --primary-light: #EFF6FF;
    --secondary: #0F172A;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #06B6D4;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-900: #0F172A;
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--gray-700);
    background-color: var(--gray-50);
    line-height: 1.6;
}

/* Navbar */
.navbar-custom {
    background-color: #FFFFFF;
    border-bottom: 1px solid var(--gray-200);
}
.brand-logo {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.02em;
    text-decoration: none;
}
.brand-logo span {
    color: var(--primary);
}

/* Hero Section */
.hero-banner {
    background: radial-gradient(circle at top right, #EEF2FF 0%, #FFFFFF 60%);
    padding: 4.5rem 0 3.5rem;
    border-bottom: 1px solid var(--gray-200);
}

/* Search Bar Box */
.discovery-search-box {
    background: #FFFFFF;
    border-radius: var(--radius-xl);
    padding: 0.6rem;
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.12), 0 8px 10px -6px rgba(37, 99, 235, 0.05);
    border: 1px solid var(--gray-200);
}
.discovery-search-box .form-control {
    border: none;
    box-shadow: none;
    font-size: 1.05rem;
}

/* Category Pills & Cards */
.category-card {
    background: #FFFFFF;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1rem;
    text-align: center;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    color: var(--gray-900);
    display: block;
}
.category-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    color: var(--primary);
}
.category-icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

/* Business & Product Cards */
.biz-card {
    background: #FFFFFF;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.biz-card:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
.biz-badge-verified {
    background-color: #ECFDF5;
    color: #047857;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid #A7F3D0;
}
.rating-pill {
    background: #FEF3C7;
    color: #B45309;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

/* Price Comparison Table */
.compare-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}
.compare-table th {
    background: var(--gray-100);
    font-weight: 600;
    padding: 0.85rem 1rem;
    color: var(--gray-700);
    border-bottom: 2px solid var(--gray-200);
}
.compare-table td {
    padding: 1rem;
    vertical-align: middle;
    border-bottom: 1px solid var(--gray-200);
    background: #FFFFFF;
}
.compare-table tr:hover td {
    background-color: var(--primary-light);
}

/* Leads Kanban Pipeline (Section 24) */
.kanban-board {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}
.kanban-column {
    flex: 0 0 280px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 1rem;
    min-height: 480px;
}
.kanban-card {
    background: #FFFFFF;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom: 0.75rem;
    box-shadow: var(--shadow-sm);
}
.kanban-card:hover {
    box-shadow: var(--shadow-md);
}

/* Dashboard Sidebar */
.dashboard-sidebar {
    background: #FFFFFF;
    border-right: 1px solid var(--gray-200);
    min-height: calc(100vh - 65px);
}
.dashboard-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1.25rem;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-md);
    margin: 0.15rem 0.75rem;
    transition: all 0.15s ease;
}
.dashboard-nav-item:hover, .dashboard-nav-item.active {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
}

/* Badges */
.badge-starter {
    background-color: #DBEAFE;
    color: #1E40AF;
    font-weight: 600;
}
.badge-annual {
    background-color: #FEF3C7;
    color: #92400E;
    font-weight: 600;
}
