/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    margin-top: 20px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
}

.breadcrumb a:hover {
    opacity: 1;
}

/* Companies Section */
.companies-section {
    padding: 60px 0;
    background: white;
}

.search-bar {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto 50px;
}

.search-bar input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
}

.search-bar input:focus {
    outline: none;
    border-color: #2563eb;
}

.btn-search {
    padding: 15px 40px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-search:hover {
    background: #1e40af;
}

/* Companies Grid */
.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.company-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.company-card:hover {
    border-color: #2563eb;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37,99,235,0.15);
}

.company-logo {
    width: 120px;
    height: 120px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 48px;
    font-weight: 700;
    color: #2563eb;
    border: 3px solid #e2e8f0;
}

.company-name {
    font-size: 24px;
    color: #1e3a8a;
    margin-bottom: 10px;
    font-weight: 700;
}

.company-products-count {
    color: #64748b;
    margin-bottom: 20px;
    font-size: 15px;
}

.btn-view-products {
    padding: 12px 30px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.btn-view-products:hover {
    background: #1e40af;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }

    .companies-grid {
        grid-template-columns: 1fr;
    }

    .search-bar {
        flex-direction: column;
    }
}
