/* Custom styles to complement Bootstrap */

/* Card enhancements */
.software-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.software-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Badge styling */
.badge-traffic {
    background-color: var(--bs-info);
    color: var(--bs-dark);
}

.badge-pricing {
    font-weight: 500;
}

.badge-pricing.free {
    background-color: var(--bs-success);
}

.badge-pricing.freemium {
    background-color: var(--bs-info);
}

.badge-pricing.paid {
    background-color: var(--bs-warning);
}

.badge-pricing.enterprise {
    background-color: var(--bs-danger);
}

/* Feature list styling */
.feature-list {
    list-style-type: none;
    padding-left: 0;
}

.feature-list li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--bs-info);
}

/* Hero section */
.hero-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--bs-dark) 0%, #343a40 100%);
}

.hero-section p {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
}

/* API Integration Badge */
.api-badge {
    display: inline-block;
    background-color: var(--bs-primary);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.api-features {
    background-color: rgba(13, 110, 253, 0.05);
    padding: 0.5rem;
    border-radius: 0.25rem;
    margin-top: 0.5rem;
    border-left: 3px solid var(--bs-primary);
}

/* Compare table */
.compare-table th {
    min-width: 150px;
}

.compare-table .feature-yes {
    color: var(--bs-success);
}

.compare-table .feature-no {
    color: var(--bs-danger);
}

/* Logo styling */
.navbar-brand img {
    height: 30px;
    margin-right: 10px;
}

/* Dashboard image container */
.dashboard-img-container {
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    margin: 1.5rem 0;
}

/* Result filtering sidebar */
.filter-sidebar {
    position: sticky;
    top: 1rem;
}

/* Ease of use indicator */
.ease-of-use {
    display: flex;
    align-items: center;
}

.ease-of-use-dots {
    display: inline-flex;
    margin-left: 0.5rem;
}

.ease-of-use-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 4px;
    background-color: var(--bs-secondary);
}

.ease-of-use-dot.active {
    background-color: var(--bs-info);
}

/* Form styling */
.form-box {
    border-radius: 1rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Footer styling */
footer {
    margin-top: 3rem;
    padding: 2rem 0;
    background-color: rgba(0, 0, 0, 0.2);
}
