/* Video Modal Styles for Virtual Tour */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.show {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 900px;
    max-height: 90vh;
    width: 90%;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.8) translateY(50px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-modal-close:hover {
    background: rgba(255, 0, 0, 0.8);
    transform: scale(1.1);
}

.video-modal-header {
    padding: 30px 30px 20px 30px;
    text-align: center;
    background: linear-gradient(135deg, #2a6d4e 0%, #3a8e6a 100%);
    color: white;
}

.video-modal-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.video-modal-header p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.video-container {
    position: relative;
    padding: 0;
    background: #000;
}

.video-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
}

.video-modal-footer {
    padding: 25px 30px;
    text-align: center;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.video-modal-book-btn {
    background: linear-gradient(135deg, #d9a566 0%, #b8956a 100%);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(217, 165, 102, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.video-modal-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 165, 102, 0.6);
    background: linear-gradient(135deg, #b8956a 0%, #d9a566 100%);
}

.video-modal-book-btn i {
    font-size: 1.2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        max-height: 95vh;
        margin: 10px;
    }
    
    .video-modal-header {
        padding: 20px 15px 15px 15px;
    }
    
    .video-modal-header h3 {
        font-size: 1.4rem;
    }
    
    .video-modal-header p {
        font-size: 0.9rem;
    }
    
    .video-container iframe {
        height: 250px;
    }
    
    .video-modal-footer {
        padding: 20px 15px;
    }
    
    .video-modal-book-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .video-modal-content {
        width: 98%;
        border-radius: 15px;
    }
    
    .video-container iframe {
        height: 200px;
    }
    
    .video-modal-header h3 {
        font-size: 1.2rem;
    }
    
    .video-modal-close {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}
