     /* Reservation Popup Styles */
.reservation-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reservation-popup.active {
    opacity: 1;
}

.popup-content {
    background: #fff;
    padding: 40px 50px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.reservation-popup.active .popup-content {
    transform: scale(1);
}

.popup-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.popup-content.success .popup-icon {
    color: #28a745;
}

.popup-content.error .popup-icon {
    color: #dc3545;
}

.popup-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.popup-content.success h3 {
    color: #28a745;
}

.popup-content.error h3 {
    color: #dc3545;
}

.popup-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.popup-close-btn {
    background: #2c3e50;
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.popup-close-btn:hover {
    background: #1a252f;
}

.popup-content.success .popup-close-btn {
    background: #28a745;
}

.popup-content.success .popup-close-btn:hover {
    background: #218838;
}

.popup-content.error .popup-close-btn {
    background: #dc3545;
}

.popup-content.error .popup-close-btn:hover {
    background: #c82333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .popup-content {
        padding: 30px 25px;
        width: 95%;
    }
    
    .popup-icon {
        font-size: 50px;
    }
    
    .popup-content h3 {
        font-size: 24px;
    }
    
    .popup-content p {
        font-size: 14px;
    }
}

 .video-banner {
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .video-container {
            display: grid;
            gap: 10px;
            width: 100%;
        }

        /* Large devices - 3 videos */
        @media (min-width: 1024px) {
            .video-container {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .video-item {
                display: block;
            }

            .nav-arrow {
                display: none;
            }
        }

        /* Medium devices - 2 videos with arrows */
        @media (min-width: 768px) and (max-width: 1023px) {
            .video-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .video-item {
                display: none;
            }

            .video-item.active {
                display: block;
            }

            .nav-arrow {
                display: flex;
            }
        }

        /* Small devices - 1 video with arrows */
        @media (max-width: 767px) {
            .video-container {
                grid-template-columns: 1fr;
            }

            .video-item {
                display: none;
            }

            .video-item.active {
                display: block;
            }

            .nav-arrow {
                display: flex;
            }
        }

        .video-item {
            position: relative;
            width: 100%;
            aspect-ratio: 9 / 16;
            background: #000;
        }

        .video-item video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: #F8F2E4;
            transition: all 0.3s ease;
            z-index: 10;
            line-height: 1;
        }

        .nav-arrow:hover {
            background: rgba(255, 255, 255, 0.7);
            color:#002A0C;
        }

        .nav-arrow.prev {
            left: 20px;
        }

        .nav-arrow.next {
            right: 20px;
        }

        .dots-container {
            display: none;
            justify-content: center;
            gap: 10px;
            padding: 20px 0;
        }

        @media (max-width: 1023px) {
            .dots-container {
                display: flex;
            }
        }
        @media (min-width: 1024px) {
            .nav-arrow {
                display: none;
            }
        }
        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #333;
            transform: scale(1.3);
        }