/* Bottom Fixed Navigation - Professional Rectangular Style */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: stretch;
    padding: 0;
    z-index: 99999;
}

.bottom-nav-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 0;
}

.bottom-nav-btn.call {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #ffffff;
}

.bottom-nav-btn.quote {
    background: linear-gradient(135deg, #ff8c00 0%, #ff4500 100%);
    color: #ffffff;
}

.bottom-nav-btn:hover {
    filter: brightness(1.1);
}

.bottom-nav-btn:active {
    transform: translateY(0);
}

.bottom-nav-btn i {
    margin-right: 12px;
    font-size: 1.2rem;
}

/* Hide or adjust on large screens */
@media (min-width: 1024px) {
    .bottom-nav {
        display: none;
        /* Often hidden on desktop as navbar is enough */
    }
}