/* Virtual Tours Styles */

.property-virtual-tours {
    margin-bottom: 40px;
}

.property-virtual-tours h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.virtual-tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.virtual-tour-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.virtual-tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tour-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.tour-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.virtual-tour-card:hover .tour-thumbnail img {
    transform: scale(1.1);
}

.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.virtual-tour-card:hover .tour-overlay {
    opacity: 1;
}

.btn-tour {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-tour:hover {
    transform: scale(1.05);
}

.tour-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 90, 95, 0.95);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tour-info {
    padding: 15px;
}

.tour-info h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.tour-stats {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #7f8c8d;
}

.tour-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tour-stats i {
    color: #ff5a5f;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .virtual-tours-grid {
        grid-template-columns: 1fr;
    }
    
    .property-virtual-tours h3 {
        font-size: 20px;
    }
    
    .tour-thumbnail {
        height: 180px;
    }
}

/* RTL Support */
[dir="rtl"] .property-virtual-tours h3 {
    flex-direction: row-reverse;
}

[dir="rtl"] .tour-stats {
    flex-direction: row-reverse;
}

[dir="rtl"] .tour-badge {
    right: auto;
    left: 12px;
}

