/* Customer Popup Styles */

/* Maintenance Popup Styles */
.maintenance-popup {
    position: fixed;
    top: 40%;
    padding: 25px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.maintenance-popup h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.maintenance-popup p {
    font-size: 1.1rem;
    color: #666;
}

.maintenance-overlay,
.service-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 999;
}

/* Service Selection Popup Styles */
.service-popup,
.restaurant-popup,
.phone-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 90%;
    padding: 30px;
}

.service-popup h2,
.restaurant-popup h2,
.phone-popup h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

.service-popup p,
.restaurant-popup p,
.phone-popup p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
}

.service-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.service-option {
    display: flex;
    align-items: center;
    padding: 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.service-option:hover {
    border-color: var(--primary-color);
    background: #fafafa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.option-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.option-icon i {
    font-size: 1.5rem;
    color: white;
}

.option-content h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 0 0 5px 0;
    font-weight: bold;
}

.option-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.restaurant-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.restaurant-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.restaurant-option:hover {
    border-color: var(--primary-color);
    background: #fafafa;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.restaurant-info h3 {
    font-size: 1.1rem;
    color: #333;
    margin: 0 0 3px 0;
    font-weight: bold;
}

.restaurant-info p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.restaurant-arrow i {
    font-size: 1rem;
    color: var(--primary-color);
}

.phone-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.phone-icon i {
    font-size: 2rem;
    color: white;
}

.phone-number {
    margin: 20px 0;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.phone-link:hover {
    background: var(--primary-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.back-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: #666;
}

.back-button:hover {
    background: #e0e0e0;
    color: #333;
}
