.quick-links h3 {
    color: #1e3a8a;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    padding: 2px 0;
    border-bottom: 2px solid #fbbf24;
}

.quick-links a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    color: #374151;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 0;
    border-bottom: 1px solid #dddddd6b;
}

.quick-links a:last-child {
    border-bottom: none;
}

.quick-links a i {
    font-size: 24px;
    color: #fbbf24;
}

.quick-links a .bx-phone-call {
    animation: bounce 1s infinite;
}

.quick-links a .bx-dish {
    animation: resaurant_pulse 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes resaurant_pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Prevent scrolling when modal is active */
body.modal-active {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}

/* Restaurant Registration Modal */
.restaurant-registration-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease-out;
    overflow-y: auto;
}

.restaurant-registration-content {
    background: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translate(-50%, -60%);
        opacity: 0;
    }

    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.restaurant-registration-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.restaurant-registration-close:hover {
    color: #333;
}

.restaurant-registration-content h2 {
    color: #1e3a8a;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.restaurant-registration-content p {
    color: #666;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.5;
}

.registration-contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.registration-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    min-width: 140px;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.registration-phone-btn {
    background: #10b981;
    color: white;
}

.registration-whatsapp-btn {
    background: #25d366;
    color: white;
}

.registration-email-btn {
    background: #ef4444;
    color: white;
}

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

@media (max-width: 768px) {
    .restaurant-registration-content {
        padding: 20px;
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }

    .restaurant-registration-content h2 {
        font-size: 1.5rem;
    }

    .registration-contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .registration-contact-btn {
        width: 100%;
        max-width: 280px;
    }
}