/* Plumber Buttom - Mobile Bottom Navigation Styles */

.plumber-buttom-nav-wrapper {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    padding: 0 20px;
    z-index: 9999;
}

/* Only show on mobile devices */
@media (max-width: 768px) {
    .plumber-buttom-nav-wrapper {
        display: block;
    }
}

.plumber-buttom-nav-container {
    max-width: 400px;
    margin: 0 auto;
    background-color: #0F172A;
    border-radius: 28px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    height: 88px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
}

.plumber-buttom-nav-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 10;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.plumber-buttom-nav-item:hover {
    color: rgba(255, 255, 255, 0.7);
}

.plumber-buttom-nav-item.active {
    color: #FACC15;
}

.plumber-buttom-active-pill {
    position: absolute;
    background-color: rgba(37, 99, 235, 0.25);
    width: 50px;
    height: 50px;
    border-radius: 16px;
    z-index: 0;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(37, 99, 235, 0.4);
}

.plumber-buttom-nav-item.active .plumber-buttom-active-pill {
    opacity: 1;
    transform: scale(1.1);
}

.plumber-buttom-nav-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plumber-buttom-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
    transition: transform 0.3s ease;
}

.plumber-buttom-nav-item.active .plumber-buttom-icon {
    transform: scale(1.2);
}

.plumber-buttom-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.plumber-buttom-indicator {
    position: absolute;
    bottom: -8px;
    width: 20px;
    height: 3px;
    background-color: #FACC15;
    border-radius: 10px;
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(250, 204, 21, 0.5);
}

.plumber-buttom-nav-item.active .plumber-buttom-indicator {
    opacity: 1;
    transform: scaleX(1);
}

/* Add padding to body on mobile to prevent content from being hidden behind navigation */
@media (max-width: 768px) {
    body {
        padding-bottom: 100px;
    }
}
