/* Hide by default */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 767px) {

    .mobile-bottom-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;

        position: fixed;
        bottom: 15px;
        left: 10px;
        right: 10px;

        height: 65px;
        padding: 0 20px;

        background: rgba(26, 15, 8, 0.85);
        backdrop-filter: blur(10px);

        border-radius: 40px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.4);

        z-index: 9999;

        transition: transform 0.4s ease;
    }

    /* Hide on scroll */
    .mobile-bottom-nav.hide {
        transform: translateY(120px);
    }

    /* Nav Items */
    .nav-item {
        text-align: center;
        color: #F5E6C8;
        font-size: 12px;
        text-decoration: none;
        position: relative;
    }

    .nav-item i {
        display: block;
        font-size: 20px;
        margin-bottom: 2px;
    }

    /* Active Glow */
    .nav-item:active {
        color: #FFD700;
        text-shadow: 0 0 10px rgba(255,215,0,0.8);
        transform: scale(1.1);
    }

    /* Call */
    .call { color: #28a745; }

    /* Package */
    .package { color: #FFD700; }

    /* CENTER FLOATING WHATSAPP */
    .whatsapp-center {
        position: absolute;
        top: -25px;
        left: 50%;
        transform: translateX(-50%);

        width: 60px;
        height: 60px;
        background: #25D366;
        color: #fff;

        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 26px;

        box-shadow: 0 5px 15px rgba(0,0,0,0.4);

        animation: pulse 1.5s infinite;
    }

    .whatsapp-center:active {
        transform: translateX(-50%) scale(1.1);
    }

    @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
        70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
        100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
    }

    body {
        padding-bottom: 100px;
        font-family: 'Montserrat', sans-serif;
    }
}

.package-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: flex-end;
    z-index: 99999;
}

.package-popup.active {
    display: flex;
}

/* Popup Box */
.popup-content {
    width: 100%;
    background: #fff;
    border-radius: 20px 20px 0 0;
    padding: 20px;
    animation: slideUp 0.3s ease;
}

/* Links */
.popup-content a {
  display: block;
  padding: 14px;
  text-decoration: none;
  color: #333 !important;
  border-bottom: 1px solid #eee;
  font-weight: 500;
}

.popup-content a:hover {
  color: #ff6b00 !important;
}

.popup-content a:active {
  background: #f5f5f5;
}

/* Animation */
@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}