/* ============================================
   MODERN MOBILE MENU MODAL
============================================ */

.modern-menu-modal {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modern-menu-header {
    background: #001f49;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
}

.modern-menu-header .modal-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.btn-close-modal {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modern-menu-body {
    background: #fff;
    padding: 20px;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.menu-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.menu-grid-item:hover {
    background: #f0f9ff;
}

.menu-grid-item:active {
    transform: scale(0.95);
}

.menu-grid-item.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.menu-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: all 0.2s ease;
}

.menu-grid-item:hover .menu-icon {
    background: #00aeef;
}

.menu-icon i {
    font-size: 1.25rem;
    color: #001f49;
    transition: color 0.2s ease;
}

.menu-grid-item:hover .menu-icon i {
    color: #fff;
}

.menu-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #334155;
    text-align: center;
    line-height: 1.2;
}

.menu-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #ef4444;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Divider */
.menu-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 16px 0;
}

/* Contact Buttons */
.menu-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.contact-whatsapp {
    background: #25d366;
    color: #fff;
}

.contact-whatsapp:hover {
    background: #1da851;
    color: #fff;
}

.contact-phone {
    background: #001f49;
    color: #fff;
}

.contact-phone:hover {
    background: #003366;
    color: #fff;
}

.contact-btn i {
    font-size: 1.1rem;
}

/* Modal Animation */
.modal.fade .modal-dialog {
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    transition: all 0.3s ease-out;
}

.modal.show .modal-dialog {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Responsive */
@media (max-width: 360px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .menu-icon {
        width: 40px;
        height: 40px;
    }
    
    .menu-label {
        font-size: 0.7rem;
    }
}
