/* Responsive Fixed Button Container */
.fixed-button-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    z-index: 100;
}

/* Base button style */
.nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.nav-btn:hover {
    transform: translateY(-3px);
}

/* Specific button themes */
.btn-home-styled {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-whatsapp-styled {
    background: #25D366;
    color: white;
}

/* Mobile adjustments */
@media (max-width: 640px) {
    .fixed-button-container {
        bottom: 15px;
        left: 10px;
        right: 10px;
        gap: 8px;
    }
    .nav-btn {
        padding: 10px 14px;
        font-size: 12px;
        flex: 1; /* Makes both buttons take equal width */
        justify-content: center;
    }
    /* Optional: Hide text on very small screens to keep only icons */
    /* .nav-btn span { display: none; } */
}